diff --git a/.gitignore b/.gitignore index 6e6a7592170..0c7b200cf38 100644 --- a/.gitignore +++ b/.gitignore @@ -14,6 +14,7 @@ hardware/arduino/bootloaders/caterina_LUFA/Caterina.elf hardware/arduino/bootloaders/caterina_LUFA/Caterina.eep hardware/arduino/bootloaders/caterina_LUFA/.dep/ build/*.zip +build/*.tar.bz2 build/windows/work/ build/windows/*.zip build/windows/*.tgz diff --git a/app/.classpath b/app/.classpath index 3ff43e484ec..4c6032c5fac 100644 --- a/app/.classpath +++ b/app/.classpath @@ -3,7 +3,6 @@ - @@ -29,6 +28,6 @@ - + diff --git a/app/lib/ecj.LICENSE.EPL-1.0.txt b/app/lib/ecj.LICENSE.EPL-1.0.txt deleted file mode 100644 index e69de29bb2d..00000000000 diff --git a/app/lib/ecj.jar b/app/lib/ecj.jar deleted file mode 100644 index 878a32cfc5d..00000000000 Binary files a/app/lib/ecj.jar and /dev/null differ diff --git a/app/lib/rsyntaxtextarea-2.5.7.1+arduino.jar b/app/lib/rsyntaxtextarea-2.5.8.1+arduino.jar similarity index 87% rename from app/lib/rsyntaxtextarea-2.5.7.1+arduino.jar rename to app/lib/rsyntaxtextarea-2.5.8.1+arduino.jar index 0356dec21e1..66e48d20aa4 100644 Binary files a/app/lib/rsyntaxtextarea-2.5.7.1+arduino.jar and b/app/lib/rsyntaxtextarea-2.5.8.1+arduino.jar differ diff --git a/app/src/cc/arduino/ConsoleOutputStream.java b/app/src/cc/arduino/ConsoleOutputStream.java index b4460398495..d1f021a27b4 100644 --- a/app/src/cc/arduino/ConsoleOutputStream.java +++ b/app/src/cc/arduino/ConsoleOutputStream.java @@ -116,9 +116,9 @@ private void clearBuffer() { if (document != null) { SwingUtilities.invokeLater(() -> { try { - String lineWithoutSlashR = line.replace("\r\n", "\n").replace("\r", "\n"); + String lineWithoutCR = line.replace("\r\n", "\n").replace("\r", "\n"); int offset = document.getLength(); - document.insertString(offset, lineWithoutSlashR, attributes); + document.insertString(offset, lineWithoutCR, attributes); } catch (BadLocationException ble) { //ignore } diff --git a/app/src/cc/arduino/packages/formatter/AStyle.java b/app/src/cc/arduino/packages/formatter/AStyle.java index 1e1ceb2c991..702f34ec86b 100644 --- a/app/src/cc/arduino/packages/formatter/AStyle.java +++ b/app/src/cc/arduino/packages/formatter/AStyle.java @@ -1,5 +1,3 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* * This file is part of Arduino. * diff --git a/app/src/cc/arduino/view/GoToLineNumber.form b/app/src/cc/arduino/view/GoToLineNumber.form new file mode 100644 index 00000000000..fd3089dd02e --- /dev/null +++ b/app/src/cc/arduino/view/GoToLineNumber.form @@ -0,0 +1,114 @@ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
diff --git a/app/src/cc/arduino/view/GoToLineNumber.java b/app/src/cc/arduino/view/GoToLineNumber.java new file mode 100644 index 00000000000..3a3bc6fcaa9 --- /dev/null +++ b/app/src/cc/arduino/view/GoToLineNumber.java @@ -0,0 +1,148 @@ +/* + * This file is part of Arduino. + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + */ + +package cc.arduino.view; + +import processing.app.Base; +import processing.app.Editor; + +import java.awt.event.WindowEvent; + +import static processing.app.I18n.tr; + +public class GoToLineNumber extends javax.swing.JDialog { + + private final Editor editor; + + public GoToLineNumber(Editor editor) { + super(editor); + this.editor = editor; + initComponents(); + + Base.registerWindowCloseKeys(getRootPane(), this::cancelActionPerformed); + } + + /** + * This method is called from within the constructor to initialize the form. + * WARNING: Do NOT modify this code. The content of this method is always + * regenerated by the Form Editor. + */ + @SuppressWarnings("unchecked") + // //GEN-BEGIN:initComponents + private void initComponents() { + + javax.swing.JLabel jLabel1 = new javax.swing.JLabel(); + lineNumber = new javax.swing.JTextField(); + javax.swing.JButton cancel = new javax.swing.JButton(); + javax.swing.JButton ok = new javax.swing.JButton(); + + setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE); + setTitle(tr("Go to line")); + setModal(true); + setResizable(false); + + jLabel1.setText(tr("Line number:")); + + lineNumber.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + lineNumberActionPerformed(evt); + } + }); + + cancel.setText(tr("Cancel")); + cancel.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + cancelActionPerformed(evt); + } + }); + + ok.setText(tr("OK")); + ok.addActionListener(new java.awt.event.ActionListener() { + public void actionPerformed(java.awt.event.ActionEvent evt) { + okActionPerformed(evt); + } + }); + + javax.swing.GroupLayout layout = new javax.swing.GroupLayout(getContentPane()); + getContentPane().setLayout(layout); + layout.setHorizontalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addContainerGap() + .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addComponent(jLabel1) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(lineNumber, javax.swing.GroupLayout.DEFAULT_SIZE, 203, Short.MAX_VALUE)) + .addGroup(javax.swing.GroupLayout.Alignment.TRAILING, layout.createSequentialGroup() + .addGap(0, 0, Short.MAX_VALUE) + .addComponent(ok) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED) + .addComponent(cancel))) + .addContainerGap()) + ); + layout.setVerticalGroup( + layout.createParallelGroup(javax.swing.GroupLayout.Alignment.LEADING) + .addGroup(layout.createSequentialGroup() + .addContainerGap() + .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(jLabel1) + .addComponent(lineNumber, javax.swing.GroupLayout.PREFERRED_SIZE, javax.swing.GroupLayout.DEFAULT_SIZE, javax.swing.GroupLayout.PREFERRED_SIZE)) + .addPreferredGap(javax.swing.LayoutStyle.ComponentPlacement.RELATED, javax.swing.GroupLayout.DEFAULT_SIZE, Short.MAX_VALUE) + .addGroup(layout.createParallelGroup(javax.swing.GroupLayout.Alignment.BASELINE) + .addComponent(cancel) + .addComponent(ok)) + .addContainerGap()) + ); + + pack(); + }// //GEN-END:initComponents + + private void okActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_okActionPerformed + try { + int line = Integer.parseInt(lineNumber.getText()); + editor.goToLine(line); + cancelActionPerformed(evt); + } catch (Exception e) { + // ignore + } + }//GEN-LAST:event_okActionPerformed + + private void cancelActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_cancelActionPerformed + dispatchEvent(new WindowEvent(this, WindowEvent.WINDOW_CLOSING)); + }//GEN-LAST:event_cancelActionPerformed + + private void lineNumberActionPerformed(java.awt.event.ActionEvent evt) {//GEN-FIRST:event_lineNumberActionPerformed + okActionPerformed(evt); + }//GEN-LAST:event_lineNumberActionPerformed + + // Variables declaration - do not modify//GEN-BEGIN:variables + private javax.swing.JTextField lineNumber; + // End of variables declaration//GEN-END:variables +} diff --git a/app/src/cc/arduino/view/SplashScreenHelper.java b/app/src/cc/arduino/view/SplashScreenHelper.java index a9b9b9665b5..86f94c1d644 100644 --- a/app/src/cc/arduino/view/SplashScreenHelper.java +++ b/app/src/cc/arduino/view/SplashScreenHelper.java @@ -79,7 +79,11 @@ public void splashText(String str) { splashGraphics.drawString(str, (int) splashTextArea.getX() + 10, (int) splashTextArea.getY() + (30 - metrics.getHeight()) + 4); // make sure it's displayed - splash.update(); + synchronized (SplashScreen.class) { + if (splash.isVisible()) { + splash.update(); + } + } } public void close() { diff --git a/app/src/cc/arduino/view/preferences/Preferences.java b/app/src/cc/arduino/view/preferences/Preferences.java index 0b2227711c4..eb407898242 100644 --- a/app/src/cc/arduino/view/preferences/Preferences.java +++ b/app/src/cc/arduino/view/preferences/Preferences.java @@ -104,14 +104,16 @@ public Preferences(Window parent, Base base) { new Language(tr("Albanian"), "shqip", "sq"), new Language(tr("Arabic"), "العربية", "ar"), new Language(tr("Aragonese"), "Aragonés", "an"), + new Language(tr("Basque"), "Euskara", "eu"), new Language(tr("Belarusian"), "Беларуская мова", "be"), new Language(tr("Bulgarian"), "български", "bg"), + new Language(tr("Canadian French"), "Canadienne-français", "fr_CA"), new Language(tr("Catalan"), "Català", "ca"), - new Language(tr("Chinese Simplified"), "简体中文", "zh_CN"), - new Language(tr("Chinese Traditional"), "繁體中文", "zh_TW"), + new Language(tr("Chinese (China)"), "简体中文", "zh_CN"), + new Language(tr("Chinese (Taiwan) (Big5)"), "", "zh_TW.Big5"), + new Language(tr("Chinese (Taiwan)"), "", "zh_TW"), new Language(tr("Croatian"), "Hrvatski", "hr_HR"), new Language(tr("Czech (Czech Republic)"), "český (Czech Republic)", "cs_CZ"), - new Language(tr("Danish (Denmark)"), "Dansk (Denmark)", "da_DK"), new Language(tr("Dutch"), "Nederlands", "nl"), new Language(tr("English"), "English", "en"), new Language(tr("English (United Kingdom)"), "English (United Kingdom)", "en_GB"), @@ -120,27 +122,26 @@ public Preferences(Window parent, Base base) { new Language(tr("Filipino"), "Pilipino", "fil"), new Language(tr("Finnish"), "Suomi", "fi"), new Language(tr("French"), "Français", "fr"), - new Language(tr("Canadian French"), "Canadienne-français", "fr_CA"), new Language(tr("Galician"), "Galego", "gl"), + new Language(tr("Galician (Spain)"), "Galego (Spain)", "gl_ES"), new Language(tr("Georgian"), "საქართველოს", "ka_GE"), new Language(tr("German"), "Deutsch", "de_DE"), - new Language(tr("Greek"), "ελληνικά", "el_GR"), new Language(tr("Hebrew"), "עברית", "he"), new Language(tr("Hindi"), "हिंदी", "hi"), - new Language(tr("Hungarian"), "Magyar", "hu"), new Language(tr("Indonesian"), "Bahasa Indonesia", "id"), new Language(tr("Italian"), "Italiano", "it_IT"), new Language(tr("Japanese"), "日本語", "ja_JP"), new Language(tr("Korean"), "한국어", "ko_KR"), new Language(tr("Latvian"), "Latviešu", "lv_LV"), - new Language(tr("Lithuaninan"), "Lietuvių Kalba", "lt_LT"), new Language(tr("Norwegian Bokmål"), "Norsk bokmål", "nb_NO"), new Language(tr("Persian"), "فارسی", "fa"), new Language(tr("Polish"), "Język Polski", "pl"), + new Language(tr("Portugese"), "Português", "pt"), new Language(tr("Portuguese (Brazil)"), "Português (Brazil)", "pt_BR"), new Language(tr("Portuguese (Portugal)"), "Português (Portugal)", "pt_PT"), new Language(tr("Romanian"), "Română", "ro"), new Language(tr("Russian"), "Русский", "ru"), + new Language(tr("Slovak"), "Slovenčina", "sk"), new Language(tr("Slovenian"), "Slovenščina", "sl_SI"), new Language(tr("Spanish"), "Español", "es"), new Language(tr("Swedish"), "Svenska", "sv"), @@ -154,31 +155,18 @@ public Preferences(Window parent, Base base) { new Language(tr("Afrikaans"), "Afrikaans", "af"), new Language(tr("Armenian"), "Հայերեն", "hy"), new Language(tr("Asturian"), "Asturianu", "ast"), - new Language(tr("Basque"), "Euskara", "eu"), - new Language(tr("Bengali (India)"), "বাংলা (India)", "bn_IN"), new Language(tr("Bosnian"), "Bosanski", "bs"), new Language(tr("Burmese (Myanmar)"), "ဗမာစကား", "my_MM"), - new Language(tr("Chinese (China)"), "", "zh_CN"), - new Language(tr("Chinese (Hong Kong)"), "", "zh_HK"), - new Language(tr("Chinese (Taiwan)"), "", "zh_TW"), - new Language(tr("Chinese (Taiwan) (Big5)"), "", "zh_TW.Big5"), - new Language(tr("Czech"), "český", "cs"), - new Language(tr("Danish"), "Dansk", "da"), + new Language(tr("Danish (Denmark)"), "Dansk (Denmark)", "da_DK"), new Language(tr("Dutch (Netherlands)"), "Nederlands", "nl_NL"), - new Language(tr("Galician (Spain)"), "Galego (Spain)", "gl_ES"), - new Language(tr("Nepali"), "नेपाली", "ne"), - new Language(tr("N'Ko"), "ߒߞߏ", "nqo"), + new Language(tr("Greek"), "ελληνικά", "el_GR"), + new Language(tr("Hungarian"), "Magyar", "hu"), + new Language(tr("Lithuaninan"), "Lietuvių Kalba", "lt_LT"), new Language(tr("Marathi"), "मराठी", "mr"), - new Language(tr("Malay (Malaysia)"), "بهاس ملايو (Malaysia)", "ms_MY"), - new Language(tr("Norwegian"), "Norsk", "no"), - new Language(tr("Norwegian Nynorsk"), "Norsk Nynorsk", "nn"), - new Language(tr("Portugese"), "Português", "pt"), + new Language(tr("Nepali"), "नेपाली", "ne"), new Language(tr("Persian (Iran)"), "فارسی (Iran)", "fa_IR"), - new Language(tr("Slovak"), "Slovenčina", "sk"), - new Language(tr("Swahili"), "كِسوَهِل", "sw"), new Language(tr("Talossan"), "Talossan", "tzl"), - new Language(tr("Urdu (Pakistan)"), "اردو (Pakistan)", "ur_PK"), - new Language(tr("Western Frisian"), "Western Frisian", "fy"), + new Language(tr("Western Frisian"), "Western Frisian", "fy") }; this.warningItems = new WarningItem[]{ diff --git a/app/src/processing/app/AbstractMonitor.java b/app/src/processing/app/AbstractMonitor.java index cd9f47b764d..976041eafa7 100644 --- a/app/src/processing/app/AbstractMonitor.java +++ b/app/src/processing/app/AbstractMonitor.java @@ -1,23 +1,15 @@ package processing.app; -import java.awt.Container; -import java.awt.Dimension; -import java.awt.Rectangle; -import java.awt.Toolkit; +import cc.arduino.packages.BoardPort; +import processing.app.legacy.PApplet; + +import javax.swing.*; +import java.awt.*; import java.awt.event.ActionEvent; import java.awt.event.ActionListener; import java.awt.event.WindowAdapter; import java.awt.event.WindowEvent; -import javax.swing.AbstractAction; -import javax.swing.JComponent; -import javax.swing.JFrame; -import javax.swing.KeyStroke; -import javax.swing.Timer; - -import cc.arduino.packages.BoardPort; -import processing.app.legacy.PApplet; - @SuppressWarnings("serial") public abstract class AbstractMonitor extends JFrame implements ActionListener { @@ -28,7 +20,7 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener { private Timer updateTimer; private BoardPort boardPort; - + protected String[] serialRateStrings = {"300", "1200", "2400", "4800", "9600", "19200", "38400", "57600", "74880", "115200", "230400", "250000"}; public AbstractMonitor(BoardPort boardPort) { @@ -89,14 +81,14 @@ public void actionPerformed(ActionEvent event) { monitorEnabled = true; closed = false; } - + protected abstract void onCreateWindow(Container mainPane); public void enableWindow(boolean enable) { onEnableWindow(enable); monitorEnabled = enable; } - + protected abstract void onEnableWindow(boolean enable); // Puts the window in suspend state, closing the serial port @@ -165,6 +157,9 @@ public BoardPort getBoardPort() { } public void setBoardPort(BoardPort boardPort) { + if (boardPort == null) { + return; + } setTitle(boardPort.getLabel()); this.boardPort = boardPort; } @@ -178,7 +173,7 @@ private synchronized String consumeUpdateBuffer() { updateBuffer.setLength(0); return s; } - + public void actionPerformed(ActionEvent e) { String s = consumeUpdateBuffer(); if (s.isEmpty()) { diff --git a/app/src/processing/app/AbstractTextMonitor.java b/app/src/processing/app/AbstractTextMonitor.java index 72239a66868..7caeee19533 100644 --- a/app/src/processing/app/AbstractTextMonitor.java +++ b/app/src/processing/app/AbstractTextMonitor.java @@ -23,7 +23,6 @@ import javax.swing.text.DefaultCaret; import cc.arduino.packages.BoardPort; -import processing.app.debug.TextAreaFIFO; @SuppressWarnings("serial") public abstract class AbstractTextMonitor extends AbstractMonitor { diff --git a/app/src/processing/app/Base.java b/app/src/processing/app/Base.java index 7cc5c2a899c..2ef29d54ea0 100644 --- a/app/src/processing/app/Base.java +++ b/app/src/processing/app/Base.java @@ -78,12 +78,8 @@ */ public class Base { - public static final Predicate CONTRIBUTED = new Predicate() { - @Override - public boolean test(UserLibrary library) { - return library.getTypes() == null || library.getTypes().isEmpty() || library.getTypes().contains("Contributed"); - } - }; + public static final Predicate CONTRIBUTED = library -> library.getTypes() == null || library.getTypes().isEmpty() || library.getTypes().contains("Contributed"); + public static final Predicate RETIRED = library -> library.getTypes() != null && library.getTypes().contains("Retired"); private static final int RECENT_SKETCHES_MAX_SIZE = 5; @@ -121,7 +117,7 @@ public boolean test(UserLibrary library) { private List boardsCustomMenus; private List programmerMenus; - private final PdeKeywords pdeKeywords; + private PdeKeywords pdeKeywords; private final List recentSketchesMenuItems; static public void main(String args[]) throws Exception { @@ -217,7 +213,7 @@ static public void guardedMain(String args[]) throws Exception { } // Create a location for untitled sketches - untitledFolder = BaseNoGui.createTempFolder("untitled"); + untitledFolder = FileUtils.createTempFolder("untitled" + new Random().nextInt(Integer.MAX_VALUE), ".tmp"); DeleteFilesOnShutdown.add(untitledFolder); INSTANCE = new Base(args); @@ -459,15 +455,15 @@ public Base(String[] args) throws Exception { handleNew(); } + new Thread(new BuiltInCoreIsNewerCheck(this)).start(); + // Check for updates if (PreferencesData.getBoolean("update.check")) { new UpdateCheck(this); - } - - new Thread(new BuiltInCoreIsNewerCheck(this)).start(); - contributionsSelfCheck = new ContributionsSelfCheck(this, new UpdatableBoardsLibsFakeURLsHandler(this), BaseNoGui.indexer, contributionInstaller, BaseNoGui.librariesIndexer, libraryInstaller); - new Timer(false).schedule(contributionsSelfCheck, Constants.BOARDS_LIBS_UPDATABLE_CHECK_START_PERIOD); + contributionsSelfCheck = new ContributionsSelfCheck(this, new UpdatableBoardsLibsFakeURLsHandler(this), BaseNoGui.indexer, contributionInstaller, BaseNoGui.librariesIndexer, libraryInstaller); + new Timer(false).schedule(contributionsSelfCheck, Constants.BOARDS_LIBS_UPDATABLE_CHECK_START_PERIOD); + } } else if (parser.isNoOpMode()) { // Do nothing (intended for only changing preferences) @@ -1116,7 +1112,18 @@ protected void rebuildSketchbookMenu(JMenu menu) { public LibraryList getIDELibs() { LibraryList installedLibraries = new LibraryList(BaseNoGui.librariesIndexer.getInstalledLibraries()); - List libs = installedLibraries.stream().filter(CONTRIBUTED.negate()).collect(Collectors.toList()); + List libs = installedLibraries.stream() + .filter(CONTRIBUTED.negate()) + .filter(RETIRED.negate()) + .collect(Collectors.toList()); + return new LibraryList(libs); + } + + public LibraryList getIDERetiredLibs() { + LibraryList installedLibraries = new LibraryList(BaseNoGui.librariesIndexer.getInstalledLibraries()); + List libs = installedLibraries.stream() + .filter(RETIRED) + .collect(Collectors.toList()); return new LibraryList(libs); } @@ -1200,27 +1207,68 @@ public void rebuildExamplesMenu(JMenu menu) { menu.removeAll(); // Add examples from distribution "example" folder + JMenuItem label = new JMenuItem(tr("Built-in Examples")); + label.setEnabled(false); + menu.add(label); boolean found = addSketches(menu, BaseNoGui.getExamplesFolder()); - if (found) menu.addSeparator(); + if (found) { + menu.addSeparator(); + } // Add examples from libraries LibraryList ideLibs = getIDELibs(); ideLibs.sort(); - for (UserLibrary lib : ideLibs) + if (!ideLibs.isEmpty()) { + label = new JMenuItem(tr("Examples from Libraries")); + label.setEnabled(false); + menu.add(label); + } + for (UserLibrary lib : ideLibs) { addSketchesSubmenu(menu, lib); + } + + LibraryList retiredIdeLibs = getIDERetiredLibs(); + retiredIdeLibs.sort(); + if (!retiredIdeLibs.isEmpty()) { + JMenu retired = new JMenu(tr("RETIRED")); + menu.add(retired); + for (UserLibrary lib : retiredIdeLibs) { + addSketchesSubmenu(retired, lib); + } + } LibraryList userLibs = getUserLibs(); if (userLibs.size() > 0) { menu.addSeparator(); userLibs.sort(); - for (UserLibrary lib : userLibs) + label = new JMenuItem(tr("Examples from Custom Libraries")); + label.setEnabled(false); + menu.add(label); + for (UserLibrary lib : userLibs) { addSketchesSubmenu(menu, lib); + } } } + private static String priorPlatformFolder; + public void onBoardOrPortChange() { BaseNoGui.onBoardOrPortChange(); + // reload keywords when package/platform changes + TargetPlatform tp = BaseNoGui.getTargetPlatform(); + if (tp != null) { + String platformFolder = tp.getFolder().getAbsolutePath(); + if (priorPlatformFolder == null || !priorPlatformFolder.equals(platformFolder)) { + pdeKeywords = new PdeKeywords(); + pdeKeywords.reload(); + priorPlatformFolder = platformFolder; + for (Editor editor : editors) { + editor.updateKeywords(pdeKeywords); + } + } + } + // Update editors status bar for (Editor editor : editors) { editor.onBoardOrPortChange(); diff --git a/app/src/processing/app/Editor.java b/app/src/processing/app/Editor.java index 75d4de1c7d2..f1491f1534e 100644 --- a/app/src/processing/app/Editor.java +++ b/app/src/processing/app/Editor.java @@ -26,6 +26,7 @@ import cc.arduino.packages.MonitorFactory; import cc.arduino.packages.Uploader; import cc.arduino.packages.uploaders.SerialUploader; +import cc.arduino.view.GoToLineNumber; import cc.arduino.view.StubMenuListener; import cc.arduino.view.findreplace.FindReplace; import com.jcraft.jsch.JSchException; @@ -36,11 +37,11 @@ import org.fife.ui.rtextarea.Gutter; import org.fife.ui.rtextarea.RTextScrollPane; import processing.app.debug.RunnerException; -import processing.app.debug.RunnerListener; import processing.app.forms.PasswordAuthorizationDialog; import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMapException; import processing.app.legacy.PApplet; +import processing.app.syntax.PdeKeywords; import processing.app.syntax.ArduinoTokenMakerFactory; import processing.app.syntax.SketchTextArea; import processing.app.tools.DiscourseFormat; @@ -750,6 +751,10 @@ public void actionPerformed(ActionEvent e) { item = newJMenuItemAlt(tr("Export compiled Binary"), 'S'); item.addActionListener(new ActionListener() { public void actionPerformed(ActionEvent e) { + if (new ShouldSaveReadOnly().test(sketch) && !handleSave(true)) { + System.out.println(tr("Export canceled, changes must first be saved.")); + return; + } handleRun(false, new ShouldSaveReadOnly(), Editor.this.presentAndSaveHandler, Editor.this.runAndSaveHandler); } }); @@ -1057,6 +1062,15 @@ public void caretUpdate(CaretEvent e) { return textArea; } + public void updateKeywords(PdeKeywords keywords) { + // update GUI for "Find In Reference" + textarea.setKeywords(keywords); + // update document for syntax highlighting + RSyntaxDocument document = (RSyntaxDocument) textarea.getDocument(); + document.setTokenMakerFactory(new ArduinoTokenMakerFactory(keywords)); + document.setSyntaxStyle(RSyntaxDocument.SYNTAX_STYLE_CPLUSPLUS); + } + private JMenuItem createToolMenuItem(String className) { try { Class toolClass = Class.forName(className); @@ -1443,6 +1457,14 @@ public void actionPerformed(ActionEvent e) { }); menu.add(selectAllItem); + JMenuItem gotoLine = newJMenuItem(tr("Go to line..."), 'L'); + gotoLine.addActionListener(e -> { + GoToLineNumber goToLineNumber = new GoToLineNumber(Editor.this); + goToLineNumber.setLocationRelativeTo(Editor.this); + goToLineNumber.setVisible(true); + }); + menu.add(gotoLine); + menu.addSeparator(); JMenuItem commentItem = newJMenuItem(tr("Comment/Uncomment"), '/'); @@ -3005,4 +3027,15 @@ public void popupMenuCanceled(PopupMenuEvent e) { } + public void goToLine(int line) { + if (line <= 0) { + return; + } + try { + textarea.setCaretPosition(textarea.getLineStartOffset(line - 1)); + } catch (BadLocationException e) { + //ignore + } + } + } diff --git a/app/src/processing/app/EditorHeader.java b/app/src/processing/app/EditorHeader.java index 56105465448..a1e100aea43 100644 --- a/app/src/processing/app/EditorHeader.java +++ b/app/src/processing/app/EditorHeader.java @@ -28,6 +28,7 @@ import java.awt.*; import java.awt.event.*; +import java.io.IOException; import javax.swing.*; @@ -317,8 +318,12 @@ public void actionPerformed(ActionEvent e) { item = new JMenuItem(tr("Delete")); item.addActionListener(new ActionListener() { - public void actionPerformed(ActionEvent e) { - editor.getSketch().handleDeleteCode(); + public void actionPerformed(ActionEvent event) { + try { + editor.getSketch().handleDeleteCode(); + } catch (IOException e) { + e.printStackTrace(); + } } }); menu.add(item); diff --git a/app/src/processing/app/debug/RunnerListener.java b/app/src/processing/app/RunnerListener.java similarity index 97% rename from app/src/processing/app/debug/RunnerListener.java rename to app/src/processing/app/RunnerListener.java index b9505a5107a..83381be66b5 100644 --- a/app/src/processing/app/debug/RunnerListener.java +++ b/app/src/processing/app/RunnerListener.java @@ -20,7 +20,7 @@ Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA */ -package processing.app.debug; +package processing.app; public interface RunnerListener { @@ -30,4 +30,4 @@ public interface RunnerListener { public void statusError(Exception exception); public void statusNotice(String message); -} \ No newline at end of file +} diff --git a/app/src/processing/app/SerialPlotter.java b/app/src/processing/app/SerialPlotter.java index 8497fcaf313..0ff7ff2d467 100644 --- a/app/src/processing/app/SerialPlotter.java +++ b/app/src/processing/app/SerialPlotter.java @@ -19,23 +19,24 @@ package processing.app; import cc.arduino.packages.BoardPort; +import processing.app.helpers.CircularBuffer; +import processing.app.helpers.Ticks; import processing.app.legacy.PApplet; -import processing.app.helpers.*; -import static processing.app.I18n.tr; - -import java.awt.*; -import java.awt.event.*; -import java.awt.geom.*; import javax.swing.*; -import javax.swing.border.*; +import javax.swing.border.EmptyBorder; +import java.awt.*; +import java.awt.event.ActionListener; +import java.awt.geom.AffineTransform; +import java.awt.geom.Rectangle2D; + +import static processing.app.I18n.tr; public class SerialPlotter extends AbstractMonitor { - private StringBuffer messageBuffer; - private CircularBuffer buffer; - private GraphPanel graphPanel; - private JComboBox serialRates; + private final StringBuffer messageBuffer; + private CircularBuffer buffer; + private JComboBox serialRates; private Serial serial; private int serialRate; @@ -43,30 +44,30 @@ private class GraphPanel extends JPanel { private double minY, maxY, rangeY; private Rectangle bounds; private int xOffset; - private Font font; - private Color graphColor; - + private final Font font; + private final Color graphColor; + public GraphPanel() { font = Theme.getFont("console.font"); graphColor = Theme.getColor("header.bgcolor"); xOffset = 20; } - + @Override public void paintComponent(Graphics g1) { - Graphics2D g = (Graphics2D)g1; + Graphics2D g = (Graphics2D) g1; g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); g.setFont(font); super.paintComponent(g); - + bounds = g.getClipBounds(); setBackground(Color.WHITE); - if(buffer.isEmpty()) { + if (buffer.isEmpty()) { return; } - - minY = buffer.min(); - maxY = buffer.max(); + + minY = buffer.min() / 2; + maxY = buffer.max() * 2; Ticks ticks = new Ticks(minY, maxY, 3); minY = Math.min(minY, ticks.getTick(0)); maxY = Math.max(maxY, ticks.getTick(ticks.getTickCount() - 1)); @@ -77,45 +78,45 @@ public void paintComponent(Graphics g1) { g.setStroke(new BasicStroke(1.0f)); FontMetrics fm = g.getFontMetrics(); - for(int i = 0; i < ticks.getTickCount(); ++i) { + for (int i = 0; i < ticks.getTickCount(); ++i) { double tick = ticks.getTick(i); Rectangle2D fRect = fm.getStringBounds(String.valueOf(tick), g); - xOffset = Math.max(xOffset, (int)fRect.getWidth() + 15); + xOffset = Math.max(xOffset, (int) fRect.getWidth() + 15); // draw tick - g.drawLine(xOffset - 5, (int)transformY(tick), xOffset + 2, (int)transformY(tick)); + g.drawLine(xOffset - 5, (int) transformY(tick), xOffset + 2, (int) transformY(tick)); // draw tick label - g.drawString(String.valueOf(tick), xOffset - (int)fRect.getWidth() - 10, transformY(tick) - (float)fRect.getHeight() * 0.5f + fm.getAscent()); + g.drawString(String.valueOf(tick), xOffset - (int) fRect.getWidth() - 10, transformY(tick) - (float) fRect.getHeight() * 0.5f + fm.getAscent()); } g.drawLine(bounds.x + xOffset, bounds.y + 5, bounds.x + xOffset, bounds.y + bounds.height - 10); - - g.setTransform(AffineTransform.getTranslateInstance(xOffset, 0)); - float xstep = (float)(bounds.width - xOffset) / (float)buffer.capacity(); - + + g.setTransform(AffineTransform.getTranslateInstance(xOffset, 0)); + float xstep = (float) (bounds.width - xOffset) / (float) buffer.capacity(); + g.setColor(graphColor); g.setStroke(new BasicStroke(0.75f)); - - for(int i = 0; i < buffer.size() - 1; ++i) { + + for (int i = 0; i < buffer.size() - 1; ++i) { g.drawLine( - (int)(i * xstep), (int)transformY(buffer.get(i)), - (int)((i + 1) * xstep), (int)transformY(buffer.get(i + 1)) + (int) (i * xstep), (int) transformY(buffer.get(i)), + (int) ((i + 1) * xstep), (int) transformY(buffer.get(i + 1)) ); } } - + @Override public Dimension getMinimumSize() { return new Dimension(200, 100); } - + @Override public Dimension getPreferredSize() { return new Dimension(500, 250); } - + private float transformY(double rawY) { - return (float)(5 + (bounds.height - 10) * (1.0 - (rawY - minY) / rangeY)); + return (float) (5 + (bounds.height - 10) * (1.0 - (rawY - minY) / rangeY)); } } @@ -124,93 +125,80 @@ public SerialPlotter(BoardPort port) { serialRate = PreferencesData.getInteger("serial.debug_rate"); serialRates.setSelectedItem(serialRate + " " + tr("baud")); - onSerialRateChange(new ActionListener() { - public void actionPerformed(ActionEvent event) { - String wholeString = (String) serialRates.getSelectedItem(); - String rateString = wholeString.substring(0, wholeString.indexOf(' ')); - serialRate = Integer.parseInt(rateString); - PreferencesData.set("serial.debug_rate", rateString); - try { - close(); - Thread.sleep(100); // Wait for serial port to properly close - open(); - } catch (InterruptedException e) { - // noop - } catch (Exception e) { - System.err.println(e); - } + onSerialRateChange(event -> { + String wholeString = (String) serialRates.getSelectedItem(); + String rateString = wholeString.substring(0, wholeString.indexOf(' ')); + serialRate = Integer.parseInt(rateString); + PreferencesData.set("serial.debug_rate", rateString); + try { + close(); + Thread.sleep(100); // Wait for serial port to properly close + open(); + } catch (Exception e) { + // ignore } }); messageBuffer = new StringBuffer(); } - + protected void onCreateWindow(Container mainPane) { mainPane.setLayout(new BorderLayout()); - - Font consoleFont = Theme.getFont("console.font"); - Font editorFont = PreferencesData.getFont("editor.font"); - Font font = new Font(consoleFont.getName(), consoleFont.getStyle(), editorFont.getSize()); - + buffer = new CircularBuffer(500); - graphPanel = new GraphPanel(); - + GraphPanel graphPanel = new GraphPanel(); + mainPane.add(graphPanel, BorderLayout.CENTER); - + JPanel pane = new JPanel(); pane.setLayout(new BoxLayout(pane, BoxLayout.X_AXIS)); pane.setBorder(new EmptyBorder(4, 4, 4, 4)); - - serialRates = new JComboBox(); - for (int i = 0; i < serialRateStrings.length; i++) - serialRates.addItem(serialRateStrings[i] + " " + tr("baud")); - + + serialRates = new JComboBox<>(); + for (String serialRateString : serialRateStrings) serialRates.addItem(serialRateString + " " + tr("baud")); + serialRates.setMaximumSize(serialRates.getMinimumSize()); pane.add(Box.createRigidArea(new Dimension(8, 0))); pane.add(serialRates); - + mainPane.add(pane, BorderLayout.SOUTH); } - - protected void onEnableWindow(boolean enable) - { - serialRates.setEnabled(enable); + + protected void onEnableWindow(boolean enable) { + serialRates.setEnabled(enable); } - - public void onSerialRateChange(ActionListener listener) { + + private void onSerialRateChange(ActionListener listener) { serialRates.addActionListener(listener); } - + public void message(final String s) { messageBuffer.append(s); - while(true) { + while (true) { int linebreak = messageBuffer.indexOf("\n"); - if(linebreak == -1) { + if (linebreak == -1) { break; } - + String line = messageBuffer.substring(0, linebreak); line = line.trim(); messageBuffer.delete(0, linebreak + 1); - + try { double value = Double.valueOf(line); buffer.add(value); - } catch(NumberFormatException e) { - continue; // ignore lines that can't be cast to a number + } catch (NumberFormatException e) { + // ignore } } - SwingUtilities.invokeLater(new Runnable() { - public void run() { - SerialPlotter.this.repaint(); - }}); + SwingUtilities.invokeLater(SerialPlotter.this::repaint); } - + public void open() throws Exception { super.open(); - + if (serial != null) return; serial = new Serial(getBoardPort().getAddress(), serialRate) { diff --git a/app/src/processing/app/Sketch.java b/app/src/processing/app/Sketch.java index 140b9a0a742..9c6a93c5931 100644 --- a/app/src/processing/app/Sketch.java +++ b/app/src/processing/app/Sketch.java @@ -23,11 +23,15 @@ package processing.app; +import cc.arduino.Compiler; +import cc.arduino.CompilerProgressListener; +import cc.arduino.UploaderUtils; +import cc.arduino.files.DeleteFilesOnShutdown; import cc.arduino.packages.Uploader; -import processing.app.debug.Compiler; -import processing.app.debug.Compiler.ProgressListener; +import org.apache.commons.codec.digest.DigestUtils; import processing.app.debug.RunnerException; import processing.app.forms.PasswordAuthorizationDialog; +import processing.app.helpers.FileUtils; import processing.app.helpers.OSUtils; import processing.app.helpers.PreferencesMapException; import processing.app.packages.LibraryList; @@ -37,10 +41,14 @@ import java.awt.*; import java.io.File; import java.io.IOException; +import java.nio.file.Files; +import java.nio.file.Paths; import java.util.Arrays; import java.util.LinkedList; import java.util.List; import java.util.Optional; +import java.util.stream.Collectors; +import java.util.stream.Stream; import static processing.app.I18n.tr; @@ -49,8 +57,6 @@ * Stores information about files in the current sketch */ public class Sketch { - static private File tempBuildFolder; - private final Editor editor; /** true if any of the files have been modified. */ @@ -60,7 +66,7 @@ public class Sketch { private int currentIndex; private final SketchData data; - + /** * path is location of the main .pde file, because this is also * simplest to use when opening the file from the finder/explorer. @@ -68,26 +74,6 @@ public class Sketch { public Sketch(Editor _editor, File file) throws IOException { editor = _editor; data = new SketchData(file); - - // lib/build must exist when the application is started - // it is added to the CLASSPATH by default, but if it doesn't - // exist when the application is started, then java will remove - // the entry from the CLASSPATH, causing Runner to fail. - // - /* - tempBuildFolder = new File(TEMP_BUILD_PATH); - if (!tempBuildFolder.exists()) { - tempBuildFolder.mkdirs(); - Base.showError("Required folder missing", - "A required folder was missing from \n" + - "from your installation of Processing.\n" + - "It has now been replaced, please restart \n" + - "the application to complete the repair.", null); - } - */ - tempBuildFolder = BaseNoGui.getBuildFolder(); - //Base.addBuildFolderToClassPath(); - load(); } @@ -431,7 +417,7 @@ protected void nameCode(String newName) { /** * Remove a piece of code from the sketch and from the disk. */ - public void handleDeleteCode() { + public void handleDeleteCode() throws IOException { editor.status.clearState(); // make sure the user didn't hide the sketch folder ensureExistence(); @@ -477,7 +463,7 @@ public void handleDeleteCode() { } else { // delete the file - if (!current.getCode().deleteFile(tempBuildFolder)) { + if (!current.getCode().deleteFile(BaseNoGui.getBuildFolder(data))) { Base.showMessage(tr("Couldn't do it"), I18n.format(tr("Could not delete \"{0}\"."), current.getCode().getFileName())); return; @@ -539,6 +525,7 @@ private void calcModified() { // http://developer.apple.com/qa/qa2001/qa1146.html Object modifiedParam = modified ? Boolean.TRUE : Boolean.FALSE; editor.getRootPane().putClientProperty("windowModified", modifiedParam); + editor.getRootPane().putClientProperty("Window.documentModified", modifiedParam); } } @@ -1093,8 +1080,8 @@ public void prepare() throws IOException { * @return null if compilation failed, main class name if not * @throws RunnerException */ - public String build(boolean verbose, boolean save) throws RunnerException, PreferencesMapException { - return build(tempBuildFolder.getAbsolutePath(), verbose, save); + public String build(boolean verbose, boolean save) throws RunnerException, PreferencesMapException, IOException { + return build(BaseNoGui.getBuildFolder(data).getAbsolutePath(), verbose, save); } /** @@ -1106,19 +1093,36 @@ public String build(boolean verbose, boolean save) throws RunnerException, Prefe * * @return null if compilation failed, main class name if not */ - private String build(String buildPath, boolean verbose, boolean save) throws RunnerException, PreferencesMapException { + private String build(String buildPath, boolean verbose, boolean save) throws RunnerException, PreferencesMapException, IOException { // run the preprocessor editor.status.progressUpdate(20); ensureExistence(); - - ProgressListener pl = editor.status::progressUpdate; - - return Compiler.build(data, buildPath, tempBuildFolder, pl, verbose, save); + + CompilerProgressListener progressListener = editor.status::progressUpdate; + + String pathToSketch = data.getMainFilePath(); + if (isModified()) { + pathToSketch = saveSketchInTempFolder(); + } + + return new Compiler(pathToSketch, data, buildPath).build(progressListener, save); + } + + private String saveSketchInTempFolder() throws IOException { + File tempFolder = FileUtils.createTempFolder("arduino_", DigestUtils.md5Hex(data.getMainFilePath())); + DeleteFilesOnShutdown.add(tempFolder); + FileUtils.copy(getFolder(), tempFolder); + + for (SketchCode sc : Stream.of(data.getCodes()).filter(SketchCode::isModified).collect(Collectors.toList())) { + Files.write(Paths.get(tempFolder.getAbsolutePath(), sc.getFileName()), sc.getProgram().getBytes()); + } + + return Paths.get(tempFolder.getAbsolutePath(), data.getPrimaryFile().getName()).toString(); } protected boolean exportApplet(boolean usingProgrammer) throws Exception { - return exportApplet(tempBuildFolder.getAbsolutePath(), usingProgrammer); + return exportApplet(BaseNoGui.getBuildFolder(data).getAbsolutePath(), usingProgrammer); } @@ -1153,7 +1157,7 @@ private boolean exportApplet(String appletPath, boolean usingProgrammer) private boolean upload(String buildPath, String suggestedClassName, boolean usingProgrammer) throws Exception { - Uploader uploader = Compiler.getUploaderByPreferences(false); + Uploader uploader = new UploaderUtils().getUploaderByPreferences(false); boolean success = false; do { @@ -1172,7 +1176,7 @@ private boolean upload(String buildPath, String suggestedClassName, boolean usin List warningsAccumulator = new LinkedList<>(); try { - success = Compiler.upload(data, uploader, buildPath, suggestedClassName, usingProgrammer, false, warningsAccumulator); + success = new UploaderUtils().upload(data, uploader, buildPath, suggestedClassName, usingProgrammer, false, warningsAccumulator); } finally { if (uploader.requiresAuthorization() && !success) { PreferencesData.remove(uploader.getAuthorizationKey()); diff --git a/app/src/processing/app/debug/TextAreaFIFO.java b/app/src/processing/app/TextAreaFIFO.java similarity index 98% rename from app/src/processing/app/debug/TextAreaFIFO.java rename to app/src/processing/app/TextAreaFIFO.java index 0edc8f24c13..abf953dfd93 100644 --- a/app/src/processing/app/debug/TextAreaFIFO.java +++ b/app/src/processing/app/TextAreaFIFO.java @@ -18,7 +18,7 @@ // adapted from https://community.oracle.com/thread/1479784 -package processing.app.debug; +package processing.app; import javax.swing.JTextArea; import javax.swing.SwingUtilities; diff --git a/app/src/processing/app/debug/EasySSLProtocolSocketFactory.java b/app/src/processing/app/debug/EasySSLProtocolSocketFactory.java deleted file mode 100644 index a08996c75a4..00000000000 --- a/app/src/processing/app/debug/EasySSLProtocolSocketFactory.java +++ /dev/null @@ -1,233 +0,0 @@ -/* - * ==================================================================== - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - * - */ - -package processing.app.debug; - -import org.apache.commons.httpclient.ConnectTimeoutException; -import org.apache.commons.httpclient.HttpClientError; -import org.apache.commons.httpclient.params.HttpConnectionParams; -import org.apache.commons.httpclient.protocol.SecureProtocolSocketFactory; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -import javax.net.SocketFactory; -import javax.net.ssl.SSLContext; -import javax.net.ssl.SSLSocket; -import javax.net.ssl.TrustManager; -import java.io.IOException; -import java.net.*; - -/** - *

- * EasySSLProtocolSocketFactory can be used to creats SSL {@link Socket}s - * that accept self-signed certificates. - *

- *

- * This socket factory SHOULD NOT be used for productive systems - * due to security reasons, unless it is a concious decision and - * you are perfectly aware of security implications of accepting - * self-signed certificates - *

- *

- *

- * Example of using custom protocol socket factory for a specific host: - *

- *     Protocol easyhttps = new Protocol("https", new EasySSLProtocolSocketFactory(), 443);
- *
- *     URI uri = new URI("https://localhost/", true);
- *     // use relative url only
- *     GetMethod httpget = new GetMethod(uri.getPathQuery());
- *     HostConfiguration hc = new HostConfiguration();
- *     hc.setHost(uri.getHost(), uri.getPort(), easyhttps);
- *     HttpClient client = new HttpClient();
- *     client.executeMethod(hc, httpget);
- *     
- *

- *

- * Example of using custom protocol socket factory per default instead of the standard one: - *

- *     Protocol easyhttps = new Protocol("https", new EasySSLProtocolSocketFactory(), 443);
- *     Protocol.registerProtocol("https", easyhttps);
- *
- *     HttpClient client = new HttpClient();
- *     GetMethod httpget = new GetMethod("https://localhost/");
- *     client.executeMethod(httpget);
- *     
- *

- * - * @author Oleg Kalnichevski - *

- *

- * DISCLAIMER: HttpClient developers DO NOT actively support this component. - * The component is provided as a reference material, which may be inappropriate - * for use without additional customization. - *

- */ - -public class EasySSLProtocolSocketFactory implements SecureProtocolSocketFactory { - - /** - * Log object for this class. - */ - private static final Log LOG = LogFactory.getLog(EasySSLProtocolSocketFactory.class); - public static final String[] SSL_PROTOCOLS = {"SSLv3", "TLSv1"}; - public static final String[] SSL_CYPHER_SUITES = {"TLS_ECDHE_ECDSA_WITH_AES_128_CBC_SHA", "TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA", "TLS_RSA_WITH_AES_128_CBC_SHA", "TLS_ECDH_ECDSA_WITH_AES_128_CBC_SHA", "TLS_ECDH_RSA_WITH_AES_128_CBC_SHA", "TLS_DHE_RSA_WITH_AES_128_CBC_SHA", "TLS_DHE_DSS_WITH_AES_128_CBC_SHA", "TLS_ECDHE_ECDSA_WITH_RC4_128_SHA", "TLS_ECDHE_RSA_WITH_RC4_128_SHA", "SSL_RSA_WITH_RC4_128_SHA", "TLS_ECDH_ECDSA_WITH_RC4_128_SHA", "TLS_ECDH_RSA_WITH_RC4_128_SHA", "TLS_ECDHE_ECDSA_WITH_3DES_EDE_CBC_SHA", "TLS_ECDHE_RSA_WITH_3DES_EDE_CBC_SHA", "SSL_RSA_WITH_3DES_EDE_CBC_SHA", "TLS_ECDH_ECDSA_WITH_3DES_EDE_CBC_SHA", "TLS_ECDH_RSA_WITH_3DES_EDE_CBC_SHA", "SSL_DHE_RSA_WITH_3DES_EDE_CBC_SHA", "SSL_DHE_DSS_WITH_3DES_EDE_CBC_SHA", "SSL_RSA_WITH_RC4_128_MD5", "TLS_EMPTY_RENEGOTIATION_INFO_SCSV"}; - - private SSLContext sslcontext = null; - - /** - * Constructor for EasySSLProtocolSocketFactory. - */ - public EasySSLProtocolSocketFactory() { - super(); - } - - private static SSLContext createEasySSLContext() { - try { - SSLContext context = SSLContext.getInstance("SSL"); - context.init( - null, - new TrustManager[]{new EasyX509TrustManager(null)}, - null); - return context; - } catch (Exception e) { - LOG.error(e.getMessage(), e); - throw new HttpClientError(e.toString()); - } - } - - private SSLContext getSSLContext() { - if (this.sslcontext == null) { - this.sslcontext = createEasySSLContext(); - } - return this.sslcontext; - } - - /** - * @see SecureProtocolSocketFactory#createSocket(java.lang.String, int, java.net.InetAddress, int) - */ - public Socket createSocket( - String host, - int port, - InetAddress clientHost, - int clientPort) - throws IOException, UnknownHostException { - - Socket socket = getSSLContext().getSocketFactory().createSocket( - host, - port, - clientHost, - clientPort - ); - return socket; - } - - /** - * Attempts to get a new socket connection to the given host within the given time limit. - *

- * To circumvent the limitations of older JREs that do not support connect timeout a - * controller thread is executed. The controller thread attempts to create a new socket - * within the given limit of time. If socket constructor does not return until the - * timeout expires, the controller terminates and throws an {@link ConnectTimeoutException} - *

- * - * @param host the host name/IP - * @param port the port on the host - * @param clientHost the local host name/IP to bind the socket to - * @param clientPort the port on the local machine - * @param params {@link HttpConnectionParams Http connection parameters} - * @return Socket a new socket - * @throws IOException if an I/O error occurs while creating the socket - * @throws UnknownHostException if the IP address of the host cannot be - * determined - */ - public Socket createSocket( - final String host, - final int port, - final InetAddress localAddress, - final int localPort, - final HttpConnectionParams params - ) throws IOException, UnknownHostException, ConnectTimeoutException { - if (params == null) { - throw new IllegalArgumentException("Parameters may not be null"); - } - int timeout = params.getConnectionTimeout(); - SocketFactory socketfactory = getSSLContext().getSocketFactory(); - Socket socket; - if (timeout == 0) { - socket = socketfactory.createSocket(host, port, localAddress, localPort); - } else { - socket = socketfactory.createSocket(); - SocketAddress localaddr = new InetSocketAddress(localAddress, localPort); - SocketAddress remoteaddr = new InetSocketAddress(host, port); - socket.bind(localaddr); - socket.connect(remoteaddr, timeout); - } - - SSLSocket sslSocket = (SSLSocket) socket; - sslSocket.setEnabledProtocols(SSL_PROTOCOLS); - sslSocket.setEnabledCipherSuites(SSL_CYPHER_SUITES); - - return socket; - } - - /** - * @see SecureProtocolSocketFactory#createSocket(java.lang.String, int) - */ - public Socket createSocket(String host, int port) - throws IOException, UnknownHostException { - return getSSLContext().getSocketFactory().createSocket( - host, - port - ); - } - - /** - * @see SecureProtocolSocketFactory#createSocket(java.net.Socket, java.lang.String, int, boolean) - */ - public Socket createSocket( - Socket socket, - String host, - int port, - boolean autoClose) - throws IOException, UnknownHostException { - return getSSLContext().getSocketFactory().createSocket( - socket, - host, - port, - autoClose - ); - } - - public boolean equals(Object obj) { - return ((obj != null) && obj.getClass().equals(EasySSLProtocolSocketFactory.class)); - } - - public int hashCode() { - return EasySSLProtocolSocketFactory.class.hashCode(); - } - -} diff --git a/app/src/processing/app/debug/EasyX509TrustManager.java b/app/src/processing/app/debug/EasyX509TrustManager.java deleted file mode 100644 index e4d57de4675..00000000000 --- a/app/src/processing/app/debug/EasyX509TrustManager.java +++ /dev/null @@ -1,114 +0,0 @@ -/* - * ==================================================================== - * - * Licensed to the Apache Software Foundation (ASF) under one or more - * contributor license agreements. See the NOTICE file distributed with - * this work for additional information regarding copyright ownership. - * The ASF licenses this file to You under the Apache License, Version 2.0 - * (the "License"); you may not use this file except in compliance with - * the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software - * distributed under the License is distributed on an "AS IS" BASIS, - * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. - * See the License for the specific language governing permissions and - * limitations under the License. - * ==================================================================== - * - * This software consists of voluntary contributions made by many - * individuals on behalf of the Apache Software Foundation. For more - * information on the Apache Software Foundation, please see - * . - * - */ - -package processing.app.debug; - -import java.security.KeyStore; -import java.security.KeyStoreException; -import java.security.NoSuchAlgorithmException; -import java.security.cert.CertificateException; -import java.security.cert.X509Certificate; - -import javax.net.ssl.TrustManagerFactory; -import javax.net.ssl.TrustManager; -import javax.net.ssl.X509TrustManager; -import org.apache.commons.logging.Log; -import org.apache.commons.logging.LogFactory; - -/** - *

- * EasyX509TrustManager unlike default {@link X509TrustManager} accepts - * self-signed certificates. - *

- *

- * This trust manager SHOULD NOT be used for productive systems - * due to security reasons, unless it is a concious decision and - * you are perfectly aware of security implications of accepting - * self-signed certificates - *

- * - * @author Adrian Sutton - * @author Oleg Kalnichevski - * - *

- * DISCLAIMER: HttpClient developers DO NOT actively support this component. - * The component is provided as a reference material, which may be inappropriate - * for use without additional customization. - *

- */ - -public class EasyX509TrustManager implements X509TrustManager -{ - private X509TrustManager standardTrustManager = null; - - /** Log object for this class. */ - private static final Log LOG = LogFactory.getLog(EasyX509TrustManager.class); - - /** - * Constructor for EasyX509TrustManager. - */ - public EasyX509TrustManager(KeyStore keystore) throws NoSuchAlgorithmException, KeyStoreException { - super(); - TrustManagerFactory factory = TrustManagerFactory.getInstance(TrustManagerFactory.getDefaultAlgorithm()); - factory.init(keystore); - TrustManager[] trustmanagers = factory.getTrustManagers(); - if (trustmanagers.length == 0) { - throw new NoSuchAlgorithmException("no trust manager found"); - } - this.standardTrustManager = (X509TrustManager)trustmanagers[0]; - } - - /** - * @see javax.net.ssl.X509TrustManager#checkClientTrusted(X509Certificate[],String authType) - */ - public void checkClientTrusted(X509Certificate[] certificates,String authType) throws CertificateException { - standardTrustManager.checkClientTrusted(certificates,authType); - } - - /** - * @see javax.net.ssl.X509TrustManager#checkServerTrusted(X509Certificate[],String authType) - */ - public void checkServerTrusted(X509Certificate[] certificates,String authType) throws CertificateException { - if ((certificates != null) && LOG.isDebugEnabled()) { - LOG.debug("Server certificate chain:"); - for (int i = 0; i < certificates.length; i++) { - LOG.debug("X509Certificate[" + i + "]=" + certificates[i]); - } - } - if ((certificates != null) && (certificates.length == 1)) { - certificates[0].checkValidity(); - } else { - standardTrustManager.checkServerTrusted(certificates,authType); - } - } - - /** - * @see javax.net.ssl.X509TrustManager#getAcceptedIssuers() - */ - public X509Certificate[] getAcceptedIssuers() { - return this.standardTrustManager.getAcceptedIssuers(); - } -} diff --git a/app/src/processing/app/debug/MessageStream.java b/app/src/processing/app/debug/MessageStream.java deleted file mode 100644 index 9ea7caeb900..00000000000 --- a/app/src/processing/app/debug/MessageStream.java +++ /dev/null @@ -1,62 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -package processing.app.debug; - -import java.io.*; - - -/** - * OutputStream to handle stdout/stderr messages. - *

- * This is used by Editor, System.err is set to - * new PrintStream(new MessageStream()). - * It's also used by Compiler. - */ -class MessageStream extends OutputStream { - - MessageConsumer messageConsumer; - - public MessageStream(MessageConsumer messageConsumer) { - this.messageConsumer = messageConsumer; - } - - public void close() { } - - public void flush() { } - - public void write(byte b[]) { - // this never seems to get called - System.out.println("leech1: " + new String(b)); - } - - public void write(byte b[], int offset, int length) { - //System.out.println("leech2: " + new String(b)); - this.messageConsumer.message(new String(b, offset, length)); - } - - public void write(int b) { - // this never seems to get called - System.out.println("leech3: '" + ((char)b) + "'"); - } -} diff --git a/app/src/processing/app/helpers/CircularBuffer.java b/app/src/processing/app/helpers/CircularBuffer.java index 6239822042d..8396c8fd2e1 100644 --- a/app/src/processing/app/helpers/CircularBuffer.java +++ b/app/src/processing/app/helpers/CircularBuffer.java @@ -3,77 +3,74 @@ import java.util.NoSuchElementException; public class CircularBuffer { - private double[] elements; + + private final double[] elements; private int start = -1; private int end = -1; - private int capacity; - + private final int capacity; + public void add(double num) { end = (end + 1) % capacity; elements[end] = num; - if(start == end || start == -1) { + if (start == end || start == -1) { start = (start + 1) % capacity; } } - + public double get(int index) { - if(index >= capacity) { + if (index >= capacity) { throw new IndexOutOfBoundsException(); } - if(index >= size()) { + if (index >= size()) { throw new IndexOutOfBoundsException(); } - + return elements[(start + index) % capacity]; } - + public boolean isEmpty() { return start == -1 && end == -1; } - - public void clear() { - start = end = -1; - } - + public CircularBuffer(int capacity) { this.capacity = capacity; elements = new double[capacity]; } - + public double min() { - if(size() == 0) { + if (size() == 0) { throw new NoSuchElementException(); } - + double out = get(0); - for(int i = 1; i < size(); ++i) { + for (int i = 1; i < size(); ++i) { out = Math.min(out, get(i)); } - + return out; } - + public double max() { - if(size() == 0) { + if (size() == 0) { throw new NoSuchElementException(); } - + double out = get(0); - for(int i = 1; i < size(); ++i) { + for (int i = 1; i < size(); ++i) { out = Math.max(out, get(i)); } - + return out; } - + public int size() { - if(end == -1) { + if (end == -1) { return 0; } - + return (end - start + capacity) % capacity + 1; } - + public int capacity() { return capacity; } diff --git a/app/src/processing/app/helpers/Ticks.java b/app/src/processing/app/helpers/Ticks.java index a4b32a2c310..e9e9e842a04 100644 --- a/app/src/processing/app/helpers/Ticks.java +++ b/app/src/processing/app/helpers/Ticks.java @@ -1,45 +1,50 @@ package processing.app.helpers; public class Ticks { + + private final int tickCount; + private final double[] ticks; private double tickMin; private double tickMax; private double tickStep; - private int tickCount; - - private double[] ticks; - - public Ticks(double min, double max, int tickCount) { + + public Ticks(double min, double max, int tickCount) { double range = max - min; - double exp = Math.floor(Math.log10(range / (tickCount - 1))); + double exp; + if (range == 0.0) { + exp = 0; + } else { + exp = Math.floor(Math.log10(range / (tickCount - 1))); + } double scale = Math.pow(10, exp); - + double rawTickStep = (range / (tickCount - 1)) / scale; - for(double potentialStep : new double[] {1.0, 1.5, 2.0, 2.5, 3.0, 4.0, 5.0, 6.0, 8.0, 10.0}) { - if(potentialStep < rawTickStep) { + for (double potentialStep : new double[]{1.0, 1.5, 2.0, 2.5, 3.0, 4.0, 5.0, 6.0, 8.0, 10.0}) { + if (potentialStep < rawTickStep) { continue; } - + tickStep = potentialStep * scale; tickMin = tickStep * Math.floor(min / tickStep); tickMax = tickMin + tickStep * (tickCount - 1); - if(tickMax >= max) { + if (tickMax >= max) { break; } } - - tickCount -= (int)Math.floor((tickMax - max) / tickStep); + + tickCount -= (int) Math.floor((tickMax - max) / tickStep); this.tickCount = tickCount; - + ticks = new double[tickCount]; - for(int i = 0; i < tickCount; ++i) { + for (int i = 0; i < tickCount; ++i) { ticks[i] = tickMin + i * tickStep; } } - + public double getTick(int i) { return ticks[i]; } - + public int getTickCount() { return tickCount; } diff --git a/app/src/processing/app/syntax/PdeKeywords.java b/app/src/processing/app/syntax/PdeKeywords.java index 2ed2e732518..176e5795e14 100644 --- a/app/src/processing/app/syntax/PdeKeywords.java +++ b/app/src/processing/app/syntax/PdeKeywords.java @@ -31,6 +31,7 @@ import processing.app.Base; import processing.app.BaseNoGui; import processing.app.legacy.PApplet; +import processing.app.debug.TargetPlatform; import java.io.BufferedReader; import java.io.File; @@ -84,6 +85,11 @@ public PdeKeywords() { public void reload() { try { parseKeywordsTxt(new File(BaseNoGui.getContentFile("lib"), "keywords.txt")); + TargetPlatform tp = BaseNoGui.getTargetPlatform(); + if (tp != null) { + File platformKeywords = new File(tp.getFolder(), "keywords.txt"); + if (platformKeywords.exists()) parseKeywordsTxt(platformKeywords); + } for (ContributedLibrary lib : Base.getLibraries()) { File keywords = new File(lib.getInstalledFolder(), "keywords.txt"); if (keywords.exists()) { diff --git a/app/src/processing/app/syntax/SketchTextArea.java b/app/src/processing/app/syntax/SketchTextArea.java index 457e17b877f..50d946a06a5 100644 --- a/app/src/processing/app/syntax/SketchTextArea.java +++ b/app/src/processing/app/syntax/SketchTextArea.java @@ -74,13 +74,18 @@ public class SketchTextArea extends RSyntaxTextArea { private EditorListener editorListener; - private final PdeKeywords pdeKeywords; + private PdeKeywords pdeKeywords; public SketchTextArea(PdeKeywords pdeKeywords) throws IOException { this.pdeKeywords = pdeKeywords; installFeatures(); } + public void setKeywords(PdeKeywords keywords) { + pdeKeywords = keywords; + setLinkGenerator(new DocLinkGenerator(pdeKeywords)); + } + private void installFeatures() throws IOException { setTheme(PreferencesData.get("editor.syntax_theme", "default")); @@ -101,6 +106,7 @@ private void setTheme(String name) throws IOException { IOUtils.closeQuietly(defaultXmlInputStream); } + setEOLMarkersVisible(processing.app.Theme.getBoolean("editor.eolmarkers")); setBackground(processing.app.Theme.getColor("editor.bgcolor")); setHighlightCurrentLine(processing.app.Theme.getBoolean("editor.linehighlight")); setCurrentLineHighlightColor(processing.app.Theme.getColor("editor.linehighlight.color")); @@ -127,9 +133,14 @@ private void setTheme(String name) throws IOException { setSyntaxTheme(TokenTypes.LITERAL_STRING_DOUBLE_QUOTE, "literal_string_double_quote"); setSyntaxTheme(TokenTypes.PREPROCESSOR, "preprocessor"); - Style style = getSyntaxScheme().getStyle(TokenTypes.IDENTIFIER); - style.foreground = processing.app.Theme.getColor("editor.fgcolor"); - getSyntaxScheme().setStyle(TokenTypes.IDENTIFIER, style); + setColorForToken(TokenTypes.IDENTIFIER, "editor.fgcolor"); + setColorForToken(TokenTypes.WHITESPACE, "editor.eolmarkers.color"); + } + + private void setColorForToken(int tokenType, String colorKeyFromTheme) { + Style style = getSyntaxScheme().getStyle(tokenType); + style.foreground = processing.app.Theme.getColor(colorKeyFromTheme); + getSyntaxScheme().setStyle(tokenType, style); } private void setSyntaxTheme(int tokenType, String id) { diff --git a/app/src/processing/app/syntax/SketchTextAreaDefaultInputMap.java b/app/src/processing/app/syntax/SketchTextAreaDefaultInputMap.java index 0b8690de616..f713e26d5ed 100644 --- a/app/src/processing/app/syntax/SketchTextAreaDefaultInputMap.java +++ b/app/src/processing/app/syntax/SketchTextAreaDefaultInputMap.java @@ -15,6 +15,7 @@ public class SketchTextAreaDefaultInputMap extends RSyntaxTextAreaDefaultInputMa public SketchTextAreaDefaultInputMap() { int defaultModifier = getDefaultModifier(); + int ctrl = InputEvent.CTRL_MASK; int alt = InputEvent.ALT_MASK; int shift = InputEvent.SHIFT_MASK; boolean isOSX = RTextArea.isOSX(); @@ -50,10 +51,13 @@ public SketchTextAreaDefaultInputMap() { put(KeyStroke.getKeyStroke(KeyEvent.VK_UP, defaultModifier | shift), DefaultEditorKit.selectionBeginAction); put(KeyStroke.getKeyStroke(KeyEvent.VK_DOWN, defaultModifier | shift), DefaultEditorKit.selectionEndAction); - if (PreferencesData.getBoolean("editor.keys.home_and_end_to_start_end_of_doc")) { + if (!PreferencesData.getBoolean("editor.keys.home_and_end_beginning_end_of_doc")) { put(KeyStroke.getKeyStroke(KeyEvent.VK_HOME, 0), DefaultEditorKit.beginLineAction); put(KeyStroke.getKeyStroke(KeyEvent.VK_END, 0), DefaultEditorKit.endLineAction); } + + put(KeyStroke.getKeyStroke(KeyEvent.VK_A, ctrl), DefaultEditorKit.beginLineAction); + put(KeyStroke.getKeyStroke(KeyEvent.VK_E, ctrl), DefaultEditorKit.endLineAction); } put(KeyStroke.getKeyStroke(KeyEvent.VK_DIVIDE, defaultModifier), RSyntaxTextAreaEditorKit.rstaToggleCommentAction); diff --git a/app/src/processing/app/syntax/SketchTextAreaEditorKit.java b/app/src/processing/app/syntax/SketchTextAreaEditorKit.java index b1c03e9600d..41379ae0b0a 100644 --- a/app/src/processing/app/syntax/SketchTextAreaEditorKit.java +++ b/app/src/processing/app/syntax/SketchTextAreaEditorKit.java @@ -1,5 +1,6 @@ package processing.app.syntax; +import org.fife.ui.rsyntaxtextarea.RSyntaxDocument; import org.fife.ui.rsyntaxtextarea.RSyntaxTextAreaEditorKit; import org.fife.ui.rtextarea.RTextArea; import org.fife.ui.rtextarea.RecordableTextAction; @@ -16,7 +17,8 @@ public class SketchTextAreaEditorKit extends RSyntaxTextAreaEditorKit { private static final Action[] defaultActions = { new DeleteNextWordAction(), new DeleteLineToCursorAction(), - new SelectWholeLineAction() + new SelectWholeLineAction(), + new ToggleCommentAction() }; @Override @@ -126,4 +128,103 @@ public final String getMacroID() { } + public static class ToggleCommentAction extends RecordableTextAction { + + public ToggleCommentAction() { + super(rstaToggleCommentAction); + } + + @Override + public void actionPerformedImpl(ActionEvent e, RTextArea textArea) { + + if (!textArea.isEditable() || !textArea.isEnabled()) { + UIManager.getLookAndFeel().provideErrorFeedback(textArea); + return; + } + + RSyntaxDocument doc = (RSyntaxDocument) textArea.getDocument(); + Element map = doc.getDefaultRootElement(); + Caret c = textArea.getCaret(); + int dot = c.getDot(); + int mark = c.getMark(); + int line1 = map.getElementIndex(dot); + int line2 = map.getElementIndex(mark); + int start = Math.min(line1, line2); + int end = Math.max(line1, line2); + + org.fife.ui.rsyntaxtextarea.Token t = doc.getTokenListForLine(start); + int languageIndex = t != null ? t.getLanguageIndex() : 0; + String[] startEnd = doc.getLineCommentStartAndEnd(languageIndex); + + if (startEnd == null) { + UIManager.getLookAndFeel().provideErrorFeedback(textArea); + return; + } + + // Don't toggle comment on last line if there is no + // text selected on it. + if (start != end) { + Element elem = map.getElement(end); + if (Math.max(dot, mark) == elem.getStartOffset()) { + end--; + } + } + + textArea.beginAtomicEdit(); + try { + boolean add = getDoAdd(doc, map, start, end, startEnd); + for (line1 = start; line1 <= end; line1++) { + Element elem = map.getElement(line1); + handleToggleComment(elem, doc, startEnd, add); + } + } catch (BadLocationException ble) { + ble.printStackTrace(); + UIManager.getLookAndFeel().provideErrorFeedback(textArea); + } finally { + textArea.endAtomicEdit(); + } + + } + + private boolean getDoAdd(Document doc, Element map, int startLine, int endLine, String[] startEnd) throws BadLocationException { + boolean doAdd = false; + for (int i = startLine; i <= endLine; i++) { + Element elem = map.getElement(i); + int start = elem.getStartOffset(); + String t = doc.getText(start, elem.getEndOffset() - start - 1).trim(); + if (!t.startsWith(startEnd[0]) || + (startEnd[1] != null && !t.endsWith(startEnd[1]))) { + doAdd = true; + break; + } + } + return doAdd; + } + + private void handleToggleComment(Element elem, Document doc, String[] startEnd, boolean add) throws BadLocationException { + int start = elem.getStartOffset(); + int end = elem.getEndOffset() - 1; + if (add) { + doc.insertString(start, startEnd[0], null); + if (startEnd[1] != null) { + doc.insertString(end + startEnd[0].length(), startEnd[1], null); + } + } else { + String text = doc.getText(start, elem.getEndOffset() - start - 1); + start += text.indexOf(startEnd[0]); + doc.remove(start, startEnd[0].length()); + if (startEnd[1] != null) { + int temp = startEnd[1].length(); + doc.remove(end - startEnd[0].length() - temp, temp); + } + } + } + + @Override + public final String getMacroID() { + return rstaToggleCommentAction; + } + + } + } diff --git a/app/src/processing/app/syntax/SketchTokenMaker.java b/app/src/processing/app/syntax/SketchTokenMaker.java index 14a1d936ff7..7ea7e998ced 100644 --- a/app/src/processing/app/syntax/SketchTokenMaker.java +++ b/app/src/processing/app/syntax/SketchTokenMaker.java @@ -30,8 +30,12 @@ package processing.app.syntax; +import org.fife.ui.rsyntaxtextarea.TokenTypes; import org.fife.ui.rsyntaxtextarea.modes.CPlusPlusTokenMaker; +import java.util.Arrays; +import java.util.List; + /** * Controls the syntax highlighting of {@link SketchTextArea} based on the {@link PdeKeywords} * @@ -41,6 +45,8 @@ */ public class SketchTokenMaker extends CPlusPlusTokenMaker { + private static final List COMMENT_TOKEN_TYPES = Arrays.asList(TokenTypes.COMMENT_DOCUMENTATION, TokenTypes.COMMENT_EOL, TokenTypes.COMMENT_KEYWORD, TokenTypes.COMMENT_MARKUP, TokenTypes.COMMENT_MULTILINE); + private final PdeKeywords pdeKeywords; public SketchTokenMaker(PdeKeywords pdeKeywords) { @@ -54,6 +60,11 @@ public void addToken(char[] array, int start, int end, int tokenType, int startO return; } + if (COMMENT_TOKEN_TYPES.contains(tokenType)) { + super.addToken(array, start, end, tokenType, startOffset, hyperlink); + return; + } + // This assumes all of your extra tokens would normally be scanned as IDENTIFIER. int newType = pdeKeywords.getTokenType(array, start, end); if (newType > -1) { diff --git a/app/src/processing/app/tools/DiscourseFormat.java b/app/src/processing/app/tools/DiscourseFormat.java index 75240cb6947..913df85ec9e 100644 --- a/app/src/processing/app/tools/DiscourseFormat.java +++ b/app/src/processing/app/tools/DiscourseFormat.java @@ -143,7 +143,7 @@ private void appendToHTML(char c, StringBuilder buffer) { } else if (c == '&') { buffer.append("&"); } else if (c > 127) { - buffer.append("&#" + ((int) c) + ";"); // use unicode entity + buffer.append("&#").append((int) c).append(";"); // use unicode entity } else { buffer.append(c); // normal character } diff --git a/app/src/processing/app/tools/Tool.java b/app/src/processing/app/tools/Tool.java index 7278452e003..c909c847fe2 100644 --- a/app/src/processing/app/tools/Tool.java +++ b/app/src/processing/app/tools/Tool.java @@ -31,14 +31,11 @@ */ public interface Tool extends Runnable { - public void init(Editor editor); - - public void run(); + void init(Editor editor); - // Not doing shortcuts for now, no way to resolve between tools. - // Also would need additional modifiers for shift and alt. - //public char getShortcutKey(); + void run(); + + String getMenuTitle(); - public String getMenuTitle(); } diff --git a/app/test/cc/arduino/i18n/ExternalProcessOutputParserTest.java b/app/test/cc/arduino/i18n/ExternalProcessOutputParserTest.java new file mode 100644 index 00000000000..5bd56ac7142 --- /dev/null +++ b/app/test/cc/arduino/i18n/ExternalProcessOutputParserTest.java @@ -0,0 +1,95 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino.i18n; + +import org.junit.Test; + +import java.util.Map; + +import static org.junit.Assert.assertEquals; + +public class ExternalProcessOutputParserTest { + + @Test + public void testParser1() throws Exception { + Map output = new ExternalProcessOutputParser().parse("===WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}' ||| [ Wire Uncategorized]"); + + assertEquals("WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'", output.get("msg")); + Object[] args = (Object[]) output.get("args"); + assertEquals(3, args.length); + assertEquals("", args[0]); + assertEquals("Wire", args[1]); + assertEquals("Uncategorized", args[2]); + } + + @Test + public void testParser2() throws Exception { + Map output = new ExternalProcessOutputParser().parse("===Using previously compiled file: {0} ||| [%2Ftmp%2Farduino-sketch-456612873D8321DA02916066CB8B2FE6%2Flibraries%2FBridge%2FBridge.cpp.o]"); + + assertEquals("Using previously compiled file: {0}", output.get("msg")); + Object[] args = (Object[]) output.get("args"); + assertEquals(1, args.length); + assertEquals("/tmp/arduino-sketch-456612873D8321DA02916066CB8B2FE6/libraries/Bridge/Bridge.cpp.o", args[0]); + } + + @Test + public void testParser3() throws Exception { + Map output = new ExternalProcessOutputParser().parse("===Using library {0} at version {1} in folder: {2} {3} {4} ||| [Stepper 1.1.1 %2Fhome%2Ffederico%2Fmateriale%2Fworks_Arduino%2FArduino%2Fbuild%2Flinux%2Fwork%2Flibraries%2FStepper ]"); + + assertEquals("Using library {0} at version {1} in folder: {2} {3} {4}", output.get("msg")); + Object[] args = (Object[]) output.get("args"); + assertEquals(5, args.length); + assertEquals("Stepper", args[0]); + assertEquals("1.1.1", args[1]); + assertEquals("/home/federico/materiale/works_Arduino/Arduino/build/linux/work/libraries/Stepper", args[2]); + assertEquals("", args[3]); + assertEquals("", args[4]); + } + + @Test + public void testParser4() throws Exception { + Map output = new ExternalProcessOutputParser().parse("==={0} ||| []"); + + assertEquals("{0}", output.get("msg")); + Object[] args = (Object[]) output.get("args"); + assertEquals(0, args.length); + } + + @Test + public void testParser5() throws Exception { + Map output = new ExternalProcessOutputParser().parse("==={0} ||| [ ]"); + + assertEquals("{0}", output.get("msg")); + Object[] args = (Object[]) output.get("args"); + assertEquals(1, args.length); + assertEquals("", args[0]); + } + +} diff --git a/app/test/processing/app/debug/CompilerTest.java b/app/test/cc/arduino/i18n/I18NTest.java old mode 100755 new mode 100644 similarity index 62% rename from app/test/processing/app/debug/CompilerTest.java rename to app/test/cc/arduino/i18n/I18NTest.java index 9662df24ace..1edbb5d134a --- a/app/test/processing/app/debug/CompilerTest.java +++ b/app/test/cc/arduino/i18n/I18NTest.java @@ -27,25 +27,30 @@ * the GNU General Public License. */ -package processing.app.debug; - -import static org.junit.Assert.assertEquals; -import static processing.app.debug.Compiler.unescapeDepFile; +package cc.arduino.i18n; import org.junit.Test; - import processing.app.AbstractWithPreferencesTest; +import processing.app.I18n; -public class CompilerTest extends AbstractWithPreferencesTest { +import java.util.Map; + +import static org.junit.Assert.assertEquals; + +public class I18NTest extends AbstractWithPreferencesTest { @Test - public void makeDepUnescapeTest() throws Exception { - assertEquals("C:\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp", - unescapeDepFile("C:\\Arduino\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp")); - assertEquals("C:\\Arduino 1.5.3\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp", - unescapeDepFile("C:\\Arduino\\ 1.5.3\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp")); - assertEquals("C:\\Ard$ui#\\\\ no 1.5.3\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp", - unescapeDepFile("C:\\Ard$$ui\\#\\\\\\\\\\ no 1.5.3\\hardware\\arduino\\avr\\cores\\arduino\\Stream.cpp")); + public void testMessageFormat() throws Exception { + Object[] args = new Object[]{"a", "b", "c"}; + String actual = I18n.format("WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'", args); + assertEquals("WARNING: Category 'a' in library b is not valid. Setting to 'c'", actual); } + @Test + public void testMessageFormatFromExternalProcess() throws Exception { + Map output = new ExternalProcessOutputParser().parse("===WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}' ||| [ Wire Uncategorized]"); + + String actual = I18n.format((String) output.get("msg"), (Object[])output.get("args")); + assertEquals("WARNING: Category '' in library Wire is not valid. Setting to 'Uncategorized'", actual); + } } diff --git a/app/test/processing/app/AbstractGUITest.java b/app/test/processing/app/AbstractGUITest.java index 75c9b864f35..d1db60d98aa 100644 --- a/app/test/processing/app/AbstractGUITest.java +++ b/app/test/processing/app/AbstractGUITest.java @@ -36,8 +36,10 @@ import org.junit.After; import org.junit.Before; import processing.app.helpers.ArduinoFrameFixture; +import processing.app.helpers.FileUtils; import javax.swing.*; +import java.util.Random; public abstract class AbstractGUITest { @@ -56,7 +58,7 @@ public void startUpTheIDE() throws Exception { JPopupMenu.setDefaultLightWeightPopupEnabled(false); Theme.init(); BaseNoGui.getPlatform().setLookAndFeel(); - Base.untitledFolder = BaseNoGui.createTempFolder("untitled"); + Base.untitledFolder = FileUtils.createTempFolder("untitled" + new Random().nextInt(Integer.MAX_VALUE), ".tmp"); DeleteFilesOnShutdown.add(Base.untitledFolder); window = GuiActionRunner.execute(new GuiQuery() { diff --git a/app/test/processing/app/AbstractWithPreferencesTest.java b/app/test/processing/app/AbstractWithPreferencesTest.java index e78eea58bb8..f0d2f3a2b07 100644 --- a/app/test/processing/app/AbstractWithPreferencesTest.java +++ b/app/test/processing/app/AbstractWithPreferencesTest.java @@ -31,6 +31,9 @@ import cc.arduino.files.DeleteFilesOnShutdown; import org.junit.Before; +import processing.app.helpers.FileUtils; + +import java.util.Random; public abstract class AbstractWithPreferencesTest { @@ -44,7 +47,7 @@ public void init() throws Exception { BaseNoGui.initPackages(); - Base.untitledFolder = BaseNoGui.createTempFolder("untitled"); + Base.untitledFolder = FileUtils.createTempFolder("untitled" + new Random().nextInt(Integer.MAX_VALUE), ".tmp"); DeleteFilesOnShutdown.add(Base.untitledFolder); } diff --git a/app/src/processing/app/debug/TargetPackageStub.java b/app/test/processing/app/debug/TargetPackageStub.java similarity index 100% rename from app/src/processing/app/debug/TargetPackageStub.java rename to app/test/processing/app/debug/TargetPackageStub.java diff --git a/app/test/processing/app/preproc/Baladuino.ino b/app/test/processing/app/preproc/Baladuino.ino deleted file mode 100644 index a208fafde04..00000000000 --- a/app/test/processing/app/preproc/Baladuino.ino +++ /dev/null @@ -1,303 +0,0 @@ -/* - * The code is released under the GNU General Public License. - * Developed by Kristian Lauszus, TKJ Electronics 2013 - * This is the algorithm for the Balanduino balancing robot. - * It can be controlled by either an Android app or a Processing application via Bluetooth. - * The Android app can be found at the following link: https://github.com/TKJElectronics/BalanduinoAndroidApp - * The Processing application can be found here: https://github.com/TKJElectronics/BalanduinoProcessingApp - * It can also be controlled by a PS3, Wii or a Xbox controller - * For details, see: http://balanduino.net/ - */ - -/* Use this to enable and disable the different options */ -#define ENABLE_TOOLS -#define ENABLE_SPP -#define ENABLE_PS3 -#define ENABLE_WII -#define ENABLE_XBOX -#define ENABLE_ADK - -#include "Balanduino.h" -#include // Official Arduino Wire library -#include // Some dongles can have a hub inside - -#ifdef ENABLE_ADK -#include -#endif - -// These are all open source libraries written by Kristian Lauszus, TKJ Electronics -// The USB libraries are located at the following link: https://github.com/felis/USB_Host_Shield_2.0 -#include // Kalman filter library - see: http://blog.tkjelectronics.dk/2012/09/a-practical-approach-to-kalman-filter-and-how-to-implement-it/ - -#ifdef ENABLE_XBOX -#include -#endif -#ifdef ENABLE_SPP -#include -#endif -#ifdef ENABLE_PS3 -#include -#endif -#ifdef ENABLE_WII -#include -#endif - -// Create the Kalman library instance -Kalman kalman; // See https://github.com/TKJElectronics/KalmanFilter for source code - -#if defined(ENABLE_SPP) || defined(ENABLE_PS3) || defined(ENABLE_WII) || defined(ENABLE_XBOX) || defined(ENABLE_ADK) -#define ENABLE_USB -USB Usb; // This will take care of all USB communication -#endif - -#ifdef ENABLE_ADK -// Implementation for the Android Open Accessory Protocol. Simply connect your phone to get redirected to the Play Store -ADK adk(&Usb, "TKJ Electronics", // Manufacturer Name - "Balanduino", // Model Name - "Android App for Balanduino", // Description - user visible string - "0.5.0", // Version of the Android app - "https://play.google.com/store/apps/details?id=com.tkjelectronics.balanduino", // URL - web page to visit if no installed apps support the accessory - "1234"); // Serial Number - this is not used -#endif - -#ifdef ENABLE_XBOX -XBOXRECV Xbox(&Usb); // You have to connect a Xbox wireless receiver to the Arduino to control it with a wireless Xbox controller -#endif - -#if defined(ENABLE_SPP) || defined(ENABLE_PS3) || defined(ENABLE_WII) -USBHub Hub(&Usb); // Some dongles have a hub inside -BTD Btd(&Usb); // This is the main Bluetooth library, it will take care of all the USB and HCI communication with the Bluetooth dongle -#endif - -#ifdef ENABLE_SPP -SPP SerialBT(&Btd, "Balanduino", "0000"); // The SPP (Serial Port Protocol) emulates a virtual Serial port, which is supported by most computers and mobile phones -#endif - -#ifdef ENABLE_PS3 -PS3BT PS3(&Btd); // The PS3 library supports all three official controllers: the Dualshock 3, Navigation and Move controller -#endif - -#ifdef ENABLE_WII -WII Wii(&Btd); // The Wii library can communicate with Wiimotes and the Nunchuck and Motion Plus extension and finally the Wii U Pro Controller -//WII Wii(&Btd,PAIR); // You will have to pair with your Wiimote first by creating the instance like this and the press 1+2 on the Wiimote -// or press sync if you are using a Wii U Pro Controller -// Or you can simply send "CW;" to the robot to start the pairing sequence -// This can also be done using the Android or Processing application -#endif - -void setup() { - /* Initialize UART */ - Serial.begin(115200); - - /* Read the PID values, target angle and other saved values in the EEPROM */ - if (!checkInitializationFlags()) - readEEPROMValues(); // Only read the EEPROM values if they have not been restored - - /* Setup encoders */ - pinMode(leftEncoder1, INPUT); - pinMode(leftEncoder2, INPUT); - pinMode(rightEncoder1, INPUT); - pinMode(rightEncoder2, INPUT); - attachInterrupt(0, leftEncoder, CHANGE); - attachInterrupt(1, rightEncoder, CHANGE); - - /* Enable the motor drivers */ - pinMode(leftEnable, OUTPUT); - pinMode(rightEnable, OUTPUT); - digitalWrite(leftEnable, HIGH); - digitalWrite(rightEnable, HIGH); - - /* Setup motor pins to output */ - sbi(pwmPortDirection, leftPWM); - sbi(leftPortDirection, leftA); - sbi(leftPortDirection, leftB); - sbi(pwmPortDirection, rightPWM); - sbi(rightPortDirection, rightA); - sbi(rightPortDirection, rightB); - - /* Set PWM frequency to 20kHz - see the datasheet http://www.atmel.com/Images/doc8272.pdf page 128-135 */ - // Set up PWM, Phase and Frequency Correct on pin 18 (OC1A) & pin 17 (OC1B) with ICR1 as TOP using Timer1 - TCCR1B = _BV(WGM13) | _BV(CS10); // Set PWM Phase and Frequency Correct with ICR1 as TOP and no prescaling - ICR1 = PWMVALUE; // ICR1 is the TOP value - this is set so the frequency is equal to 20kHz - - /* Enable PWM on pin 18 (OC1A) & pin 17 (OC1B) */ - // Clear OC1A/OC1B on compare match when up-counting - // Set OC1A/OC1B on compare match when downcounting - TCCR1A = _BV(COM1A1) | _BV(COM1B1); - setPWM(leftPWM, 0); // Turn off PWM on both pins - setPWM(rightPWM, 0); - - /* Setup buzzer pin */ - pinMode(buzzer, OUTPUT); - -#ifdef ENABLE_USB - if (Usb.Init() == -1) { // Check if USB Host is working - Serial.print(F("OSC did not start")); - digitalWrite(buzzer, HIGH); - while (1); // Halt - } -#endif - - /* Attach onInit function */ - // This is used to set the LEDs according to the voltage level and vibrate the controller to indicate the new connection -#ifdef ENABLE_PS3 - PS3.attachOnInit(onInit); -#endif -#ifdef ENABLE_WII - Wii.attachOnInit(onInit); -#endif -#ifdef ENABLE_XBOX - Xbox.attachOnInit(onInit); -#endif - - /* Setup IMU */ - Wire.begin(); - - while (i2cRead(0x75, i2cBuffer, 1)); - if (i2cBuffer[0] != 0x68) { // Read "WHO_AM_I" register - Serial.print(F("Error reading sensor")); - digitalWrite(buzzer, HIGH); - while (1); // Halt - } - - i2cBuffer[0] = 19; // Set the sample rate to 400Hz - 8kHz/(19+1) = 400Hz - i2cBuffer[1] = 0x00; // Disable FSYNC and set 260 Hz Acc filtering, 256 Hz Gyro filtering, 8 KHz sampling - i2cBuffer[2] = 0x00; // Set Gyro Full Scale Range to ±250deg/s - i2cBuffer[3] = 0x00; // Set Accelerometer Full Scale Range to ±2g - while (i2cWrite(0x19, i2cBuffer, 4, false)); // Write to all four registers at once - while (i2cWrite(0x6B, 0x09, true)); // PLL with X axis gyroscope reference, disable temperature sensor and disable sleep mode - - delay(100); // Wait for the sensor to get ready - - /* Set Kalman and gyro starting angle */ - while (i2cRead(0x3D, i2cBuffer, 4)); - accY = ((i2cBuffer[0] << 8) | i2cBuffer[1]); - accZ = ((i2cBuffer[2] << 8) | i2cBuffer[3]); - // atan2 outputs the value of -π to π (radians) - see http://en.wikipedia.org/wiki/Atan2 - // We then convert it to 0 to 2π and then from radians to degrees - accAngle = (atan2((double)accY - cfg.accYzero, (double)accZ - cfg.accZzero) + PI) * RAD_TO_DEG; - - kalman.setAngle(accAngle); // Set starting angle - pitch = accAngle; - gyroAngle = accAngle; - - /* Find gyro zero value */ - calibrateGyro(); - - pinMode(LED_BUILTIN, OUTPUT); // LED_BUILTIN is defined in pins_arduino.h in the hardware add-on - - /* Beep to indicate that it is now ready */ - digitalWrite(buzzer, HIGH); - delay(100); - digitalWrite(buzzer, LOW); - - /* Setup timing */ - kalmanTimer = micros(); - pidTimer = kalmanTimer; - encoderTimer = kalmanTimer; - imuTimer = millis(); - reportTimer = imuTimer; - ledTimer = imuTimer; - blinkTimer = imuTimer; -} - -void loop() { -#ifdef ENABLE_WII - if (Wii.wiimoteConnected) // We have to read much more often from the Wiimote to decrease latency - Usb.Task(); -#endif - - /* Calculate pitch */ - while (i2cRead(0x3D, i2cBuffer, 8)); - accY = ((i2cBuffer[0] << 8) | i2cBuffer[1]); - accZ = ((i2cBuffer[2] << 8) | i2cBuffer[3]); - gyroX = ((i2cBuffer[6] << 8) | i2cBuffer[7]); - - // atan2 outputs the value of -π to π (radians) - see http://en.wikipedia.org/wiki/Atan2 - // We then convert it to 0 to 2π and then from radians to degrees - accAngle = (atan2((double)accY - cfg.accYzero, (double)accZ - cfg.accZzero) + PI) * RAD_TO_DEG; - - uint32_t timer = micros(); - // This fixes the 0-360 transition problem when the accelerometer angle jumps between 0 and 360 degrees - if ((accAngle < 90 && pitch > 270) || (accAngle > 270 && pitch < 90)) { - kalman.setAngle(accAngle); - pitch = accAngle; - gyroAngle = accAngle; - } else { - gyroRate = ((double)gyroX - gyroXzero) / 131.0; // Convert to deg/s - double dt = (double)(timer - kalmanTimer) / 1000000.0; - gyroAngle += gyroRate * dt; // Gyro angle is only used for debugging - if (gyroAngle < 0 || gyroAngle > 360) - gyroAngle = pitch; // Reset the gyro angle when it has drifted too much - pitch = kalman.getAngle(accAngle, gyroRate, dt); // Calculate the angle using a Kalman filter - } - kalmanTimer = timer; - //Serial.print(accAngle);Serial.print('\t');Serial.print(gyroAngle);Serial.print('\t');Serial.println(pitch); - -#ifdef ENABLE_WII - if (Wii.wiimoteConnected) // We have to read much more often from the Wiimote to decrease latency - Usb.Task(); -#endif - - /* Drive motors */ - timer = micros(); - // If the robot is laying down, it has to be put in a vertical position before it starts balancing - // If it's already balancing it has to be ±45 degrees before it stops trying to balance - if ((layingDown && (pitch < cfg.targetAngle - 10 || pitch > cfg.targetAngle + 10)) || (!layingDown && (pitch < cfg.targetAngle - 45 || pitch > cfg.targetAngle + 45))) { - layingDown = true; // The robot is in a unsolvable position, so turn off both motors and wait until it's vertical again - stopAndReset(); - } else { - layingDown = false; // It's no longer laying down - updatePID(cfg.targetAngle, targetOffset, turningOffset, (double)(timer - pidTimer) / 1000000.0); - } - pidTimer = timer; - - /* Update encoders */ - timer = micros(); - if (timer - encoderTimer >= 100000) { // Update encoder values every 100ms - encoderTimer = timer; - int32_t wheelPosition = getWheelsPosition(); - wheelVelocity = wheelPosition - lastWheelPosition; - lastWheelPosition = wheelPosition; - //Serial.print(wheelPosition);Serial.print('\t');Serial.print(targetPosition);Serial.print('\t');Serial.println(wheelVelocity); - if (abs(wheelVelocity) <= 40 && !stopped) { // Set new targetPosition if braking - targetPosition = wheelPosition; - stopped = true; - } - - batteryCounter++; - if (batteryCounter > 10) { // Measure battery every 1s - batteryCounter = 0; - batteryVoltage = (double)analogRead(VBAT) / 63.050847458; // VBAT is connected to analog input 5 which is not broken out. This is then connected to a 47k-12k voltage divider - 1023.0/(3.3/(12.0/(12.0+47.0))) = 63.050847458 - if (batteryVoltage < 10.2 && batteryVoltage > 5) // Equal to 3.4V per cell - don't turn on if it's below 5V, this means that no battery is connected - digitalWrite(buzzer, HIGH); - else - digitalWrite(buzzer, LOW); - } - } - - /* Read the Bluetooth dongle and send PID and IMU values */ -#ifdef ENABLE_USB - readUsb(); -#endif -#ifdef ENABLE_TOOLS - checkSerialData(); -#endif -#if defined(ENABLE_TOOLS) || defined(ENABLE_SPP) - printValues(); -#endif - -#if defined(ENABLE_SPP) || defined(ENABLE_PS3) || defined(ENABLE_WII) - if (Btd.isReady()) { - timer = millis(); - if ((Btd.watingForConnection && timer - blinkTimer > 1000) || (!Btd.watingForConnection && timer - blinkTimer > 100)) { - blinkTimer = timer; - ledState = !ledState; - digitalWrite(LED_BUILTIN, ledState); // Used to blink the built in LED, starts blinking faster upon an incoming Bluetooth request - } - } else if (ledState) { // The LED is on - ledState = !ledState; - digitalWrite(LED_BUILTIN, ledState); // This will turn it off - } -#endif -} \ No newline at end of file diff --git a/app/test/processing/app/preproc/Baladuino.nocomments.ino b/app/test/processing/app/preproc/Baladuino.nocomments.ino deleted file mode 100644 index 81324031cf3..00000000000 --- a/app/test/processing/app/preproc/Baladuino.nocomments.ino +++ /dev/null @@ -1,304 +0,0 @@ - - - - - - - - - - - - -#define ENABLE_TOOLS -#define ENABLE_SPP -#define ENABLE_PS3 -#define ENABLE_WII -#define ENABLE_XBOX -#define ENABLE_ADK - -#include "Balanduino.h" -#include -#include - -#ifdef ENABLE_ADK -#include -#endif - - - -#include - -#ifdef ENABLE_XBOX -#include -#endif -#ifdef ENABLE_SPP -#include -#endif -#ifdef ENABLE_PS3 -#include -#endif -#ifdef ENABLE_WII -#include -#endif - - -Kalman kalman; - -#if defined(ENABLE_SPP) || defined(ENABLE_PS3) || defined(ENABLE_WII) || defined(ENABLE_XBOX) || defined(ENABLE_ADK) -#define ENABLE_USB -USB Usb; -#endif - -#ifdef ENABLE_ADK - -ADK adk(&Usb, "TKJ Electronics", - "Balanduino", - "Android App for Balanduino", - "0.5.0", - "https://play.google.com/store/apps/details?id=com.tkjelectronics.balanduino", - "1234"); -#endif - -#ifdef ENABLE_XBOX -XBOXRECV Xbox(&Usb); -#endif - -#if defined(ENABLE_SPP) || defined(ENABLE_PS3) || defined(ENABLE_WII) -USBHub Hub(&Usb); -BTD Btd(&Usb); -#endif - -#ifdef ENABLE_SPP -SPP SerialBT(&Btd, "Balanduino", "0000"); -#endif - -#ifdef ENABLE_PS3 -PS3BT PS3(&Btd); -#endif - -#ifdef ENABLE_WII -WII Wii(&Btd); - - - - -#endif - -void setup() { - - Serial.begin(115200); - - - if (!checkInitializationFlags()) - readEEPROMValues(); - - - pinMode(leftEncoder1, INPUT); - pinMode(leftEncoder2, INPUT); - pinMode(rightEncoder1, INPUT); - pinMode(rightEncoder2, INPUT); - attachInterrupt(0, leftEncoder, CHANGE); - attachInterrupt(1, rightEncoder, CHANGE); - - - pinMode(leftEnable, OUTPUT); - pinMode(rightEnable, OUTPUT); - digitalWrite(leftEnable, HIGH); - digitalWrite(rightEnable, HIGH); - - - sbi(pwmPortDirection, leftPWM); - sbi(leftPortDirection, leftA); - sbi(leftPortDirection, leftB); - sbi(pwmPortDirection, rightPWM); - sbi(rightPortDirection, rightA); - sbi(rightPortDirection, rightB); - - - - TCCR1B = _BV(WGM13) | _BV(CS10); - ICR1 = PWMVALUE; - - - - - TCCR1A = _BV(COM1A1) | _BV(COM1B1); - setPWM(leftPWM, 0); - setPWM(rightPWM, 0); - - - pinMode(buzzer, OUTPUT); - -#ifdef ENABLE_USB - if (Usb.Init() == -1) { - Serial.print(F("OSC did not start")); - digitalWrite(buzzer, HIGH); - while (1); - } -#endif - - - -#ifdef ENABLE_PS3 - PS3.attachOnInit(onInit); -#endif -#ifdef ENABLE_WII - Wii.attachOnInit(onInit); -#endif -#ifdef ENABLE_XBOX - Xbox.attachOnInit(onInit); -#endif - - - Wire.begin(); - - while (i2cRead(0x75, i2cBuffer, 1)); - if (i2cBuffer[0] != 0x68) { - Serial.print(F("Error reading sensor")); - digitalWrite(buzzer, HIGH); - while (1); - } - - i2cBuffer[0] = 19; - i2cBuffer[1] = 0x00; - i2cBuffer[2] = 0x00; - i2cBuffer[3] = 0x00; - while (i2cWrite(0x19, i2cBuffer, 4, false)); - while (i2cWrite(0x6B, 0x09, true)); - - delay(100); - - - while (i2cRead(0x3D, i2cBuffer, 4)); - accY = ((i2cBuffer[0] << 8) | i2cBuffer[1]); - accZ = ((i2cBuffer[2] << 8) | i2cBuffer[3]); - - - accAngle = (atan2((double)accY - cfg.accYzero, (double)accZ - cfg.accZzero) + PI) * RAD_TO_DEG; - - kalman.setAngle(accAngle); - pitch = accAngle; - gyroAngle = accAngle; - - - calibrateGyro(); - - pinMode(LED_BUILTIN, OUTPUT); - - - digitalWrite(buzzer, HIGH); - delay(100); - digitalWrite(buzzer, LOW); - - - kalmanTimer = micros(); - pidTimer = kalmanTimer; - encoderTimer = kalmanTimer; - imuTimer = millis(); - reportTimer = imuTimer; - ledTimer = imuTimer; - blinkTimer = imuTimer; -} - -void loop() { -#ifdef ENABLE_WII - if (Wii.wiimoteConnected) - Usb.Task(); -#endif - - - while (i2cRead(0x3D, i2cBuffer, 8)); - accY = ((i2cBuffer[0] << 8) | i2cBuffer[1]); - accZ = ((i2cBuffer[2] << 8) | i2cBuffer[3]); - gyroX = ((i2cBuffer[6] << 8) | i2cBuffer[7]); - - - - accAngle = (atan2((double)accY - cfg.accYzero, (double)accZ - cfg.accZzero) + PI) * RAD_TO_DEG; - - uint32_t timer = micros(); - - if ((accAngle < 90 && pitch > 270) || (accAngle > 270 && pitch < 90)) { - kalman.setAngle(accAngle); - pitch = accAngle; - gyroAngle = accAngle; - } else { - gyroRate = ((double)gyroX - gyroXzero) / 131.0; - double dt = (double)(timer - kalmanTimer) / 1000000.0; - gyroAngle += gyroRate * dt; - if (gyroAngle < 0 || gyroAngle > 360) - gyroAngle = pitch; - pitch = kalman.getAngle(accAngle, gyroRate, dt); - } - kalmanTimer = timer; - - -#ifdef ENABLE_WII - if (Wii.wiimoteConnected) - Usb.Task(); -#endif - - - timer = micros(); - - - if ((layingDown && (pitch < cfg.targetAngle - 10 || pitch > cfg.targetAngle + 10)) || (!layingDown && (pitch < cfg.targetAngle - 45 || pitch > cfg.targetAngle + 45))) { - layingDown = true; - stopAndReset(); - } else { - layingDown = false; - updatePID(cfg.targetAngle, targetOffset, turningOffset, (double)(timer - pidTimer) / 1000000.0); - } - pidTimer = timer; - - - timer = micros(); - if (timer - encoderTimer >= 100000) { - encoderTimer = timer; - int32_t wheelPosition = getWheelsPosition(); - wheelVelocity = wheelPosition - lastWheelPosition; - lastWheelPosition = wheelPosition; - - if (abs(wheelVelocity) <= 40 && !stopped) { - targetPosition = wheelPosition; - stopped = true; - } - - batteryCounter++; - if (batteryCounter > 10) { - batteryCounter = 0; - batteryVoltage = (double)analogRead(VBAT) / 63.050847458; - if (batteryVoltage < 10.2 && batteryVoltage > 5) - digitalWrite(buzzer, HIGH); - else - digitalWrite(buzzer, LOW); - } - } - - -#ifdef ENABLE_USB - readUsb(); -#endif -#ifdef ENABLE_TOOLS - checkSerialData(); -#endif -#if defined(ENABLE_TOOLS) || defined(ENABLE_SPP) - printValues(); -#endif - -#if defined(ENABLE_SPP) || defined(ENABLE_PS3) || defined(ENABLE_WII) - if (Btd.isReady()) { - timer = millis(); - if ((Btd.watingForConnection && timer - blinkTimer > 1000) || (!Btd.watingForConnection && timer - blinkTimer > 100)) { - blinkTimer = timer; - ledState = !ledState; - digitalWrite(LED_BUILTIN, ledState); - } - } else if (ledState) { - ledState = !ledState; - digitalWrite(LED_BUILTIN, ledState); - } -#endif -} - diff --git a/app/test/processing/app/preproc/Baladuino.stripped.ino b/app/test/processing/app/preproc/Baladuino.stripped.ino deleted file mode 100644 index 168eedd375c..00000000000 --- a/app/test/processing/app/preproc/Baladuino.stripped.ino +++ /dev/null @@ -1,303 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -Kalman kalman; - - - -USB Usb; - - - - -ADK adk(&Usb, , - , - , - , - , - ); - - - -XBOXRECV Xbox(&Usb); - - - -USBHub Hub(&Usb); -BTD Btd(&Usb); - - - -SPP SerialBT(&Btd, , ); - - - -PS3BT PS3(&Btd); - - - -WII Wii(&Btd); - - - - - - -void setup() { - - Serial.begin(115200); - - - if (!checkInitializationFlags()) - readEEPROMValues(); - - - pinMode(leftEncoder1, INPUT); - pinMode(leftEncoder2, INPUT); - pinMode(rightEncoder1, INPUT); - pinMode(rightEncoder2, INPUT); - attachInterrupt(0, leftEncoder, CHANGE); - attachInterrupt(1, rightEncoder, CHANGE); - - - pinMode(leftEnable, OUTPUT); - pinMode(rightEnable, OUTPUT); - digitalWrite(leftEnable, HIGH); - digitalWrite(rightEnable, HIGH); - - - sbi(pwmPortDirection, leftPWM); - sbi(leftPortDirection, leftA); - sbi(leftPortDirection, leftB); - sbi(pwmPortDirection, rightPWM); - sbi(rightPortDirection, rightA); - sbi(rightPortDirection, rightB); - - - - TCCR1B = _BV(WGM13) | _BV(CS10); - ICR1 = PWMVALUE; - - - - - TCCR1A = _BV(COM1A1) | _BV(COM1B1); - setPWM(leftPWM, 0); - setPWM(rightPWM, 0); - - - pinMode(buzzer, OUTPUT); - - - if (Usb.Init() == -1) { - Serial.print(F( )); - digitalWrite(buzzer, HIGH); - while (1); - } - - - - - - PS3.attachOnInit(onInit); - - - Wii.attachOnInit(onInit); - - - Xbox.attachOnInit(onInit); - - - - Wire.begin(); - - while (i2cRead(0x75, i2cBuffer, 1)); - if (i2cBuffer[0] != 0x68) { - Serial.print(F( )); - digitalWrite(buzzer, HIGH); - while (1); - } - - i2cBuffer[0] = 19; - i2cBuffer[1] = 0x00; - i2cBuffer[2] = 0x00; - i2cBuffer[3] = 0x00; - while (i2cWrite(0x19, i2cBuffer, 4, false)); - while (i2cWrite(0x6B, 0x09, true)); - - delay(100); - - - while (i2cRead(0x3D, i2cBuffer, 4)); - accY = ((i2cBuffer[0] << 8) | i2cBuffer[1]); - accZ = ((i2cBuffer[2] << 8) | i2cBuffer[3]); - - - accAngle = (atan2((double)accY - cfg.accYzero, (double)accZ - cfg.accZzero) + PI) * RAD_TO_DEG; - - kalman.setAngle(accAngle); - pitch = accAngle; - gyroAngle = accAngle; - - - calibrateGyro(); - - pinMode(LED_BUILTIN, OUTPUT); - - - digitalWrite(buzzer, HIGH); - delay(100); - digitalWrite(buzzer, LOW); - - - kalmanTimer = micros(); - pidTimer = kalmanTimer; - encoderTimer = kalmanTimer; - imuTimer = millis(); - reportTimer = imuTimer; - ledTimer = imuTimer; - blinkTimer = imuTimer; -} - -void loop() { - - if (Wii.wiimoteConnected) - Usb.Task(); - - - - while (i2cRead(0x3D, i2cBuffer, 8)); - accY = ((i2cBuffer[0] << 8) | i2cBuffer[1]); - accZ = ((i2cBuffer[2] << 8) | i2cBuffer[3]); - gyroX = ((i2cBuffer[6] << 8) | i2cBuffer[7]); - - - - accAngle = (atan2((double)accY - cfg.accYzero, (double)accZ - cfg.accZzero) + PI) * RAD_TO_DEG; - - uint32_t timer = micros(); - - if ((accAngle < 90 && pitch > 270) || (accAngle > 270 && pitch < 90)) { - kalman.setAngle(accAngle); - pitch = accAngle; - gyroAngle = accAngle; - } else { - gyroRate = ((double)gyroX - gyroXzero) / 131.0; - double dt = (double)(timer - kalmanTimer) / 1000000.0; - gyroAngle += gyroRate * dt; - if (gyroAngle < 0 || gyroAngle > 360) - gyroAngle = pitch; - pitch = kalman.getAngle(accAngle, gyroRate, dt); - } - kalmanTimer = timer; - - - - if (Wii.wiimoteConnected) - Usb.Task(); - - - - timer = micros(); - - - if ((layingDown && (pitch < cfg.targetAngle - 10 || pitch > cfg.targetAngle + 10)) || (!layingDown && (pitch < cfg.targetAngle - 45 || pitch > cfg.targetAngle + 45))) { - layingDown = true; - stopAndReset(); - } else { - layingDown = false; - updatePID(cfg.targetAngle, targetOffset, turningOffset, (double)(timer - pidTimer) / 1000000.0); - } - pidTimer = timer; - - - timer = micros(); - if (timer - encoderTimer >= 100000) { - encoderTimer = timer; - int32_t wheelPosition = getWheelsPosition(); - wheelVelocity = wheelPosition - lastWheelPosition; - lastWheelPosition = wheelPosition; - - if (abs(wheelVelocity) <= 40 && !stopped) { - targetPosition = wheelPosition; - stopped = true; - } - - batteryCounter++; - if (batteryCounter > 10) { - batteryCounter = 0; - batteryVoltage = (double)analogRead(VBAT) / 63.050847458; - if (batteryVoltage < 10.2 && batteryVoltage > 5) - digitalWrite(buzzer, HIGH); - else - digitalWrite(buzzer, LOW); - } - } - - - - readUsb(); - - - checkSerialData(); - - - printValues(); - - - - if (Btd.isReady()) { - timer = millis(); - if ((Btd.watingForConnection && timer - blinkTimer > 1000) || (!Btd.watingForConnection && timer - blinkTimer > 100)) { - blinkTimer = timer; - ledState = !ledState; - digitalWrite(LED_BUILTIN, ledState); - } - } else if (ledState) { - ledState = !ledState; - digitalWrite(LED_BUILTIN, ledState); - } - -} diff --git a/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.ino b/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.ino deleted file mode 100644 index 35c1d6eeb36..00000000000 --- a/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.ino +++ /dev/null @@ -1,338 +0,0 @@ -#include // required to send and receive AT commands from the GPRS Shield -#include // required for I2C communication with the RTC - -// pin numbers for RTC -#define DS3231_I2C_ADDRESS 104 // 0x68 // Address for RTC -#define DS3231_TIME_CAL_ADDR 0 // 0x00 -#define DS3231_ALARM1_ADDR 7 // 0x07 -#define DS3231_ALARM2_ADDR 11 // 0x0B -#define DS3231_CONTROL_ADDR 14 // 0x0E -#define DS3231_STATUS_ADDR 15 // 0x0F -//#define DS3231_AGING_OFFSET_ADDR 16 // 0x10 -#define DS3231_TEMPERATURE_ADDR 17 // 0x11 - -// Declarations for GPRS shield -SoftwareSerial GPRS( 7, 8 ); // A softwareSerial line is defined for the GPRS Shield -byte buffer[ 64 ]; // Buffer is used to transfer data from the GPRS line to the serial line -int count = 0, e = 0, count2 = 0, t = 0, q; -char temp, lastCaller[13] = "blank"; -boolean callIncoming = false, done; - -// Declarations for RTC -byte time[ 7 ]; // second, minute, hour, dow, day, month, year -byte time_A1[ 5 ]; // second_A1, minute_A1, hour_A1, day_A1, DY/DT -byte time_A2[ 4 ]; // minute_A2, hour_A2, day_A2, DY/DT -byte received[1]; // used to catch bytes sent from the clock -float temperature; // clock temperature is updated every 64 s - -// Declarations for RemoteCallLogger -char telescopeNames[6][4]; - -/* -Code Exclusively for GPRS shield: -*/ - -// -// Default set of instructions for GPRS Shield power control -// - -void setPowerStateTo( int newState ) -{ - if( newState != 1 && newState != 0 ) { // tests for an invalid state. In this case no change is made to powerstate - Serial.print( "Error: Invalid powerstate. Current powerstate = " ); - Serial.print( getPowerState() ); - Serial.print( "\n" ); - } - else { - if( newState == getPowerState() ) { // if the requested powerstate is already in effect, no action is taken - Serial.print( "Powerstate = " ); - Serial.print( newState ); - Serial.print( " remains unchanged.\n" ); - } - else { - powerUpOrDown(); // This is the only case where the powerstate is changed - Serial.print( "Powerstate changed from " ); - Serial.print( 1 - newState ); - Serial.print( " to " ); - Serial.print( newState ); - Serial.print( "\n" ); - } - } - delay( 5000 ); // for startup -} - -int getPowerState() // returns 0 if GPRS Shield is off, and 1 if GPRS Shield is on. This corresponds to the constant HIGH LOW enumeration -{ - int ret; - if ( digitalRead(18) == 0 && digitalRead(19) == 0 ) // tests pins 18 and 19 for activity. See ExFoundImportantPins sketch to find out why - ret = 1; - else - ret = 0; - - return ret; -} - -void powerUpOrDown() // toggle the power of the shield -{ - pinMode( 9, OUTPUT ); - digitalWrite( 9, LOW ); - delay( 1000 ); - digitalWrite( 9, HIGH ); - delay( 2000 ); - digitalWrite( 9, LOW ); - delay( 3000 ); -} - -// -// End of default power control -// - -void clearBufferArray() // gives each element in the buffer array a null value -{ - for( int i = 0; i < count; i++ ) - buffer[ i ] = NULL; -} - -void makeMissedCall( char num[] ) -{ - int i; - char in[ 18 ] = "ATD"; - for( i = 3; i <= 14; i++ ) // AT command string containing telephone number is prepared - in[ i ] = num[ i - 3] ; - in[ 15 ] = ';'; - in[ 16 ] = '\r'; - in[ 17 ] = '\0'; - GPRS.write( in ); // AT command requesting call is sent - delay( 10000 ); // enough time is given for GSM connection, and at least one ring. - GPRS.write( "ATH\r\0" ); // AT command requesting hangup is sent - delay( 1000 ); -} - -void sendTextMessage( char number[], char messg[] ) -{ - char temp[ 27 ] = "AT + CMGS = \""; - for( q = 0; q < 12; q++ ) // for-loop is used to prepare the AT command string containing the telephone number - temp[ q + 13 ] = number[ q ]; - temp[ 25 ] = '\"'; - temp[ 26 ] = '\0'; - - GPRS.println( "AT+CMGF=1\r" ); // AT command requesting SMS in text mode is sent - delay( 1000 ); - GPRS.println( temp ); // AT command containing telephone number is sent - delay( 1000 ); - GPRS.println( messg ); //the content of the message - delay( 1000 ); - GPRS.println( (char) 26 ); //the ASCII code of the ctrl+z is 26. This character indicates the end of the message. - delay( 1000 ); -} - -void analise(byte incoming[], int length) // this function receives and analyses all text sent from the GPRS Shield to the serial line. It stores the cell number of the last caller. -{ - e = 0; // Counter that represents a letter in the buffer - done = false; // Boolean that prevents unneccessary loop revolutions - while( e < length && !done){ // while e does not surpass the last letter index of the buffer... - temp = char( incoming[e] ); // store the character at index e in a temporary char - switch( temp ){ // inspect temp - case 'R': - { - if( length > e + 3 && !callIncoming ) { // This case responds to "RING" - if(char( incoming[e + 1] ) == 'I' - && char( incoming[e + 2] ) == 'N' - && char( incoming[e + 3] ) == 'G'){ - GPRS.write("AT+CLCC\r"); // call information is requested - delay(500); // time is given for processing - GPRS.write("ATH\r"); // GPRS shield hangs up - callIncoming = true; // this ensures that a number cannot be stored in any other case than a missed call - done = true; // prevents the further operation of this while loop - } - } - } - break; - case '+': - { - if(char( buffer[ e + 1]) == '2' && length > e + 11 && callIncoming){ // this case responds to "+2", but only if the buffer contains enough characters for a valid cell number - for(t = 0; t < 12; t++) // and only if the callIncoming boolean had been triggered by a previous instance of this function - lastCaller[t] = char( buffer[ e + t ]); // the number of this caller is stored in lastCaller - lastCaller[12] = '\0'; - callIncoming = false; // now we are ready for the next call - done = true; // prevents the further operation of this while loop - } - } - break; - case 'l': - Serial.println(lastCaller); // an easy way to test this function. Simply type "l" to see the value of lastCaller (default "blank") - break; - } - e++; // buffer index is incremented - } -} - -/* -End of GPRS Shield code -*/ - - -/* -Code exclusively for RTC -*/ - -byte decToBcd( byte b ) // converts a byte from a decimal format to a binary-coded decimal -{ - return ( b / 10 << 4 ) + b % 10; -} - -boolean getBit( byte addr, int pos ) // returns a single bit from a determined location in the RTC register -{ - byte temp = getByte( addr ); - return boolean( (temp >> pos) & B00000001 ); -} - -void setBit( byte addr, int pos, boolean newBit ) // ensures that a single bit from a determined location in the RTC register is a determined value -{ - boolean oldBit = getBit( addr, pos ); // bits' current state is retrieved - byte temp = received[ 0 ]; // complete byte is retrieved. it is still left in received from the previous command - if ( oldBit != newBit ) // change is only made if the bit isnt already the correct value - { - if( newBit ) // if newBit is 1, then old bit must be 0, thus we must add an amount - temp += (B00000001 << pos); // 2 to the power of the bit position is added to the byte - else - temp -= (B00000001 << pos); // 2 to the power of the bit position is subtracted from the byte - } - setByte( addr, temp ); // the register is updated with the new byte -} - -byte getByte( byte addr ) // returns a single byte from the given address in the RTC register -{ - byte temp; - if( getBytes( addr, 1) ) // If one byte was read from the address: - temp = received[ 0 ]; // get that byte - else temp = -1; // -1 is returned as an error - return temp; -} - -boolean getBytes( byte addr, int amount ) // updates the byte array "received" with the given amount of bytes, read from the given address -{ // ^ returns false if reading failed - boolean wireWorked = false; - Wire.beginTransmission( DS3231_I2C_ADDRESS ); // We transmit to the RTC - Wire.write( addr ); // We want to read from the given address - Wire.endTransmission(); // We want to receive, so we stop transmitting - Wire.requestFrom( DS3231_I2C_ADDRESS, amount ); // we request the given amount of bytes from the RTC - if( Wire.available() ){ - received[amount]; // prepare the array for the amount of incoming bytes - for( int i = 0; i < amount; i++){ - received[ i ] = Wire.read(); // we read the given amount of bytes - } - wireWorked = true; // everything went as planned - } - return wireWorked; -} - -void setByte( byte addr, byte newByte ) // writes a given byte to a given address in the RTCs register. convenient -{ - setBytes( addr, &newByte, 1); // call the setBytes function with the default amount = 1 -} - -void setBytes( byte addr, byte newBytes[], int amount ) // writes a given amount of bytes in a sequence starting from a given address -{ - Wire.beginTransmission( DS3231_I2C_ADDRESS ); // We transmit to the RTC - Wire.write( addr ); // We want to start writing from the given address - for( int i = 0; i < amount; i++ ) - Wire.write( newBytes[ i ] ); // we write each byte in sequence - Wire.endTransmission(); // we're done here -} - -void getTime() // reads the current time from the register and updates the byte array containing the current time -{ - if( getBytes( DS3231_TIME_CAL_ADDR, 7) ) // if 7 bytes were read in from the time address: - { - for(int i = 0; i < 7; i++) // place each byte in it's place - time[ i ] = received[ i ]; - // The following conversions convert the values from binary-coded decimal format to regular binary: - time[ 0 ] = ( ( time[ 0 ] & B01110000 ) >> 4 ) * 10 + ( time[ 0 ] & B00001111 ); // second - time[ 1 ] = ( ( time[ 1 ] & B01110000 ) >> 4 ) * 10 + ( time[ 1 ] & B00001111 ); // minute - time[ 2 ] = ( ( time[ 2 ] & B00110000 ) >> 4 ) * 10 + ( time[ 2 ] & B00001111 ); // hour - time[ 4 ] = ( ( time[ 4 ] & B00110000 ) >> 4 ) * 10 + ( time[ 4 ] & B00001111 ); // day of month - time[ 5 ] = ( ( time[ 5 ] & B00010000 ) >> 4 ) * 10 + ( time[ 5 ] & B00001111 ); // month - time[ 6 ] = ( ( time[ 6 ] & B11110000 ) >> 4 ) * 10 + ( time[ 6 ] & B00001111 ); // year - } -} - -void setTime( byte newTime[ 7 ] ) // sets the time in the RTC register to the given values -{ - for(int i = 0; i < 7; i++) - newTime[i] = decToBcd(newTime[i]); // the time consists of 7 bytes, each which must be converted to binary-coded decimal - setBytes( DS3231_TIME_CAL_ADDR, newTime, 7 ); // bytes are sent to be written -} - -void getRTCTemperature() // reads the temperature from the register and updates the global temperature float -{ - //temp registers (11h-12h) get updated automatically every 64s - if( getBytes( DS3231_TEMPERATURE_ADDR, 2 ) ) // if 2 bytes were read from the temperature addresss - { - temperature = ( received[ 0 ] & B01111111 ); // assign the integer part of the integer - temperature += ( ( received[ 1 ] >> 6 ) * 0.25 ); // assign the fractional part of the temperature - } -} - -void gprsListen() -{ - if( GPRS.available() ) { // If the GPRS Shield is transmitting data to the Stalker... - while( GPRS.available() ) { // While there is still data left... - buffer[ count++ ] = GPRS.read(); // get the next byte of data - if ( count == 64 ) // we only handle a maximum of 64 bytes of data at a time - break; - } - Serial.write( buffer, count ); // Send the data to the serial line - analise( buffer, count ); - clearBufferArray(); // clear the buffer - count = 0; // reset counter - } - if (Serial.available()) // if the Stalker is transmitting data.... - GPRS.write(Serial.read()); // send the data to the GPRS Shield. -} - -void printTime() // updates time, and prints it in a convenient format -{ - getTime(); - Serial.print( int( time[ 3 ] ) ); // dow - Serial.print( ' ' ); - Serial.print( int( time[ 2 ] ) ); // hour - Serial.print( ':' ); - Serial.print( int( time[ 1 ] ) ); // minute - Serial.print( ':' ); - Serial.print( int( time[ 0 ] ) ); // second - Serial.print( ' ' ); - Serial.print( int( time[ 4 ] ) ); // day - Serial.print( '/' ); - Serial.print( int( time[ 5 ] ) ); // month - Serial.print( "/20" ); - Serial.print( int( time[ 6 ] ) ); // year - Serial.println(); -} - -/* -End of RTC code -*/ - -void setup() -{ - // GPRS Shield startup code - GPRS.begin( 9600 ); - delay(1000); - setPowerStateTo(1); - delay(1000); - - // RTC Startup code - Wire.begin(); - delay(1000); - - Serial.begin(9600); - delay(1000); - -} - -void loop() -{ - gprsListen(); // GPRS Shield listener. Todo: replace w interrupt - getTime(); // Updates the time. Todo: replace w interrupt -} diff --git a/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.nocomments.ino b/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.nocomments.ino deleted file mode 100644 index 0b2af8b5f10..00000000000 --- a/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.nocomments.ino +++ /dev/null @@ -1,339 +0,0 @@ -#include -#include - - -#define DS3231_I2C_ADDRESS 104 -#define DS3231_TIME_CAL_ADDR 0 -#define DS3231_ALARM1_ADDR 7 -#define DS3231_ALARM2_ADDR 11 -#define DS3231_CONTROL_ADDR 14 -#define DS3231_STATUS_ADDR 15 - -#define DS3231_TEMPERATURE_ADDR 17 - - -SoftwareSerial GPRS( 7, 8 ); -byte buffer[ 64 ]; -int count = 0, e = 0, count2 = 0, t = 0, q; -char temp, lastCaller[13] = "blank"; -boolean callIncoming = false, done; - - -byte time[ 7 ]; -byte time_A1[ 5 ]; -byte time_A2[ 4 ]; -byte received[1]; -float temperature; - - -char telescopeNames[6][4]; - - - - - - - - - -void setPowerStateTo( int newState ) -{ - if( newState != 1 && newState != 0 ) { - Serial.print( "Error: Invalid powerstate. Current powerstate = " ); - Serial.print( getPowerState() ); - Serial.print( "\n" ); - } - else { - if( newState == getPowerState() ) { - Serial.print( "Powerstate = " ); - Serial.print( newState ); - Serial.print( " remains unchanged.\n" ); - } - else { - powerUpOrDown(); - Serial.print( "Powerstate changed from " ); - Serial.print( 1 - newState ); - Serial.print( " to " ); - Serial.print( newState ); - Serial.print( "\n" ); - } - } - delay( 5000 ); -} - -int getPowerState() -{ - int ret; - if ( digitalRead(18) == 0 && digitalRead(19) == 0 ) - ret = 1; - else - ret = 0; - - return ret; -} - -void powerUpOrDown() -{ - pinMode( 9, OUTPUT ); - digitalWrite( 9, LOW ); - delay( 1000 ); - digitalWrite( 9, HIGH ); - delay( 2000 ); - digitalWrite( 9, LOW ); - delay( 3000 ); -} - - - - - -void clearBufferArray() -{ - for( int i = 0; i < count; i++ ) - buffer[ i ] = NULL; -} - -void makeMissedCall( char num[] ) -{ - int i; - char in[ 18 ] = "ATD"; - for( i = 3; i <= 14; i++ ) - in[ i ] = num[ i - 3] ; - in[ 15 ] = ';'; - in[ 16 ] = '\r'; - in[ 17 ] = '\0'; - GPRS.write( in ); - delay( 10000 ); - GPRS.write( "ATH\r\0" ); - delay( 1000 ); -} - -void sendTextMessage( char number[], char messg[] ) -{ - char temp[ 27 ] = "AT + CMGS = \""; - for( q = 0; q < 12; q++ ) - temp[ q + 13 ] = number[ q ]; - temp[ 25 ] = '\"'; - temp[ 26 ] = '\0'; - - GPRS.println( "AT+CMGF=1\r" ); - delay( 1000 ); - GPRS.println( temp ); - delay( 1000 ); - GPRS.println( messg ); - delay( 1000 ); - GPRS.println( (char) 26 ); - delay( 1000 ); -} - -void analise(byte incoming[], int length) -{ - e = 0; - done = false; - while( e < length && !done){ - temp = char( incoming[e] ); - switch( temp ){ - case 'R': - { - if( length > e + 3 && !callIncoming ) { - if(char( incoming[e + 1] ) == 'I' - && char( incoming[e + 2] ) == 'N' - && char( incoming[e + 3] ) == 'G'){ - GPRS.write("AT+CLCC\r"); - delay(500); - GPRS.write("ATH\r"); - callIncoming = true; - done = true; - } - } - } - break; - case '+': - { - if(char( buffer[ e + 1]) == '2' && length > e + 11 && callIncoming){ - for(t = 0; t < 12; t++) - lastCaller[t] = char( buffer[ e + t ]); - lastCaller[12] = '\0'; - callIncoming = false; - done = true; - } - } - break; - case 'l': - Serial.println(lastCaller); - break; - } - e++; - } -} - - - - - - - - - - -byte decToBcd( byte b ) -{ - return ( b / 10 << 4 ) + b % 10; -} - -boolean getBit( byte addr, int pos ) -{ - byte temp = getByte( addr ); - return boolean( (temp >> pos) & B00000001 ); -} - -void setBit( byte addr, int pos, boolean newBit ) -{ - boolean oldBit = getBit( addr, pos ); - byte temp = received[ 0 ]; - if ( oldBit != newBit ) - { - if( newBit ) - temp += (B00000001 << pos); - else - temp -= (B00000001 << pos); - } - setByte( addr, temp ); -} - -byte getByte( byte addr ) -{ - byte temp; - if( getBytes( addr, 1) ) - temp = received[ 0 ]; - else temp = -1; - return temp; -} - -boolean getBytes( byte addr, int amount ) -{ - boolean wireWorked = false; - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - Wire.endTransmission(); - Wire.requestFrom( DS3231_I2C_ADDRESS, amount ); - if( Wire.available() ){ - received[amount]; - for( int i = 0; i < amount; i++){ - received[ i ] = Wire.read(); - } - wireWorked = true; - } - return wireWorked; -} - -void setByte( byte addr, byte newByte ) -{ - setBytes( addr, &newByte, 1); -} - -void setBytes( byte addr, byte newBytes[], int amount ) -{ - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - for( int i = 0; i < amount; i++ ) - Wire.write( newBytes[ i ] ); - Wire.endTransmission(); -} - -void getTime() -{ - if( getBytes( DS3231_TIME_CAL_ADDR, 7) ) - { - for(int i = 0; i < 7; i++) - time[ i ] = received[ i ]; - - time[ 0 ] = ( ( time[ 0 ] & B01110000 ) >> 4 ) * 10 + ( time[ 0 ] & B00001111 ); - time[ 1 ] = ( ( time[ 1 ] & B01110000 ) >> 4 ) * 10 + ( time[ 1 ] & B00001111 ); - time[ 2 ] = ( ( time[ 2 ] & B00110000 ) >> 4 ) * 10 + ( time[ 2 ] & B00001111 ); - time[ 4 ] = ( ( time[ 4 ] & B00110000 ) >> 4 ) * 10 + ( time[ 4 ] & B00001111 ); - time[ 5 ] = ( ( time[ 5 ] & B00010000 ) >> 4 ) * 10 + ( time[ 5 ] & B00001111 ); - time[ 6 ] = ( ( time[ 6 ] & B11110000 ) >> 4 ) * 10 + ( time[ 6 ] & B00001111 ); - } -} - -void setTime( byte newTime[ 7 ] ) -{ - for(int i = 0; i < 7; i++) - newTime[i] = decToBcd(newTime[i]); - setBytes( DS3231_TIME_CAL_ADDR, newTime, 7 ); -} - -void getRTCTemperature() -{ - - if( getBytes( DS3231_TEMPERATURE_ADDR, 2 ) ) - { - temperature = ( received[ 0 ] & B01111111 ); - temperature += ( ( received[ 1 ] >> 6 ) * 0.25 ); - } -} - -void gprsListen() -{ - if( GPRS.available() ) { - while( GPRS.available() ) { - buffer[ count++ ] = GPRS.read(); - if ( count == 64 ) - break; - } - Serial.write( buffer, count ); - analise( buffer, count ); - clearBufferArray(); - count = 0; - } - if (Serial.available()) - GPRS.write(Serial.read()); -} - -void printTime() -{ - getTime(); - Serial.print( int( time[ 3 ] ) ); - Serial.print( ' ' ); - Serial.print( int( time[ 2 ] ) ); - Serial.print( ':' ); - Serial.print( int( time[ 1 ] ) ); - Serial.print( ':' ); - Serial.print( int( time[ 0 ] ) ); - Serial.print( ' ' ); - Serial.print( int( time[ 4 ] ) ); - Serial.print( '/' ); - Serial.print( int( time[ 5 ] ) ); - Serial.print( "/20" ); - Serial.print( int( time[ 6 ] ) ); - Serial.println(); -} - - - - - -void setup() -{ - - GPRS.begin( 9600 ); - delay(1000); - setPowerStateTo(1); - delay(1000); - - - Wire.begin(); - delay(1000); - - Serial.begin(9600); - delay(1000); - -} - -void loop() -{ - gprsListen(); - getTime(); -} - diff --git a/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.stripped.ino b/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.stripped.ino deleted file mode 100644 index 1579c0907a2..00000000000 --- a/app/test/processing/app/preproc/CharWithEscapedDoubleQuote.stripped.ino +++ /dev/null @@ -1,338 +0,0 @@ - - - - - - - - - - - - - - -SoftwareSerial GPRS( 7, 8 ); -byte buffer[ 64 ]; -int count = 0, e = 0, count2 = 0, t = 0, q; -char temp, lastCaller[13] = ; -boolean callIncoming = false, done; - - -byte time[ 7 ]; -byte time_A1[ 5 ]; -byte time_A2[ 4 ]; -byte received[1]; -float temperature; - - -char telescopeNames[6][4]; - - - - - - - - - -void setPowerStateTo( int newState ) -{ - if( newState != 1 && newState != 0 ) { - Serial.print( ); - Serial.print( getPowerState() ); - Serial.print( ); - } - else { - if( newState == getPowerState() ) { - Serial.print( ); - Serial.print( newState ); - Serial.print( ); - } - else { - powerUpOrDown(); - Serial.print( ); - Serial.print( 1 - newState ); - Serial.print( ); - Serial.print( newState ); - Serial.print( ); - } - } - delay( 5000 ); -} - -int getPowerState() -{ - int ret; - if ( digitalRead(18) == 0 && digitalRead(19) == 0 ) - ret = 1; - else - ret = 0; - - return ret; -} - -void powerUpOrDown() -{ - pinMode( 9, OUTPUT ); - digitalWrite( 9, LOW ); - delay( 1000 ); - digitalWrite( 9, HIGH ); - delay( 2000 ); - digitalWrite( 9, LOW ); - delay( 3000 ); -} - - - - - -void clearBufferArray() -{ - for( int i = 0; i < count; i++ ) - buffer[ i ] = NULL; -} - -void makeMissedCall( char num[] ) -{ - int i; - char in[ 18 ] = ; - for( i = 3; i <= 14; i++ ) - in[ i ] = num[ i - 3] ; - in[ 15 ] = ; - in[ 16 ] = '\r'; - in[ 17 ] = '\0'; - GPRS.write( in ); - delay( 10000 ); - GPRS.write( ); - delay( 1000 ); -} - -void sendTextMessage( char number[], char messg[] ) -{ - char temp[ 27 ] = ; - for( q = 0; q < 12; q++ ) - temp[ q + 13 ] = number[ q ]; - temp[ 25 ] = ; - temp[ 26 ] = '\0'; - - GPRS.println( ); - delay( 1000 ); - GPRS.println( temp ); - delay( 1000 ); - GPRS.println( messg ); - delay( 1000 ); - GPRS.println( (char) 26 ); - delay( 1000 ); -} - -void analise(byte incoming[], int length) -{ - e = 0; - done = false; - while( e < length && !done){ - temp = char( incoming[e] ); - switch( temp ){ - case : - { - if( length > e + 3 && !callIncoming ) { - if(char( incoming[e + 1] ) == - && char( incoming[e + 2] ) == - && char( incoming[e + 3] ) == ){ - GPRS.write( ); - delay(500); - GPRS.write( ); - callIncoming = true; - done = true; - } - } - } - break; - case : - { - if(char( buffer[ e + 1]) == && length > e + 11 && callIncoming){ - for(t = 0; t < 12; t++) - lastCaller[t] = char( buffer[ e + t ]); - lastCaller[12] = '\0'; - callIncoming = false; - done = true; - } - } - break; - case : - Serial.println(lastCaller); - break; - } - e++; - } -} - - - - - - - - - - -byte decToBcd( byte b ) -{ - return ( b / 10 << 4 ) + b % 10; -} - -boolean getBit( byte addr, int pos ) -{ - byte temp = getByte( addr ); - return boolean( (temp >> pos) & B00000001 ); -} - -void setBit( byte addr, int pos, boolean newBit ) -{ - boolean oldBit = getBit( addr, pos ); - byte temp = received[ 0 ]; - if ( oldBit != newBit ) - { - if( newBit ) - temp += (B00000001 << pos); - else - temp -= (B00000001 << pos); - } - setByte( addr, temp ); -} - -byte getByte( byte addr ) -{ - byte temp; - if( getBytes( addr, 1) ) - temp = received[ 0 ]; - else temp = -1; - return temp; -} - -boolean getBytes( byte addr, int amount ) -{ - boolean wireWorked = false; - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - Wire.endTransmission(); - Wire.requestFrom( DS3231_I2C_ADDRESS, amount ); - if( Wire.available() ){ - received[amount]; - for( int i = 0; i < amount; i++){ - received[ i ] = Wire.read(); - } - wireWorked = true; - } - return wireWorked; -} - -void setByte( byte addr, byte newByte ) -{ - setBytes( addr, &newByte, 1); -} - -void setBytes( byte addr, byte newBytes[], int amount ) -{ - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - for( int i = 0; i < amount; i++ ) - Wire.write( newBytes[ i ] ); - Wire.endTransmission(); -} - -void getTime() -{ - if( getBytes( DS3231_TIME_CAL_ADDR, 7) ) - { - for(int i = 0; i < 7; i++) - time[ i ] = received[ i ]; - - time[ 0 ] = ( ( time[ 0 ] & B01110000 ) >> 4 ) * 10 + ( time[ 0 ] & B00001111 ); - time[ 1 ] = ( ( time[ 1 ] & B01110000 ) >> 4 ) * 10 + ( time[ 1 ] & B00001111 ); - time[ 2 ] = ( ( time[ 2 ] & B00110000 ) >> 4 ) * 10 + ( time[ 2 ] & B00001111 ); - time[ 4 ] = ( ( time[ 4 ] & B00110000 ) >> 4 ) * 10 + ( time[ 4 ] & B00001111 ); - time[ 5 ] = ( ( time[ 5 ] & B00010000 ) >> 4 ) * 10 + ( time[ 5 ] & B00001111 ); - time[ 6 ] = ( ( time[ 6 ] & B11110000 ) >> 4 ) * 10 + ( time[ 6 ] & B00001111 ); - } -} - -void setTime( byte newTime[ 7 ] ) -{ - for(int i = 0; i < 7; i++) - newTime[i] = decToBcd(newTime[i]); - setBytes( DS3231_TIME_CAL_ADDR, newTime, 7 ); -} - -void getRTCTemperature() -{ - - if( getBytes( DS3231_TEMPERATURE_ADDR, 2 ) ) - { - temperature = ( received[ 0 ] & B01111111 ); - temperature += ( ( received[ 1 ] >> 6 ) * 0.25 ); - } -} - -void gprsListen() -{ - if( GPRS.available() ) { - while( GPRS.available() ) { - buffer[ count++ ] = GPRS.read(); - if ( count == 64 ) - break; - } - Serial.write( buffer, count ); - analise( buffer, count ); - clearBufferArray(); - count = 0; - } - if (Serial.available()) - GPRS.write(Serial.read()); -} - -void printTime() -{ - getTime(); - Serial.print( int( time[ 3 ] ) ); - Serial.print( ); - Serial.print( int( time[ 2 ] ) ); - Serial.print( ); - Serial.print( int( time[ 1 ] ) ); - Serial.print( ); - Serial.print( int( time[ 0 ] ) ); - Serial.print( ); - Serial.print( int( time[ 4 ] ) ); - Serial.print( ); - Serial.print( int( time[ 5 ] ) ); - Serial.print( ); - Serial.print( int( time[ 6 ] ) ); - Serial.println(); -} - - - - - -void setup() -{ - - GPRS.begin( 9600 ); - delay(1000); - setPowerStateTo(1); - delay(1000); - - - Wire.begin(); - delay(1000); - - Serial.begin(9600); - delay(1000); - -} - -void loop() -{ - gprsListen(); - getTime(); -} diff --git a/app/test/processing/app/preproc/IncludeBetweenMultilineComment.ino b/app/test/processing/app/preproc/IncludeBetweenMultilineComment.ino deleted file mode 100644 index 1c22729a8e3..00000000000 --- a/app/test/processing/app/preproc/IncludeBetweenMultilineComment.ino +++ /dev/null @@ -1,15 +0,0 @@ -#include -/* -#include -*/ -CapacitiveSensorDue cs_13_8 = CapacitiveSensorDue(13,8); -void setup() -{ - Serial.begin(9600); -} -void loop() -{ - long total1 = cs_13_8.read(30); - Serial.println(total1); - delay(100); -} \ No newline at end of file diff --git a/app/test/processing/app/preproc/IncludeBetweenMultilineComment.nocomments.ino b/app/test/processing/app/preproc/IncludeBetweenMultilineComment.nocomments.ino deleted file mode 100644 index 9981e580624..00000000000 --- a/app/test/processing/app/preproc/IncludeBetweenMultilineComment.nocomments.ino +++ /dev/null @@ -1,16 +0,0 @@ -#include - - - -CapacitiveSensorDue cs_13_8 = CapacitiveSensorDue(13,8); -void setup() -{ - Serial.begin(9600); -} -void loop() -{ - long total1 = cs_13_8.read(30); - Serial.println(total1); - delay(100); -} - diff --git a/app/test/processing/app/preproc/IncludeBetweenMultilineComment.stripped.ino b/app/test/processing/app/preproc/IncludeBetweenMultilineComment.stripped.ino deleted file mode 100644 index aeb99c23509..00000000000 --- a/app/test/processing/app/preproc/IncludeBetweenMultilineComment.stripped.ino +++ /dev/null @@ -1,15 +0,0 @@ - - - - -CapacitiveSensorDue cs_13_8 = CapacitiveSensorDue(13,8); -void setup() -{ - Serial.begin(9600); -} -void loop() -{ - long total1 = cs_13_8.read(30); - Serial.println(total1); - delay(100); -} diff --git a/app/test/processing/app/preproc/LineContinuations.ino b/app/test/processing/app/preproc/LineContinuations.ino deleted file mode 100644 index 8611603e01c..00000000000 --- a/app/test/processing/app/preproc/LineContinuations.ino +++ /dev/null @@ -1,34 +0,0 @@ -const char *foo = "\ -hello \ -world\n"; - -//" delete this comment line and the IDE parser will crash - -void setup() -{ -} - -void loop() -{ -} -/* -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx -*/ diff --git a/app/test/processing/app/preproc/LineContinuations.nocomments.ino b/app/test/processing/app/preproc/LineContinuations.nocomments.ino deleted file mode 100644 index 1f220926adf..00000000000 --- a/app/test/processing/app/preproc/LineContinuations.nocomments.ino +++ /dev/null @@ -1,35 +0,0 @@ -const char *foo = "\ -hello \ -world\n"; - - - -void setup() -{ -} - -void loop() -{ -} - - - - - - - - - - - - - - - - - - - - - - diff --git a/app/test/processing/app/preproc/LineContinuations.stripped.ino b/app/test/processing/app/preproc/LineContinuations.stripped.ino deleted file mode 100644 index 62292875128..00000000000 --- a/app/test/processing/app/preproc/LineContinuations.stripped.ino +++ /dev/null @@ -1,34 +0,0 @@ -const char *foo = - - ; - - - -void setup() -{ -} - -void loop() -{ -} - - - - - - - - - - - - - - - - - - - - - diff --git a/app/test/processing/app/preproc/PdePreprocessorTest.java b/app/test/processing/app/preproc/PdePreprocessorTest.java deleted file mode 100644 index ef2f916c1ba..00000000000 --- a/app/test/processing/app/preproc/PdePreprocessorTest.java +++ /dev/null @@ -1,175 +0,0 @@ -/* - * This file is part of Arduino. - * - * Copyright 2015 Arduino LLC (http://www.arduino.cc/) - * - * Arduino is free software; you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation; either version 2 of the License, or - * (at your option) any later version. - * - * This program is distributed in the hope that it will be useful, - * but WITHOUT ANY WARRANTY; without even the implied warranty of - * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - * GNU General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with this program; if not, write to the Free Software - * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA - * - * As a special exception, you may use this file as part of a free software - * library without restriction. Specifically, if other files instantiate - * templates or use macros or inline functions from this file, or you compile - * this file and link it with other files to produce an executable, this - * file does not by itself cause the resulting executable to be covered by - * the GNU General Public License. This exception does not however - * invalidate any other reasons why the executable file might be covered by - * the GNU General Public License. - */ - -package processing.app.preproc; - -import org.junit.Test; -import processing.app.helpers.FileUtils; - -import java.io.File; - -import static org.junit.Assert.assertEquals; - -public class PdePreprocessorTest { - - @Test - public void testSourceWithQuoteAndDoubleQuotesEscapedAndFinalQuoteShouldNotRaiseException() throws Exception { - String s = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("RemoteCallLogger_v1e0.ino").getFile())); - - PdePreprocessor pdePreprocessor = new PdePreprocessor(); - String strippedOutput = pdePreprocessor.strip(s); - String expectedStrippedOutput = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("RemoteCallLogger_v1e0.stripped.ino").getFile())); - - assertEquals(expectedStrippedOutput, strippedOutput); - - pdePreprocessor.writePrefix(s); - - String actualCodeWithoutComments = pdePreprocessor.program; - String expectedCodeWithoutComments = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("RemoteCallLogger_v1e0.nocomments.ino").getFile())); - - assertEquals(expectedCodeWithoutComments, actualCodeWithoutComments); - - assertEquals(2, pdePreprocessor.getExtraImports().size()); - assertEquals("SoftwareSerial.h", pdePreprocessor.getExtraImports().get(0)); - assertEquals("Wire.h", pdePreprocessor.getExtraImports().get(1)); - } - - @Test - public void testIncludeInsideMultilineComment() throws Exception { - String s = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("IncludeBetweenMultilineComment.ino").getFile())); - - PdePreprocessor pdePreprocessor = new PdePreprocessor(); - String strippedOutput = pdePreprocessor.strip(s); - String expectedStrippedOutput = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("IncludeBetweenMultilineComment.stripped.ino").getFile())); - - assertEquals(expectedStrippedOutput, strippedOutput); - - pdePreprocessor.writePrefix(s); - - String actualCodeWithoutComments = pdePreprocessor.program; - String expectedCodeWithoutComments = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("IncludeBetweenMultilineComment.nocomments.ino").getFile())); - - assertEquals(expectedCodeWithoutComments, actualCodeWithoutComments); - - assertEquals(1, pdePreprocessor.getExtraImports().size()); - assertEquals("CapacitiveSensorDue.h", pdePreprocessor.getExtraImports().get(0)); - } - - @Test - public void testPdePreprocessorRegressionBaladuino() throws Exception { - String s = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("Baladuino.ino").getFile())); - - PdePreprocessor pdePreprocessor = new PdePreprocessor(); - String strippedOutput = pdePreprocessor.strip(s); - String expectedStrippedOutput = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("Baladuino.stripped.ino").getFile())); - - assertEquals(expectedStrippedOutput, strippedOutput); - - pdePreprocessor.writePrefix(s); - - String actualCodeWithoutComments = pdePreprocessor.program; - String expectedCodeWithoutComments = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("Baladuino.nocomments.ino").getFile())); - - assertEquals(expectedCodeWithoutComments, actualCodeWithoutComments); - - assertEquals(9, pdePreprocessor.getExtraImports().size()); - assertEquals("Balanduino.h", pdePreprocessor.getExtraImports().get(0)); - assertEquals("Wire.h", pdePreprocessor.getExtraImports().get(1)); - assertEquals("usbhub.h", pdePreprocessor.getExtraImports().get(2)); - assertEquals("adk.h", pdePreprocessor.getExtraImports().get(3)); - assertEquals("Kalman.h", pdePreprocessor.getExtraImports().get(4)); - assertEquals("XBOXRECV.h", pdePreprocessor.getExtraImports().get(5)); - assertEquals("SPP.h", pdePreprocessor.getExtraImports().get(6)); - assertEquals("PS3BT.h", pdePreprocessor.getExtraImports().get(7)); - assertEquals("Wii.h", pdePreprocessor.getExtraImports().get(8)); - } - - @Test - public void testStringWithCcomment() throws Exception { - String s = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("StringWithCcomment.ino").getFile())); - - PdePreprocessor pdePreprocessor = new PdePreprocessor(); - String strippedOutput = pdePreprocessor.strip(s); - String expectedStrippedOutput = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("StringWithCcomment.stripped.ino").getFile())); - - assertEquals(expectedStrippedOutput, strippedOutput); - - pdePreprocessor.writePrefix(s); - - String actualCodeWithoutComments = pdePreprocessor.program; - String expectedCodeWithoutComments = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("StringWithCcomment.nocomments.ino").getFile())); - - assertEquals(expectedCodeWithoutComments, actualCodeWithoutComments); - - assertEquals(0, pdePreprocessor.getExtraImports().size()); - } - - @Test - public void testCharWithEscapedDoubleQuote() throws Exception { - String s = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("CharWithEscapedDoubleQuote.ino").getFile())); - - PdePreprocessor pdePreprocessor = new PdePreprocessor(); - String strippedOutput = pdePreprocessor.strip(s); - String expectedStrippedOutput = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("CharWithEscapedDoubleQuote.stripped.ino").getFile())); - - assertEquals(expectedStrippedOutput, strippedOutput); - - pdePreprocessor.writePrefix(s); - - String actualCodeWithoutComments = pdePreprocessor.program; - String expectedCodeWithoutComments = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("CharWithEscapedDoubleQuote.nocomments.ino").getFile())); - - assertEquals(expectedCodeWithoutComments, actualCodeWithoutComments); - - assertEquals(2, pdePreprocessor.getExtraImports().size()); - assertEquals("SoftwareSerial.h", pdePreprocessor.getExtraImports().get(0)); - assertEquals("Wire.h", pdePreprocessor.getExtraImports().get(1)); - } - - @Test - public void testLineContinuations() throws Exception { - String s = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("LineContinuations.ino").getFile())); - - PdePreprocessor pdePreprocessor = new PdePreprocessor(); - String strippedOutput = pdePreprocessor.strip(s); - String expectedStrippedOutput = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("LineContinuations.stripped.ino").getFile())); - - assertEquals(expectedStrippedOutput, strippedOutput); - - pdePreprocessor.writePrefix(s); - - String actualCodeWithoutComments = pdePreprocessor.program; - String expectedCodeWithoutComments = FileUtils.readFileToString(new File(PdePreprocessorTest.class.getResource("LineContinuations.nocomments.ino").getFile())); - - assertEquals(expectedCodeWithoutComments, actualCodeWithoutComments); - - assertEquals(0, pdePreprocessor.getExtraImports().size()); - } - -} \ No newline at end of file diff --git a/app/test/processing/app/preproc/RemoteCallLogger_v1e0.ino b/app/test/processing/app/preproc/RemoteCallLogger_v1e0.ino deleted file mode 100644 index 36e6e6397ea..00000000000 --- a/app/test/processing/app/preproc/RemoteCallLogger_v1e0.ino +++ /dev/null @@ -1,343 +0,0 @@ - -#include // required to send and receive AT commands from the GPRS Shield -#include // required for I2C communication with the RTC - -// pin numbers for RTC -#define DS3231_I2C_ADDRESS 104 // 0x68 // Address for RTC -#define DS3231_TIME_CAL_ADDR 0 // 0x00 -#define DS3231_ALARM1_ADDR 7 // 0x07 -#define DS3231_ALARM2_ADDR 11 // 0x0B -#define DS3231_CONTROL_ADDR 14 // 0x0E -#define DS3231_STATUS_ADDR 15 // 0x0F -//#define DS3231_AGING_OFFSET_ADDR 16 // 0x10 -#define DS3231_TEMPERATURE_ADDR 17 // 0x11 - -// Declarations for GPRS shield -SoftwareSerial GPRS( 7, 8 ); // A softwareSerial line is defined for the GPRS Shield -byte buffer[ 64 ]; // Buffer is used to transfer data from the GPRS line to the serial line -int count = 0, e = 0, count2 = 0, t = 0, q; -char temp, lastCaller[13] = "blank"; -boolean callIncoming = false, done; - -// Declarations for RTC -byte time[ 7 ]; // second, minute, hour, dow, day, month, year -byte time_A1[ 5 ]; // second_A1, minute_A1, hour_A1, day_A1, DY/DT -byte time_A2[ 4 ]; // minute_A2, hour_A2, day_A2, DY/DT -byte received[1]; // used to catch bytes sent from the clock -float temperature; // clock temperature is updated every 64 s - -// Declarations for RemoteCallLogger -char telescopeNames[6][4]; - -/* -Code Exclusively for GPRS shield: -*/ - -// -// Default set of instructions for GPRS Shield power control -// - -void setPowerStateTo( int newState ) -{ - if( newState != 1 && newState != 0 ) { // tests for an invalid state. In this case no change is made to powerstate - Serial.print( "Error: Invalid powerstate. Current powerstate = " ); - Serial.print( getPowerState() ); - Serial.print( "\n" ); - } - else { - if( newState == getPowerState() ) { // if the requested powerstate is already in effect, no action is taken - Serial.print( "Powerstate = " ); - Serial.print( newState ); - Serial.print( " remains unchanged.\n" ); - } - else { - powerUpOrDown(); // This is the only case where the powerstate is changed - Serial.print( "Powerstate changed from " ); - Serial.print( 1 - newState ); - Serial.print( " to " ); - Serial.print( newState ); - Serial.print( "\n" ); - } - } - delay( 5000 ); // for startup -} - -int getPowerState() // returns 0 if GPRS Shield is off, and 1 if GPRS Shield is on. This corresponds to the constant HIGH LOW enumeration -{ - int ret; - if ( digitalRead(18) == 0 && digitalRead(19) == 0 ) // tests pins 18 and 19 for activity. See ExFoundImportantPins sketch to find out why - ret = 1; - else - ret = 0; - - return ret; -} - -void powerUpOrDown() // toggle the power of the shield -{ - pinMode( 9, OUTPUT ); - digitalWrite( 9, LOW ); - delay( 1000 ); - digitalWrite( 9, HIGH ); - delay( 2000 ); - digitalWrite( 9, LOW ); - delay( 3000 ); -} - -// -// End of default power control -// - -void clearBufferArray() // gives each element in the buffer array a null value -{ - for( int i = 0; i < count; i++ ) - buffer[ i ] = NULL; -} - -void makeMissedCall( char num[] ) -{ - int i; - char in[ 18 ] = "ATD"; - for( i = 3; i <= 14; i++ ) // AT command string containing telephone number is prepared - in[ i ] = num[ i - 3] ; - in[ 15 ] = ';'; - in[ 16 ] = '\r'; - in[ 17 ] = '\0'; - GPRS.write( in ); // AT command requesting call is sent - delay( 10000 ); // enough time is given for GSM connection, and at least one ring. - GPRS.write( "ATH\r\0" ); // AT command requesting hangup is sent - delay( 1000 ); -} - -void sendTextMessage( char number[], char messg[] ) -{ - char temp[ 27 ] = "AT + CMGS = \""; - for( q = 0; q < 12; q++ ) // for-loop is used to prepare the AT command string containing the telephone number - temp[ q + 13 ] = number[ q ]; - temp[ 25 ] = '\"'; - temp[ 26 ] = '\0'; - - GPRS.println( "AT+CMGF=1\r" ); // AT command requesting SMS in text mode is sent - delay( 1000 ); - GPRS.println( temp ); // AT command containing telephone number is sent - delay( 1000 ); - GPRS.println( messg ); //the content of the message - delay( 1000 ); - GPRS.println( (char) 26 ); //the ASCII code of the ctrl+z is 26. This character indicates the end of the message. - delay( 1000 ); -} - -void analise(byte incoming[], int length) // this function receives and analyses all text sent from the GPRS Shield to the serial line. It stores the cell number of the last caller. -{ - e = 0; // Counter that represents a letter in the buffer - done = false; // Boolean that prevents unneccessary loop revolutions - while( e < length && !done){ // while e does not surpass the last letter index of the buffer... - temp = char( incoming[e] ); // store the character at index e in a temporary char - switch( temp ){ // inspect temp - case 'R': - { - if( length > e + 3 && !callIncoming ) { // This case responds to "RING" - if(char( incoming[e + 1] ) == 'I' - && char( incoming[e + 2] ) == 'N' - && char( incoming[e + 3] ) == 'G'){ - GPRS.write("AT+CLCC\r"); // call information is requested - delay(500); // time is given for processing - GPRS.write("ATH\r"); // GPRS shield hangs up - callIncoming = true; // this ensures that a number cannot be stored in any other case than a missed call - done = true; // prevents the further operation of this while loop - } - } - } - break; - case '+': - { - if(char( buffer[ e + 1]) == '2' && length > e + 11 && callIncoming){ // this case responds to "+2", but only if the buffer contains enough characters for a valid cell number - for(t = 0; t < 12; t++) // and only if the callIncoming boolean had been triggered by a previous instance of this function - lastCaller[t] = char( buffer[ e + t ]); // the number of this caller is stored in lastCaller - lastCaller[12] = '\0'; - callIncoming = false; // now we are ready for the next call - done = true; // prevents the further operation of this while loop - } - } - break; - case 'l': - Serial.println(lastCaller); // an easy way to test this function. Simply type "l" to see the value of lastCaller (default "blank") - break; - } - e++; // buffer index is incremented - } -} - -/* -End of GPRS Shield code -*/ - - -/* -Code exclusively for RTC -*/ - -byte decToBcd( byte b ) // converts a byte from a decimal format to a binary-coded decimal -{ - return ( b / 10 << 4 ) + b % 10; -} - -boolean getBit( byte addr, int pos ) // returns a single bit from a determined location in the RTC register -{ - byte temp = getByte( addr ); - return boolean( (temp >> pos) & B00000001 ); -} - -void setBit( byte addr, int pos, boolean newBit ) // ensures that a single bit from a determined location in the RTC register is a determined value -{ - boolean oldBit = getBit( addr, pos ); // bits' current state is retrieved - byte temp = received[ 0 ]; // complete byte is retrieved. it is still left in received from the previous command - if ( oldBit != newBit ) // change is only made if the bit isnt already the correct value - { - if( newBit ) // if newBit is 1, then old bit must be 0, thus we must add an amount - temp += (B00000001 << pos); // 2 to the power of the bit position is added to the byte - else - temp -= (B00000001 << pos); // 2 to the power of the bit position is subtracted from the byte - } - setByte( addr, temp ); // the register is updated with the new byte -} - -byte getByte( byte addr ) // returns a single byte from the given address in the RTC register -{ - byte temp; - if( getBytes( addr, 1) ) // If one byte was read from the address: - temp = received[ 0 ]; // get that byte - else temp = -1; // -1 is returned as an error - return temp; -} - -boolean getBytes( byte addr, int amount ) // updates the byte array "received" with the given amount of bytes, read from the given address -{ // ^ returns false if reading failed - boolean wireWorked = false; - Wire.beginTransmission( DS3231_I2C_ADDRESS ); // We transmit to the RTC - Wire.write( addr ); // We want to read from the given address - Wire.endTransmission(); // We want to receive, so we stop transmitting - Wire.requestFrom( DS3231_I2C_ADDRESS, amount ); // we request the given amount of bytes from the RTC - if( Wire.available() ){ - received[amount]; // prepare the array for the amount of incoming bytes - for( int i = 0; i < amount; i++){ - received[ i ] = Wire.read(); // we read the given amount of bytes - } - wireWorked = true; // everything went as planned - } - return wireWorked; -} - -void setByte( byte addr, byte newByte ) // writes a given byte to a given address in the RTCs register. convenient -{ - setBytes( addr, &newByte, 1); // call the setBytes function with the default amount = 1 -} - -void setBytes( byte addr, byte newBytes[], int amount ) // writes a given amount of bytes in a sequence starting from a given address -{ - Wire.beginTransmission( DS3231_I2C_ADDRESS ); // We transmit to the RTC - Wire.write( addr ); // We want to start writing from the given address - for( int i = 0; i < amount; i++ ) - Wire.write( newBytes[ i ] ); // we write each byte in sequence - Wire.endTransmission(); // we're done here -} - -void getTime() // reads the current time from the register and updates the byte array containing the current time -{ - if( getBytes( DS3231_TIME_CAL_ADDR, 7) ) // if 7 bytes were read in from the time address: - { - for(int i = 0; i < 7; i++) // place each byte in it's place - time[ i ] = received[ i ]; - // The following conversions convert the values from binary-coded decimal format to regular binary: - time[ 0 ] = ( ( time[ 0 ] & B01110000 ) >> 4 ) * 10 + ( time[ 0 ] & B00001111 ); // second - time[ 1 ] = ( ( time[ 1 ] & B01110000 ) >> 4 ) * 10 + ( time[ 1 ] & B00001111 ); // minute - time[ 2 ] = ( ( time[ 2 ] & B00110000 ) >> 4 ) * 10 + ( time[ 2 ] & B00001111 ); // hour - time[ 4 ] = ( ( time[ 4 ] & B00110000 ) >> 4 ) * 10 + ( time[ 4 ] & B00001111 ); // day of month - time[ 5 ] = ( ( time[ 5 ] & B00010000 ) >> 4 ) * 10 + ( time[ 5 ] & B00001111 ); // month - time[ 6 ] = ( ( time[ 6 ] & B11110000 ) >> 4 ) * 10 + ( time[ 6 ] & B00001111 ); // year - } -} - -void setTime( byte newTime[ 7 ] ) // sets the time in the RTC register to the given values -{ - for(int i = 0; i < 7; i++) - newTime[i] = decToBcd(newTime[i]); // the time consists of 7 bytes, each which must be converted to binary-coded decimal - setBytes( DS3231_TIME_CAL_ADDR, newTime, 7 ); // bytes are sent to be written -} - -void getRTCTemperature() // reads the temperature from the register and updates the global temperature float -{ - //temp registers (11h-12h) get updated automatically every 64s - if( getBytes( DS3231_TEMPERATURE_ADDR, 2 ) ) // if 2 bytes were read from the temperature addresss - { - temperature = ( received[ 0 ] & B01111111 ); // assign the integer part of the integer - temperature += ( ( received[ 1 ] >> 6 ) * 0.25 ); // assign the fractional part of the temperature - } -} - -void gprsListen() -{ - if( GPRS.available() ) { // If the GPRS Shield is transmitting data to the Stalker... - while( GPRS.available() ) { // While there is still data left... - buffer[ count++ ] = GPRS.read(); // get the next byte of data - if ( count == 64 ) // we only handle a maximum of 64 bytes of data at a time - break; - } - Serial.write( buffer, count ); // Send the data to the serial line - analise( buffer, count ); - clearBufferArray(); // clear the buffer - count = 0; // reset counter - } - if (Serial.available()) // if the Stalker is transmitting data.... - GPRS.write(Serial.read()); // send the data to the GPRS Shield. -} - -void printTime() // updates time, and prints it in a convenient format -{ - getTime(); - Serial.print( int( time[ 3 ] ) ); // dow - Serial.print( ' ' ); - Serial.print( int( time[ 2 ] ) ); // hour - Serial.print( ':' ); - Serial.print( int( time[ 1 ] ) ); // minute - Serial.print( ':' ); - Serial.print( int( time[ 0 ] ) ); // second - Serial.print( ' ' ); - Serial.print( int( time[ 4 ] ) ); // day - Serial.print( '/' ); - Serial.print( int( time[ 5 ] ) ); // month - Serial.print( "/20" ); - Serial.print( int( time[ 6 ] ) ); // year - Serial.println(); -} - -/* -End of RTC code -*/ - -void setup() -{ - // GPRS Shield startup code - GPRS.begin( 9600 ); - delay(1000); - setPowerStateTo(1); - delay(1000); - - // RTC Startup code - Wire.begin(); - delay(1000); - - Serial.begin(9600); - delay(1000); - -} - -void loop() -{ - gprsListen(); // GPRS Shield listener. Todo: replace w interrupt - getTime(); // Updates the time. Todo: replace w interrupt -} - - - - diff --git a/app/test/processing/app/preproc/RemoteCallLogger_v1e0.nocomments.ino b/app/test/processing/app/preproc/RemoteCallLogger_v1e0.nocomments.ino deleted file mode 100644 index bbf15560eef..00000000000 --- a/app/test/processing/app/preproc/RemoteCallLogger_v1e0.nocomments.ino +++ /dev/null @@ -1,344 +0,0 @@ - -#include -#include - - -#define DS3231_I2C_ADDRESS 104 -#define DS3231_TIME_CAL_ADDR 0 -#define DS3231_ALARM1_ADDR 7 -#define DS3231_ALARM2_ADDR 11 -#define DS3231_CONTROL_ADDR 14 -#define DS3231_STATUS_ADDR 15 - -#define DS3231_TEMPERATURE_ADDR 17 - - -SoftwareSerial GPRS( 7, 8 ); -byte buffer[ 64 ]; -int count = 0, e = 0, count2 = 0, t = 0, q; -char temp, lastCaller[13] = "blank"; -boolean callIncoming = false, done; - - -byte time[ 7 ]; -byte time_A1[ 5 ]; -byte time_A2[ 4 ]; -byte received[1]; -float temperature; - - -char telescopeNames[6][4]; - - - - - - - - - -void setPowerStateTo( int newState ) -{ - if( newState != 1 && newState != 0 ) { - Serial.print( "Error: Invalid powerstate. Current powerstate = " ); - Serial.print( getPowerState() ); - Serial.print( "\n" ); - } - else { - if( newState == getPowerState() ) { - Serial.print( "Powerstate = " ); - Serial.print( newState ); - Serial.print( " remains unchanged.\n" ); - } - else { - powerUpOrDown(); - Serial.print( "Powerstate changed from " ); - Serial.print( 1 - newState ); - Serial.print( " to " ); - Serial.print( newState ); - Serial.print( "\n" ); - } - } - delay( 5000 ); -} - -int getPowerState() -{ - int ret; - if ( digitalRead(18) == 0 && digitalRead(19) == 0 ) - ret = 1; - else - ret = 0; - - return ret; -} - -void powerUpOrDown() -{ - pinMode( 9, OUTPUT ); - digitalWrite( 9, LOW ); - delay( 1000 ); - digitalWrite( 9, HIGH ); - delay( 2000 ); - digitalWrite( 9, LOW ); - delay( 3000 ); -} - - - - - -void clearBufferArray() -{ - for( int i = 0; i < count; i++ ) - buffer[ i ] = NULL; -} - -void makeMissedCall( char num[] ) -{ - int i; - char in[ 18 ] = "ATD"; - for( i = 3; i <= 14; i++ ) - in[ i ] = num[ i - 3] ; - in[ 15 ] = ';'; - in[ 16 ] = '\r'; - in[ 17 ] = '\0'; - GPRS.write( in ); - delay( 10000 ); - GPRS.write( "ATH\r\0" ); - delay( 1000 ); -} - -void sendTextMessage( char number[], char messg[] ) -{ - char temp[ 27 ] = "AT + CMGS = \""; - for( q = 0; q < 12; q++ ) - temp[ q + 13 ] = number[ q ]; - temp[ 25 ] = '\"'; - temp[ 26 ] = '\0'; - - GPRS.println( "AT+CMGF=1\r" ); - delay( 1000 ); - GPRS.println( temp ); - delay( 1000 ); - GPRS.println( messg ); - delay( 1000 ); - GPRS.println( (char) 26 ); - delay( 1000 ); -} - -void analise(byte incoming[], int length) -{ - e = 0; - done = false; - while( e < length && !done){ - temp = char( incoming[e] ); - switch( temp ){ - case 'R': - { - if( length > e + 3 && !callIncoming ) { - if(char( incoming[e + 1] ) == 'I' - && char( incoming[e + 2] ) == 'N' - && char( incoming[e + 3] ) == 'G'){ - GPRS.write("AT+CLCC\r"); - delay(500); - GPRS.write("ATH\r"); - callIncoming = true; - done = true; - } - } - } - break; - case '+': - { - if(char( buffer[ e + 1]) == '2' && length > e + 11 && callIncoming){ - for(t = 0; t < 12; t++) - lastCaller[t] = char( buffer[ e + t ]); - lastCaller[12] = '\0'; - callIncoming = false; - done = true; - } - } - break; - case 'l': - Serial.println(lastCaller); - break; - } - e++; - } -} - - - - - - - - - - -byte decToBcd( byte b ) -{ - return ( b / 10 << 4 ) + b % 10; -} - -boolean getBit( byte addr, int pos ) -{ - byte temp = getByte( addr ); - return boolean( (temp >> pos) & B00000001 ); -} - -void setBit( byte addr, int pos, boolean newBit ) -{ - boolean oldBit = getBit( addr, pos ); - byte temp = received[ 0 ]; - if ( oldBit != newBit ) - { - if( newBit ) - temp += (B00000001 << pos); - else - temp -= (B00000001 << pos); - } - setByte( addr, temp ); -} - -byte getByte( byte addr ) -{ - byte temp; - if( getBytes( addr, 1) ) - temp = received[ 0 ]; - else temp = -1; - return temp; -} - -boolean getBytes( byte addr, int amount ) -{ - boolean wireWorked = false; - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - Wire.endTransmission(); - Wire.requestFrom( DS3231_I2C_ADDRESS, amount ); - if( Wire.available() ){ - received[amount]; - for( int i = 0; i < amount; i++){ - received[ i ] = Wire.read(); - } - wireWorked = true; - } - return wireWorked; -} - -void setByte( byte addr, byte newByte ) -{ - setBytes( addr, &newByte, 1); -} - -void setBytes( byte addr, byte newBytes[], int amount ) -{ - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - for( int i = 0; i < amount; i++ ) - Wire.write( newBytes[ i ] ); - Wire.endTransmission(); -} - -void getTime() -{ - if( getBytes( DS3231_TIME_CAL_ADDR, 7) ) - { - for(int i = 0; i < 7; i++) - time[ i ] = received[ i ]; - - time[ 0 ] = ( ( time[ 0 ] & B01110000 ) >> 4 ) * 10 + ( time[ 0 ] & B00001111 ); - time[ 1 ] = ( ( time[ 1 ] & B01110000 ) >> 4 ) * 10 + ( time[ 1 ] & B00001111 ); - time[ 2 ] = ( ( time[ 2 ] & B00110000 ) >> 4 ) * 10 + ( time[ 2 ] & B00001111 ); - time[ 4 ] = ( ( time[ 4 ] & B00110000 ) >> 4 ) * 10 + ( time[ 4 ] & B00001111 ); - time[ 5 ] = ( ( time[ 5 ] & B00010000 ) >> 4 ) * 10 + ( time[ 5 ] & B00001111 ); - time[ 6 ] = ( ( time[ 6 ] & B11110000 ) >> 4 ) * 10 + ( time[ 6 ] & B00001111 ); - } -} - -void setTime( byte newTime[ 7 ] ) -{ - for(int i = 0; i < 7; i++) - newTime[i] = decToBcd(newTime[i]); - setBytes( DS3231_TIME_CAL_ADDR, newTime, 7 ); -} - -void getRTCTemperature() -{ - - if( getBytes( DS3231_TEMPERATURE_ADDR, 2 ) ) - { - temperature = ( received[ 0 ] & B01111111 ); - temperature += ( ( received[ 1 ] >> 6 ) * 0.25 ); - } -} - -void gprsListen() -{ - if( GPRS.available() ) { - while( GPRS.available() ) { - buffer[ count++ ] = GPRS.read(); - if ( count == 64 ) - break; - } - Serial.write( buffer, count ); - analise( buffer, count ); - clearBufferArray(); - count = 0; - } - if (Serial.available()) - GPRS.write(Serial.read()); -} - -void printTime() -{ - getTime(); - Serial.print( int( time[ 3 ] ) ); - Serial.print( ' ' ); - Serial.print( int( time[ 2 ] ) ); - Serial.print( ':' ); - Serial.print( int( time[ 1 ] ) ); - Serial.print( ':' ); - Serial.print( int( time[ 0 ] ) ); - Serial.print( ' ' ); - Serial.print( int( time[ 4 ] ) ); - Serial.print( '/' ); - Serial.print( int( time[ 5 ] ) ); - Serial.print( "/20" ); - Serial.print( int( time[ 6 ] ) ); - Serial.println(); -} - - - - - -void setup() -{ - - GPRS.begin( 9600 ); - delay(1000); - setPowerStateTo(1); - delay(1000); - - - Wire.begin(); - delay(1000); - - Serial.begin(9600); - delay(1000); - -} - -void loop() -{ - gprsListen(); - getTime(); -} - - - - - diff --git a/app/test/processing/app/preproc/RemoteCallLogger_v1e0.stripped.ino b/app/test/processing/app/preproc/RemoteCallLogger_v1e0.stripped.ino deleted file mode 100644 index 75b4393ff70..00000000000 --- a/app/test/processing/app/preproc/RemoteCallLogger_v1e0.stripped.ino +++ /dev/null @@ -1,343 +0,0 @@ - - - - - - - - - - - - - - - -SoftwareSerial GPRS( 7, 8 ); -byte buffer[ 64 ]; -int count = 0, e = 0, count2 = 0, t = 0, q; -char temp, lastCaller[13] = ; -boolean callIncoming = false, done; - - -byte time[ 7 ]; -byte time_A1[ 5 ]; -byte time_A2[ 4 ]; -byte received[1]; -float temperature; - - -char telescopeNames[6][4]; - - - - - - - - - -void setPowerStateTo( int newState ) -{ - if( newState != 1 && newState != 0 ) { - Serial.print( ); - Serial.print( getPowerState() ); - Serial.print( ); - } - else { - if( newState == getPowerState() ) { - Serial.print( ); - Serial.print( newState ); - Serial.print( ); - } - else { - powerUpOrDown(); - Serial.print( ); - Serial.print( 1 - newState ); - Serial.print( ); - Serial.print( newState ); - Serial.print( ); - } - } - delay( 5000 ); -} - -int getPowerState() -{ - int ret; - if ( digitalRead(18) == 0 && digitalRead(19) == 0 ) - ret = 1; - else - ret = 0; - - return ret; -} - -void powerUpOrDown() -{ - pinMode( 9, OUTPUT ); - digitalWrite( 9, LOW ); - delay( 1000 ); - digitalWrite( 9, HIGH ); - delay( 2000 ); - digitalWrite( 9, LOW ); - delay( 3000 ); -} - - - - - -void clearBufferArray() -{ - for( int i = 0; i < count; i++ ) - buffer[ i ] = NULL; -} - -void makeMissedCall( char num[] ) -{ - int i; - char in[ 18 ] = ; - for( i = 3; i <= 14; i++ ) - in[ i ] = num[ i - 3] ; - in[ 15 ] = ; - in[ 16 ] = '\r'; - in[ 17 ] = '\0'; - GPRS.write( in ); - delay( 10000 ); - GPRS.write( ); - delay( 1000 ); -} - -void sendTextMessage( char number[], char messg[] ) -{ - char temp[ 27 ] = ; - for( q = 0; q < 12; q++ ) - temp[ q + 13 ] = number[ q ]; - temp[ 25 ] = ; - temp[ 26 ] = '\0'; - - GPRS.println( ); - delay( 1000 ); - GPRS.println( temp ); - delay( 1000 ); - GPRS.println( messg ); - delay( 1000 ); - GPRS.println( (char) 26 ); - delay( 1000 ); -} - -void analise(byte incoming[], int length) -{ - e = 0; - done = false; - while( e < length && !done){ - temp = char( incoming[e] ); - switch( temp ){ - case : - { - if( length > e + 3 && !callIncoming ) { - if(char( incoming[e + 1] ) == - && char( incoming[e + 2] ) == - && char( incoming[e + 3] ) == ){ - GPRS.write( ); - delay(500); - GPRS.write( ); - callIncoming = true; - done = true; - } - } - } - break; - case : - { - if(char( buffer[ e + 1]) == && length > e + 11 && callIncoming){ - for(t = 0; t < 12; t++) - lastCaller[t] = char( buffer[ e + t ]); - lastCaller[12] = '\0'; - callIncoming = false; - done = true; - } - } - break; - case : - Serial.println(lastCaller); - break; - } - e++; - } -} - - - - - - - - - - -byte decToBcd( byte b ) -{ - return ( b / 10 << 4 ) + b % 10; -} - -boolean getBit( byte addr, int pos ) -{ - byte temp = getByte( addr ); - return boolean( (temp >> pos) & B00000001 ); -} - -void setBit( byte addr, int pos, boolean newBit ) -{ - boolean oldBit = getBit( addr, pos ); - byte temp = received[ 0 ]; - if ( oldBit != newBit ) - { - if( newBit ) - temp += (B00000001 << pos); - else - temp -= (B00000001 << pos); - } - setByte( addr, temp ); -} - -byte getByte( byte addr ) -{ - byte temp; - if( getBytes( addr, 1) ) - temp = received[ 0 ]; - else temp = -1; - return temp; -} - -boolean getBytes( byte addr, int amount ) -{ - boolean wireWorked = false; - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - Wire.endTransmission(); - Wire.requestFrom( DS3231_I2C_ADDRESS, amount ); - if( Wire.available() ){ - received[amount]; - for( int i = 0; i < amount; i++){ - received[ i ] = Wire.read(); - } - wireWorked = true; - } - return wireWorked; -} - -void setByte( byte addr, byte newByte ) -{ - setBytes( addr, &newByte, 1); -} - -void setBytes( byte addr, byte newBytes[], int amount ) -{ - Wire.beginTransmission( DS3231_I2C_ADDRESS ); - Wire.write( addr ); - for( int i = 0; i < amount; i++ ) - Wire.write( newBytes[ i ] ); - Wire.endTransmission(); -} - -void getTime() -{ - if( getBytes( DS3231_TIME_CAL_ADDR, 7) ) - { - for(int i = 0; i < 7; i++) - time[ i ] = received[ i ]; - - time[ 0 ] = ( ( time[ 0 ] & B01110000 ) >> 4 ) * 10 + ( time[ 0 ] & B00001111 ); - time[ 1 ] = ( ( time[ 1 ] & B01110000 ) >> 4 ) * 10 + ( time[ 1 ] & B00001111 ); - time[ 2 ] = ( ( time[ 2 ] & B00110000 ) >> 4 ) * 10 + ( time[ 2 ] & B00001111 ); - time[ 4 ] = ( ( time[ 4 ] & B00110000 ) >> 4 ) * 10 + ( time[ 4 ] & B00001111 ); - time[ 5 ] = ( ( time[ 5 ] & B00010000 ) >> 4 ) * 10 + ( time[ 5 ] & B00001111 ); - time[ 6 ] = ( ( time[ 6 ] & B11110000 ) >> 4 ) * 10 + ( time[ 6 ] & B00001111 ); - } -} - -void setTime( byte newTime[ 7 ] ) -{ - for(int i = 0; i < 7; i++) - newTime[i] = decToBcd(newTime[i]); - setBytes( DS3231_TIME_CAL_ADDR, newTime, 7 ); -} - -void getRTCTemperature() -{ - - if( getBytes( DS3231_TEMPERATURE_ADDR, 2 ) ) - { - temperature = ( received[ 0 ] & B01111111 ); - temperature += ( ( received[ 1 ] >> 6 ) * 0.25 ); - } -} - -void gprsListen() -{ - if( GPRS.available() ) { - while( GPRS.available() ) { - buffer[ count++ ] = GPRS.read(); - if ( count == 64 ) - break; - } - Serial.write( buffer, count ); - analise( buffer, count ); - clearBufferArray(); - count = 0; - } - if (Serial.available()) - GPRS.write(Serial.read()); -} - -void printTime() -{ - getTime(); - Serial.print( int( time[ 3 ] ) ); - Serial.print( ); - Serial.print( int( time[ 2 ] ) ); - Serial.print( ); - Serial.print( int( time[ 1 ] ) ); - Serial.print( ); - Serial.print( int( time[ 0 ] ) ); - Serial.print( ); - Serial.print( int( time[ 4 ] ) ); - Serial.print( ); - Serial.print( int( time[ 5 ] ) ); - Serial.print( ); - Serial.print( int( time[ 6 ] ) ); - Serial.println(); -} - - - - - -void setup() -{ - - GPRS.begin( 9600 ); - delay(1000); - setPowerStateTo(1); - delay(1000); - - - Wire.begin(); - delay(1000); - - Serial.begin(9600); - delay(1000); - -} - -void loop() -{ - gprsListen(); - getTime(); -} - - - - diff --git a/app/test/processing/app/preproc/StringWithCcomment.ino b/app/test/processing/app/preproc/StringWithCcomment.ino deleted file mode 100644 index 88b94e1d015..00000000000 --- a/app/test/processing/app/preproc/StringWithCcomment.ino +++ /dev/null @@ -1,13 +0,0 @@ -void setup() { - // put your setup code here, to run once: - // "comment with a double quote - /* \" other comment with double quote */ - Serial.println("Accept: */*"); - Serial.println("Accept: \" */*"); - Serial.println("Accept: \\"); // */*"); -} - -void loop() { - // put your main code here, to run repeatedly: - -} \ No newline at end of file diff --git a/app/test/processing/app/preproc/StringWithCcomment.nocomments.ino b/app/test/processing/app/preproc/StringWithCcomment.nocomments.ino deleted file mode 100644 index 9655c4ad4c8..00000000000 --- a/app/test/processing/app/preproc/StringWithCcomment.nocomments.ino +++ /dev/null @@ -1,14 +0,0 @@ -void setup() { - - - - Serial.println("Accept: */*"); - Serial.println("Accept: \" */*"); - Serial.println("Accept: \\"); // */*"); -} - -void loop() { - - -} - diff --git a/app/test/processing/app/preproc/StringWithCcomment.stripped.ino b/app/test/processing/app/preproc/StringWithCcomment.stripped.ino deleted file mode 100644 index e5fe155835a..00000000000 --- a/app/test/processing/app/preproc/StringWithCcomment.stripped.ino +++ /dev/null @@ -1,13 +0,0 @@ -void setup() { - - - - Serial.println( ); - Serial.println( ); - Serial.println( ); -} - -void loop() { - - -} diff --git a/arduino-builder/.classpath b/arduino-builder/.classpath deleted file mode 100644 index 3e1f72898d0..00000000000 --- a/arduino-builder/.classpath +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - diff --git a/arduino-builder/.project b/arduino-builder/.project deleted file mode 100644 index 1e4da7c5f2b..00000000000 --- a/arduino-builder/.project +++ /dev/null @@ -1,17 +0,0 @@ - - - arduino-builder - - - - - - org.eclipse.jdt.core.javabuilder - - - - - - org.eclipse.jdt.core.javanature - - diff --git a/arduino-builder/.settings/org.eclipse.jdt.core.prefs b/arduino-builder/.settings/org.eclipse.jdt.core.prefs deleted file mode 100644 index 8000cd6ca61..00000000000 --- a/arduino-builder/.settings/org.eclipse.jdt.core.prefs +++ /dev/null @@ -1,11 +0,0 @@ -eclipse.preferences.version=1 -org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled -org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.6 -org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve -org.eclipse.jdt.core.compiler.compliance=1.6 -org.eclipse.jdt.core.compiler.debug.lineNumber=generate -org.eclipse.jdt.core.compiler.debug.localVariable=generate -org.eclipse.jdt.core.compiler.debug.sourceFile=generate -org.eclipse.jdt.core.compiler.problem.assertIdentifier=error -org.eclipse.jdt.core.compiler.problem.enumIdentifier=error -org.eclipse.jdt.core.compiler.source=1.6 diff --git a/arduino-builder/bin/cc/arduino/builder/ArduinoBuilder.class b/arduino-builder/bin/cc/arduino/builder/ArduinoBuilder.class deleted file mode 100644 index c7047297442..00000000000 Binary files a/arduino-builder/bin/cc/arduino/builder/ArduinoBuilder.class and /dev/null differ diff --git a/arduino-builder/src/cc/arduino/builder/ArduinoBuilder.java b/arduino-builder/src/cc/arduino/builder/ArduinoBuilder.java deleted file mode 100644 index 89b28fe3f2f..00000000000 --- a/arduino-builder/src/cc/arduino/builder/ArduinoBuilder.java +++ /dev/null @@ -1,11 +0,0 @@ -package cc.arduino.builder; - -import processing.app.BaseNoGui; - -public class ArduinoBuilder { - - public static void main(String[] args) throws Exception { - BaseNoGui.main(args); - } - -} diff --git a/arduino-core/src/cc/arduino/Compiler.java b/arduino-core/src/cc/arduino/Compiler.java new file mode 100644 index 00000000000..41dfc47dd2c --- /dev/null +++ b/arduino-core/src/cc/arduino/Compiler.java @@ -0,0 +1,577 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino; + +import cc.arduino.i18n.I18NAwareMessageConsumer; +import org.apache.commons.exec.CommandLine; +import org.apache.commons.exec.DefaultExecutor; +import org.apache.commons.exec.PumpStreamHandler; +import processing.app.*; +import processing.app.debug.*; +import processing.app.helpers.PreferencesMap; +import processing.app.helpers.PreferencesMapException; +import processing.app.helpers.StringReplacer; +import processing.app.legacy.PApplet; +import processing.app.tools.DoubleQuotedArgumentsOnWindowsCommandLine; + +import java.io.*; +import java.nio.file.Files; +import java.nio.file.Path; +import java.nio.file.Paths; +import java.nio.file.StandardCopyOption; +import java.util.ArrayList; +import java.util.Collections; +import java.util.List; +import java.util.stream.Collectors; +import java.util.stream.Stream; + +import static processing.app.I18n.tr; + +public class Compiler implements MessageConsumer { + + //used by transifex integration + static { + tr("'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more information"); + tr("Board {0} (platform {1}, package {2}) is unknown"); + tr("Bootloader file specified but missing: {0}"); + tr("Build options changed, rebuilding all"); + tr("Unable to find {0} in {1}"); + tr("Invalid quoting: no closing [{0}] char found."); + tr("(legacy)"); + tr("Multiple libraries were found for \"{0}\""); + tr(" Not used: {0}"); + tr(" Used: {0}"); + tr("Library can't use both 'src' and 'utility' folders."); + tr("WARNING: library {0} claims to run on {1} architecture(s) and may be incompatible with your current board which runs on {2} architecture(s)."); + tr("Looking for recipes like {0}*{1}"); + tr("Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to: {3}"); + tr("Selected board depends on '{0}' core (not installed)."); + tr("{0} must be a folder"); + tr("{0}: Unknown package"); + tr("{0} pattern is missing"); + tr("Platform {0} (package {1}) is unknown"); + tr("Progress {0}"); + tr("Missing '{0}' from library in {1}"); + tr("Running: {0}"); + tr("Running recipe: {0}"); + tr("Setting build path to {0}"); + tr("Unhandled type {0} in context key {1}"); + tr("Unknown sketch file extension: {0}"); + tr("Using library {0} at version {1} in folder: {2} {3}"); + tr("Using library {0} in folder: {1} {2}"); + tr("Using previously compiled file: {0}"); + tr("WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'"); + tr("Warning: platform.txt from core '{0}' misses property '{1}', using default value '{2}'. Consider upgrading this core."); + tr("Warning: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core."); + tr("WARNING: Spurious {0} folder in '{1}' library"); + } + + enum BuilderAction { + COMPILE("-compile"), DUMP_PREFS("-dump-prefs"); + + private final String value; + + BuilderAction(String value) { + this.value = value; + } + } + + private final String pathToSketch; + private final SketchData sketch; + private final String buildPath; + private final boolean verbose; + private RunnerException exception; + + public Compiler(SketchData data, String buildPath) { + this(data.getMainFilePath(), data, buildPath); + } + + public Compiler(String pathToSketch, SketchData sketch, String buildPath) { + this.pathToSketch = pathToSketch; + this.sketch = sketch; + this.buildPath = buildPath; + this.verbose = PreferencesData.getBoolean("build.verbose"); + } + + public String build(CompilerProgressListener progListener, boolean exportHex) throws RunnerException, PreferencesMapException, IOException { + TargetBoard board = BaseNoGui.getTargetBoard(); + if (board == null) { + throw new RunnerException("Board is not selected"); + } + + TargetPlatform platform = board.getContainerPlatform(); + TargetPackage aPackage = platform.getContainerPackage(); + + PreferencesMap prefs = loadPreferences(board, platform, aPackage); + + MessageConsumerOutputStream out = new MessageConsumerOutputStream(new ProgressAwareMessageConsumer(new I18NAwareMessageConsumer(System.out), progListener), "\n"); + MessageConsumerOutputStream err = new MessageConsumerOutputStream(new I18NAwareMessageConsumer(System.err, Compiler.this), "\n"); + + callArduinoBuilder(board, platform, aPackage, BuilderAction.COMPILE, new PumpStreamHandler(out, err)); + + out.flush(); + err.flush(); + + if (exportHex) { + runActions("hooks.savehex.presavehex", prefs); + + saveHex(prefs); + + runActions("hooks.savehex.postsavehex", prefs); + } + + size(prefs); + + return sketch.getName() + ".ino"; + } + + private PreferencesMap loadPreferences(TargetBoard board, TargetPlatform platform, TargetPackage aPackage) throws RunnerException, IOException { + ByteArrayOutputStream stdout = new ByteArrayOutputStream(); + ByteArrayOutputStream stderr = new ByteArrayOutputStream(); + MessageConsumerOutputStream err = new MessageConsumerOutputStream(new I18NAwareMessageConsumer(new PrintStream(stderr), Compiler.this), "\n"); + try { + callArduinoBuilder(board, platform, aPackage, BuilderAction.DUMP_PREFS, new PumpStreamHandler(stdout, err)); + } catch (RunnerException e) { + System.err.println(new String(stderr.toByteArray())); + throw e; + } + PreferencesMap prefs = new PreferencesMap(); + prefs.load(new ByteArrayInputStream(stdout.toByteArray())); + return prefs; + } + + private void callArduinoBuilder(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, BuilderAction action, PumpStreamHandler streamHandler) throws RunnerException { + File executable = BaseNoGui.getContentFile("arduino-builder"); + CommandLine commandLine = new CommandLine(executable); + commandLine.addArgument(action.value, false); + commandLine.addArgument("-logger=machine", false); + + Stream.of(BaseNoGui.getHardwarePath(), new File(BaseNoGui.getSettingsFolder(), "packages").getAbsolutePath(), BaseNoGui.getSketchbookHardwareFolder().getAbsolutePath()) + .forEach(p -> { + if (Files.exists(Paths.get(p))) { + commandLine.addArgument("-hardware", false); + commandLine.addArgument("\"" + p + "\"", false); + } + }); + + Stream.of(BaseNoGui.getContentFile("tools-builder").getAbsolutePath(), Paths.get(BaseNoGui.getHardwarePath(), "tools", "avr").toAbsolutePath().toString(), new File(BaseNoGui.getSettingsFolder(), "packages").getAbsolutePath()) + .forEach(p -> { + if (Files.exists(Paths.get(p))) { + commandLine.addArgument("-tools", false); + commandLine.addArgument("\"" + p + "\"", false); + } + }); + + commandLine.addArgument("-libraries", false); + commandLine.addArgument("\"" + BaseNoGui.getSketchbookLibrariesFolder().getAbsolutePath() + "\"", false); + commandLine.addArgument("-libraries", false); + commandLine.addArgument("\"" + BaseNoGui.getContentFile("libraries").getAbsolutePath() + "\"", false); + + String fqbn = Stream.of(aPackage.getId(), platform.getId(), board.getId(), boardOptions(board)).filter(s -> !s.isEmpty()).collect(Collectors.joining(":")); + commandLine.addArgument("-fqbn=" + fqbn, false); + + commandLine.addArgument("-ide-version=" + BaseNoGui.REVISION, false); + commandLine.addArgument("-build-path", false); + commandLine.addArgument("\"" + buildPath + "\"", false); + commandLine.addArgument("-warnings=" + PreferencesData.get("compiler.warning_level"), false); + + PreferencesData.getMap() + .subTree("build_properties_custom") + .entrySet() + .stream() + .forEach(kv -> commandLine.addArgument("-prefs=\"" + kv.getKey() + "=" + kv.getValue() + "\"", false)); + + commandLine.addArgument("-prefs=build.warn_data_percentage=" + PreferencesData.get("build.warn_data_percentage")); + + //commandLine.addArgument("-debug-level=10", false); + + if (verbose) { + commandLine.addArgument("-verbose", false); + } + + commandLine.addArgument("\"" + pathToSketch + "\"", false); + + if (verbose) { + System.out.println(commandLine); + } + + DefaultExecutor executor = new DefaultExecutor(); + executor.setStreamHandler(streamHandler); + + int result; + executor.setExitValues(null); + try { + result = executor.execute(commandLine); + } catch (IOException e) { + RunnerException re = new RunnerException(e.getMessage()); + re.hideStackTrace(); + throw re; + } + executor.setExitValues(new int[0]); + + if (exception != null) + throw exception; + + if (result > 1) { + System.err.println(I18n.format(tr("{0} returned {1}"), executable.getName(), result)); + } + + if (result != 0) { + RunnerException re = new RunnerException(tr("Error compiling.")); + re.hideStackTrace(); + throw re; + } + } + + private void size(PreferencesMap prefs) throws RunnerException { + String maxTextSizeString = prefs.get("upload.maximum_size"); + String maxDataSizeString = prefs.get("upload.maximum_data_size"); + + if (maxTextSizeString == null) { + return; + } + + long maxTextSize = Integer.parseInt(maxTextSizeString); + long maxDataSize = -1; + + if (maxDataSizeString != null) { + maxDataSize = Integer.parseInt(maxDataSizeString); + } + + Sizer sizer = new Sizer(prefs); + long[] sizes; + try { + sizes = sizer.computeSize(); + } catch (RunnerException e) { + System.err.println(I18n.format(tr("Couldn't determine program size: {0}"), e.getMessage())); + return; + } + + long textSize = sizes[0]; + long dataSize = sizes[1]; + System.out.println(); + System.out.println(I18n.format(tr("Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} bytes."), textSize, maxTextSize, textSize * 100 / maxTextSize)); + if (dataSize >= 0) { + if (maxDataSize > 0) { + System.out.println(I18n.format(tr("Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes for local variables. Maximum is {1} bytes."), dataSize, maxDataSize, dataSize * 100 / maxDataSize, maxDataSize - dataSize)); + } else { + System.out.println(I18n.format(tr("Global variables use {0} bytes of dynamic memory."), dataSize)); + } + } + + if (textSize > maxTextSize) { + throw new RunnerException(tr("Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it.")); + } + + if (maxDataSize > 0 && dataSize > maxDataSize) { + throw new RunnerException(tr("Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.")); + } + + int warnDataPercentage = Integer.parseInt(prefs.get("build.warn_data_percentage")); + if (maxDataSize > 0 && dataSize > maxDataSize * warnDataPercentage / 100) { + System.err.println(tr("Low memory available, stability problems may occur.")); + } + } + + private void saveHex(PreferencesMap prefs) throws RunnerException { + List compiledSketches = new ArrayList<>(prefs.subTree("recipe.output.tmp_file", 1).values()); + List copyOfCompiledSketches = new ArrayList<>(prefs.subTree("recipe.output.save_file", 1).values()); + + if (isExportCompiledSketchSupported(compiledSketches, copyOfCompiledSketches, prefs)) { + System.err.println(tr("Warning: This core does not support exporting sketches. Please consider upgrading it or contacting its author")); + return; + } + + PreferencesMap dict = new PreferencesMap(prefs); + dict.put("ide_version", "" + BaseNoGui.REVISION); + PreferencesMap withBootloaderDict = new PreferencesMap(dict); + dict.put("build.project_name", dict.get("build.project_name") + ".with_bootloader"); + + if (!compiledSketches.isEmpty()) { + for (int i = 0; i < compiledSketches.size(); i++) { + saveHex(compiledSketches.get(i), copyOfCompiledSketches.get(i), dict); + saveHex(compiledSketches.get(i), copyOfCompiledSketches.get(i), withBootloaderDict); + } + } else { + try { + saveHex(prefs.getOrExcept("recipe.output.tmp_file"), prefs.getOrExcept("recipe.output.save_file"), dict); + saveHex(prefs.getOrExcept("recipe.output.tmp_file"), prefs.getOrExcept("recipe.output.save_file"), withBootloaderDict); + } catch (PreferencesMapException e) { + throw new RunnerException(e); + } + } + } + + private void saveHex(String compiledSketch, String copyOfCompiledSketch, PreferencesMap prefs) throws RunnerException { + try { + compiledSketch = StringReplacer.replaceFromMapping(compiledSketch, prefs); + copyOfCompiledSketch = StringReplacer.replaceFromMapping(copyOfCompiledSketch, prefs); + + Path compiledSketchPath; + Path compiledSketchPathInSubfolder = Paths.get(prefs.get("build.path"), "sketch", compiledSketch); + Path compiledSketchPathInBuildPath = Paths.get(prefs.get("build.path"), compiledSketch); + if (Files.exists(compiledSketchPathInSubfolder)) { + compiledSketchPath = compiledSketchPathInSubfolder; + } else { + compiledSketchPath = compiledSketchPathInBuildPath; + } + + Path copyOfCompiledSketchFilePath = Paths.get(this.sketch.getFolder().getAbsolutePath(), copyOfCompiledSketch); + + Files.copy(compiledSketchPath, copyOfCompiledSketchFilePath, StandardCopyOption.REPLACE_EXISTING); + } catch (IOException e) { + throw new RunnerException(e); + } + } + + private boolean isExportCompiledSketchSupported(List compiledSketches, List copyOfCompiledSketches, PreferencesMap prefs) { + return (compiledSketches.isEmpty() || copyOfCompiledSketches.isEmpty() || copyOfCompiledSketches.size() < compiledSketches.size()) && (!prefs.containsKey("recipe.output.tmp_file") || !prefs.containsKey("recipe.output.save_file")); + } + + private void runActions(String recipeClass, PreferencesMap prefs) throws RunnerException, PreferencesMapException { + List patterns = prefs.keySet().stream().filter(key -> key.startsWith("recipe." + recipeClass) && key.endsWith(".pattern")).collect(Collectors.toList()); + Collections.sort(patterns); + for (String recipe : patterns) { + runRecipe(recipe, prefs); + } + } + + private void runRecipe(String recipe, PreferencesMap prefs) throws RunnerException, PreferencesMapException { + PreferencesMap dict = new PreferencesMap(prefs); + dict.put("ide_version", "" + BaseNoGui.REVISION); + dict.put("sketch_path", sketch.getFolder().getAbsolutePath()); + + String[] cmdArray; + String cmd = prefs.getOrExcept(recipe); + try { + cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); + } catch (Exception e) { + throw new RunnerException(e); + } + exec(cmdArray); + } + + private void exec(String[] command) throws RunnerException { + // eliminate any empty array entries + List stringList = new ArrayList<>(); + for (String string : command) { + string = string.trim(); + if (string.length() != 0) + stringList.add(string); + } + command = stringList.toArray(new String[stringList.size()]); + if (command.length == 0) + return; + + if (verbose) { + for (String c : command) + System.out.print(c + " "); + System.out.println(); + } + + DefaultExecutor executor = new DefaultExecutor(); + executor.setStreamHandler(new PumpStreamHandler() { + + @Override + protected Thread createPump(InputStream is, OutputStream os, boolean closeWhenExhausted) { + final Thread result = new Thread(new MyStreamPumper(is, Compiler.this)); + result.setDaemon(true); + return result; + + } + }); + + CommandLine commandLine = new DoubleQuotedArgumentsOnWindowsCommandLine(command[0]); + for (int i = 1; i < command.length; i++) { + commandLine.addArgument(command[i], false); + } + + int result; + executor.setExitValues(null); + try { + result = executor.execute(commandLine); + } catch (IOException e) { + RunnerException re = new RunnerException(e.getMessage()); + re.hideStackTrace(); + throw re; + } + executor.setExitValues(new int[0]); + + // an error was queued up by message(), barf this back to compile(), + // which will barf it back to Editor. if you're having trouble + // discerning the imagery, consider how cows regurgitate their food + // to digest it, and the fact that they have five stomaches. + // + //System.out.println("throwing up " + exception); + if (exception != null) + throw exception; + + if (result > 1) { + // a failure in the tool (e.g. unable to locate a sub-executable) + System.err + .println(I18n.format(tr("{0} returned {1}"), command[0], result)); + } + + if (result != 0) { + RunnerException re = new RunnerException(tr("Error compiling.")); + re.hideStackTrace(); + throw re; + } + } + + private String boardOptions(TargetBoard board) { + return board.getMenuIds().stream() + .filter(board::hasMenu) + .filter(menuId -> { + String entry = PreferencesData.get("custom_" + menuId); + return entry != null && entry.startsWith(board.getId()); + }) + .map(menuId -> { + String entry = PreferencesData.get("custom_" + menuId); + String selectionId = entry.substring(board.getId().length() + 1); + return menuId + "=" + selectionId; + }) + .collect(Collectors.joining(",")); + } + + /** + * Part of the MessageConsumer interface, this is called + * whenever a piece (usually a line) of error message is spewed + * out from the compiler. The errors are parsed for their contents + * and line number, which is then reported back to Editor. + */ + public void message(String s) { + int i; + + if (!verbose) { + while ((i = s.indexOf(buildPath + File.separator)) != -1) { + s = s.substring(0, i) + s.substring(i + (buildPath + File.separator).length()); + } + } + + String errorFormat = "(.+\\.\\w+):(\\d+)(:\\d+)*:\\s*error:\\s*(.*)\\s*"; + String[] pieces = PApplet.match(s, errorFormat); + + if (pieces != null) { + String error = pieces[pieces.length - 1], msg = ""; + + if (error.trim().equals("SPI.h: No such file or directory")) { + error = tr("Please import the SPI library from the Sketch > Import Library menu."); + msg = tr("\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"); + } + + if (error.trim().equals("'BYTE' was not declared in this scope")) { + error = tr("The 'BYTE' keyword is no longer supported."); + msg = tr("\nAs of Arduino 1.0, the 'BYTE' keyword is no longer supported." + + "\nPlease use Serial.write() instead.\n\n"); + } + + if (error.trim().equals("no matching function for call to 'Server::Server(int)'")) { + error = tr("The Server class has been renamed EthernetServer."); + msg = tr("\nAs of Arduino 1.0, the Server class in the Ethernet library " + + "has been renamed to EthernetServer.\n\n"); + } + + if (error.trim().equals("no matching function for call to 'Client::Client(byte [4], int)'")) { + error = tr("The Client class has been renamed EthernetClient."); + msg = tr("\nAs of Arduino 1.0, the Client class in the Ethernet library " + + "has been renamed to EthernetClient.\n\n"); + } + + if (error.trim().equals("'Udp' was not declared in this scope")) { + error = tr("The Udp class has been renamed EthernetUdp."); + msg = tr("\nAs of Arduino 1.0, the Udp class in the Ethernet library " + + "has been renamed to EthernetUdp.\n\n"); + } + + if (error.trim().equals("'class TwoWire' has no member named 'send'")) { + error = tr("Wire.send() has been renamed Wire.write()."); + msg = tr("\nAs of Arduino 1.0, the Wire.send() function was renamed " + + "to Wire.write() for consistency with other libraries.\n\n"); + } + + if (error.trim().equals("'class TwoWire' has no member named 'receive'")) { + error = tr("Wire.receive() has been renamed Wire.read()."); + msg = tr("\nAs of Arduino 1.0, the Wire.receive() function was renamed " + + "to Wire.read() for consistency with other libraries.\n\n"); + } + + if (error.trim().equals("'Mouse' was not declared in this scope")) { + error = tr("'Mouse' only supported on the Arduino Leonardo"); + //msg = _("\nThe 'Mouse' class is only supported on the Arduino Leonardo.\n\n"); + } + + if (error.trim().equals("'Keyboard' was not declared in this scope")) { + error = tr("'Keyboard' only supported on the Arduino Leonardo"); + //msg = _("\nThe 'Keyboard' class is only supported on the Arduino Leonardo.\n\n"); + } + + RunnerException exception = placeException(error, pieces[1], PApplet.parseInt(pieces[2]) - 1); + + if (exception != null) { + SketchCode code = sketch.getCode(exception.getCodeIndex()); + String fileName = (code.isExtension("ino") || code.isExtension("pde")) ? code.getPrettyName() : code.getFileName(); + int lineNum = exception.getCodeLine() + 1; + s = fileName + ":" + lineNum + ": error: " + error + msg; + } + + if (exception != null) { + if (this.exception == null || this.exception.getMessage().equals(exception.getMessage())) { + this.exception = exception; + this.exception.hideStackTrace(); + } + } + } + + if (s.contains("undefined reference to `SPIClass::begin()'") && + s.contains("libraries/Robot_Control")) { + String error = tr("Please import the SPI library from the Sketch > Import Library menu."); + exception = new RunnerException(error); + } + + if (s.contains("undefined reference to `Wire'") && + s.contains("libraries/Robot_Control")) { + String error = tr("Please import the Wire library from the Sketch > Import Library menu."); + exception = new RunnerException(error); + } + + System.err.println(s); + } + + private RunnerException placeException(String message, String fileName, int line) { + for (SketchCode code : sketch.getCodes()) { + if (new File(fileName).getName().equals(code.getFileName())) { + return new RunnerException(message, sketch.indexOfCode(code), line); + } + } + return null; + } +} diff --git a/arduino-core/src/cc/arduino/CompilerProgressListener.java b/arduino-core/src/cc/arduino/CompilerProgressListener.java new file mode 100644 index 00000000000..1831005cd39 --- /dev/null +++ b/arduino-core/src/cc/arduino/CompilerProgressListener.java @@ -0,0 +1,36 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino; + +public interface CompilerProgressListener { + + void progress(int value); + +} diff --git a/arduino-core/src/cc/arduino/CompilerUtils.java b/arduino-core/src/cc/arduino/CompilerUtils.java new file mode 100644 index 00000000000..7409855a59d --- /dev/null +++ b/arduino-core/src/cc/arduino/CompilerUtils.java @@ -0,0 +1,64 @@ +/* + * This file is part of Arduino. + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + */ + +package cc.arduino; + +import processing.app.helpers.PreferencesMap; +import processing.app.helpers.PreferencesMapException; +import processing.app.helpers.StringReplacer; + +import java.io.File; +import java.util.Arrays; +import java.util.List; +import java.util.Optional; + +import static processing.app.I18n.tr; + +public class CompilerUtils { + + public File findCompiledSketch(PreferencesMap prefs) throws PreferencesMapException { + List paths = Arrays.asList( + "{build.path}/sketch/{build.project_name}.with_bootloader.hex", + "{build.path}/sketch/{build.project_name}.hex", + "{build.path}/{build.project_name}.with_bootloader.hex", + "{build.path}/{build.project_name}.hex", + "{build.path}/sketch/{build.project_name}.bin", + "{build.path}/{build.project_name}.bin", + "{build.path}/sketch/{build.project_name}.elf", + "{build.path}/{build.project_name}.elf" + ); + Optional sketch = paths.stream(). + map(path -> StringReplacer.replaceFromMapping(path, prefs)). + map(File::new). + filter(File::exists). + findFirst(); + return sketch.orElseThrow(() -> new IllegalStateException(tr("No compiled sketch found"))); + } + +} diff --git a/arduino-core/src/cc/arduino/Constants.java b/arduino-core/src/cc/arduino/Constants.java index d6bfe48d90a..6cc47c83a29 100644 --- a/arduino-core/src/cc/arduino/Constants.java +++ b/arduino-core/src/cc/arduino/Constants.java @@ -65,6 +65,9 @@ public class Constants { public static final String LIBRARY_INDEX_URL; public static final String LIBRARY_INDEX_URL_GZ; + public static final List LIBRARY_CATEGORIES = Arrays.asList("Display", "Communication", "Signal Input/Output", "Sensors", "Device Control", "Timing", "Data Storage", "Data Processing", "Other", "Uncategorized"); + public static final List LIBRARY_MANDATORY_PROPERTIES = Arrays.asList("name", "version", "author", "maintainer", "sentence", "paragraph", "url"); + static { String extenalPackageIndexUrl = System.getProperty("PACKAGE_INDEX_URL"); if (extenalPackageIndexUrl != null && !"".equals(extenalPackageIndexUrl)) { diff --git a/arduino-core/src/cc/arduino/LoadVIDPIDSpecificPreferences.java b/arduino-core/src/cc/arduino/LoadVIDPIDSpecificPreferences.java new file mode 100644 index 00000000000..623d3089205 --- /dev/null +++ b/arduino-core/src/cc/arduino/LoadVIDPIDSpecificPreferences.java @@ -0,0 +1,75 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino; + +import cc.arduino.packages.BoardPort; +import org.apache.commons.lang3.StringUtils; +import processing.app.BaseNoGui; +import processing.app.PreferencesData; +import processing.app.helpers.PreferencesMap; + +import java.util.Map; +import java.util.Optional; + +public class LoadVIDPIDSpecificPreferences { + + public void load(PreferencesMap prefs) { + BoardPort boardPort = BaseNoGui.getDiscoveryManager().find(PreferencesData.get("serial.port")); + if (boardPort == null) { + return; + } + + String vid = boardPort.getPrefs().get("vid"); + String pid = boardPort.getPrefs().get("pid"); + if (StringUtils.isEmpty(vid) || StringUtils.isEmpty(pid)) { + return; + } + + int VIDPIDIndex = findVIDPIDIndex(prefs, vid.toUpperCase(), pid.toUpperCase()); + if (VIDPIDIndex < 0) { + return; + } + + prefs.putAll(prefs.subTree("vid." + VIDPIDIndex)); + } + + private int findVIDPIDIndex(PreferencesMap preferences, String vid, String pid) { + Optional vidPid = preferences.subTree("vid").entrySet().stream() + .filter(keyValue -> !keyValue.getKey().contains(".")) + .filter(keyValue -> vid.equals(keyValue.getValue().toUpperCase()) && pid.equals(preferences.get("pid." + keyValue.getKey()).toUpperCase())) + .map(Map.Entry::getKey) + .map(Integer::valueOf) + .findFirst(); + + return vidPid.orElse(-1); + } + +} + diff --git a/arduino-core/src/cc/arduino/MessageConsumerOutputStream.java b/arduino-core/src/cc/arduino/MessageConsumerOutputStream.java new file mode 100644 index 00000000000..ea4aedf0526 --- /dev/null +++ b/arduino-core/src/cc/arduino/MessageConsumerOutputStream.java @@ -0,0 +1,46 @@ +package cc.arduino; + +import processing.app.debug.MessageConsumer; + +import java.io.ByteArrayOutputStream; + +public class MessageConsumerOutputStream extends ByteArrayOutputStream { + + private final MessageConsumer consumer; + private final String lineSeparator; + + public MessageConsumerOutputStream(MessageConsumer consumer) { + this(consumer, System.getProperty("line.separator")); + } + + public MessageConsumerOutputStream(MessageConsumer consumer, String lineSeparator) { + this.consumer = consumer; + this.lineSeparator = lineSeparator; + } + + @Override + public void write(byte[] b, int off, int len) { + super.write(b, off, len); + + flush(); + } + + @Override + public void flush() { + String asString = toString(); + if (!asString.contains(lineSeparator)) { + return; + } + + while (asString.contains(lineSeparator)) { + String line = asString.substring(0, asString.indexOf(lineSeparator)); + reset(); + byte[] bytes = asString.substring(asString.indexOf(lineSeparator) + lineSeparator.length()).getBytes(); + super.write(bytes, 0, bytes.length); + asString = toString(); + + consumer.message(line); + } + + } +} diff --git a/arduino-core/src/cc/arduino/MyStreamPumper.java b/arduino-core/src/cc/arduino/MyStreamPumper.java index 003fad07c86..890f05ffb0c 100644 --- a/arduino-core/src/cc/arduino/MyStreamPumper.java +++ b/arduino-core/src/cc/arduino/MyStreamPumper.java @@ -73,7 +73,7 @@ public void run() { try { String line; while ((line = reader.readLine()) != null) { - messageConsumer.message(line + "\n"); + messageConsumer.message(line); } } catch (Exception e) { // nothing to do - happens quite often with watchdog diff --git a/arduino-core/src/cc/arduino/ProgressAwareMessageConsumer.java b/arduino-core/src/cc/arduino/ProgressAwareMessageConsumer.java new file mode 100644 index 00000000000..d22515b55f3 --- /dev/null +++ b/arduino-core/src/cc/arduino/ProgressAwareMessageConsumer.java @@ -0,0 +1,62 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino; + +import cc.arduino.i18n.ExternalProcessOutputParser; +import processing.app.debug.MessageConsumer; + +import java.util.Map; + +public class ProgressAwareMessageConsumer implements MessageConsumer { + + private final MessageConsumer parent; + private final CompilerProgressListener progressListener; + private final ExternalProcessOutputParser parser; + + public ProgressAwareMessageConsumer(MessageConsumer parent, CompilerProgressListener progressListener) { + this.parent = parent; + this.progressListener = progressListener; + this.parser = new ExternalProcessOutputParser(); + } + + @Override + public void message(String s) { + if (s.startsWith("===Progress")) { + Map parsedMessage = parser.parse(s); + Object[] args = (Object[]) parsedMessage.get("args"); + progressListener.progress(Double.valueOf(args[0].toString()).intValue()); + return; + } + + if (parent != null) { + parent.message(s); + } + } +} diff --git a/arduino-core/src/cc/arduino/UploaderUtils.java b/arduino-core/src/cc/arduino/UploaderUtils.java new file mode 100644 index 00000000000..b243c30d216 --- /dev/null +++ b/arduino-core/src/cc/arduino/UploaderUtils.java @@ -0,0 +1,97 @@ +/* + * This file is part of Arduino. + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + */ + +package cc.arduino; + +import cc.arduino.packages.BoardPort; +import cc.arduino.packages.Uploader; +import cc.arduino.packages.UploaderFactory; +import processing.app.BaseNoGui; +import processing.app.PreferencesData; +import processing.app.SketchData; +import processing.app.debug.TargetPlatform; + +import java.util.LinkedList; +import java.util.List; + +import static processing.app.I18n.tr; + +public class UploaderUtils { + + public Uploader getUploaderByPreferences(boolean noUploadPort) { + TargetPlatform target = BaseNoGui.getTargetPlatform(); + String board = PreferencesData.get("board"); + + BoardPort boardPort = null; + if (!noUploadPort) { + boardPort = BaseNoGui.getDiscoveryManager().find(PreferencesData.get("serial.port")); + } + + return new UploaderFactory().newUploader(target.getBoards().get(board), boardPort, noUploadPort); + } + + public boolean upload(SketchData data, Uploader uploader, String buildPath, String suggestedClassName, boolean usingProgrammer, boolean noUploadPort, List warningsAccumulator) throws Exception { + + if (uploader == null) + uploader = getUploaderByPreferences(noUploadPort); + + boolean success = false; + + if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) { + BaseNoGui.showError(tr("Authorization required"), + tr("No authorization data found"), null); + } + + boolean useNewWarningsAccumulator = false; + if (warningsAccumulator == null) { + warningsAccumulator = new LinkedList(); + useNewWarningsAccumulator = true; + } + + try { + success = uploader.uploadUsingPreferences(data.getFolder(), buildPath, suggestedClassName, usingProgrammer, warningsAccumulator); + } finally { + if (uploader.requiresAuthorization() && !success) { + PreferencesData.remove(uploader.getAuthorizationKey()); + } + } + + if (useNewWarningsAccumulator) { + for (String warning : warningsAccumulator) { + System.out.print(tr("Warning")); + System.out.print(": "); + System.out.println(warning); + } + } + + return success; + } + + +} diff --git a/arduino-core/src/cc/arduino/contributions/libraries/LibrariesIndexer.java b/arduino-core/src/cc/arduino/contributions/libraries/LibrariesIndexer.java index 47c27121b82..f8c0d79852c 100644 --- a/arduino-core/src/cc/arduino/contributions/libraries/LibrariesIndexer.java +++ b/arduino-core/src/cc/arduino/contributions/libraries/LibrariesIndexer.java @@ -29,6 +29,7 @@ package cc.arduino.contributions.libraries; +import cc.arduino.Constants; import cc.arduino.contributions.libraries.filters.LibraryInstalledInsideCore; import cc.arduino.contributions.libraries.filters.TypePredicate; import cc.arduino.contributions.packages.ContributedPlatform; @@ -92,7 +93,7 @@ private void parseIndex(File indexFile) throws IOException { index.getLibraries() .stream() - .filter(library -> library.getCategory() == null || "".equals(library.getCategory())) + .filter(library -> library.getCategory() == null || "".equals(library.getCategory()) || !Constants.LIBRARY_CATEGORIES.contains(library.getCategory())) .forEach(library -> library.setCategory("Uncategorized")); } finally { IOUtils.closeQuietly(indexIn); @@ -108,6 +109,11 @@ public void rescanLibraries() { // Clear all installed flags installedLibraries.clear(); installedLibrariesWithDuplicates.clear(); + + if (index.getLibraries() == null) { + return; + } + for (ContributedLibrary lib : index.getLibraries()) { lib.setInstalled(false); } @@ -215,7 +221,7 @@ public LibrariesIndex getIndex() { } public LibraryList getInstalledLibraries() { - return installedLibraries; + return new LibraryList(installedLibraries); } // Same as getInstalledLibraries(), but allow duplicates between @@ -235,8 +241,6 @@ public File getStagingFolder() { * Set the sketchbook library folder.
* New libraries will be installed here.
* Libraries not found on this folder will be marked as read-only. - * - * @param folder */ public void setSketchbookLibrariesFolder(File folder) { this.sketchbookLibrariesFolder = folder; diff --git a/arduino-core/src/cc/arduino/contributions/libraries/LibraryInstaller.java b/arduino-core/src/cc/arduino/contributions/libraries/LibraryInstaller.java index c01b56f2020..03710ac8e4e 100644 --- a/arduino-core/src/cc/arduino/contributions/libraries/LibraryInstaller.java +++ b/arduino-core/src/cc/arduino/contributions/libraries/LibraryInstaller.java @@ -109,7 +109,7 @@ public synchronized void install(ContributedLibrary lib, ContributedLibrary repl progress.setStatus(I18n.format(tr("Installing library: {0}"), lib.getName())); progressListener.onProgress(progress); File libsFolder = indexer.getSketchbookLibrariesFolder(); - File tmpFolder = FileUtils.createTempFolderIn(libsFolder); + File tmpFolder = FileUtils.createTempFolder(libsFolder); try { new ArchiveExtractor(platform).extract(lib.getDownloadedFile(), tmpFolder, 1); } catch (Exception e) { diff --git a/arduino-core/src/cc/arduino/contributions/packages/ContributedPlatform.java b/arduino-core/src/cc/arduino/contributions/packages/ContributedPlatform.java index 894801fad29..464650bba0c 100644 --- a/arduino-core/src/cc/arduino/contributions/packages/ContributedPlatform.java +++ b/arduino-core/src/cc/arduino/contributions/packages/ContributedPlatform.java @@ -78,8 +78,9 @@ public void resolveToolsDependencies(Collection packages) { ContributedTool tool = dep.resolve(packages); if (tool == null) { System.err.println("Index error: could not find referenced tool " + dep); + } else { + resolvedTools.add(tool); } - resolvedTools.add(tool); } } diff --git a/arduino-core/src/cc/arduino/i18n/ExternalProcessOutputParser.java b/arduino-core/src/cc/arduino/i18n/ExternalProcessOutputParser.java new file mode 100644 index 00000000000..0bd4d2bc6d1 --- /dev/null +++ b/arduino-core/src/cc/arduino/i18n/ExternalProcessOutputParser.java @@ -0,0 +1,94 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino.i18n; + +import java.io.UnsupportedEncodingException; +import java.net.URLDecoder; +import java.util.*; +import java.util.stream.Collectors; + +public class ExternalProcessOutputParser { + + public Map parse(String s) { + if (!s.startsWith("===")) { + throw new IllegalArgumentException(s); + } + + s = s.substring(3); + + Map output = new HashMap<>(); + + String[] parts = s.split(" \\|\\|\\| "); + + output.put("msg", parts[0]); + output.put("args", parseArgs(parts[1])); + + return output; + } + + private Object[] parseArgs(String argsAsString) { + if (!argsAsString.startsWith("[") || !argsAsString.endsWith("]")) { + throw new IllegalArgumentException(argsAsString); + } + + argsAsString = argsAsString.substring(1, argsAsString.length() - 1); + if (argsAsString.isEmpty()) { + return new Object[0]; + } + + List args = new ArrayList<>(Arrays.asList(argsAsString.split(" "))); + List additionalArgs = addAsManyEmptyArgsAsEndingSpaces(argsAsString, args); + + for (int i = 0; i < args.size(); i++) { + try { + args.set(i, URLDecoder.decode(args.get(i), "UTF-8")); + } catch (UnsupportedEncodingException e) { + throw new RuntimeException(e); + } + } + + args.addAll(additionalArgs); + + return args.toArray(); + } + + private List addAsManyEmptyArgsAsEndingSpaces(String argsAsString, List args) { + List additionalArgs = new LinkedList<>(); + + if (argsAsString.charAt(argsAsString.length() - 1) == ' ') { + String allArgsButEndingSpacesAsString = args.stream().collect(Collectors.joining(" ")); + String endingSpacesOnly = argsAsString.replace(allArgsButEndingSpacesAsString, ""); + for (int i = 0; i < endingSpacesOnly.length(); i++) { + additionalArgs.add(""); + } + } + return additionalArgs; + } +} diff --git a/arduino-core/src/cc/arduino/i18n/I18NAwareMessageConsumer.java b/arduino-core/src/cc/arduino/i18n/I18NAwareMessageConsumer.java new file mode 100644 index 00000000000..0c1fd98e3fa --- /dev/null +++ b/arduino-core/src/cc/arduino/i18n/I18NAwareMessageConsumer.java @@ -0,0 +1,70 @@ +/* + * This file is part of Arduino. + * + * Copyright 2015 Arduino LLC (http://www.arduino.cc/) + * + * Arduino is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + * + * You should have received a copy of the GNU General Public License + * along with this program; if not, write to the Free Software + * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA + * + * As a special exception, you may use this file as part of a free software + * library without restriction. Specifically, if other files instantiate + * templates or use macros or inline functions from this file, or you compile + * this file and link it with other files to produce an executable, this + * file does not by itself cause the resulting executable to be covered by + * the GNU General Public License. This exception does not however + * invalidate any other reasons why the executable file might be covered by + * the GNU General Public License. + */ + +package cc.arduino.i18n; + +import processing.app.I18n; +import processing.app.debug.MessageConsumer; + +import java.io.PrintStream; +import java.util.Map; + +import static processing.app.I18n.tr; + +public class I18NAwareMessageConsumer implements MessageConsumer { + + private final PrintStream ps; + private final MessageConsumer parent; + private final ExternalProcessOutputParser parser; + + public I18NAwareMessageConsumer(PrintStream ps) { + this(ps, null); + } + + public I18NAwareMessageConsumer(PrintStream ps, MessageConsumer parent) { + this.ps = ps; + this.parent = parent; + this.parser = new ExternalProcessOutputParser(); + } + + @Override + public void message(String s) { + if (s.startsWith("===")) { + Map parsedMessage = parser.parse(s); + ps.println(I18n.format(tr((String) parsedMessage.get("msg")), (Object[]) parsedMessage.get("args"))); + return; + } + + if (parent != null) { + parent.message(s); + } else { + ps.println(s); + } + } +} diff --git a/arduino-core/src/cc/arduino/packages/BoardPort.java b/arduino-core/src/cc/arduino/packages/BoardPort.java index 1b29b0765ca..e2c16c43e69 100644 --- a/arduino-core/src/cc/arduino/packages/BoardPort.java +++ b/arduino-core/src/cc/arduino/packages/BoardPort.java @@ -37,7 +37,11 @@ public class BoardPort { private String protocol; private String boardName; private String label; - private PreferencesMap prefs; + private final PreferencesMap prefs; + + public BoardPort() { + this.prefs = new PreferencesMap(); + } public String getAddress() { return address; @@ -63,10 +67,6 @@ public void setBoardName(String boardName) { this.boardName = boardName; } - public void setPrefs(PreferencesMap prefs) { - this.prefs = prefs; - } - public PreferencesMap getPrefs() { return prefs; } diff --git a/arduino-core/src/cc/arduino/packages/Uploader.java b/arduino-core/src/cc/arduino/packages/Uploader.java index edd0a79bc26..3c99333fb46 100644 --- a/arduino-core/src/cc/arduino/packages/Uploader.java +++ b/arduino-core/src/cc/arduino/packages/Uploader.java @@ -1,5 +1,3 @@ -/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* Uploader - abstract uploading baseclass (common to both uisp and avrdude) Part of the Arduino project - http://www.arduino.cc/ diff --git a/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java b/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java index b02e3b65424..6f8fa10a64c 100644 --- a/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java +++ b/arduino-core/src/cc/arduino/packages/discoverers/NetworkDiscovery.java @@ -35,7 +35,6 @@ import cc.arduino.packages.discoverers.network.NetworkChecker; import org.apache.commons.compress.utils.IOUtils; import processing.app.BaseNoGui; -import processing.app.helpers.PreferencesMap; import processing.app.zeroconf.jmdns.ArduinoDNSTaskStarter; import javax.jmdns.*; @@ -135,16 +134,16 @@ public void serviceResolved(ServiceEvent serviceEvent) { String address = inetAddress.getHostAddress(); String name = serviceEvent.getName(); - PreferencesMap prefs = null; + BoardPort port = new BoardPort(); + String board = null; String description = null; if (info.hasData()) { - prefs = new PreferencesMap(); board = info.getPropertyString("board"); description = info.getPropertyString("description"); - prefs.put("board", board); - prefs.put("distro_version", info.getPropertyString("distro_version")); - prefs.put("port", "" + info.getPort()); + port.getPrefs().put("board", board); + port.getPrefs().put("distro_version", info.getPropertyString("distro_version")); + port.getPrefs().put("port", "" + info.getPort()); } String label = name + " at " + address; @@ -157,11 +156,9 @@ public void serviceResolved(ServiceEvent serviceEvent) { label += " (" + description + ")"; } - BoardPort port = new BoardPort(); port.setAddress(address); port.setBoardName(name); port.setProtocol("network"); - port.setPrefs(prefs); port.setLabel(label); synchronized (boardPortsDiscoveredWithJmDNS) { diff --git a/arduino-core/src/cc/arduino/packages/discoverers/serial/SerialBoardsLister.java b/arduino-core/src/cc/arduino/packages/discoverers/serial/SerialBoardsLister.java index 4531f0e8778..475fb6e9439 100644 --- a/arduino-core/src/cc/arduino/packages/discoverers/serial/SerialBoardsLister.java +++ b/arduino-core/src/cc/arduino/packages/discoverers/serial/SerialBoardsLister.java @@ -35,7 +35,6 @@ import processing.app.Platform; import processing.app.Serial; import processing.app.debug.TargetBoard; -import processing.app.helpers.PreferencesMap; import java.util.*; @@ -84,11 +83,9 @@ public void run() { String label = port; - PreferencesMap prefs = new PreferencesMap(); - if (boardData != null) { - prefs.put("vid", boardData.get("vid").toString()); - prefs.put("pid", boardData.get("pid").toString()); + boardPort.getPrefs().put("vid", boardData.get("vid").toString()); + boardPort.getPrefs().put("pid", boardData.get("pid").toString()); TargetBoard board = (TargetBoard) boardData.get("board"); if (board != null) { @@ -101,7 +98,6 @@ public void run() { } boardPort.setLabel(label); - boardPort.setPrefs(prefs); boardPorts.add(boardPort); } diff --git a/arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java b/arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java index 1b72ec38453..a81e0497b23 100644 --- a/arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java +++ b/arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java @@ -29,6 +29,7 @@ package cc.arduino.packages.uploaders; +import cc.arduino.CompilerUtils; import cc.arduino.packages.BoardPort; import cc.arduino.packages.Uploader; import cc.arduino.packages.ssh.*; @@ -117,7 +118,7 @@ public boolean uploadUsingPreferences(File sourcePath, String buildPath, String if (!coreMissesRemoteUploadTool && mergedSketch.exists()) { sketchToCopy = mergedSketch; } else { - sketchToCopy = processing.app.debug.Compiler.findCompiledSketch(prefs); + sketchToCopy = new CompilerUtils().findCompiledSketch(prefs); } scpFiles(scp, ssh, sourcePath, sketchToCopy, warningsAccumulator); diff --git a/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java index dc8cf8f6709..99a9e6286ed 100644 --- a/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java +++ b/arduino-core/src/cc/arduino/packages/uploaders/SerialUploader.java @@ -1,5 +1,3 @@ -/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - /* BasicUploader - generic command line uploader implementation Part of the Arduino project - http://www.arduino.cc/ @@ -28,6 +26,7 @@ import cc.arduino.packages.Uploader; import processing.app.*; +import cc.arduino.LoadVIDPIDSpecificPreferences; import processing.app.debug.RunnerException; import processing.app.debug.TargetPlatform; import processing.app.helpers.OSUtils; @@ -343,6 +342,8 @@ public boolean burnBootloader() throws Exception { prefs.put("bootloader.verbose", prefs.getOrExcept("bootloader.params.quiet")); } + new LoadVIDPIDSpecificPreferences().load(prefs); + String pattern = prefs.getOrExcept("erase.pattern"); String[] cmd = StringReplacer.formatAndSplit(pattern, prefs, true); if (!executeUploadCommand(cmd)) diff --git a/arduino-core/src/cc/arduino/utils/network/FileDownloader.java b/arduino-core/src/cc/arduino/utils/network/FileDownloader.java index 73e9ec5fedc..76da4dedd43 100644 --- a/arduino-core/src/cc/arduino/utils/network/FileDownloader.java +++ b/arduino-core/src/cc/arduino/utils/network/FileDownloader.java @@ -145,7 +145,7 @@ public void download() throws InterruptedException { if (resp == HttpURLConnection.HTTP_MOVED_PERM || resp == HttpURLConnection.HTTP_MOVED_TEMP) { URL newUrl = new URL(connection.getHeaderField("Location")); - proxy = ProxySelector.getDefault().select(newUrl.toURI()).get(0); + proxy = new CustomProxySelector(PreferencesData.getMap()).getProxyFor(newUrl.toURI()); // open the new connnection again connection = (HttpURLConnection) newUrl.openConnection(proxy); diff --git a/arduino-core/src/processing/app/BaseNoGui.java b/arduino-core/src/processing/app/BaseNoGui.java index dfb3029fb2a..d45ef1b305f 100644 --- a/arduino-core/src/processing/app/BaseNoGui.java +++ b/arduino-core/src/processing/app/BaseNoGui.java @@ -1,6 +1,8 @@ package processing.app; +import cc.arduino.Compiler; import cc.arduino.Constants; +import cc.arduino.UploaderUtils; import cc.arduino.contributions.GPGDetachedSignatureVerifier; import cc.arduino.contributions.SignatureVerificationFailedException; import cc.arduino.contributions.libraries.LibrariesIndexer; @@ -10,10 +12,10 @@ import cc.arduino.packages.DiscoveryManager; import cc.arduino.packages.Uploader; import com.fasterxml.jackson.core.JsonProcessingException; +import org.apache.commons.codec.digest.DigestUtils; import org.apache.commons.compress.utils.IOUtils; import org.apache.commons.logging.impl.LogFactoryImpl; import org.apache.commons.logging.impl.NoOpLog; -import processing.app.debug.Compiler; import processing.app.debug.*; import processing.app.helpers.*; import processing.app.helpers.filefilters.OnlyDirs; @@ -26,11 +28,13 @@ import java.io.FileOutputStream; import java.io.FileWriter; import java.io.IOException; +import java.nio.file.Files; import java.util.*; import java.util.logging.Level; import java.util.logging.Logger; import static processing.app.I18n.tr; +import static processing.app.helpers.filefilters.OnlyDirs.ONLY_DIRS; public class BaseNoGui { @@ -58,8 +62,6 @@ public class BaseNoGui { VERSION_NAME_LONG = versionNameLong; } - static File buildFolder; - private static DiscoveryManager discoveryManager = new DiscoveryManager(); // these are static because they're used by Sketch @@ -110,28 +112,6 @@ static public int countLines(String what) { return count; } - /** - * Get the path to the platform's temporary folder, by creating - * a temporary temporary file and getting its parent folder. - *
- * Modified for revision 0094 to actually make the folder randomized - * to avoid conflicts in multi-user environments. (Bug 177) - */ - static public File createTempFolder(String name) { - try { - File folder = File.createTempFile(name, null); - //String tempPath = ignored.getParent(); - //return new File(tempPath); - folder.delete(); - folder.mkdirs(); - return folder; - - } catch (Exception e) { - e.printStackTrace(); - } - return null; - } - static public String getAvrBasePath() { String path = getHardwarePath() + File.separator + "tools" + File.separator + "avr" + File.separator + "bin" + File.separator; @@ -141,19 +121,14 @@ static public String getAvrBasePath() { return path; } - static public File getBuildFolder() { - if (buildFolder == null) { - String buildPath = PreferencesData.get("build.path"); - if (buildPath != null) { - buildFolder = absoluteFile(buildPath); - if (!buildFolder.exists()) - buildFolder.mkdirs(); - } else { - //File folder = new File(getTempFolder(), "build"); - //if (!folder.exists()) folder.mkdirs(); - buildFolder = createTempFolder("build"); - DeleteFilesOnShutdown.add(buildFolder); - } + static public File getBuildFolder(SketchData data) throws IOException { + File buildFolder; + if (PreferencesData.get("build.path") != null) { + buildFolder = absoluteFile(PreferencesData.get("build.path")); + Files.createDirectories(buildFolder.toPath()); + } else { + buildFolder = FileUtils.createTempFolder("build", DigestUtils.md5Hex(data.getMainFilePath()) + ".tmp"); + DeleteFilesOnShutdown.add(buildFolder); } return buildFolder; } @@ -494,7 +469,7 @@ static public void init(String[] args) throws Exception { // File tempBuildFolder = getBuildFolder(); // data.load(); SketchData data = new SketchData(absoluteFile(parser.getFilenames().get(0))); - File tempBuildFolder = getBuildFolder(); + File tempBuildFolder = getBuildFolder(data); data.load(); // Sketch.exportApplet() @@ -504,16 +479,16 @@ static public void init(String[] args) throws Exception { if (!data.getFolder().exists()) { showError(tr("No sketch"), tr("Can't find the sketch in the specified path"), null); } - String suggestedClassName = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, parser.isDoVerboseBuild(), false); + String suggestedClassName = new Compiler(data, tempBuildFolder.getAbsolutePath()).build(null, false); if (suggestedClassName == null) { showError(tr("Error while verifying"), tr("An error occurred while verifying the sketch"), null); } showMessage(tr("Done compiling"), tr("Done compiling")); - Uploader uploader = Compiler.getUploaderByPreferences(parser.isNoUploadPort()); + Uploader uploader = new UploaderUtils().getUploaderByPreferences(parser.isNoUploadPort()); if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) showError("...", "...", null); try { - success = Compiler.upload(data, uploader, tempBuildFolder.getAbsolutePath(), suggestedClassName, parser.isDoUseProgrammer(), parser.isNoUploadPort(), warningsAccumulator); + success = new UploaderUtils().upload(data, uploader, tempBuildFolder.getAbsolutePath(), suggestedClassName, parser.isDoUseProgrammer(), parser.isNoUploadPort(), warningsAccumulator); showMessage(tr("Done uploading"), tr("Done uploading")); } finally { if (uploader.requiresAuthorization() && !success) { @@ -541,7 +516,7 @@ static public void init(String[] args) throws Exception { // File tempBuildFolder = getBuildFolder(); // data.load(); SketchData data = new SketchData(absoluteFile(path)); - File tempBuildFolder = getBuildFolder(); + File tempBuildFolder = getBuildFolder(data); data.load(); // Sketch.prepare() calls Sketch.ensureExistence() @@ -550,7 +525,7 @@ static public void init(String[] args) throws Exception { // if (!data.getFolder().exists()) showError(...); // String ... = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, verbose); if (!data.getFolder().exists()) showError(tr("No sketch"), tr("Can't find the sketch in the specified path"), null); - String suggestedClassName = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, parser.isDoVerboseBuild(), false); + String suggestedClassName = new Compiler(data, tempBuildFolder.getAbsolutePath()).build(null, false); if (suggestedClassName == null) showError(tr("Error while verifying"), tr("An error occurred while verifying the sketch"), null); showMessage(tr("Done compiling"), tr("Done compiling")); } catch (Exception e) { @@ -617,11 +592,7 @@ static public void initPackages() throws Exception { try { indexer.parseIndex(); - } catch (JsonProcessingException e) { - FileUtils.deleteIfExists(indexFile); - FileUtils.deleteIfExists(indexSignatureFile); - throw e; - } catch (SignatureVerificationFailedException e) { + } catch (JsonProcessingException | SignatureVerificationFailedException e) { FileUtils.deleteIfExists(indexFile); FileUtils.deleteIfExists(indexSignatureFile); throw e; @@ -636,6 +607,17 @@ static public void initPackages() throws Exception { librariesIndexer = new LibrariesIndexer(BaseNoGui.getSettingsFolder(), indexer); File librariesIndexFile = librariesIndexer.getIndexFile(); + copyStockLibraryIndexIfUpstreamIsMissing(librariesIndexFile); + try { + librariesIndexer.parseIndex(); + } catch (JsonProcessingException e) { + FileUtils.deleteIfExists(librariesIndexFile); + copyStockLibraryIndexIfUpstreamIsMissing(librariesIndexFile); + librariesIndexer.parseIndex(); + } + } + + private static void copyStockLibraryIndexIfUpstreamIsMissing(File librariesIndexFile) throws IOException { if (!librariesIndexFile.isFile()) { File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json"); if (defaultLibraryJsonFile.isFile()) { @@ -653,12 +635,6 @@ static public void initPackages() throws Exception { } } } - try { - librariesIndexer.parseIndex(); - } catch (JsonProcessingException e) { - FileUtils.deleteIfExists(librariesIndexFile); - throw e; - } } static protected void initPlatform() { @@ -700,12 +676,16 @@ static public boolean isSanitaryName(String name) { } static protected void loadHardware(File folder) { - if (!folder.isDirectory()) return; + if (!folder.isDirectory()) { + return; + } String list[] = folder.list(new OnlyDirs()); // if a bad folder or something like that, this might come back null - if (list == null) return; + if (list == null) { + return; + } // alphabetize list, since it's not always alpha order // replaced hella slow bubble sort with this feller for 0093 @@ -713,12 +693,20 @@ static protected void loadHardware(File folder) { for (String target : list) { // Skip reserved 'tools' folder. - if (target.equals("tools")) + if (target.equals("tools")) { continue; + } File subfolder = new File(folder, target); - + + TargetPackage targetPackage; + if (packages.containsKey(target)) { + targetPackage = packages.get(target); + } else { + targetPackage = new LegacyTargetPackage(target); + packages.put(target, targetPackage); + } try { - packages.put(target, new LegacyTargetPackage(target, subfolder)); + loadTargetPackage(targetPackage, subfolder); } catch (TargetPlatformException e) { System.out.println("WARNING: Error loading hardware folder " + new File(folder, target)); System.out.println(" " + e.getMessage()); @@ -726,6 +714,30 @@ static protected void loadHardware(File folder) { } } + private static void loadTargetPackage(TargetPackage targetPackage, File _folder) throws TargetPlatformException { + File[] folders = _folder.listFiles(ONLY_DIRS); + if (folders == null) { + return; + } + + for (File subFolder : folders) { + if (!subFolder.exists() || !subFolder.canRead()) { + continue; + } + String arch = subFolder.getName(); + try { + TargetPlatform platform = new LegacyTargetPlatform(arch, subFolder, targetPackage); + targetPackage.getPlatforms().put(arch, platform); + } catch (TargetPlatformException e) { + System.err.println(e.getMessage()); + } + } + + if (targetPackage.getPlatforms().size() == 0) { + throw new TargetPlatformException(I18n.format(tr("No valid hardware definitions found in folder {0}."), _folder.getName())); + } + } + /** * Grab the contents of a file as a string. */ @@ -1108,10 +1120,6 @@ public static void selectSerialPort(String port) { PreferencesData.set("serial.port.file", portFile); } - public static void setBuildFolder(File newBuildFolder) { - buildFolder = newBuildFolder; - } - static public void showError(String title, String message, int exit_code) { showError(title, message, null, exit_code); } diff --git a/arduino-core/src/processing/app/SketchCode.java b/arduino-core/src/processing/app/SketchCode.java index c9e8938780d..af4db284c00 100644 --- a/arduino-core/src/processing/app/SketchCode.java +++ b/arduino-core/src/processing/app/SketchCode.java @@ -25,7 +25,6 @@ import processing.app.helpers.FileUtils; import java.io.File; -import java.io.FileFilter; import java.io.IOException; import java.util.Arrays; import java.util.List; @@ -97,17 +96,26 @@ protected boolean deleteFile(File tempBuildFolder) { return false; } - File[] compiledFiles = tempBuildFolder.listFiles(new FileFilter() { - public boolean accept(File pathname) { - return pathname.getName().startsWith(getFileName()); - } + if (!deleteCompiledFilesFrom(tempBuildFolder)) { + return false; + } + + if (!deleteCompiledFilesFrom(new File(tempBuildFolder, "sketch"))) { + return false; + } + + return true; + } + + private boolean deleteCompiledFilesFrom(File tempBuildFolder) { + File[] compiledFiles = tempBuildFolder.listFiles(pathname -> { + return pathname.getName().startsWith(getFileName()); }); for (File compiledFile : compiledFiles) { if (!compiledFile.delete()) { return false; } } - return true; } diff --git a/arduino-core/src/processing/app/debug/Compiler.java b/arduino-core/src/processing/app/debug/Compiler.java deleted file mode 100644 index a3a42487fe8..00000000000 --- a/arduino-core/src/processing/app/debug/Compiler.java +++ /dev/null @@ -1,1527 +0,0 @@ -/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - Part of the Processing project - http://processing.org - - Copyright (c) 2004-08 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -package processing.app.debug; - -import cc.arduino.Constants; -import cc.arduino.MyStreamPumper; -import cc.arduino.contributions.packages.ContributedPlatform; -import cc.arduino.contributions.packages.ContributedTool; -import cc.arduino.packages.BoardPort; -import cc.arduino.packages.Uploader; -import cc.arduino.packages.UploaderFactory; -import cc.arduino.packages.uploaders.MergeSketchWithBooloader; -import cc.arduino.utils.Pair; -import org.apache.commons.compress.utils.IOUtils; -import org.apache.commons.exec.CommandLine; -import org.apache.commons.exec.DefaultExecutor; -import org.apache.commons.exec.PumpStreamHandler; -import processing.app.*; -import processing.app.helpers.FileUtils; -import processing.app.helpers.PreferencesMap; -import processing.app.helpers.PreferencesMapException; -import processing.app.helpers.StringReplacer; -import processing.app.helpers.filefilters.OnlyDirs; -import processing.app.legacy.PApplet; -import processing.app.packages.LegacyUserLibrary; -import processing.app.packages.LibraryList; -import processing.app.packages.UserLibrary; -import processing.app.preproc.PdePreprocessor; -import processing.app.tools.DoubleQuotedArgumentsOnWindowsCommandLine; - -import java.io.*; -import java.nio.file.Files; -import java.nio.file.Path; -import java.nio.file.Paths; -import java.nio.file.StandardCopyOption; -import java.util.*; -import java.util.stream.Collectors; -import java.util.stream.Stream; - -import static processing.app.I18n.tr; - -public class Compiler implements MessageConsumer { - - /** - * File inside the build directory that contains the build options - * used for the last build. - */ - static final public String BUILD_PREFS_FILE = "buildprefs.txt"; - private static final int ADDITIONAL_FILES_COPY_MAX_DEPTH = 5; - - private SketchData sketch; - private PreferencesMap prefs; - private boolean verbose; - private boolean saveHex; - - private List objectFiles; - - private boolean sketchIsCompiled; - - private RunnerException exception; - - /** - * Listener interface for progress update on the GUI - */ - public interface ProgressListener { - void progress(int percent); - } - - private ProgressListener progressListener; - - static public String build(SketchData data, String buildPath, File tempBuildFolder, ProgressListener progListener, boolean verbose, boolean save) throws RunnerException, PreferencesMapException { - if (SketchData.checkSketchFile(data.getPrimaryFile()) == null) - BaseNoGui.showError(tr("Bad file selected"), - tr("Bad sketch primary file or bad sketch directory structure"), null); - - String primaryClassName = data.getName() + ".cpp"; - Compiler compiler = new Compiler(data, buildPath, primaryClassName); - File buildPrefsFile = new File(buildPath, BUILD_PREFS_FILE); - String newBuildPrefs = compiler.buildPrefsString(); - - // Do a forced cleanup (throw everything away) if the previous - // build settings do not match the previous ones - boolean prefsChanged = compiler.buildPreferencesChanged(buildPrefsFile, newBuildPrefs); - compiler.cleanup(prefsChanged, tempBuildFolder); - - if (prefsChanged) { - PrintWriter out = null; - try { - out = new PrintWriter(buildPrefsFile); - out.print(newBuildPrefs); - } catch (IOException e) { - System.err.println(tr("Could not write build preferences file")); - } finally { - IOUtils.closeQuietly(out); - } - } - - compiler.setProgressListener(progListener); - - // compile the program. errors will happen as a RunnerException - // that will bubble up to whomever called build(). - try { - if (compiler.compile(verbose, save)) { - compiler.size(compiler.getBuildPreferences()); - return primaryClassName; - } - } catch (RunnerException e) { - // when the compile fails, take this opportunity to show - // any helpful info possible before throwing the exception - compiler.adviseDuplicateLibraries(); - throw e; - } - return null; - } - - static public Uploader getUploaderByPreferences(boolean noUploadPort) { - TargetPlatform target = BaseNoGui.getTargetPlatform(); - String board = PreferencesData.get("board"); - - BoardPort boardPort = null; - if (!noUploadPort) { - boardPort = BaseNoGui.getDiscoveryManager().find(PreferencesData.get("serial.port")); - } - - return new UploaderFactory().newUploader(target.getBoards().get(board), boardPort, noUploadPort); - } - - static public boolean upload(SketchData data, Uploader uploader, String buildPath, String suggestedClassName, boolean usingProgrammer, boolean noUploadPort, List warningsAccumulator) throws Exception { - - if (uploader == null) - uploader = getUploaderByPreferences(noUploadPort); - - boolean success = false; - - if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) { - BaseNoGui.showError(tr("Authorization required"), - tr("No authorization data found"), null); - } - - boolean useNewWarningsAccumulator = false; - if (warningsAccumulator == null) { - warningsAccumulator = new LinkedList(); - useNewWarningsAccumulator = true; - } - - try { - success = uploader.uploadUsingPreferences(data.getFolder(), buildPath, suggestedClassName, usingProgrammer, warningsAccumulator); - } finally { - if (uploader.requiresAuthorization() && !success) { - PreferencesData.remove(uploader.getAuthorizationKey()); - } - } - - if (useNewWarningsAccumulator) { - for (String warning : warningsAccumulator) { - System.out.print(tr("Warning")); - System.out.print(": "); - System.out.println(warning); - } - } - - return success; - } - - static public File findCompiledSketch(PreferencesMap prefs) throws PreferencesMapException { - List paths = Arrays.asList( - "{build.path}/sketch/{build.project_name}.with_bootloader.hex", - "{build.path}/sketch/{build.project_name}.hex", - "{build.path}/{build.project_name}.with_bootloader.hex", - "{build.path}/{build.project_name}.hex", - "{build.path}/sketch/{build.project_name}.bin", - "{build.path}/{build.project_name}.bin" - ); - Optional sketch = paths.stream(). - map(path -> StringReplacer.replaceFromMapping(path, prefs)). - map(File::new). - filter(File::exists). - findFirst(); - return sketch.orElseThrow(() -> new IllegalStateException(tr("No compiled sketch found"))); - } - - - /** - * Create a new Compiler - * @param _sketch Sketch object to be compiled. - * @param _buildPath Where the temporary files live and will be built from. - * @param _primaryClassName the name of the combined sketch file w/ extension - */ - public Compiler(SketchData _sketch, String _buildPath, String _primaryClassName) - throws RunnerException { - sketch = _sketch; - prefs = createBuildPreferences(_buildPath, _primaryClassName); - - // provide access to the source tree - prefs.put("build.source.path", _sketch.getFolder().getAbsolutePath()); - - // Start with an empty progress listener - progressListener = new ProgressListener() { - @Override - public void progress(int percent) { - } - }; - } - - /** - * Check if the build preferences used on the previous build in - * buildPath match the ones given. - */ - protected boolean buildPreferencesChanged(File buildPrefsFile, String newBuildPrefs) { - // No previous build, so no match - if (!buildPrefsFile.exists()) - return true; - - String previousPrefs; - try { - previousPrefs = FileUtils.readFileToString(buildPrefsFile); - } catch (IOException e) { - System.err.println(tr("Could not read prevous build preferences file, rebuilding all")); - return true; - } - - if (!previousPrefs.equals(newBuildPrefs)) { - System.out.println(tr("Build options changed, rebuilding all")); - return true; - } else { - return false; - } - } - - /** - * Returns the build preferences of the given compiler as a string. - * Only includes build-specific preferences, to make sure unrelated - * preferences don't cause a rebuild (in particular preferences that - * change on every start, like last.ide.xxx.daterun). */ - protected String buildPrefsString() { - PreferencesMap buildPrefs = getBuildPreferences(); - String res = ""; - SortedSet treeSet = new TreeSet(buildPrefs.keySet()); - for (String k : treeSet) { - if (k.startsWith("build.") || k.startsWith("compiler.") || k.startsWith("recipes.")) - res += k + " = " + buildPrefs.get(k) + "\n"; - } - return res; - } - - protected void setProgressListener(ProgressListener _progressListener) { - progressListener = (_progressListener == null ? - new ProgressListener() { - @Override - public void progress(int percent) { - } - } : _progressListener); - } - - /** - * Cleanup temporary files used during a build/run. - */ - protected void cleanup(boolean force, File tempBuildFolder) { - // if the java runtime is holding onto any files in the build dir, we - // won't be able to delete them, so we need to force a gc here - System.gc(); - - if (force) { - // delete the entire directory and all contents - // when we know something changed and all objects - // need to be recompiled, or if the board does not - // use setting build.dependency - //Base.removeDir(tempBuildFolder); - - // note that we can't remove the builddir itself, otherwise - // the next time we start up, internal runs using Runner won't - // work because the build dir won't exist at startup, so the classloader - // will ignore the fact that that dir is in the CLASSPATH in run.sh - BaseNoGui.removeDescendants(tempBuildFolder); - } else { - // delete only stale source files, from the previously - // compiled sketch. This allows multiple windows to be - // used. Keep everything else, which might be reusable - if (tempBuildFolder.exists()) { - String files[] = tempBuildFolder.list(); - if (files != null) { - for (String file : files) { - if (file.endsWith(".c") || file.endsWith(".cpp") || file.endsWith(".s")) { - File deleteMe = new File(tempBuildFolder, file); - if (!deleteMe.delete()) { - System.err.println("Could not delete " + deleteMe); - } - } - } - } - } - } - - // Create a fresh applet folder (needed before preproc is run below) - //tempBuildFolder.mkdirs(); - } - - protected void size(PreferencesMap prefs) throws RunnerException { - String maxTextSizeString = prefs.get("upload.maximum_size"); - String maxDataSizeString = prefs.get("upload.maximum_data_size"); - if (maxTextSizeString == null) - return; - long maxTextSize = Integer.parseInt(maxTextSizeString); - long maxDataSize = -1; - if (maxDataSizeString != null) - maxDataSize = Integer.parseInt(maxDataSizeString); - Sizer sizer = new Sizer(prefs); - long[] sizes; - try { - sizes = sizer.computeSize(); - } catch (RunnerException e) { - System.err.println(I18n.format(tr("Couldn't determine program size: {0}"), - e.getMessage())); - return; - } - - long textSize = sizes[0]; - long dataSize = sizes[1]; - System.out.println(); - System.out.println(I18n - .format(tr("Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} bytes."), - textSize, maxTextSize, textSize * 100 / maxTextSize)); - if (dataSize >= 0) { - if (maxDataSize > 0) { - System.out - .println(I18n - .format( - tr("Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes for local variables. Maximum is {1} bytes."), - dataSize, maxDataSize, dataSize * 100 / maxDataSize, - maxDataSize - dataSize)); - } else { - System.out.println(I18n - .format(tr("Global variables use {0} bytes of dynamic memory."), dataSize)); - } - } - - if (textSize > maxTextSize) - throw new RunnerException( - tr("Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it.")); - - if (maxDataSize > 0 && dataSize > maxDataSize) - throw new RunnerException( - tr("Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.")); - - int warnDataPercentage = Integer.parseInt(prefs.get("build.warn_data_percentage")); - if (maxDataSize > 0 && dataSize > maxDataSize*warnDataPercentage/100) - System.err.println(tr("Low memory available, stability problems may occur.")); - } - - /** - * Compile sketch. - * @param _verbose - * - * @return true if successful. - * @throws RunnerException Only if there's a problem. Only then. - */ - public boolean compile(boolean _verbose, boolean _save) throws RunnerException, PreferencesMapException { - File sketchBuildFolder = new File(prefs.get("build.path"), "sketch"); - if (!sketchBuildFolder.exists() && !sketchBuildFolder.mkdirs()) { - throw new RunnerException("Unable to create folder " + sketchBuildFolder); - } - preprocess(sketchBuildFolder.getAbsolutePath()); - - verbose = _verbose || PreferencesData.getBoolean("build.verbose"); - saveHex = _save; - sketchIsCompiled = false; - - // Hook runs at Start of Compilation - runActions("hooks.prebuild", prefs); - - objectFiles = new ArrayList(); - - // 0. include paths for core + all libraries - progressListener.progress(20); - List includeFolders = new ArrayList(); - includeFolders.add(prefs.getFile("build.core.path")); - if (prefs.getFile("build.variant.path") != null) - includeFolders.add(prefs.getFile("build.variant.path")); - for (UserLibrary lib : importedLibraries) { - if (verbose) { - String legacy = ""; - if (lib instanceof LegacyUserLibrary) { - legacy = "(legacy)"; - } - - if (lib.getParsedVersion() == null) { - System.out.println(I18n.format(tr("Using library {0} in folder: {1} {2}"), lib.getName(), lib.getInstalledFolder(), legacy)); - } else { - System.out.println(I18n.format(tr("Using library {0} at version {1} in folder: {2} {3}"), lib.getName(), lib.getParsedVersion(), lib.getInstalledFolder(), legacy)); - } - } - includeFolders.add(lib.getSrcFolder()); - } - - if (verbose) { - System.out.println(); - } - - List archs = new ArrayList(); - archs.add(BaseNoGui.getTargetPlatform().getId()); - if (prefs.containsKey("architecture.override_check")) { - String[] overrides = prefs.get("architecture.override_check").split(","); - archs.addAll(Arrays.asList(overrides)); - } - for (UserLibrary lib : importedLibraries) { - if (!lib.supportsArchitecture(archs)) { - System.err.println(I18n - .format(tr("WARNING: library {0} claims to run on {1} " - + "architecture(s) and may be incompatible with your" - + " current board which runs on {2} architecture(s)."), lib - .getName(), lib.getArchitectures(), archs)); - System.err.println(); - } - } - - runActions("hooks.sketch.prebuild", prefs); - - // 1. compile the sketch (already in the buildPath) - progressListener.progress(20); - compileSketch(includeFolders, sketchBuildFolder); - sketchIsCompiled = true; - - runActions("hooks.sketch.postbuild", prefs); - - runActions("hooks.libraries.prebuild", prefs); - - // 2. compile the libraries, outputting .o files to: // - // Doesn't really use configPreferences - progressListener.progress(30); - compileLibraries(includeFolders); - - runActions("hooks.libraries.postbuild", prefs); - - runActions("hooks.core.prebuild", prefs); - - // 3. compile the core, outputting .o files to and then - // collecting them into the core.a library file. - progressListener.progress(40); - compileCore(); - - runActions("hooks.core.postbuild", prefs); - - runActions("hooks.linking.prelink", prefs); - - // 4. link it all together into the .elf file - progressListener.progress(50); - compileLink(); - - runActions("hooks.linking.postlink", prefs); - - runActions("hooks.objcopy.preobjcopy", prefs); - - // 5. run objcopy to generate output files - progressListener.progress(60); - List objcopyPatterns = new ArrayList(); - for (String key : prefs.keySet()) { - if (key.startsWith("recipe.objcopy.") && key.endsWith(".pattern")) - objcopyPatterns.add(key); - } - Collections.sort(objcopyPatterns); - for (String recipe : objcopyPatterns) { - runRecipe(recipe); - } - - runActions("hooks.objcopy.postobjcopy", prefs); - - progressListener.progress(70); - try { - mergeSketchWithBootloaderIfAppropriate(sketch.getName() + ".cpp", prefs); - } catch (IOException e) { - e.printStackTrace(); - // ignore - } - - // 7. save the hex file - if (saveHex) { - runActions("hooks.savehex.presavehex", prefs); - - progressListener.progress(80); - saveHex(); - - runActions("hooks.savehex.postsavehex", prefs); - } - - progressListener.progress(90); - - // Hook runs at End of Compilation - runActions("hooks.postbuild", prefs); - adviseDuplicateLibraries(); - - return true; - } - - private void adviseDuplicateLibraries() { - if (importedDuplicateHeaders == null) { - return; - } - for (int i=0; i < importedDuplicateHeaders.size(); i++) { - System.out.println(I18n.format(tr("Multiple libraries were found for \"{0}\""), - importedDuplicateHeaders.get(i))); - boolean first = true; - for (UserLibrary lib : importedDuplicateLibraries.get(i)) { - if (first) { - System.out.println(I18n.format(tr(" Used: {0}"), - lib.getInstalledFolder().getPath())); - first = false; - } else { - System.out.println(I18n.format(tr(" Not used: {0}"), - lib.getInstalledFolder().getPath())); - } - } - } - } - - private PreferencesMap createBuildPreferences(String _buildPath, - String _primaryClassName) - throws RunnerException { - - if (BaseNoGui.getBoardPreferences() == null) { - RunnerException re = new RunnerException( - tr("No board selected; please choose a board from the Tools > Board menu.")); - re.hideStackTrace(); - throw re; - } - - // Check if the board needs a platform from another package - TargetPlatform targetPlatform = BaseNoGui.getTargetPlatform(); - TargetPlatform corePlatform = null; - PreferencesMap boardPreferences = BaseNoGui.getBoardPreferences(); - String core = boardPreferences.get("build.core", "arduino"); - if (core.contains(":")) { - String[] split = core.split(":"); - core = split[1]; - corePlatform = BaseNoGui.getTargetPlatform(split[0], targetPlatform.getId()); - if (corePlatform == null) { - RunnerException re = new RunnerException(I18n - .format(tr("Selected board depends on '{0}' core (not installed)."), - split[0])); - re.hideStackTrace(); - throw re; - } - } - - // Merge all the global preference configuration in order of priority - PreferencesMap buildPref = new PreferencesMap(); - buildPref.putAll(PreferencesData.getMap()); - if (corePlatform != null) { - buildPref.putAll(corePlatform.getPreferences()); - } - buildPref.putAll(targetPlatform.getPreferences()); - buildPref.putAll(BaseNoGui.getBoardPreferences()); - for (String k : buildPref.keySet()) { - if (buildPref.get(k) == null) { - buildPref.put(k, ""); - } - } - - buildPref.put("build.path", _buildPath); - buildPref.put("build.project_name", _primaryClassName); - buildPref.put("build.arch", targetPlatform.getId().toUpperCase()); - - // Platform.txt should define its own compiler.path. For - // compatibility with earlier 1.5 versions, we define a (ugly, - // avr-specific) default for it, but this should be removed at some - // point. - if (!buildPref.containsKey("compiler.path")) { - System.err.println(tr("Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer.")); - buildPref.put("compiler.path", BaseNoGui.getAvrBasePath()); - } - - TargetPlatform referencePlatform = null; - if (corePlatform != null) { - referencePlatform = corePlatform; - } else { - referencePlatform = targetPlatform; - } - - buildPref.put("build.platform.path", referencePlatform.getFolder().getAbsolutePath()); - - // Core folder - File coreFolder = new File(referencePlatform.getFolder(), "cores"); - coreFolder = new File(coreFolder, core); - buildPref.put("build.core", core); - buildPref.put("build.core.path", coreFolder.getAbsolutePath()); - - // System Folder - File systemFolder = referencePlatform.getFolder(); - systemFolder = new File(systemFolder, "system"); - buildPref.put("build.system.path", systemFolder.getAbsolutePath()); - - // Variant Folder - String variant = buildPref.get("build.variant"); - if (variant != null) { - TargetPlatform t; - if (!variant.contains(":")) { - t = targetPlatform; - } else { - String[] split = variant.split(":", 2); - t = BaseNoGui.getTargetPlatform(split[0], targetPlatform.getId()); - variant = split[1]; - } - File variantFolder = new File(t.getFolder(), "variants"); - variantFolder = new File(variantFolder, variant); - buildPref.put("build.variant.path", variantFolder.getAbsolutePath()); - } else { - buildPref.put("build.variant.path", ""); - } - - ContributedPlatform installedPlatform = BaseNoGui.indexer.getInstalled(referencePlatform.getContainerPackage().getId(), referencePlatform.getId()); - if (installedPlatform != null) { - List tools = installedPlatform.getResolvedTools(); - BaseNoGui.createToolPreferences(tools, false); - } - - // Build Time - GregorianCalendar cal = new GregorianCalendar(); - long current = new Date().getTime() / 1000; - long timezone = cal.get(Calendar.ZONE_OFFSET) / 1000; - long daylight = cal.get(Calendar.DST_OFFSET) / 1000; - buildPref.put("extra.time.utc", Long.toString(current)); - buildPref.put("extra.time.local", Long.toString(current + timezone + daylight)); - buildPref.put("extra.time.zone", Long.toString(timezone)); - buildPref.put("extra.time.dst", Long.toString(daylight)); - - List> unsetPrefs = buildPref.entrySet().stream() - .filter(entry -> Constants.PREF_REMOVE_PLACEHOLDER.equals(entry.getValue())) - .collect(Collectors.toList()); - - buildPref.entrySet().stream() - .filter(entry -> { - return unsetPrefs.stream() - .filter(unsetPrefEntry -> entry.getValue().contains(unsetPrefEntry.getKey())) - .count() > 0; - }) - .forEach(invalidEntry -> buildPref.put(invalidEntry.getKey(), "")); - - return buildPref; - } - - private List compileFiles(File outputPath, File sourcePath, - boolean recurse, List includeFolders) - throws RunnerException, PreferencesMapException { - List sSources = findFilesInFolder(sourcePath, "S", recurse); - List cSources = findFilesInFolder(sourcePath, "c", recurse); - List cppSources = findFilesInFolder(sourcePath, "cpp", recurse); - List objectPaths = new ArrayList(); - - for (File file : sSources) { - File objectFile = new File(outputPath, file.getName() + ".o"); - objectPaths.add(objectFile); - String[] cmd = getCommandCompilerByRecipe(includeFolders, file, objectFile, "recipe.S.o.pattern"); - execAsynchronously(cmd); - } - - for (File file : cSources) { - File objectFile = new File(outputPath, file.getName() + ".o"); - File dependFile = new File(outputPath, file.getName() + ".d"); - objectPaths.add(objectFile); - if (isAlreadyCompiled(file, objectFile, dependFile, prefs)) - continue; - String[] cmd = getCommandCompilerByRecipe(includeFolders, file, objectFile, "recipe.c.o.pattern"); - execAsynchronously(cmd); - } - - for (File file : cppSources) { - File objectFile = new File(outputPath, file.getName() + ".o"); - File dependFile = new File(outputPath, file.getName() + ".d"); - objectPaths.add(objectFile); - if (isAlreadyCompiled(file, objectFile, dependFile, prefs)) - continue; - String[] cmd = getCommandCompilerByRecipe(includeFolders, file, objectFile, "recipe.cpp.o.pattern"); - execAsynchronously(cmd); - } - - return objectPaths; - } - - /** - * Strip escape sequences used in makefile dependency files (.d) - * https://github.com/arduino/Arduino/issues/2255#issuecomment-57645845 - * - * @param line - * @return - */ - protected static String unescapeDepFile(String line) { - // Replaces: "\\" -> "\" - // Replaces: "\ " -> " " - // Replaces: "\#" -> "#" - line = line.replaceAll("\\\\([ #\\\\])", "$1"); - // Replaces: "$$" -> "$" - line = line.replace("$$", "$"); - return line; - } - - private boolean isAlreadyCompiled(File src, File obj, File dep, Map prefs) { - boolean ret=true; - BufferedReader reader = null; - try { - //System.out.println("\n isAlreadyCompiled: begin checks: " + obj.getPath()); - if (!obj.exists()) return false; // object file (.o) does not exist - if (!dep.exists()) return false; // dep file (.d) does not exist - long src_modified = src.lastModified(); - long obj_modified = obj.lastModified(); - if (src_modified >= obj_modified) return false; // source modified since object compiled - if (src_modified >= dep.lastModified()) return false; // src modified since dep compiled - reader = new BufferedReader(new FileReader(dep.getPath())); - String line; - boolean need_obj_parse = true; - while ((line = reader.readLine()) != null) { - if (line.endsWith("\\")) { - line = line.substring(0, line.length() - 1); - } - line = line.trim(); - line = unescapeDepFile(line); - if (line.length() == 0) continue; // ignore blank lines - if (need_obj_parse) { - // line is supposed to be the object file - make sure it really is! - if (line.endsWith(":")) { - line = line.substring(0, line.length() - 1); - String objpath = obj.getCanonicalPath(); - File linefile = new File(line); - String linepath = linefile.getCanonicalPath(); - //System.out.println(" isAlreadyCompiled: obj = " + objpath); - //System.out.println(" isAlreadyCompiled: line = " + linepath); - if (objpath.compareTo(linepath) == 0) { - need_obj_parse = false; - continue; - } else { - ret = false; // object named inside .d file is not the correct file! - break; - } - } else { - ret = false; // object file supposed to end with ':', but didn't - break; - } - } else { - // line is a prerequisite file - File prereq = new File(line); - if (!prereq.exists()) { - ret = false; // prerequisite file did not exist - break; - } - if (prereq.lastModified() >= obj_modified) { - ret = false; // prerequisite modified since object was compiled - break; - } - //System.out.println(" isAlreadyCompiled: prerequisite ok"); - } - } - } catch (Exception e) { - return false; // any error reading dep file = recompile it - } finally { - IOUtils.closeQuietly(reader); - } - if (ret && verbose) { - System.out.println(I18n.format(tr("Using previously compiled file: {0}"), obj.getPath())); - } - return ret; - } - - - /** - * Either succeeds or throws a RunnerException fit for public consumption. - */ - private void execAsynchronously(String[] command) throws RunnerException { - - // eliminate any empty array entries - List stringList = new ArrayList(); - for (String string : command) { - string = string.trim(); - if (string.length() != 0) - stringList.add(string); - } - command = stringList.toArray(new String[stringList.size()]); - if (command.length == 0) - return; - - if (verbose) { - for (String c : command) - System.out.print(c + " "); - System.out.println(); - } - - DefaultExecutor executor = new DefaultExecutor(); - executor.setStreamHandler(new PumpStreamHandler() { - - @Override - protected Thread createPump(InputStream is, OutputStream os, boolean closeWhenExhausted) { - final Thread result = new Thread(new MyStreamPumper(is, Compiler.this)); - result.setDaemon(true); - return result; - - } - }); - - CommandLine commandLine = new DoubleQuotedArgumentsOnWindowsCommandLine(command[0]); - for (int i = 1; i < command.length; i++) { - commandLine.addArgument(command[i], false); - } - - int result; - executor.setExitValues(null); - try { - result = executor.execute(commandLine); - } catch (IOException e) { - RunnerException re = new RunnerException(e.getMessage()); - re.hideStackTrace(); - throw re; - } - executor.setExitValues(new int[0]); - - // an error was queued up by message(), barf this back to compile(), - // which will barf it back to Editor. if you're having trouble - // discerning the imagery, consider how cows regurgitate their food - // to digest it, and the fact that they have five stomaches. - // - //System.out.println("throwing up " + exception); - if (exception != null) - throw exception; - - if (result > 1) { - // a failure in the tool (e.g. unable to locate a sub-executable) - System.err - .println(I18n.format(tr("{0} returned {1}"), command[0], result)); - } - - if (result != 0) { - RunnerException re = new RunnerException(tr("Error compiling.")); - re.hideStackTrace(); - throw re; - } - } - - /** - * Part of the MessageConsumer interface, this is called - * whenever a piece (usually a line) of error message is spewed - * out from the compiler. The errors are parsed for their contents - * and line number, which is then reported back to Editor. - */ - public void message(String s) { - int i; - - // remove the build path so people only see the filename - // can't use replaceAll() because the path may have characters in it which - // have meaning in a regular expression. - if (!verbose) { - String buildPath = prefs.get("build.path"); - while ((i = s.indexOf(buildPath + File.separator)) != -1) { - s = s.substring(0, i) + s.substring(i + (buildPath + File.separator).length()); - } - } - - // look for error line, which contains file name, line number, - // and at least the first line of the error message - String errorFormat = "(.+\\.\\w+):(\\d+)(:\\d+)*:\\s*error:\\s*(.*)\\s*"; - String[] pieces = PApplet.match(s, errorFormat); - -// if (pieces != null && exception == null) { -// exception = sketch.placeException(pieces[3], pieces[1], PApplet.parseInt(pieces[2]) - 1); -// if (exception != null) exception.hideStackTrace(); -// } - - if (pieces != null) { - String error = pieces[pieces.length - 1], msg = ""; - - if (error.trim().equals("SPI.h: No such file or directory")) { - error = tr("Please import the SPI library from the Sketch > Import Library menu."); - msg = tr("\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"); - } - - if (error.trim().equals("'BYTE' was not declared in this scope")) { - error = tr("The 'BYTE' keyword is no longer supported."); - msg = tr("\nAs of Arduino 1.0, the 'BYTE' keyword is no longer supported." + - "\nPlease use Serial.write() instead.\n\n"); - } - - if (error.trim().equals("no matching function for call to 'Server::Server(int)'")) { - error = tr("The Server class has been renamed EthernetServer."); - msg = tr("\nAs of Arduino 1.0, the Server class in the Ethernet library " + - "has been renamed to EthernetServer.\n\n"); - } - - if (error.trim().equals("no matching function for call to 'Client::Client(byte [4], int)'")) { - error = tr("The Client class has been renamed EthernetClient."); - msg = tr("\nAs of Arduino 1.0, the Client class in the Ethernet library " + - "has been renamed to EthernetClient.\n\n"); - } - - if (error.trim().equals("'Udp' was not declared in this scope")) { - error = tr("The Udp class has been renamed EthernetUdp."); - msg = tr("\nAs of Arduino 1.0, the Udp class in the Ethernet library " + - "has been renamed to EthernetUdp.\n\n"); - } - - if (error.trim().equals("'class TwoWire' has no member named 'send'")) { - error = tr("Wire.send() has been renamed Wire.write()."); - msg = tr("\nAs of Arduino 1.0, the Wire.send() function was renamed " + - "to Wire.write() for consistency with other libraries.\n\n"); - } - - if (error.trim().equals("'class TwoWire' has no member named 'receive'")) { - error = tr("Wire.receive() has been renamed Wire.read()."); - msg = tr("\nAs of Arduino 1.0, the Wire.receive() function was renamed " + - "to Wire.read() for consistency with other libraries.\n\n"); - } - - if (error.trim().equals("'Mouse' was not declared in this scope")) { - error = tr("'Mouse' only supported on the Arduino Leonardo"); - //msg = _("\nThe 'Mouse' class is only supported on the Arduino Leonardo.\n\n"); - } - - if (error.trim().equals("'Keyboard' was not declared in this scope")) { - error = tr("'Keyboard' only supported on the Arduino Leonardo"); - //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 = 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("ino") || code.isExtension("pde")) ? code.getPrettyName() : code.getFileName(); - int lineNum = e.getCodeLine() + 1; - s = fileName + ":" + lineNum + ": error: " + error + msg; - } - - if (e != null) { - if (exception == null || exception.getMessage().equals(e.getMessage())) { - exception = e; - exception.hideStackTrace(); - } - } - } - - if (s.contains("undefined reference to `SPIClass::begin()'") && - s.contains("libraries/Robot_Control")) { - String error = tr("Please import the SPI library from the Sketch > Import Library menu."); - exception = new RunnerException(error); - } - - if (s.contains("undefined reference to `Wire'") && - s.contains("libraries/Robot_Control")) { - String error = tr("Please import the Wire library from the Sketch > Import Library menu."); - exception = new RunnerException(error); - } - - System.err.print(s); - } - - private String[] getCommandCompilerByRecipe(List includeFolders, File sourceFile, File objectFile, String recipe) throws PreferencesMapException, RunnerException { - String includes = prepareIncludes(includeFolders); - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - dict.put("includes", includes); - dict.put("source_file", sourceFile.getAbsolutePath()); - dict.put("object_file", objectFile.getAbsolutePath()); - - setupWarningFlags(dict); - - String cmd = prefs.getOrExcept(recipe); - try { - return StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - } - - private void setupWarningFlags(PreferencesMap dict) { - if (dict.containsKey("compiler.warning_level")) { - String key = "compiler.warning_flags." + dict.get("compiler.warning_level"); - dict.put("compiler.warning_flags", dict.get(key)); - } else { - dict.put("compiler.warning_flags", dict.get("compiler.warning_flags.none")); - } - - if (dict.get("compiler.warning_flags") == null) { - dict.remove("compiler.warning_flags"); - } - } - - ///////////////////////////////////////////////////////////////////////////// - - private void createFolder(File folder) throws RunnerException { - if (folder.isDirectory()) - return; - if (!folder.mkdir()) - throw new RunnerException("Couldn't create: " + folder); - } - - static public List findFilesInFolder(File folder, String extension, - boolean recurse) { - List files = new ArrayList(); - - if (FileUtils.isSCCSOrHiddenFile(folder)) { - return files; - } - - File[] listFiles = folder.listFiles(); - if (listFiles == null) { - return files; - } - - for (File file : listFiles) { - if (FileUtils.isSCCSOrHiddenFile(file)) { - continue; // skip hidden files - } - - if (file.getName().endsWith("." + extension)) - files.add(file); - - if (recurse && file.isDirectory()) { - files.addAll(findFilesInFolder(file, extension, true)); - } - } - - return files; - } - - // 1. compile the sketch (already in the buildPath) - void compileSketch(List includeFolders, File buildPath) throws RunnerException, PreferencesMapException { - objectFiles.addAll(compileFiles(buildPath, buildPath, false, includeFolders)); - } - - // 2. compile the libraries, outputting .o files to: - // // - void compileLibraries(List includeFolders) throws RunnerException, PreferencesMapException { - for (UserLibrary lib : importedLibraries) { - compileLibrary(lib, includeFolders); - } - } - - private void compileLibrary(UserLibrary lib, List includeFolders) - throws RunnerException, PreferencesMapException { - File libFolder = lib.getSrcFolder(); - File librariesFolder = new File(prefs.getFile("build.path"), "libraries"); - if (!librariesFolder.exists() && !librariesFolder.mkdirs()) { - throw new RunnerException("Unable to create folder " + librariesFolder); - } - - File libBuildFolder = new File(librariesFolder, lib.getName()); - - if (lib.useRecursion()) { - // libBuildFolder == {build.path}/LibName - // libFolder == {lib.path}/src - recursiveCompileFilesInFolder(libBuildFolder, libFolder, includeFolders); - - } else { - // libFolder == {lib.path}/ - // utilityFolder == {lib.path}/utility - // libBuildFolder == {build.path}/LibName - // utilityBuildFolder == {build.path}/LibName/utility - File utilityFolder = new File(libFolder, "utility"); - File utilityBuildFolder = new File(libBuildFolder, "utility"); - - includeFolders.add(utilityFolder); - compileFilesInFolder(libBuildFolder, libFolder, includeFolders); - compileFilesInFolder(utilityBuildFolder, utilityFolder, includeFolders); - - // other libraries should not see this library's utility/ folder - includeFolders.remove(utilityFolder); - } - } - - private void recursiveCompileFilesInFolder(File srcBuildFolder, File srcFolder, List includeFolders) throws RunnerException, PreferencesMapException { - compileFilesInFolder(srcBuildFolder, srcFolder, includeFolders); - for (File subFolder : srcFolder.listFiles(new OnlyDirs())) { - File subBuildFolder = new File(srcBuildFolder, subFolder.getName()); - recursiveCompileFilesInFolder(subBuildFolder, subFolder, includeFolders); - } - } - - private void compileFilesInFolder(File buildFolder, File srcFolder, List includeFolders) throws RunnerException, PreferencesMapException { - createFolder(buildFolder); - List objects = compileFiles(buildFolder, srcFolder, false, includeFolders); - objectFiles.addAll(objects); - } - - // 3. compile the core, outputting .o files to and then - // collecting them into the core.a library file. - // Also compiles the variant (if it supplies actual source files), - // which are included in the link directly (not through core.a) - void compileCore() - throws RunnerException, PreferencesMapException { - - File coreFolder = prefs.getFile("build.core.path"); - File variantFolder = prefs.getFile("build.variant.path"); - File buildFolder = new File(prefs.getFile("build.path"), "core"); - if (!buildFolder.exists() && !buildFolder.mkdirs()) { - throw new RunnerException("Unable to create folder " + buildFolder); - } - - List includeFolders = new ArrayList(); - includeFolders.add(coreFolder); // include core path only - if (variantFolder != null) - includeFolders.add(variantFolder); - - - if (variantFolder != null) - objectFiles.addAll(compileFiles(buildFolder, variantFolder, true, - includeFolders)); - - File afile = new File(buildFolder, "core.a"); - - List coreObjectFiles = compileFiles(buildFolder, coreFolder, true, - includeFolders); - - // See if the .a file is already uptodate - if (afile.exists()) { - boolean changed = false; - for (File file : coreObjectFiles) { - if (file.lastModified() > afile.lastModified()) { - changed = true; - break; - } - } - - // If none of the object files is newer than the .a file, don't - // bother rebuilding the .a file. There is a small corner case - // here: If a source file was removed, but no other source file - // was modified, this will not rebuild core.a even when it - // should. It's hard to fix and not a realistic case, so it - // shouldn't be a problem. - if (!changed) { - if (verbose) - System.out.println(I18n.format(tr("Using previously compiled file: {0}"), afile.getPath())); - return; - } - } - - // Delete the .a file, to prevent any previous code from lingering - afile.delete(); - - try { - for (File file : coreObjectFiles) { - - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - dict.put("archive_file", afile.getName()); - dict.put("object_file", file.getAbsolutePath()); - dict.put("build.path", buildFolder.getAbsolutePath()); - - String[] cmdArray; - String cmd = prefs.getOrExcept("recipe.ar.pattern"); - try { - cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - execAsynchronously(cmdArray); - } - } catch (RunnerException e) { - afile.delete(); - throw e; - } - } - - // 4. link it all together into the .elf file - void compileLink() - throws RunnerException, PreferencesMapException { - - // TODO: Make the --relax thing in configuration files. - - // For atmega2560, need --relax linker option to link larger - // programs correctly. - String optRelax = ""; - if (prefs.get("build.mcu").equals("atmega2560")) - optRelax = ",--relax"; - - String objectFileList = ""; - for (File file : objectFiles) - objectFileList += " \"" + file.getAbsolutePath() + '"'; - objectFileList = objectFileList.substring(1); - - PreferencesMap dict = new PreferencesMap(prefs); - String flags = dict.get("compiler.c.elf.flags") + optRelax; - dict.put("compiler.c.elf.flags", flags); - dict.put("archive_file", new File("core", "core.a").getPath()); - dict.put("object_files", objectFileList); - dict.put("ide_version", "" + BaseNoGui.REVISION); - - setupWarningFlags(dict); - - String[] cmdArray; - String cmd = prefs.getOrExcept("recipe.c.combine.pattern"); - try { - cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - execAsynchronously(cmdArray); - } - - void runActions(String recipeClass, PreferencesMap prefs) throws RunnerException, PreferencesMapException { - List patterns = new ArrayList(); - for (String key : prefs.keySet()) { - if (key.startsWith("recipe."+recipeClass) && key.endsWith(".pattern")) - patterns.add(key); - } - Collections.sort(patterns); - for (String recipe : patterns) { - runRecipe(recipe); - } - } - - void runRecipe(String recipe) throws RunnerException, PreferencesMapException { - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - dict.put("sketch_path", sketch.getFolder().getAbsolutePath()); - - String[] cmdArray; - String cmd = prefs.getOrExcept(recipe); - try { - cmdArray = StringReplacer.formatAndSplit(cmd, dict, true); - } catch (Exception e) { - throw new RunnerException(e); - } - execAsynchronously(cmdArray); - } - - private void mergeSketchWithBootloaderIfAppropriate(String className, PreferencesMap prefs) throws IOException { - if (!prefs.containsKey("bootloader.noblink") && !prefs.containsKey("bootloader.file")) { - return; - } - - String buildPath = prefs.get("build.path"); - - Path sketch; - Path sketchInSubfolder = Paths.get(buildPath, "sketch", className + ".hex"); - Path sketchInBuildPath = Paths.get(buildPath, className + ".hex"); - if (Files.exists(sketchInSubfolder)) { - sketch = sketchInSubfolder; - } else if (Files.exists(sketchInBuildPath)) { - sketch = sketchInBuildPath; - } else { - return; - } - - String bootloaderNoBlink = prefs.get("bootloader.noblink"); - if (bootloaderNoBlink == null) { - bootloaderNoBlink = prefs.get("bootloader.file"); - } - - Path bootloader = Paths.get(prefs.get("runtime.platform.path"), "bootloaders", bootloaderNoBlink); - if (!Files.exists(bootloader)) { - System.err.println(I18n.format(tr("Bootloader file specified but missing: {0}"), bootloader)); - return; - } - - Path mergedSketch; - if ("sketch".equals(sketch.getParent().getFileName().toString())) { - mergedSketch = Paths.get(buildPath, "sketch", className + ".with_bootloader.hex"); - } else { - mergedSketch = Paths.get(buildPath, className + ".with_bootloader.hex"); - } - - Files.copy(sketch, mergedSketch, StandardCopyOption.REPLACE_EXISTING); - - new MergeSketchWithBooloader().merge(mergedSketch.toFile(), bootloader.toFile()); - } - - //7. Save the .hex file - void saveHex() throws RunnerException { - List compiledSketches = new ArrayList<>(prefs.subTree("recipe.output.tmp_file", 1).values()); - List copyOfCompiledSketches = new ArrayList<>(prefs.subTree("recipe.output.save_file", 1).values()); - - if (isExportCompiledSketchSupported(compiledSketches, copyOfCompiledSketches)) { - System.err.println(tr("Warning: This core does not support exporting sketches. Please consider upgrading it or contacting its author")); - return; - } - - PreferencesMap dict = new PreferencesMap(prefs); - dict.put("ide_version", "" + BaseNoGui.REVISION); - - if (!compiledSketches.isEmpty()) { - for (int i = 0; i < compiledSketches.size(); i++) { - saveHex(compiledSketches.get(i), copyOfCompiledSketches.get(i), prefs); - } - } else { - try { - saveHex(prefs.getOrExcept("recipe.output.tmp_file"), prefs.getOrExcept("recipe.output.save_file"), prefs); - } catch (PreferencesMapException e) { - throw new RunnerException(e); - } - } - } - - private boolean isExportCompiledSketchSupported(List compiledSketches, List copyOfCompiledSketches) { - return (compiledSketches.isEmpty() || copyOfCompiledSketches.isEmpty() || copyOfCompiledSketches.size() < compiledSketches.size()) && (!prefs.containsKey("recipe.output.tmp_file") || !prefs.containsKey("recipe.output.save_file")); - } - - private void saveHex(String compiledSketch, String copyOfCompiledSketch, PreferencesMap dict) throws RunnerException { - try { - compiledSketch = StringReplacer.replaceFromMapping(compiledSketch, dict); - copyOfCompiledSketch = StringReplacer.replaceFromMapping(copyOfCompiledSketch, dict); - - Path compiledSketchPath; - Path compiledSketchPathInSubfolder = Paths.get(prefs.get("build.path"), "sketch", compiledSketch); - Path compiledSketchPathInBuildPath = Paths.get(prefs.get("build.path"), compiledSketch); - if (Files.exists(compiledSketchPathInSubfolder)) { - compiledSketchPath = compiledSketchPathInSubfolder; - } else { - compiledSketchPath = compiledSketchPathInBuildPath; - } - - Path copyOfCompiledSketchFilePath = Paths.get(this.sketch.getFolder().getAbsolutePath(), copyOfCompiledSketch); - - Files.copy(compiledSketchPath, copyOfCompiledSketchFilePath, StandardCopyOption.REPLACE_EXISTING); - } catch (IOException e) { - throw new RunnerException(e); - } - } - - private static String prepareIncludes(List includeFolders) { - String res = ""; - for (File p : includeFolders) - res += " \"-I" + p.getAbsolutePath() + '"'; - - // Remove first space - return res.substring(1); - } - - public PreferencesMap getBuildPreferences() { - return prefs; - } - - /** - * Build all the code for this sketch. - * - * In an advanced program, the returned class name could be different, - * which is why the className is set based on the return value. - * A compilation error will burp up a RunnerException. - * - * Setting purty to 'true' will cause exception line numbers to be incorrect. - * Unless you know the code compiles, you should first run the preprocessor - * with purty set to false to make sure there are no errors, then once - * successful, re-export with purty set to true. - * - * @param buildPath Location to copy all the .java files - * @return null if compilation failed, main class name if not - */ - public void preprocess(String buildPath) throws RunnerException { - preprocess(buildPath, new PdePreprocessor()); - } - - public void preprocess(String buildPath, PdePreprocessor preprocessor) throws RunnerException { - - // 1. concatenate all .pde files to the 'main' pde - // store line number for starting point of each code bit - - StringBuffer bigCode = new StringBuffer(); - int bigCount = 0; - for (SketchCode sc : sketch.getCodes()) { - if (sc.isExtension(SketchData.SKETCH_EXTENSIONS)) { - sc.setPreprocOffset(bigCount); - // These #line directives help the compiler report errors with - // correct the filename and line number (issue 281 & 907) - bigCode.append("#line 1 \"" + sc.getFileName() + "\"\n"); - bigCode.append(sc.getProgram()); - bigCode.append('\n'); - bigCount += sc.getLineCount(); - } - } - - // Note that the headerOffset isn't applied until compile and run, because - // it only applies to the code after it's been written to the .java file. - int headerOffset = 0; - try { - headerOffset = preprocessor.writePrefix(bigCode.toString()); - } catch (FileNotFoundException fnfe) { - fnfe.printStackTrace(); - String msg = tr("Build folder disappeared or could not be written"); - throw new RunnerException(msg); - } - - // 2. run preproc on that code using the sugg class name - // to create a single .java file and write to buildpath - - FileOutputStream outputStream = null; - try { - // Output file - File streamFile = new File(buildPath, sketch.getName() + ".cpp"); - outputStream = new FileOutputStream(streamFile); - preprocessor.write(outputStream); - } catch (FileNotFoundException fnfe) { - fnfe.printStackTrace(); - String msg = tr("Build folder disappeared or could not be written"); - throw new RunnerException(msg); - } catch (RunnerException pe) { - // RunnerExceptions are caught here and re-thrown, so that they don't - // get lost in the more general "Exception" handler below. - throw pe; - - } catch (Exception ex) { - // TODO better method for handling this? - System.err.println(I18n.format(tr("Uncaught exception type: {0}"), ex.getClass())); - ex.printStackTrace(); - throw new RunnerException(ex.toString()); - } finally { - IOUtils.closeQuietly(outputStream); - } - - // grab the imports from the code just preproc'd - - importedLibraries = new LibraryList(); - importedDuplicateHeaders = new ArrayList(); - importedDuplicateLibraries = new ArrayList(); - for (String item : preprocessor.getExtraImports()) { - LibraryList list = BaseNoGui.importToLibraryTable.get(item); - if (list != null) { - UserLibrary lib = list.peekFirst(); - if (lib != null && !importedLibraries.contains(lib)) { - importedLibraries.add(lib); - if (list.size() > 1) { - importedDuplicateHeaders.add(item); - importedDuplicateLibraries.add(list); - } - } - } - } - - // 3. then loop over the code[] and save each .java file - for (SketchCode sc : sketch.getCodes()) { - if (sc.isExtension(SketchData.OTHER_ALLOWED_EXTENSIONS)) { - // no pre-processing services necessary for java files - // just write the the contents of 'program' to a .java file - // into the build directory. uses byte stream and reader/writer - // shtuff so that unicode bunk is properly handled - String filename = sc.getFileName(); //code[i].name + ".java"; - try { - BaseNoGui.saveFile(sc.getProgram(), new File(buildPath, filename)); - } catch (IOException e) { - e.printStackTrace(); - throw new RunnerException(I18n.format(tr("Problem moving {0} to the build folder"), filename)); - } - - } else if (sc.isExtension("ino") || sc.isExtension("pde")) { - // The compiler and runner will need this to have a proper offset - sc.addPreprocOffset(headerOffset); - } - } - - copyAdditionalFilesToBuildFolderSavingOriginalFolderStructure(sketch, buildPath); - } - - private void copyAdditionalFilesToBuildFolderSavingOriginalFolderStructure(SketchData sketch, String buildPath) throws RunnerException { - Path sketchPath = Paths.get(sketch.getFolder().getAbsolutePath()); - Stream otherFilesStream; - try { - otherFilesStream = Files.find(sketchPath, ADDITIONAL_FILES_COPY_MAX_DEPTH, (path, attribs) -> !attribs.isDirectory() && isPathInASubfolder(sketchPath, path) && FileUtils.hasExtension(path.toFile(), SketchData.OTHER_ALLOWED_EXTENSIONS)); - } catch (IOException e) { - throw new RunnerException(e); - } - otherFilesStream.map((path) -> new Pair<>(path, Paths.get(buildPath, sketchPath.relativize(path).toString()))) - .forEach((pair) -> { - try { - Files.createDirectories(pair.value.getParent()); - Files.copy(pair.key, pair.value, StandardCopyOption.REPLACE_EXISTING); - } catch (IOException e) { - e.printStackTrace(); - throw new RuntimeException(I18n.format(tr("Problem moving {0} to the build folder"), sketchPath.relativize(pair.key).toString())); - } - }); - } - - private boolean isPathInASubfolder(Path sketchPath, Path path) { - return sketchPath.relativize(path).getNameCount() > 1; - } - - /** - * List of library folders. - */ - private LibraryList importedLibraries; - private List importedDuplicateHeaders; - private List importedDuplicateLibraries; - - /** - * Map an error from a set of processed .java files back to its location - * in the actual sketch. - * @param message The error message. - * @param dotJavaFilename The .java file where the exception was found. - * @param dotJavaLine Line number of the .java file for the exception (0-indexed!) - * @return A RunnerException to be sent to the editor, or null if it wasn't - * possible to place the exception to the sketch code. - */ - public RunnerException placeException(String message, - String dotJavaFilename, - int dotJavaLine) { - // Placing errors is simple, because we inserted #line directives - // into the preprocessed source. The compiler gives us correct - // the file name and line number. :-) - for (SketchCode code : sketch.getCodes()) { - if (dotJavaFilename.equals(code.getFileName())) { - return new RunnerException(message, sketch.indexOfCode(code), dotJavaLine); - } - } - return null; - } - -} diff --git a/arduino-core/src/processing/app/debug/LegacyTargetPackage.java b/arduino-core/src/processing/app/debug/LegacyTargetPackage.java index 56e2cf76d8e..764ead396b7 100644 --- a/arduino-core/src/processing/app/debug/LegacyTargetPackage.java +++ b/arduino-core/src/processing/app/debug/LegacyTargetPackage.java @@ -20,46 +20,18 @@ */ package processing.app.debug; -import static processing.app.I18n.tr; -import static processing.app.helpers.filefilters.OnlyDirs.ONLY_DIRS; - -import java.io.File; import java.util.Collection; import java.util.LinkedHashMap; import java.util.Map; -import processing.app.I18n; - public class LegacyTargetPackage implements TargetPackage { - private String id; - private Map platforms; + private final String id; + private final Map platforms; - public LegacyTargetPackage(String _id, File _folder) throws TargetPlatformException { + public LegacyTargetPackage(String _id) { id = _id; - platforms = new LinkedHashMap(); - - File[] folders = _folder.listFiles(ONLY_DIRS); - if (folders == null) - return; - - for (File subFolder : folders) { - if (!subFolder.exists() || !subFolder.canRead()) - continue; - String arch = subFolder.getName(); - try { - TargetPlatform platform = new LegacyTargetPlatform(arch, subFolder, this); - platforms.put(arch, platform); - } catch (TargetPlatformException e) { - System.err.println(e.getMessage()); - } - } - - if (platforms.size() == 0) { - throw new TargetPlatformException(I18n - .format(tr("No valid hardware definitions found in folder {0}."), - _folder.getName())); - } + platforms = new LinkedHashMap<>(); } @Override diff --git a/arduino-core/src/processing/app/debug/MessageConsumer.java b/arduino-core/src/processing/app/debug/MessageConsumer.java index 5e204294333..02d458f8516 100644 --- a/arduino-core/src/processing/app/debug/MessageConsumer.java +++ b/arduino-core/src/processing/app/debug/MessageConsumer.java @@ -26,17 +26,17 @@ /** * Interface for dealing with parser/compiler output. - *

+ *

* Different instances of MessageStream need to do different things with * messages. In particular, a stream instance used for parsing output from * the compiler compiler has to interpret its messages differently than one * parsing output from the runtime. - *

+ *

* Classes which consume messages and do something with them * should implement this interface. */ public interface MessageConsumer { - public void message(String s); + void message(String s); } diff --git a/arduino-core/src/processing/app/helpers/CommandlineParser.java b/arduino-core/src/processing/app/helpers/CommandlineParser.java index efd91ae139e..3c093d19d1d 100644 --- a/arduino-core/src/processing/app/helpers/CommandlineParser.java +++ b/arduino-core/src/processing/app/helpers/CommandlineParser.java @@ -161,7 +161,7 @@ public void parseArgumentsPhase1() { if (!buildFolder.isDirectory()) { BaseNoGui.showError(null, "The build path is not a folder", 3); } - BaseNoGui.setBuildFolder(buildFolder); + PreferencesData.set("build.path", buildFolder.getAbsolutePath()); continue; } if (args[i].equals("--pref")) { @@ -249,6 +249,7 @@ private void processBoardArgument(String selectBoard) { } BaseNoGui.selectBoard(targetBoard); + BaseNoGui.onBoardOrPortChange(); if (split.length > 3) { String[] options = split[3].split(","); @@ -276,6 +277,7 @@ private void processPrefArgument(String arg) { BaseNoGui.showError(null, I18n.format(tr("{0}: Invalid argument to --pref, should be of the form \"pref=value\""), arg), 3); PreferencesData.set(split[0], split[1]); + PreferencesData.set("build_properties_custom." + split[0], split[1]); } public boolean isDoVerboseBuild() { diff --git a/arduino-core/src/processing/app/helpers/FileUtils.java b/arduino-core/src/processing/app/helpers/FileUtils.java index 981d3cb691b..77ef6ead931 100644 --- a/arduino-core/src/processing/app/helpers/FileUtils.java +++ b/arduino-core/src/processing/app/helpers/FileUtils.java @@ -3,6 +3,8 @@ import org.apache.commons.compress.utils.IOUtils; import java.io.*; +import java.nio.file.Files; +import java.nio.file.Paths; import java.util.*; import java.util.regex.Pattern; @@ -84,15 +86,27 @@ public static void recursiveDelete(File file) { } public static File createTempFolder() throws IOException { - return createTempFolderIn(new File(System.getProperty("java.io.tmpdir"))); + return createTempFolder(new File(System.getProperty("java.io.tmpdir"))); } - public static File createTempFolderIn(File parent) throws IOException { - File tmpFolder = new File(parent, "arduino_" + new Random().nextInt(1000000)); - if (!tmpFolder.mkdir()) { - throw new IOException("Unable to create temp folder " + tmpFolder); - } - return tmpFolder; + public static File createTempFolder(File parent) throws IOException { + return createTempFolder(parent, "arduino_"); + } + + public static File createTempFolder(File parent, String prefix) throws IOException { + return createTempFolder(parent, prefix, Integer.toString(new Random().nextInt(1000000))); + } + + public static File createTempFolder(String prefix) throws IOException { + return createTempFolder(new File(System.getProperty("java.io.tmpdir")), prefix); + } + + public static File createTempFolder(String prefix, String suffix) throws IOException { + return createTempFolder(new File(System.getProperty("java.io.tmpdir")), prefix, suffix); + } + + public static File createTempFolder(File parent, String prefix, String suffix) throws IOException { + return Files.createDirectories(Paths.get(parent.getAbsolutePath(), prefix + suffix)).toFile(); } // diff --git a/arduino-core/src/processing/app/helpers/OSUtils.java b/arduino-core/src/processing/app/helpers/OSUtils.java index 5efb77e29b3..80a36b9e964 100644 --- a/arduino-core/src/processing/app/helpers/OSUtils.java +++ b/arduino-core/src/processing/app/helpers/OSUtils.java @@ -7,7 +7,7 @@ public class OSUtils { */ static public boolean isWindows() { //return PApplet.platform == PConstants.WINDOWS; - return System.getProperty("os.name").indexOf("Windows") != -1; + return System.getProperty("os.name").contains("Windows"); } /** @@ -15,7 +15,7 @@ static public boolean isWindows() { */ static public boolean isLinux() { //return PApplet.platform == PConstants.LINUX; - return System.getProperty("os.name").indexOf("Linux") != -1; + return System.getProperty("os.name").contains("Linux"); } /** @@ -23,7 +23,7 @@ static public boolean isLinux() { */ static public boolean isMacOS() { //return PApplet.platform == PConstants.MACOSX; - return System.getProperty("os.name").indexOf("Mac") != -1; + return System.getProperty("os.name").contains("Mac"); } } diff --git a/arduino-core/src/processing/app/i18n/Resources_af.po b/arduino-core/src/processing/app/i18n/Resources_af.po index ddaa7917756..46c0ad9ba22 100644 --- a/arduino-core/src/processing/app/i18n/Resources_af.po +++ b/arduino-core/src/processing/app/i18n/Resources_af.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Edrean Ernst , 2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Afrikaans (http://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,13 +2044,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Besoek Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_af.properties b/arduino-core/src/processing/app/i18n/Resources_af.properties index be1f6ecb1de..10fcd3b35eb 100644 --- a/arduino-core/src/processing/app/i18n/Resources_af.properties +++ b/arduino-core/src/processing/app/i18n/Resources_af.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Edrean Ernst , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Afrikaans (http\://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: af\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Afrikaans (http\://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: af\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Arduino\:\ =Arduino\: #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Arduino\:\ =Arduino\: #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ Arduino\:\ =Arduino\: #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Arduino\:\ =Arduino\: #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ Arduino\:\ =Arduino\: #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Arduino\:\ =Arduino\: #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Arduino\:\ =Arduino\: #: Editor.java:516 !Examples= +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Arduino\:\ =Arduino\: #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 !Italian= @@ -850,6 +847,9 @@ Arduino\:\ =Arduino\: #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Arduino\:\ =Arduino\: #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Arduino\:\ =Arduino\: #: Base.java:2112 !Message= -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Arduino\:\ =Arduino\: #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ Arduino\:\ =Arduino\: #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ Arduino\:\ =Arduino\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Arduino\:\ =Arduino\: #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Arduino\:\ =Arduino\: #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Arduino\:\ =Arduino\: #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 !Quit= +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Arduino\:\ =Arduino\: #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Arduino\:\ =Arduino\: #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Arduino\:\ =Arduino\: #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ System\ Default=Stelsel Verstek #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ System\ Default=Stelsel Verstek #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ System\ Default=Stelsel Verstek #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ System\ Default=Stelsel Verstek #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ System\ Default=Stelsel Verstek #: Editor.java:1105 Visit\ Arduino.cc=Besoek Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=Waarskuwing #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ Yes=Ja #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_an.po b/arduino-core/src/processing/app/i18n/Resources_an.po index 4d65ed2e612..f7c76ff463f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_an.po +++ b/arduino-core/src/processing/app/i18n/Resources_an.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Daniel Martinez , 2014-2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Aragonese (http://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "'Teclau' solament suportau por Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Churi' solament suportau por Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editar solament quan Arduino no ye correndo)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "Linia error: {0}" msgid "Bad file selected" msgstr "Fichero mal seleccionau" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basco" @@ -320,15 +327,16 @@ msgstr "Basco" msgid "Belarusian" msgstr "Beloruso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "Totz dos NL & CR" msgid "Browse" msgstr "Explorar" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Carpeta de construcción no trobada u no se puede escribir en ella" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opcions de compilación cambiadas, reconstruindo tot" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -440,10 +448,6 @@ msgstr "Comprebar actualizacions en encetar" msgid "Chinese (China)" msgstr "Chino (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chino (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chino (Taiwan)" @@ -452,14 +456,6 @@ msgstr "Chino (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chino (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chino Simplificau" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chino Tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "No se pueden leyer os achustes predeterminaus.\nAmeneste reinstalar Arduino" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "No se podió leyer o fichero de preferencias de compilación, recompilando tot" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "No se podió renombrar o programa. (2)" msgid "Could not replace {0}" msgstr "No podié reemplazar {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "No se podió escribir o fichero de preferencias de compilacion" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "No se podió archivar o programa" @@ -641,18 +629,10 @@ msgstr "Crovata" msgid "Cut" msgstr "Tallar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Checo" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danés" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "Estonio (Estonia)" msgid "Examples" msgstr "Eixemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Biblioteca invalida trobada en {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italián" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,9 +1215,10 @@ msgstr "Marathi" msgid "Message" msgstr "Mensache" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Manca lo */ d'a fin d'un /* comentario */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Has d'especificar exactament un fichero de programa" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nombre d'o nuevo fichero:" @@ -1294,10 +1293,6 @@ msgstr "No" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "No s'ha seleccionau placa; por favor, seleccione una en o menú Ferramientas > Placa" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Sin cambeos necesarios ta auto formato" @@ -1361,18 +1356,10 @@ msgstr "No se troboron definicions de hardware validas en a carpeta {0}." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noruego" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Irán)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "Problema en acceder a fichers en a carpeta" msgid "Problem getting data folder" msgstr "Problema en adquirir carpeta de datos" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problema en mover {0} a la carpeta de construcción" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Procesador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Salir" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refer" @@ -1607,6 +1603,16 @@ msgstr "Reemplazar con:" msgid "Romanian" msgstr "Rumano" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ruso" @@ -1712,6 +1718,11 @@ msgstr "Puerto {0} no trobau.\nReintentar a puyada con unatro puerto?" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Sol" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sueco" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "Imposible connectar-se: reintentando" msgid "Unable to connect: wrong password?" msgstr "Imposible connectar: clau incorrecta?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Imposible ubrir o monitor serie" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Tipo d'excepción no detectada: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Desfer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "Puyando a la Placa I/U..." msgid "Uploading..." msgstr "Puyando..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Usar selección ta buscar" @@ -2173,6 +2180,16 @@ msgstr "Vietnamés" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "{0} fichers adhibius a o programa." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_an.properties b/arduino-core/src/processing/app/i18n/Resources_an.properties index a4d172dcf19..c85a7d1f05f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_an.properties +++ b/arduino-core/src/processing/app/i18n/Resources_an.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Daniel Martinez , 2014-2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Aragonese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: an\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Aragonese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: an\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requiere reiniciar Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Churi' solament suportau por Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar solament quan Arduino no ye correndo) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=Linia error\: {0} #: Editor.java:2136 Bad\ file\ selected=Fichero mal seleccionau -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Basco #: ../../../processing/app/Preferences.java:139 Belarusian=Beloruso -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=A placa {0}\:{1}\:{2} no define una preferencia ''build.board''. S'ha ficau automaticament a\: {3} @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=Totz dos NL & CR #: Preferences.java:81 Browse=Explorar -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3n no trobada u no se puede escribir en ella - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opcions de compilaci\u00f3n cambiadas, reconstruindo tot +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=Comprebar actualizacions en encetar #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chino (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chino (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chino (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chino (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chino Simplificau - -#: Preferences.java:89 -Chinese\ Traditional=Chino Tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ re-save\ sketch=No se podi\u00f3 alzar de nuevo o programa #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pueden leyer os achustes predeterminaus.\nAmeneste reinstalar Arduino -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=No se podi\u00f3 leyer o fichero de preferencias de compilaci\u00f3n, recompilando tot - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=No se podi\u00f3 eliminar a versi\u00f3n antiga de {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=No se podi\u00f3 renombrar o programa. (2) #, java-format Could\ not\ replace\ {0}=No podi\u00e9 reemplazar {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=No se podi\u00f3 escribir o fichero de preferencias de compilacion - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=No se podi\u00f3 archivar o programa @@ -455,15 +445,9 @@ Croatian=Crovata #: Editor.java:1149 Editor.java:2699 Cut=Tallar -#: ../../../processing/app/Preferences.java:83 -Czech=Checo - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Dan\u00e9s - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Estonian\ (Estonia)=Estonio (Estonia) #: Editor.java:516 Examples=Eixemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=Indonesio #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca invalida trobada en {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Itali\u00e1n @@ -850,6 +847,9 @@ Latvian=Let\u00f3n #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Marathi=Marathi #: Base.java:2112 Message=Mensache -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca lo */ d'a fin d'un /* comentario */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Moving=Movendo #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Has d'especificar exactament un fichero de programa -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nombre d'o nuevo fichero\: @@ -939,9 +938,6 @@ No=No #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No s'ha seleccionau placa; por favor, seleccione una en o men\u00fa Ferramientas > Placa - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Sin cambeos necesarios ta auto formato @@ -990,15 +986,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=No se troboron definic #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruego -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=No i hai suficient memoria, veyer http\://www.arduino.cc/en/guide/troubleshooting\#size ta obtener consellos sobre c\u00f3mo reducir o suyo sinyal. @@ -1042,6 +1032,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Ir\u00e1n) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ accessing\ files\ in\ folder\ =Problema en acceder a fichers en a carpe #: Base.java:1673 Problem\ getting\ data\ folder=Problema en adquirir carpeta de datos -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problema en mover {0} a la carpeta de construcci\u00f3n - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema puyando a la placa. Visita http\://www.arduino.cc/en/guide/troubleshooting\#upload ta sucherencias. @@ -1131,9 +1121,16 @@ Processor=Procesador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Salir +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refer @@ -1173,6 +1170,14 @@ Replace\ with\:=Reemplazar con\: #: Preferences.java:113 Romanian=Rumano +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ruso @@ -1250,6 +1255,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=Espa\u00f1ol #: Base.java:540 Sunshine=Sol -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Sueco @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ixe fichero ya s'heba copiau a la ubicaci\u00f3n\ndende a quala lo querebas adhibir,,,\nNo fer\u00e9 brenca. @@ -1451,6 +1454,10 @@ Unable\ to\ connect\:\ retrying=Imposible connectar-se\: reintentando #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Imposible connectar\: clau incorrecta? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Imposible ubrir o monitor serie @@ -1461,13 +1468,17 @@ Unable\ to\ open\ serial\ monitor=Imposible ubrir o monitor serie #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Tipo d'excepci\u00f3n no detectada\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Desfer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=No s'ha especificau plataforma, no i hai lanzador disponible.\nTa activar URL u carpetas, adhibe una linia a\n"launcher\=/rota/a2/aplicaci\u00f3n/" en preferences.txt @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=Puyando a la Placa I/U... #: Sketch.java:1622 Uploading...=Puyando... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Usar selecci\u00f3n ta buscar @@ -1562,6 +1570,14 @@ Vietnamese=Vietnam\u00e9s #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNING\: a biblioteca {0} pareix que s'executa en {1} arquitectura(s) y puede estar incompatible con a tuya placa actual, que s'echecuta en {2} arquitectura(s). @@ -1591,6 +1607,9 @@ Warning=Warning #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=puyar #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} retorn\u00f3 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.po b/arduino-core/src/processing/app/i18n/Resources_ar.po index 2cd635a20b3..556b6df46b8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ar.po +++ b/arduino-core/src/processing/app/i18n/Resources_ar.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # alsadi , 2012 # amas89 , 2012 # belal affouri , 2015 @@ -17,7 +18,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Arabic (http://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\n" "MIME-Version: 1.0\n" @@ -48,10 +49,20 @@ msgstr "'لوحة المفاتيح' يمكن ان تعمل فقط على لو msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'الفأرة' يمكن ان تعمل فقط على لوحة اردوينو ليوناردو" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(لا يمكن التحرير والأردوينو تعمل)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir غير مدعوم بعد الآن" @@ -313,10 +324,6 @@ msgstr "خطأ سيئ السطر : {0}" msgid "Bad file selected" msgstr "الملف المحدد غير صالح" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "لغة الباسك" @@ -325,15 +332,16 @@ msgstr "لغة الباسك" msgid "Belarusian" msgstr "بيلاروسي" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "بنغالي(الهند)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "لوحة" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -374,14 +382,14 @@ msgstr "كلاهما NL & CR" msgid "Browse" msgstr "استعرض" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "مجلد البناء \"Build folder\" اختفى او انه لايمكن الكتابة عليه" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "تغير بناء الخيارات ، إعادة بناء الكل" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "بلغاري" @@ -445,10 +453,6 @@ msgstr "افحص التحديثات عند التشغيل" msgid "Chinese (China)" msgstr "الصينية (الصين)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "الصينية (هونغ كونغ)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "الصينية (تايوان)" @@ -457,14 +461,6 @@ msgstr "الصينية (تايوان)" msgid "Chinese (Taiwan) (Big5)" msgstr "الصينية (تايوان) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinese Traditional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -584,10 +580,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "لا يمكن قراءة الاعدادات الافتراضية يجب عليك اعادة تنصيب الاردوينو" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "يتعذر قراءة إنشاء ملف التفضيلات البريفوس ، إعادة بناء الكل" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +607,6 @@ msgstr "لا يمكن اعادة تسمية الملف. (2)" msgid "Could not replace {0}" msgstr "لا يمكن استبدال {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "لا يمكن كتابة إنشاء ملف التفضيلات" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "لا يمكن ارشفة الشيفرة البرمجية" @@ -646,18 +634,10 @@ msgstr "كرواتي" msgid "Cut" msgstr "قص" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "تشيكي" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dansk" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -929,6 +909,18 @@ msgstr "الأستونية (إستونيا)" msgid "Examples" msgstr "أمثلة" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1157,6 +1149,11 @@ msgstr "جاري التنصيب" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1181,6 +1178,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1194,12 +1195,13 @@ msgstr "Lithuaninan" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1218,8 +1220,9 @@ msgstr "Marathi" msgid "Message" msgstr "رسالة" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1251,10 +1254,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "اسم لملف جديد:" @@ -1299,10 +1298,6 @@ msgstr "لا" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "لم تختار البورد; رجاءا اختار البورد من قائمة أدوات > قائمة بورد." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "لا يوجد تغييرات ضرورية للتنسيق التلقائي." @@ -1366,18 +1361,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "النرويجية" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1437,6 +1424,11 @@ msgstr "فارسي" msgid "Persian (Iran)" msgstr "الفارسية (إيران)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1534,11 +1526,6 @@ msgstr "مشكل في الولوج إلى ملفات المجلد " msgid "Problem getting data folder" msgstr "مشكلة في الحصول على مجلد البيانات" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "مشكلة في نقل {0} الى مجللد البناء \"Build folder\"" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1544,19 @@ msgstr "معالج" msgid "Programmer" msgstr "المبرمجة" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "خروج" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "اعادة" @@ -1612,6 +1608,16 @@ msgstr "استبدل بـ:" msgid "Romanian" msgstr "Romanian" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russian" @@ -1717,6 +1723,11 @@ msgstr "المنفذ التسلسلي {0} لم يتم العثور عليه.\nح msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1832,10 +1843,6 @@ msgstr "" msgid "Sunshine" msgstr "شروق الشمس" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "اللغة السويدية" @@ -1952,12 +1959,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2030,6 +2031,11 @@ msgstr "مشكل في عملية الاتصال: إعادة المحاولة" msgid "Unable to connect: wrong password?" msgstr "مشكل في عملية الاتصال: كلمة المرور خاطئة؟ " +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2043,15 +2049,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "نوع المشكلة غير محدد: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "تراجع" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2100,10 +2111,6 @@ msgstr "جاري التحميل إلى اللوحة دخل/خرج ..." msgid "Uploading..." msgstr "رفع..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "أوردو (باكستان)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "استخدم المظلل للبحث" @@ -2178,6 +2185,16 @@ msgstr "اللغة الفيتنامية" msgid "Visit Arduino.cc" msgstr "Arduino.cc زر صفحة " +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2221,6 +2238,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2475,6 +2498,16 @@ msgstr "اضيفت {0} ملفات الى شيفرة البرمجية." msgid "{0} libraries" msgstr "{0} المكتبات" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ar.properties b/arduino-core/src/processing/app/i18n/Resources_ar.properties index 0e74e641e79..c54ed8557ea 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ar.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ar.properties @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # alsadi , 2012 # amas89 , 2012 # belal affouri , 2015 # belal affouri , 2012 # JAMAL ELMERABETE , 2014-2015 # Mubarak Qahtani , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Arabic (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ar\nPlural-Forms\: nplurals\=6; plural\=n\=\=0 ? 0 \: n\=\=1 ? 1 \: n\=\=2 ? 2 \: n%100>\=3 && n%100<\=10 ? 3 \: n%100>\=11 && n%100<\=99 ? 4 \: 5;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Arabic (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ar\nPlural-Forms\: nplurals\=6; plural\=n\=\=0 ? 0 \: n\=\=1 ? 1 \: n\=\=2 ? 2 \: n%100>\=3 && n%100<\=10 ? 3 \: n%100>\=11 && n%100<\=99 ? 4 \: 5;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u064a\u062a\u0637\u0644\u0628 \u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0644\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648) @@ -31,9 +32,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='\u0627\u0644\u0641\u0623\u0631\u0629' \u064a\u0645\u0643\u0646 \u0627\u0646 \u062a\u0639\u0645\u0644 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u064a\u0648\u0646\u0627\u0631\u062f\u0648 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0644\u062a\u062d\u0631\u064a\u0631 \u0648\u0627\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648 \u062a\u0639\u0645\u0644) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir \u063a\u064a\u0631 \u0645\u062f\u0639\u0648\u0645 \u0628\u0639\u062f \u0627\u0644\u0622\u0646 @@ -217,22 +224,20 @@ Bad\ error\ line\:\ {0}=\u062e\u0637\u0623 \u0633\u064a\u0626 \u0627\u0644\u0633 #: Editor.java:2136 Bad\ file\ selected=\u0627\u0644\u0645\u0644\u0641 \u0627\u0644\u0645\u062d\u062f\u062f \u063a\u064a\u0631 \u0635\u0627\u0644\u062d -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0633\u0643 #: ../../../processing/app/Preferences.java:139 Belarusian=\u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=\u0628\u0646\u063a\u0627\u0644\u064a(\u0627\u0644\u0647\u0646\u062f) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u0644\u0648\u062d\u0629 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u0627\u0644\u0644\u0648\u062d\u0629 {0}\:{1}\:{2} \u0644\u0627 \u062a\u0639\u0631\u0651\u0641 ''build.board'' \u062e\u0627\u0635\u064a\u0629 . Auto-set to\: {3} @@ -262,12 +267,12 @@ Both\ NL\ &\ CR=\u0643\u0644\u0627\u0647\u0645\u0627 NL & CR #: Preferences.java:81 Browse=\u0627\u0633\u062a\u0639\u0631\u0636 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0645\u062c\u0644\u062f \u0627\u0644\u0628\u0646\u0627\u0621 "Build folder" \u0627\u062e\u062a\u0641\u0649 \u0627\u0648 \u0627\u0646\u0647 \u0644\u0627\u064a\u0645\u0643\u0646 \u0627\u0644\u0643\u062a\u0627\u0628\u0629 \u0639\u0644\u064a\u0647 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u062a\u063a\u064a\u0631 \u0628\u0646\u0627\u0621 \u0627\u0644\u062e\u064a\u0627\u0631\u0627\u062a \u060c \u0625\u0639\u0627\u062f\u0629 \u0628\u0646\u0627\u0621 \u0627\u0644\u0643\u0644 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0628\u0644\u063a\u0627\u0631\u064a @@ -316,21 +321,12 @@ Check\ for\ updates\ on\ startup=\u0627\u0641\u062d\u0635 \u0627\u0644\u062a\u06 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u0627\u0644\u0635\u064a\u0646) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u0647\u0648\u0646\u063a \u0643\u0648\u0646\u063a) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u062a\u0627\u064a\u0648\u0627\u0646) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u0627\u0644\u0635\u064a\u0646\u064a\u0629 (\u062a\u0627\u064a\u0648\u0627\u0646) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -Chinese\ Traditional=Chinese Traditional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -415,9 +411,6 @@ Could\ not\ re-save\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0642\u0631\u0627\u0621\u0629 \u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629 \u064a\u062c\u0628 \u0639\u0644\u064a\u0643 \u0627\u0639\u0627\u062f\u0629 \u062a\u0646\u0635\u064a\u0628 \u0627\u0644\u0627\u0631\u062f\u0648\u064a\u0646\u0648 -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u064a\u062a\u0639\u0630\u0631 \u0642\u0631\u0627\u0621\u0629 \u0625\u0646\u0634\u0627\u0621 \u0645\u0644\u0641 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a \u0627\u0644\u0628\u0631\u064a\u0641\u0648\u0633 \u060c \u0625\u0639\u0627\u062f\u0629 \u0628\u0646\u0627\u0621 \u0627\u0644\u0643\u0644 - #: Base.java:2482 #, java-format 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 \u0645\u0646 {0} @@ -439,9 +432,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0644\u0627 \u064a\u0645\u0643\u0646 \u06 #, java-format Could\ not\ replace\ {0}=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0633\u062a\u0628\u062f\u0627\u0644 {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0643\u062a\u0627\u0628\u0629 \u0625\u0646\u0634\u0627\u0621 \u0645\u0644\u0641 \u0627\u0644\u062a\u0641\u0636\u064a\u0644\u0627\u062a - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0631\u0634\u0641\u0629 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 @@ -460,15 +450,9 @@ Croatian=\u0643\u0631\u0648\u0627\u062a\u064a #: Editor.java:1149 Editor.java:2699 Cut=\u0642\u0635 -#: ../../../processing/app/Preferences.java:83 -Czech=\u062a\u0634\u064a\u0643\u064a - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Dansk - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -672,6 +656,15 @@ Estonian\ (Estonia)=\u0627\u0644\u0623\u0633\u062a\u0648\u0646\u064a\u0629 (\u06 #: Editor.java:516 Examples=\u0623\u0645\u062b\u0644\u0629 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -837,6 +830,10 @@ Installing...=\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u0646\u0635\u064a\u062 #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -855,6 +852,9 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -865,12 +865,13 @@ Lithuaninan=Lithuaninan #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -883,8 +884,9 @@ Marathi=Marathi #: Base.java:2112 Message=\u0631\u0633\u0627\u0644\u0629 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -908,9 +910,6 @@ Moving=\u0646\u0642\u0644 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=\u0627\u0633\u0645 \u0644\u0645\u0644\u0641 \u062c\u062f\u064a\u062f\: @@ -944,9 +943,6 @@ No=\u0644\u0627 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0644\u0645 \u062a\u062e\u062a\u0627\u0631 \u0627\u0644\u0628\u0648\u0631\u062f; \u0631\u062c\u0627\u0621\u0627 \u0627\u062e\u062a\u0627\u0631 \u0627\u0644\u0628\u0648\u0631\u062f \u0645\u0646 \u0642\u0627\u0626\u0645\u0629 \u0623\u062f\u0648\u0627\u062a > \u0642\u0627\u0626\u0645\u0629 \u0628\u0648\u0631\u062f. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0644\u0627 \u064a\u0648\u062c\u062f \u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0636\u0631\u0648\u0631\u064a\u0629 \u0644\u0644\u062a\u0646\u0633\u064a\u0642 \u0627\u0644\u062a\u0644\u0642\u0627\u0626\u064a. @@ -995,15 +991,9 @@ No\ reference\ available\ for\ "{0}"="{0}"\u0644\u0627 \u064a\u0648\u062c\u062f #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u0627\u0644\u0646\u0631\u0648\u064a\u062c\u064a\u0629 -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1047,6 +1037,10 @@ Persian=\u0641\u0627\u0631\u0633\u064a #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u0627\u0644\u0641\u0627\u0631\u0633\u064a\u0629 (\u0625\u064a\u0631\u0627\u0646) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1120,10 +1114,6 @@ Problem\ accessing\ files\ in\ folder\ =\u0645\u0634\u0643\u0644 \u0641\u064a \u #: Base.java:1673 Problem\ getting\ data\ folder=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0627\u0644\u062d\u0635\u0648\u0644 \u0639\u0644\u0649 \u0645\u062c\u0644\u062f \u0627\u0644\u0628\u064a\u0627\u0646\u0627\u062a -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u0645\u0634\u0643\u0644\u0629 \u0641\u064a \u0646\u0642\u0644 {0} \u0627\u0644\u0649 \u0645\u062c\u0644\u0644\u062f \u0627\u0644\u0628\u0646\u0627\u0621 "Build folder" - #: 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 \u0643\u0640 \u0627\u0642\u062a\u0631\u0627\u062d . @@ -1136,9 +1126,16 @@ Processor=\u0645\u0639\u0627\u0644\u062c #: Editor.java:704 Programmer=\u0627\u0644\u0645\u0628\u0631\u0645\u062c\u0629 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u062e\u0631\u0648\u062c +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u0627\u0639\u0627\u062f\u0629 @@ -1178,6 +1175,14 @@ Replace\ with\:=\u0627\u0633\u062a\u0628\u062f\u0644 \u0628\u0640\: #: Preferences.java:113 Romanian=Romanian +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russian @@ -1255,6 +1260,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1335,9 +1344,6 @@ Spanish=Spanish #: Base.java:540 Sunshine=\u0634\u0631\u0648\u0642 \u0627\u0644\u0634\u0645\u0633 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0633\u0648\u064a\u062f\u064a\u0629 @@ -1402,9 +1408,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0647\u0630\u0627 \u0627\u0644\u0645\u0644\u0641 \u062a\u0645 \u0628\u0627\u0644\u0641\u0639\u0644 \u0646\u0633\u062e\u0647 \u0627\u0644\u0649\n\u0627\u0644\u0645\u0648\u0642\u0639 \u0627\u0644\u0630\u064a \u062a\u062d\u0627\u0648\u0644 \u0627\u0636\u0627\u0641\u062a\u0647 \u0627\u0644\u064a\u0647.\n\u0627\u0646\u062a \u0641\u064a \u062d\u0627\u0644\u0629 \u062a\u0633\u0645\u0649 "\u0643\u0623\u0646 \u0634\u064a\u0626\u0627 \u0644\u0645 \u064a\u062d\u062f\u062b" @@ -1456,6 +1459,10 @@ Unable\ to\ connect\:\ retrying=\u0645\u0634\u0643\u0644 \u0641\u064a \u0639\u06 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u0645\u0634\u0643\u0644 \u0641\u064a \u0639\u0645\u0644\u064a\u0629 \u0627\u0644\u0627\u062a\u0635\u0627\u0644\: \u0643\u0644\u0645\u0629 \u0627\u0644\u0645\u0631\u0648\u0631 \u062e\u0627\u0637\u0626\u0629\u061f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1466,13 +1473,17 @@ Unable\ to\ connect\:\ wrong\ password?=\u0645\u0634\u0643\u0644 \u0641\u064a \u #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u0646\u0648\u0639 \u0627\u0644\u0645\u0634\u0643\u0644\u0629 \u063a\u064a\u0631 \u0645\u062d\u062f\u062f\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u062a\u0631\u0627\u062c\u0639 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\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\u0644\u0644\u062a\u0641\u0639\u064a\u0644 \u0623\u0641\u062a\u062d \u0627\u0644\u0631\u0648\u0627\u0628\u0637 \u0623\u0648 \u0627\u0644\u0645\u062c\u0644\u062f\u0627\u062a \u061b \u0623\u0636\u0641 \:\u0627\u0636\u0641 \u0633\u0637\u0631 "launcher\=/path/to/app" \u0627\u0644\u0649 preferences.txt @@ -1507,9 +1518,6 @@ Uploading\ to\ I/O\ Board...=\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u #: Sketch.java:1622 Uploading...=\u0631\u0641\u0639... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=\u0623\u0648\u0631\u062f\u0648 (\u0628\u0627\u0643\u0633\u062a\u0627\u0646) - #: Editor.java:1269 Use\ Selection\ For\ Find=\u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0638\u0644\u0644 \u0644\u0644\u0628\u062d\u062b @@ -1567,6 +1575,14 @@ Vietnamese=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0641\u064a\u062a\u0646\u #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0632\u0631 \u0635\u0641\u062d\u0629 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1596,6 +1612,9 @@ Warning=\u062a\u062d\u0630\u064a\u0631 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1756,6 +1775,14 @@ version\ {0}=\u0627\u0644\u0646\u0633\u062e\u0629 {0} #, java-format {0}\ libraries={0} \u0627\u0644\u0645\u0643\u062a\u0628\u0627\u062a +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u0623\u0631\u062c\u0639\u062a {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.po b/arduino-core/src/processing/app/i18n/Resources_ast.po index 75acba3a129..d73bc0a69a4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ast.po +++ b/arduino-core/src/processing/app/i18n/Resources_ast.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Xuacu Saturio , 2013 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Asturian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Colar" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Soleyero" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,13 +2044,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ast.properties b/arduino-core/src/processing/app/i18n/Resources_ast.properties index b051e3795f6..f566b4d2d32 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ast.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ast.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Xuacu Saturio , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Asturian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ast\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Asturian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ast\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ #: Editor.java:516 !Examples= +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 !Italian= @@ -850,6 +847,9 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: Base.java:2112 !Message= -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De veres que non, ye hora de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Open...=Abrir... #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ Setting\ the\ Platform=Problema al configurar la plataforma #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Problem\ Setting\ the\ Platform=Problema al configurar la plataforma #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Colar +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Quit=Colar #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Quit=Colar #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Sketchbook\ folder\ disappeared=Desapaeci\u00f3'l direutoriu Cartafueyu de bocet #: Base.java:540 Sunshine=Soleyero -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Time\ for\ a\ Break=Tiempu pa un descansu #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Time\ for\ a\ Break=Tiempu pa un descansu #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Time\ for\ a\ Break=Tiempu pa un descansu #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Time\ for\ a\ Break=Tiempu pa un descansu #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Time\ for\ a\ Break=Tiempu pa un descansu #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_be.po b/arduino-core/src/processing/app/i18n/Resources_be.po index 22e5dfce56d..a2f6e74032a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_be.po +++ b/arduino-core/src/processing/app/i18n/Resources_be.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # debconf , 2013-2014 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Belarusian (http://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "'Keyboard' падтрымліваецца толькі на Arduino Leon msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' падтрымліваецца толькі на Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(рэдагаваць толькі калі Arduino не запушчаны)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "Кепскі радок памылак: {0}" msgid "Bad file selected" msgstr "Абраны кепскі файл" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "мова Баскаў" @@ -320,15 +327,16 @@ msgstr "мова Баскаў" msgid "Belarusian" msgstr "Беларуская" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Плата" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "Абодва NL & CR" msgid "Browse" msgstr "Агляд" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Каталог пабудовы знік ці недаступны для запісу" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Опцыі Будовы зменены, перабудоўваем усё" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Балгарская" @@ -440,10 +448,6 @@ msgstr "Дазнавацца пра абнаўленні падчас запус msgid "Chinese (China)" msgstr "Кітайская (Кітай)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Кітайская (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Кітайская (Тайвань)" @@ -452,14 +456,6 @@ msgstr "Кітайская (Тайвань)" msgid "Chinese (Taiwan) (Big5)" msgstr "Кітайская (Тайвань) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Кітайская спрошчаная" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Кітайская традыцыйная" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Немагчыма прачытаць наладкі па-змоўчванню.\nПатрэбна пераўсталяваць Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Немагчыма перайменаваць скетч. (2)" msgid "Could not replace {0}" msgstr "Немагчыма замяніць {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Немагчыма архіваваць скетч" @@ -641,18 +629,10 @@ msgstr "Харвацкая" msgid "Cut" msgstr "Выразаць" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Чэшская" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Дацкая" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "Эстонская (Эстонія)" msgid "Examples" msgstr "Ўзоры" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Кепская бібліятэка знойдзена ў {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Італьянская" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "Літоўская" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,9 +1215,10 @@ msgstr "Маратхі" msgid "Message" msgstr "Паведамленне" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Адсутнічае паслядоўнасць */ ад пачатку /* каментара */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Імя для новага файла:" @@ -1294,10 +1293,6 @@ msgstr "Не" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Плата не абрана; калі ласка абярыце плату праз меню \"Інструменты\" > \"Плата\"." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Не патрэбна зменаў для аўтафармату." @@ -1361,18 +1356,10 @@ msgstr "Не знойдзена апаратных вызначэнняў у к msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Нарвежскі Букмал" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Персідская" msgid "Persian (Iran)" msgstr "Персідская (Іран)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "Немагчыма дабрацца да файлаў у каталоз msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Немагчыма перанесці {0} у каталог пабудовы" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Працэсар" msgid "Programmer" msgstr "Праграматар" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Выйсці" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Перарабіць" @@ -1607,6 +1603,16 @@ msgstr "Замяніць на:" msgid "Romanian" msgstr "Румынская" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Руская" @@ -1712,6 +1718,11 @@ msgstr "Serial-порт {0} ня знойдзены.\nПаспрабаваць msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Сонца ўстае" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Шведская" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "Немагчыма далучыцца: спрабуем наноў" msgid "Unable to connect: wrong password?" msgstr "Немагчыма злучыцца: памылковы пароль?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Немагчыма адчыніць serial-манітор" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Выключэнне няўлоўнага тыпу: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Адмяніць" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "Выгрузка ў I/O Board..." msgid "Uploading..." msgstr "Выгружаем..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "В'етнамская" msgid "Visit Arduino.cc" msgstr "Наведаць Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "{0} файлаў дададзена ў скетч." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_be.properties b/arduino-core/src/processing/app/i18n/Resources_be.properties index 00aaab85d1c..71c909543a4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_be.properties +++ b/arduino-core/src/processing/app/i18n/Resources_be.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # debconf , 2013-2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Belarusian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: be\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Belarusian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: be\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u0435\u0440\u0430\u0437\u0430\u043f\u0443\u0441\u043a Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u043d\u0430 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u044d\u0434\u0430\u0433\u0430\u0432\u0430\u0446\u044c \u0442\u043e\u043b\u044c\u043a\u0456 \u043a\u0430\u043b\u0456 Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0448\u0447\u0430\u043d\u044b) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=\u041a\u0435\u043f\u0441\u043a\u0456 \u0440\u0430\u0434\ #: Editor.java:2136 Bad\ file\ selected=\u0410\u0431\u0440\u0430\u043d\u044b \u043a\u0435\u043f\u0441\u043a\u0456 \u0444\u0430\u0439\u043b -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u043c\u043e\u0432\u0430 \u0411\u0430\u0441\u043a\u0430\u045e #: ../../../processing/app/Preferences.java:139 Belarusian=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u041f\u043b\u0430\u0442\u0430 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u041f\u043b\u0430\u0442\u0430 {0}\:{1}\:{2} \u043d\u0435 \u0432\u044b\u0437\u043d\u0430\u0447\u0430\u0435 \u043f\u0435\u0440\u0430\u0432\u0430\u0433\u0456 ''build.board''. \u0410\u045e\u0442\u0430-\u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u043d\u0430 \u045e\: {3} @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=\u0410\u0431\u043e\u0434\u0432\u0430 NL & CR #: Preferences.java:81 Browse=\u0410\u0433\u043b\u044f\u0434 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u041a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430\u0431\u0443\u0434\u043e\u0432\u044b \u0437\u043d\u0456\u043a \u0446\u0456 \u043d\u0435\u0434\u0430\u0441\u0442\u0443\u043f\u043d\u044b \u0434\u043b\u044f \u0437\u0430\u043f\u0456\u0441\u0443 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u041e\u043f\u0446\u044b\u0456 \u0411\u0443\u0434\u043e\u0432\u044b \u0437\u043c\u0435\u043d\u0435\u043d\u044b, \u043f\u0435\u0440\u0430\u0431\u0443\u0434\u043e\u045e\u0432\u0430\u0435\u043c \u0443\u0441\u0451 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u0430\u043b\u0433\u0430\u0440\u0441\u043a\u0430\u044f @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=\u0414\u0430\u0437\u043d\u0430\u0432\u0430\u044 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f (\u041a\u0456\u0442\u0430\u0439) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f \u0441\u043f\u0440\u043e\u0448\u0447\u0430\u043d\u0430\u044f - -#: Preferences.java:89 -Chinese\ Traditional=\u041a\u0456\u0442\u0430\u0439\u0441\u043a\u0430\u044f \u0442\u0440\u0430\u0434\u044b\u0446\u044b\u0439\u043d\u0430\u044f - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ re-save\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u04 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0440\u0430\u0447\u044b\u0442\u0430\u0446\u044c \u043d\u0430\u043b\u0430\u0434\u043a\u0456 \u043f\u0430-\u0437\u043c\u043e\u045e\u0447\u0432\u0430\u043d\u043d\u044e.\n\u041f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u043f\u0435\u0440\u0430\u045e\u0441\u0442\u0430\u043b\u044f\u0432\u0430\u0446\u044c Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0432\u044b\u0434\u0430\u043b\u0456\u0446\u044c \u0441\u0442\u0430\u0440\u0443\u044e \u0432\u0435\u0441\u0456\u044e {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u043c\u0430\u0433\u0447\u044b #, java-format Could\ not\ replace\ {0}=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u0430\u043c\u044f\u043d\u0456\u0446\u044c {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0440\u0445\u0456\u0432\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 @@ -455,15 +445,9 @@ Croatian=\u0425\u0430\u0440\u0432\u0430\u0446\u043a\u0430\u044f #: Editor.java:1149 Editor.java:2699 Cut=\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c -#: ../../../processing/app/Preferences.java:83 -Czech=\u0427\u044d\u0448\u0441\u043a\u0430\u044f - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u0414\u0430\u0446\u043a\u0430\u044f - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Estonian\ (Estonia)=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0430\u044f (\u04 #: Editor.java:516 Examples=\u040e\u0437\u043e\u0440\u044b +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=\u0406\u043d\u0434\u0430\u043d\u044d\u0437\u0456\u0439\u0441\u043a\u0 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u041a\u0435\u043f\u0441\u043a\u0430\u044f \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0430 \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u0430 \u045e {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0406\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0430\u044f @@ -850,6 +847,9 @@ Latvian=\u041b\u0430\u0442\u0432\u0456\u0441\u043a\u0430\u044f #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=\u041b\u0456\u0442\u043e\u045e\u0441\u043a\u0430\u044f #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0456 #: Base.java:2112 Message=\u041f\u0430\u0432\u0435\u0434\u0430\u043c\u043b\u0435\u043d\u043d\u0435 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0410\u0434\u0441\u0443\u0442\u043d\u0456\u0447\u0430\u0435 \u043f\u0430\u0441\u043b\u044f\u0434\u043e\u045e\u043d\u0430\u0441\u0446\u044c */ \u0430\u0434 \u043f\u0430\u0447\u0430\u0442\u043a\u0443 /* \u043a\u0430\u043c\u0435\u043d\u0442\u0430\u0440\u0430 */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Moving=\u041f\u0435\u0440\u0430\u0441\u043e\u045e\u0432\u0430\u043d\u043d\u0435 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\u0406\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u0430\u0433\u0430 \u0444\u0430\u0439\u043b\u0430\: @@ -939,9 +938,6 @@ No=\u041d\u0435 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041f\u043b\u0430\u0442\u0430 \u043d\u0435 \u0430\u0431\u0440\u0430\u043d\u0430; \u043a\u0430\u043b\u0456 \u043b\u0430\u0441\u043a\u0430 \u0430\u0431\u044f\u0440\u044b\u0446\u0435 \u043f\u043b\u0430\u0442\u0443 \u043f\u0440\u0430\u0437 \u043c\u0435\u043d\u044e "\u0406\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044b" > "\u041f\u043b\u0430\u0442\u0430". - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0435 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0437\u043c\u0435\u043d\u0430\u045e \u0434\u043b\u044f \u0430\u045e\u0442\u0430\u0444\u0430\u0440\u043c\u0430\u0442\u0443. @@ -990,15 +986,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u041d\u0435 \u0437\u0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u041d\u0430\u0440\u0432\u0435\u0436\u0441\u043a\u0456 \u0411\u0443\u043a\u043c\u0430\u043b -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u0435 \u0445\u0430\u043f\u0430\u0435 \u043f\u0430\u043c\u044f\u0446\u0456; \u0433\u043b\u044f\u0434\u0437\u0456 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0434\u043b\u044f \u043f\u0430\u0440\u0430\u0434\u0430\u045e @@ -1042,6 +1032,10 @@ Persian=\u041f\u0435\u0440\u0441\u0456\u0434\u0441\u043a\u0430\u044f #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u041f\u0435\u0440\u0441\u0456\u0434\u0441\u043a\u0430\u044f (\u0406\u0440\u0430\u043d) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ accessing\ files\ in\ folder\ =\u041d\u0435\u043c\u0430\u0433\u0447\u04 #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u043f\u0435\u0440\u0430\u043d\u0435\u0441\u0446\u0456 {0} \u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433 \u043f\u0430\u0431\u0443\u0434\u043e\u0432\u044b - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u041f\u0440\u0430\u0431\u043b\u0435\u043c\u0430 \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456 \u045e \u043f\u043b\u0430\u0442\u0443. \u0413\u043b\u044f\u0434\u0437\u0456 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0434\u043b\u044f \u0432\u044b\u0440\u0430\u0448\u044d\u043d\u043d\u044f. @@ -1131,9 +1121,16 @@ Processor=\u041f\u0440\u0430\u0446\u044d\u0441\u0430\u0440 #: Editor.java:704 Programmer=\u041f\u0440\u0430\u0433\u0440\u0430\u043c\u0430\u0442\u0430\u0440 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u0412\u044b\u0439\u0441\u0446\u0456 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u041f\u0435\u0440\u0430\u0440\u0430\u0431\u0456\u0446\u044c @@ -1173,6 +1170,14 @@ Replace\ with\:=\u0417\u0430\u043c\u044f\u043d\u0456\u0446\u044c \u043d\u0430\: #: Preferences.java:113 Romanian=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0430\u044f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u0420\u0443\u0441\u043a\u0430\u044f @@ -1250,6 +1255,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=\u0413\u0456\u0448\u043f\u0430\u043d\u0441\u043a\u0430\u044f #: Base.java:540 Sunshine=\u0421\u043e\u043d\u0446\u0430 \u045e\u0441\u0442\u0430\u0435 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u0428\u0432\u0435\u0434\u0441\u043a\u0430\u044f @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0413\u044d\u0442\u044b \u0444\u0430\u0439\u043b \u0443\u0436\u043e \u0441\u043a\u0430\u043f\u0456\u044f\u0432\u0430\u043d\u044b \u045e \u043c\u0435\u0441\u0446\u0430, \u043a\u0443\u0434\u0430 \u0432\u044b\n\u043d\u0430\u043c\u0430\u0433\u0430\u0435\u0446\u0435\u0441\u044f \u0434\u0430\u0434\u0430\u0446\u044c \u044f\u0433\u043e.\n\u041d\u0456\u0447\u043e\u0433\u0430 \u043d\u0435 \u0430\u0434\u0431\u0443\u0434\u0437\u0435\u0446\u0446\u0430. @@ -1451,6 +1454,10 @@ Unable\ to\ connect\:\ retrying=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0437\u043b\u0443\u0447\u044b\u0446\u0446\u0430\: \u043f\u0430\u043c\u044b\u043b\u043a\u043e\u0432\u044b \u043f\u0430\u0440\u043e\u043b\u044c? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u043c\u0430 \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c serial-\u043c\u0430\u043d\u0456\u0442\u043e\u0440 @@ -1461,13 +1468,17 @@ Unable\ to\ open\ serial\ monitor=\u041d\u0435\u043c\u0430\u0433\u0447\u044b\u04 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u0412\u044b\u043a\u043b\u044e\u0447\u044d\u043d\u043d\u0435 \u043d\u044f\u045e\u043b\u043e\u045e\u043d\u0430\u0433\u0430 \u0442\u044b\u043f\u0443\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u0410\u0434\u043c\u044f\u043d\u0456\u0446\u044c +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u041d\u044f\u0432\u044b\u0437\u043d\u0430\u0447\u0430\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, launcher \u043d\u0435\u0434\u0430\u0441\u0442\u0443\u043f\u043d\u044b.\n\u041a\u0430\u0431 \u0434\u0430\u0437\u0432\u043e\u043b\u0456\u0446\u044c \u0430\u0434\u0447\u044b\u043d\u044f\u0446\u044c URL \u044f\u043a \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0456, \u0434\u0430\u0434\u0430\u0439\u0446\u0435\n\u0440\u0430\u0434\u043e\u043a "launcher\=/path/to/app" \u0443 \u0444\u0430\u0439\u043b preferences.txt @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u #: Sketch.java:1622 Uploading...=\u0412\u044b\u0433\u0440\u0443\u0436\u0430\u0435\u043c... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Vietnamese=\u0412'\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0430\u044f #: Editor.java:1105 Visit\ Arduino.cc=\u041d\u0430\u0432\u0435\u0434\u0430\u0446\u044c Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=\u0423\u0432\u0430\u0433\u0430 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u0432\u044f\u0440\u043d\u0443\u045e {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.po b/arduino-core/src/processing/app/i18n/Resources_bg.po index f3b5cf1a3ef..42ec0982aee 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bg.po +++ b/arduino-core/src/processing/app/i18n/Resources_bg.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anton Stoychev , 2013 # Valentin Laskov , 2012-2015 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Bulgarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "'Keyboard' се поддържа само от Ардуино Леона msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' се поддържа само от Ардуино Леонардо" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(редактирайте само при нестартирано Ардуино)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "Недопустима грешка на ред: {0}" msgid "Bad file selected" msgstr "Избран е грешен файл" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Повреден основен файл на скицата или грешна структура директории на скицата" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Баски" @@ -321,15 +328,16 @@ msgstr "Баски" msgid "Belarusian" msgstr "Беларуски" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Платка" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "Завършващи символи NL и CR" msgid "Browse" msgstr "Разглеждане" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Работната папка изчезна или не може да се пише в нея" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Има променени опции за изграждане. Правя всичко наново" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Български" @@ -441,10 +449,6 @@ msgstr "Проверявай за обновления при стартиран msgid "Chinese (China)" msgstr "Китайски (Китай)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Китайски (Хонг Конг)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Китайски (Тайван)" @@ -453,14 +457,6 @@ msgstr "Китайски (Тайван)" msgid "Chinese (Taiwan) (Big5)" msgstr "Китайски (Тайван) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Китайски Опростен" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Китайски Традиционен" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Не мога да прочета настройките по подразбиране.\nЩе трябва да преинсталирате Ардуино." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Не мога да прочета файла с предишните предпочитания за изграждане. Правя всичко наново" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "Не можах да преименувам скицата. (2)" msgid "Could not replace {0}" msgstr "Не мога да заменя {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Не мога да запиша файла с предпочитанията за изграждане" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Не можах да архивирам скицата" @@ -642,18 +630,10 @@ msgstr "Хърватски" msgid "Cut" msgstr "Изрязване" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Чешки" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czech (Czech Republic)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Датски" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danish (Denmark)" @@ -925,6 +905,18 @@ msgstr "Естонски (Естония)" msgid "Examples" msgstr "Примери" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Намерена невалидна библиотека в {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Италиански" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,14 +1191,15 @@ msgstr "Литовски" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Достъпната памет е малко. Възможни са проблеми." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malay (Malaysia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1214,9 +1216,10 @@ msgstr "Маратхи" msgid "Message" msgstr "Съобщение" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Липсващ */ в края на /* коментар */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Трябва да укажете точно един файл-скица" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Име за нов файл:" @@ -1295,10 +1294,6 @@ msgstr "Не" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Не е избрана платка; моля изберете платка от менюто Инструменти > Платка." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Не са необходими промени за автоформатирането." @@ -1362,18 +1357,10 @@ msgstr "Няма намерени валидни дефиниции за хар msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norwegian" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Норвежки Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norwegian Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "Персийски" msgid "Persian (Iran)" msgstr "Персийски (Иран)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "Проблем при достъп до файлове в папка " msgid "Problem getting data folder" msgstr "Проблем при получаване папката за данни" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Проблем при преместването на {0} в работната папка" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "Процесор" msgid "Programmer" msgstr "Програматор" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Изход" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Повторение" @@ -1608,6 +1604,16 @@ msgstr "Замени с:" msgid "Romanian" msgstr "Румънски" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Руски" @@ -1713,6 +1719,11 @@ msgstr "Серийният порт {0} не е намерен.\nПробвай msgid "Serial ports" msgstr "Серийни портове" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "Слънчева светлина" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Шведски" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Във външния platform.txt не е дефиниран compiler.path. Моля, съобщете това на поддържащите този хардуер." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "Свързването неуспешно: опитвам отново" msgid "Unable to connect: wrong password?" msgstr "Свързването невъзможно: грешна парола?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Невъзможно отварянето на сериен монитор" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Неуловим тип изключение: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Отмяна" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "Качване към I/O платка..." msgid "Uploading..." msgstr "Качване..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Търси маркираното" @@ -2174,6 +2181,16 @@ msgstr "Виетнамски" msgid "Visit Arduino.cc" msgstr "Посетете Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "{0} файла добавени към скицата." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_bg.properties b/arduino-core/src/processing/app/i18n/Resources_bg.properties index 30f1acb57c7..2ae4f39cdfc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bg.properties +++ b/arduino-core/src/processing/app/i18n/Resources_bg.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Anton Stoychev , 2013 # Valentin Laskov , 2012-2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bulgarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bulgarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0410\u0440\u0434\u0443\u0438\u043d\u043e) @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0441\u0430\u043c\u043e \u043e\u0442 \u0410\u0440\u0434\u0443\u0438\u043d\u043e \u041b\u0435\u043e\u043d\u0430\u0440\u0434\u043e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u043a\u0442\u0438\u0440\u0430\u0439\u0442\u0435 \u0441\u0430\u043c\u043e \u043f\u0440\u0438 \u043d\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u043e \u0410\u0440\u0434\u0443\u0438\u043d\u043e) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=\u041d\u0435\u0434\u043e\u043f\u0443\u0441\u0442\u0438\u #: Editor.java:2136 Bad\ file\ selected=\u0418\u0437\u0431\u0440\u0430\u043d \u0435 \u0433\u0440\u0435\u0448\u0435\u043d \u0444\u0430\u0439\u043b -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u041f\u043e\u0432\u0440\u0435\u0434\u0435\u043d \u043e\u0441\u043d\u043e\u0432\u0435\u043d \u0444\u0430\u0439\u043b \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0438\u043b\u0438 \u0433\u0440\u0435\u0448\u043d\u0430 \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u0438 \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 - #: ../../../processing/app/Preferences.java:149 Basque=\u0411\u0430\u0441\u043a\u0438 #: ../../../processing/app/Preferences.java:139 Belarusian=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0438 -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u041f\u043b\u0430\u0442\u043a\u0430 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u041f\u043b\u0430\u0442\u043a\u0430\u0442\u0430 {0}\:{1}\:{2} \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u044f ''build.board'' \u0445\u0430\u0440\u0430\u043a\u0442\u0435\u0440\u0438\u0441\u0442\u0438\u043a\u0430. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0437\u0430\u0434\u0430\u0434\u0435\u043d\u043e\: {3} @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=\u0417\u0430\u0432\u044a\u0440\u0448\u0432\u0430\u0449\u0438 \u0 #: Preferences.java:81 Browse=\u0420\u0430\u0437\u0433\u043b\u0435\u0436\u0434\u0430\u043d\u0435 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0420\u0430\u0431\u043e\u0442\u043d\u0430\u0442\u0430 \u043f\u0430\u043f\u043a\u0430 \u0438\u0437\u0447\u0435\u0437\u043d\u0430 \u0438\u043b\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u0438\u0448\u0435 \u0432 \u043d\u0435\u044f - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u0418\u043c\u0430 \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u0438 \u043e\u043f\u0446\u0438\u0438 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. \u041f\u0440\u0430\u0432\u044f \u0432\u0441\u0438\u0447\u043a\u043e \u043d\u0430\u043d\u043e\u0432\u043e +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u044a\u043b\u0433\u0430\u0440\u0441\u043a\u0438 @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=\u041f\u0440\u043e\u0432\u0435\u0440\u044f\u043 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438 (\u041a\u0438\u0442\u0430\u0439) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438 (\u0425\u043e\u043d\u0433 \u041a\u043e\u043d\u0433) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438 (\u0422\u0430\u0439\u0432\u0430\u043d) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438 (\u0422\u0430\u0439\u0432\u0430\u043d) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438 \u041e\u043f\u0440\u043e\u0441\u0442\u0435\u043d - -#: Preferences.java:89 -Chinese\ Traditional=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438 \u0422\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u0435\u043d - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435 \u043f\u043e \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u043d\u0435.\n\u0429\u0435 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u043f\u0440\u0435\u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0442\u0435 \u0410\u0440\u0434\u0443\u0438\u043d\u043e. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u043e\u0447\u0435\u0442\u0430 \u0444\u0430\u0439\u043b\u0430 \u0441 \u043f\u0440\u0435\u0434\u0438\u0448\u043d\u0438\u0442\u0435 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435. \u041f\u0440\u0430\u0432\u044f \u0432\u0441\u0438\u0447\u043a\u043e \u043d\u0430\u043d\u043e\u0432\u043e - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u043f\u0440\u0435\u043c\u0430\u0445\u043d\u0430 \u0441\u0442\u0430\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 {0} @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435 \u043c\u043e\u0436\u0430\u044 #, java-format Could\ not\ replace\ {0}=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u0437\u0430\u043c\u0435\u043d\u044f {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0430 \u0444\u0430\u0439\u043b\u0430 \u0441 \u043f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f\u0442\u0430 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0430\u043c \u0441\u043a\u0438\u0446\u0430\u0442\u0430 @@ -456,15 +446,9 @@ Croatian=\u0425\u044a\u0440\u0432\u0430\u0442\u0441\u043a\u0438 #: Editor.java:1149 Editor.java:2699 Cut=\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435 -#: ../../../processing/app/Preferences.java:83 -Czech=\u0427\u0435\u0448\u043a\u0438 - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czech (Czech Republic) -#: Preferences.java:90 -Danish=\u0414\u0430\u0442\u0441\u043a\u0438 - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danish (Denmark) @@ -668,6 +652,15 @@ Estonian\ (Estonia)=\u0415\u0441\u0442\u043e\u043d\u0441\u043a\u0438 (\u0415\u04 #: Editor.java:516 Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u0438 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Indonesian=\u0418\u043d\u0434\u043e\u043d\u0435\u0437\u0438\u0439\u0441\u043a\u0 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u041d\u0430\u043c\u0435\u0440\u0435\u043d\u0430 \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0432 {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0418\u0442\u0430\u043b\u0438\u0430\u043d\u0441\u043a\u0438 @@ -851,6 +848,9 @@ Latvian=\u041b\u0430\u0442\u0432\u0438\u0439\u0441\u043a\u0438 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=\u0414\u043e\u0441\u0442\u044a\u043f\u043d\u0430\u0442\u0430 \u043f\u0430\u043c\u0435\u0442 \u0435 \u043c\u0430\u043b\u043a\u043e. \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u0438 \u0441\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malay (Malaysia) - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0438 #: Base.java:2112 Message=\u0421\u044a\u043e\u0431\u0449\u0435\u043d\u0438\u0435 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u041b\u0438\u043f\u0441\u0432\u0430\u0449 */ \u0432 \u043a\u0440\u0430\u044f \u043d\u0430 /* \u043a\u043e\u043c\u0435\u043d\u0442\u0430\u0440 */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\u0420\u0435\u0436\u0438\u043c\u044a\u0442 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 @@ -904,9 +906,6 @@ Multiple\ files\ not\ supported=\u041c\u043d\u043e\u0436\u0435\u0441\u0442\u0432 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u0422\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0443\u043a\u0430\u0436\u0435\u0442\u0435 \u0442\u043e\u0447\u043d\u043e \u0435\u0434\u0438\u043d \u0444\u0430\u0439\u043b-\u0441\u043a\u0438\u0446\u0430 -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\u0418\u043c\u0435 \u0437\u0430 \u043d\u043e\u0432 \u0444\u0430\u0439\u043b\: @@ -940,9 +939,6 @@ No=\u041d\u0435 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u0435 \u0438\u0437\u0431\u0440\u0430\u043d\u0430 \u043f\u043b\u0430\u0442\u043a\u0430; \u043c\u043e\u043b\u044f \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u043b\u0430\u0442\u043a\u0430 \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 > \u041f\u043b\u0430\u0442\u043a\u0430. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0435 \u0441\u0430 \u043d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u0438 \u043f\u0440\u043e\u043c\u0435\u043d\u0438 \u0437\u0430 \u0430\u0432\u0442\u043e\u0444\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e. @@ -991,15 +987,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u041d\u044f\u043c\u04 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norwegian - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u041d\u043e\u0440\u0432\u0435\u0436\u043a\u0438 Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norwegian Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u044f\u043c\u0430 \u0434\u043e\u0441\u0442\u0430\u0442\u044a\u0447\u043d\u043e \u043f\u0430\u043c\u0435\u0442; \u0432\u0438\u0436\u0442\u0435 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0437\u0430 \u0441\u044a\u0432\u0435\u0442\u0438 \u043a\u0430\u043a \u0434\u0430 \u043d\u0430\u043c\u0430\u043b\u0438\u0442\u0435 \u043e\u0431\u0435\u043c\u0430 \u043d\u0430 \u0442\u043e\u0432\u0430, \u043a\u043e\u0435\u0442\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u0435. @@ -1043,6 +1033,10 @@ Persian=\u041f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u041f\u0435\u0440\u0441\u0438\u0439\u0441\u043a\u0438 (\u0418\u0440\u0430\u043d) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ accessing\ files\ in\ folder\ =\u041f\u0440\u043e\u0431\u043b\u0435\u04 #: Base.java:1673 Problem\ getting\ data\ folder=\u041f\u0440\u043e\u0431\u043b\u0435\u043c \u043f\u0440\u0438 \u043f\u043e\u043b\u0443\u0447\u0430\u0432\u0430\u043d\u0435 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u0437\u0430 \u0434\u0430\u043d\u043d\u0438 -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u041f\u0440\u043e\u0431\u043b\u0435\u043c \u043f\u0440\u0438 \u043f\u0440\u0435\u043c\u0435\u0441\u0442\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 {0} \u0432 \u0440\u0430\u0431\u043e\u0442\u043d\u0430\u0442\u0430 \u043f\u0430\u043f\u043a\u0430 - #: 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 \u043f\u0440\u0438 \u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043a\u044a\u043c \u043f\u043b\u0430\u0442\u043a\u0430\u0442\u0430. \u0412\u0438\u0436\u0442\u0435 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0437\u0430 \u0441\u044a\u0432\u0435\u0442\u0438. @@ -1132,9 +1122,16 @@ Processor=\u041f\u0440\u043e\u0446\u0435\u0441\u043e\u0440 #: Editor.java:704 Programmer=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u0418\u0437\u0445\u043e\u0434 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u041f\u043e\u0432\u0442\u043e\u0440\u0435\u043d\u0438\u0435 @@ -1174,6 +1171,14 @@ Replace\ with\:=\u0417\u0430\u043c\u0435\u043d\u0438 \u0441\: #: Preferences.java:113 Romanian=\u0420\u0443\u043c\u044a\u043d\u0441\u043a\u0438 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u0420\u0443\u0441\u043a\u0438 @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=\u0421\u0435\u0440\u0438\u0439\u043d\u0438 \u043f\u043e\u0440\u0442\u043e\u0432\u0435 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438 #: Base.java:540 Sunshine=\u0421\u043b\u044a\u043d\u0447\u0435\u0432\u0430 \u0441\u0432\u0435\u0442\u043b\u0438\u043d\u0430 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=\u0428\u0432\u0435\u0434\u0441\u043a\u0438 @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\u0412\u044a\u0432 \u0432\u044a\u043d\u0448\u043d\u0438\u044f platform.txt \u043d\u0435 \u0435 \u0434\u0435\u0444\u0438\u043d\u0438\u0440\u0430\u043d compiler.path. \u041c\u043e\u043b\u044f, \u0441\u044a\u043e\u0431\u0449\u0435\u0442\u0435 \u0442\u043e\u0432\u0430 \u043d\u0430 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430\u0449\u0438\u0442\u0435 \u0442\u043e\u0437\u0438 \u0445\u0430\u0440\u0434\u0443\u0435\u0440. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0422\u043e\u0437\u0438 \u0444\u0430\u0439\u043b \u0432\u0435\u0447\u0435 \u0435 \u043a\u043e\u043f\u0438\u0440\u0430\u043d \u043d\u0430 \u043c\u044f\u0441\u0442\u043e, \u043e\u0442\n\u043a\u044a\u0434\u0435\u0442\u043e \u0442\u0438 \u0441\u0435 \u043e\u043f\u0438\u0442\u0432\u0430\u0448 \u0434\u0430 \u0433\u043e \u0434\u043e\u0431\u0430\u0432\u0438\u0448.\n\u041d\u044f\u043c\u0430 \u0434\u0430 \u043f\u0440\u0430\u0432\u044f \u043d\u0438\u0449\u043e. @@ -1452,6 +1455,10 @@ Unable\ to\ connect\:\ retrying=\u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u0421\u0432\u044a\u0440\u0437\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0435\u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e\: \u0433\u0440\u0435\u0448\u043d\u0430 \u043f\u0430\u0440\u043e\u043b\u0430? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u041d\u0435\u0432\u044a\u0437\u043c\u043e\u0436\u043d\u043e \u043e\u0442\u0432\u0430\u0440\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0441\u0435\u0440\u0438\u0435\u043d \u043c\u043e\u043d\u0438\u0442\u043e\u0440 @@ -1462,13 +1469,17 @@ Unable\ to\ open\ serial\ monitor=\u041d\u0435\u0432\u044a\u0437\u043c\u043e\u04 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u041d\u0435\u0443\u043b\u043e\u0432\u0438\u043c \u0442\u0438\u043f \u0438\u0437\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u0435\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u041e\u0442\u043c\u044f\u043d\u0430 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, \u043d\u044f\u043c\u0430 \u0437\u0430\u0434\u0430\u0434\u0435\u043d \u0431\u0440\u0430\u0443\u0437\u044a\u0440.\n\u0417\u0430 \u0434\u0430 \u043e\u0442\u0432\u0430\u0440\u044f\u0442\u0435 \u0443\u0435\u0431 \u0430\u0434\u0440\u0435\u0441\u0438 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438, \u0434\u043e\u0431\u0430\u0432\u0435\u0442\u0435 \u0440\u0435\u0434\n"launcher\=/\u043f\u044a\u0442/\u0434\u043e/\u043f\u0440\u0438\u043b\u043e\u0436\u0435\u043d\u0438\u0435\u0442\u043e" \u0432 preferences.txt @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043a\u #: Sketch.java:1622 Uploading...=\u041a\u0430\u0447\u0432\u0430\u043d\u0435... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=\u0422\u044a\u0440\u0441\u0438 \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u043e\u0442\u043e @@ -1563,6 +1571,14 @@ Vietnamese=\u0412\u0438\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u043e\u0441\u0435\u0442\u0435\u0442\u0435 Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415\: \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 {0} \u0442\u0432\u044a\u0440\u0434\u0438, \u0447\u0435 \u0440\u0430\u0431\u043e\u0442\u0438 \u043d\u0430 {1} \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0438 \u0438 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0435\u0441\u044a\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0430 \u0441 \u0442\u0435\u043a\u0443\u0449\u0430\u0442\u0430 \u0412\u0438 \u043f\u043b\u0430\u0442\u043a\u0430, \u043a\u043e\u044f\u0442\u043e \u0435 \u0441 {2} \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430. @@ -1592,6 +1608,9 @@ Warning=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ upload=\u043a\u0430\u0447\u0432\u0430\u043d\u0435 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u0432\u044a\u0440\u043d\u0430 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_bn_IN.po b/arduino-core/src/processing/app/i18n/Resources_bn_IN.po deleted file mode 100644 index a0112151eb6..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_bn_IN.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Bengali (India) (http://www.transifex.com/mbanzi/arduino-ide-15/language/bn_IN/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: bn_IN\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_bn_IN.properties b/arduino-core/src/processing/app/i18n/Resources_bn_IN.properties deleted file mode 100644 index 59645bbfe66..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_bn_IN.properties +++ /dev/null @@ -1,1791 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bengali (India) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bn_IN/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bn_IN\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -!Open...= - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -!Quit= - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.po b/arduino-core/src/processing/app/i18n/Resources_bs.po index 52f8e1aa1a8..a869d2ebc97 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bs.po +++ b/arduino-core/src/processing/app/i18n/Resources_bs.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Kenan Dervišević, 2013-2014 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Bosnian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Ploča" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "Pretraži" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "bugarski" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "pojednostavljeni kineski" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "tradicionalni kineski" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "Nije moguće zamijeniti {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "hrvatski" msgid "Cut" msgstr "Izreži" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "češki" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "danski" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "Primjeri" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "italijanski" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "litvanijski" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "marati" msgid "Message" msgstr "Poruka" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "Ne" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "norveški Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "perzijski" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Naprijed" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "rumunski" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "ruski" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Nazad" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Posjeti Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_bs.properties b/arduino-core/src/processing/app/i18n/Resources_bs.properties index a56d724c0ed..ad451fba821 100644 --- a/arduino-core/src/processing/app/i18n/Resources_bs.properties +++ b/arduino-core/src/processing/app/i18n/Resources_bs.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Kenan Dervi\u0161evi\u0107, 2013-2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bosnian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bs\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Bosnian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bs\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(zahtjeva ponovno pokretanje Arduina) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bita) plo\u010de #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Plo\u010da +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Bosnian=Bosanski #: Preferences.java:81 Browse=Pretra\u017ei -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=bugarski @@ -311,21 +316,12 @@ Catalan=katalonski #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=pojednostavljeni kineski - -#: Preferences.java:89 -Chinese\ Traditional=tradicionalni kineski - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ delete\ {0}=Nije mogu\u0107e obrisati {0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nije mogu\u0107e ukloniti staru verziju {0}. @@ -434,9 +427,6 @@ Could\ not\ remove\ old\ version\ of\ {0}=Nije mogu\u0107e ukloniti staru verzij #, java-format Could\ not\ replace\ {0}=Nije mogu\u0107e zamijeniti {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Croatian=hrvatski #: Editor.java:1149 Editor.java:2699 Cut=Izre\u017ei -#: ../../../processing/app/Preferences.java:83 -Czech=\u010de\u0161ki - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=danski - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Estonian=estonski #: Editor.java:516 Examples=Primjeri +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=indonezijski #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=italijanski @@ -850,6 +847,9 @@ Latvian=latvijski #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=litvanijski #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Marathi=marati #: Base.java:2112 Message=Poruka -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Moving=Premje\u0161tam #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ No=Ne #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No=Ne #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=norve\u0161ki Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Persian=perzijski #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Printing...=\u0160tampam... #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Programer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 !Quit= +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Naprijed @@ -1173,6 +1170,14 @@ Rename=Preimenuj #: Preferences.java:113 Romanian=rumunski +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=ruski @@ -1250,6 +1255,10 @@ Select\ All=Ozna\u010di sve #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=\u0161panski #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ Tamil=tamilski #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Ukrainian=ukrajinski #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Ukrainian=ukrajinski #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=Nazad +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Undo=Nazad #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Undo=Nazad #: Editor.java:1105 Visit\ Arduino.cc=Posjeti Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=Upozorenje #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.po b/arduino-core/src/processing/app/i18n/Resources_ca.po index 64f0c511d40..3c91dff679e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ca.po +++ b/arduino-core/src/processing/app/i18n/Resources_ca.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Francesc , 2015 # Moritz Werner Casero , 2015 # Sergi Pérez Labernia , 2014 @@ -16,7 +17,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Catalan (http://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\n" "MIME-Version: 1.0\n" @@ -47,10 +48,20 @@ msgstr "'Keyboard' només ho suporta l'Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' només ho suporta l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(només editar quan l'Arduino no estigui funcionant)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -312,10 +323,6 @@ msgstr "Error en la línia: {0}" msgid "Bad file selected" msgstr "Fitxer seleccionat incorrecte" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Mal arxiu principal de programri o mala estructura del directòri del programari." - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basc" @@ -324,15 +331,16 @@ msgstr "Basc" msgid "Belarusian" msgstr "Bielorús" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengalí (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Tarja" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -373,14 +381,14 @@ msgstr "Ambdós NL & CR" msgid "Browse" msgstr "Navegar" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Directori de compilació desaparegut o no si pot escriure" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opcions de compilat canviades, re-compilant tot" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgar" @@ -444,10 +452,6 @@ msgstr "Comprova actualitzacions al iniciar" msgid "Chinese (China)" msgstr "Xinès (Xina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Xinès (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Xinès (Taiwan)" @@ -456,14 +460,6 @@ msgstr "Xinès (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Xinès (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Xinès simplificat" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Xinès tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -583,10 +579,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "No es poden llegir les preferències inicials.\nNecessites tornar a instal·lar Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "No es pot llegir l'anterior arxiu de preferències de compilació, re-compilant tot" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -614,10 +606,6 @@ msgstr "No es pot reanomenar el sketch. (2)" msgid "Could not replace {0}" msgstr "No es pot substituir {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "No es pot escriure l'arxiu de preferències de compilació" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "No s´ha pogut arxivar el sketch" @@ -645,18 +633,10 @@ msgstr "Croat" msgid "Cut" msgstr "Retalla" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Txec" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Txèqui (República Txeca)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danès" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danès (Dinamàrca)" @@ -928,6 +908,18 @@ msgstr "Estònia (Estònia)" msgid "Examples" msgstr "Exemples" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1156,6 +1148,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Llibreria invalida trobada en {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italià" @@ -1180,6 +1177,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1193,14 +1194,15 @@ msgstr "Lituà" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Es disposa de poca memòria, es poden produir problemes d'estabilitat" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malay (Malàsia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1217,9 +1219,10 @@ msgstr "Marathi" msgid "Message" msgstr "Missatge" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "No es troba el */ del final del /* comentari */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1250,10 +1253,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Heu d'especificar exactament un arxiu sketch" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Escolliu un nom per un nou fitxer:" @@ -1298,10 +1297,6 @@ msgstr "No" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Cap placa seleccionada; si us plau esculli una placa del menú Eines > Placa." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Cap canvi necessari pel format automàtic." @@ -1365,18 +1360,10 @@ msgstr "La definició de hardware trobat en el directori {0} no es vàlid." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norugüè" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noruec Bokmâl" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Noruec Bokmâl" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1436,6 +1423,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1533,11 +1525,6 @@ msgstr "Problema accedint als arxius de la carpeta" msgid "Problem getting data folder" msgstr "Problema obtenint la carpeta de data" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problemes movent {0} a la carpeta de treball" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1556,10 +1543,19 @@ msgstr "Processador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Tancar" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refér" @@ -1611,6 +1607,16 @@ msgstr "Substituir amb:" msgid "Romanian" msgstr "Romanès" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rus" @@ -1716,6 +1722,11 @@ msgstr "Port sèrie {0} no trobat.\nRe-intentar la pujada amb un altre port sèr msgid "Serial ports" msgstr "Port Serial" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1831,10 +1842,6 @@ msgstr "" msgid "Sunshine" msgstr "Sol." -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Suec" @@ -1951,12 +1958,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "L'arxiu \"platform.txt\" d'una tercera empresa no defineix \"compiler.path\". Per favot reporti això a la empresa de tercers." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2029,6 +2030,11 @@ msgstr "No es pot connectar: reintentant" msgid "Unable to connect: wrong password?" msgstr "No es pot conectar: Contrasenya incorrecte?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "No es pot obrir el monitor sèrie" @@ -2042,15 +2048,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Excepció escapada de tipus: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Desfér" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2099,10 +2110,6 @@ msgstr "Pujant a la I/O de la Placa..." msgid "Uploading..." msgstr "Actualitzant..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdú (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Utilitza la selecció per cercar" @@ -2177,6 +2184,16 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2220,6 +2237,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2474,6 +2497,16 @@ msgstr "{0} fitxers afegits al sketch." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ca.properties b/arduino-core/src/processing/app/i18n/Resources_ca.properties index e76ca883e93..1a28f58c22b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ca.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ca.properties @@ -6,12 +6,13 @@ # Translators: # Translators: # Translators: +# Translators: # Francesc , 2015 # Moritz Werner Casero , 2015 # Sergi P\u00e9rez Labernia , 2014 # shacawine , 2012 # Xavier Romero Aguad\u00e9 , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Catalan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ca\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Catalan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ca\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u00e9s necessari reiniciar l'Arduino) @@ -30,9 +31,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' nom\u00e9s ho suporta l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(nom\u00e9s editar quan l'Arduino no estigui funcionant) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -216,22 +223,20 @@ Bad\ error\ line\:\ {0}=Error en la l\u00ednia\: {0} #: Editor.java:2136 Bad\ file\ selected=Fitxer seleccionat incorrecte -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Mal arxiu principal de programri o mala estructura del direct\u00f2ri del programari. - #: ../../../processing/app/Preferences.java:149 Basque=Basc #: ../../../processing/app/Preferences.java:139 Belarusian=Bielor\u00fas -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengal\u00ed (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Tarja +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Tarja {0}\:{1}\:{2} no defineix la prefer\u00e8ncia del ''build.board''. Auto-seleccionat per\: {3} @@ -261,12 +266,12 @@ Both\ NL\ &\ CR=Ambd\u00f3s NL & CR #: Preferences.java:81 Browse=Navegar -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directori de compilaci\u00f3 desaparegut o no si pot escriure - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opcions de compilat canviades, re-compilant tot +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgar @@ -315,21 +320,12 @@ Check\ for\ updates\ on\ startup=Comprova actualitzacions al iniciar #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Xin\u00e8s (Xina) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Xin\u00e8s (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Xin\u00e8s (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Xin\u00e8s (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Xin\u00e8s simplificat - -#: Preferences.java:89 -Chinese\ Traditional=Xin\u00e8s tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -414,9 +410,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No es poden llegir les prefer\u00e8ncies inicials.\nNecessites tornar a instal\u00b7lar Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=No es pot llegir l'anterior arxiu de prefer\u00e8ncies de compilaci\u00f3, re-compilant tot - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=No es pot esborrar l'anterior versi\u00f3 de {0} @@ -438,9 +431,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=No es pot reanomenar el sketch. (2) #, java-format Could\ not\ replace\ {0}=No es pot substituir {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=No es pot escriure l'arxiu de prefer\u00e8ncies de compilaci\u00f3 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=No s\u00b4ha pogut arxivar el sketch @@ -459,15 +449,9 @@ Croatian=Croat #: Editor.java:1149 Editor.java:2699 Cut=Retalla -#: ../../../processing/app/Preferences.java:83 -Czech=Txec - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Tx\u00e8qui (Rep\u00fablica Txeca) -#: Preferences.java:90 -Danish=Dan\u00e8s - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Dan\u00e8s (Dinam\u00e0rca) @@ -671,6 +655,15 @@ Estonian\ (Estonia)=Est\u00f2nia (Est\u00f2nia) #: Editor.java:516 Examples=Exemples +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -836,6 +829,10 @@ Indonesian=Indonesi #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Llibreria invalida trobada en {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Itali\u00e0 @@ -854,6 +851,9 @@ Latvian=Let\u00f3 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -864,12 +864,13 @@ Lithuaninan=Litu\u00e0 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Es disposa de poca mem\u00f2ria, es poden produir problemes d'estabilitat -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malay (Mal\u00e0sia) - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -882,8 +883,9 @@ Marathi=Marathi #: Base.java:2112 Message=Missatge -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=No es troba el */ del final del /* comentari */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=M\u00f2dus no suportat. @@ -907,9 +909,6 @@ Multiple\ files\ not\ supported=M\u00faltiples arxius no suportat #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Heu d'especificar exactament un arxiu sketch -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Escolliu un nom per un nou fitxer\: @@ -943,9 +942,6 @@ No=No #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Cap placa seleccionada; si us plau esculli una placa del men\u00fa Eines > Placa. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Cap canvi necessari pel format autom\u00e0tic. @@ -994,15 +990,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=La definici\u00f3 de h #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norug\u00fc\u00e8 - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruec Bokm\u00e2l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Noruec Bokm\u00e2l - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f2ria insuficient; ves a http\://www.arduino.cc/en/Guide/Troubleshooting\#size pels consells de com reduir-ne la mida. @@ -1046,6 +1036,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1119,10 +1113,6 @@ Problem\ accessing\ files\ in\ folder\ =Problema accedint als arxius de la carpe #: Base.java:1673 Problem\ getting\ data\ folder=Problema obtenint la carpeta de data -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problemes movent {0} a la carpeta de treball - #: 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. @@ -1135,9 +1125,16 @@ Processor=Processador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Tancar +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ref\u00e9r @@ -1177,6 +1174,14 @@ Replace\ with\:=Substituir amb\: #: Preferences.java:113 Romanian=Roman\u00e8s +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Rus @@ -1254,6 +1259,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Port Serial +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1334,9 +1343,6 @@ Spanish=Espanyol #: Base.java:540 Sunshine=Sol. -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Suec @@ -1401,9 +1407,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=L'arxiu "platform.txt" d'una tercera empresa no defineix "compiler.path". Per favot reporti aix\u00f2 a la empresa de tercers. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Aquest arxiu ja s'ha copiat a\nla localitzaci\u00f3 de on vost\u00e9 est\u00e0 intentant afegir-lo.\n-. @@ -1455,6 +1458,10 @@ Unable\ to\ connect\:\ retrying=No es pot connectar\: reintentant #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=No es pot conectar\: Contrasenya incorrecte? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=No es pot obrir el monitor s\u00e8rie @@ -1465,13 +1472,17 @@ Unable\ to\ open\ serial\ monitor=No es pot obrir el monitor s\u00e8rie #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Excepci\u00f3 escapada de tipus\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Desf\u00e9r +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma no especificada, no hi ha un llan\u00e7ador disponible.\nPer permetre obrir URLs o carpetes, afegeix \n"launcher\=/path/yo/app" a preferences.txt @@ -1506,9 +1517,6 @@ Uploading\ to\ I/O\ Board...=Pujant a la I/O de la Placa... #: Sketch.java:1622 Uploading...=Actualitzant... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urd\u00fa (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Utilitza la selecci\u00f3 per cercar @@ -1566,6 +1574,14 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ALERTA\: libray {0} vol correr a {1} arquitectura(es) i podria ser incompatible amb la seva placa, que corre a {2} arquitectura(es). @@ -1595,6 +1611,9 @@ Warning=Advert\u00e8ncia #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1755,6 +1774,14 @@ upload=Pujar #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} ha retornat {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_cs.po b/arduino-core/src/processing/app/i18n/Resources_cs.po deleted file mode 100644 index 489eb44071c..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_cs.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Czech (http://www.transifex.com/mbanzi/arduino-ide-15/language/cs/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: cs\n" -"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_cs.properties b/arduino-core/src/processing/app/i18n/Resources_cs.properties deleted file mode 100644 index 54d0ef5e116..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_cs.properties +++ /dev/null @@ -1,1791 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Czech (http\://www.transifex.com/mbanzi/arduino-ide-15/language/cs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -!Open...= - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -!Quit= - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po index 5979aced1bd..d9face63ea1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po +++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # horcicaa , 2012 # fatalwir , 2014 # Michal Kočer , 2012 @@ -18,7 +19,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Czech (Czech Republic) (http://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\n" "MIME-Version: 1.0\n" @@ -34,12 +35,12 @@ msgstr " (vyžaduje restart programu Arduino)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "" +msgstr " Nepoužitý: {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" -msgstr "" +msgstr " Použitý: {0}" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" @@ -49,13 +50,23 @@ msgstr "'Keyboard' je podporováno pouze u Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' je podporováno pouze u Arduino Leonardo!" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editujte pouze když program Arduino není spuštěn)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir už není podporován" #: ../../../processing/app/Base.java:468 msgid "" @@ -70,18 +81,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Dostupná aktualizace některých tvých {0}desek{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Dostupná aktualizace některých tvých {0}desek{1} a {2}knihoven{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Dostupná aktualizace některých tvých {0}knihoven{1}" #: Editor.java:2053 msgid "" @@ -115,11 +126,11 @@ msgstr "K dispozici je nová verze Arduina,\nChcete otevřít stránku s novou v #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "Novější {0} balíček je dostupný" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "Podadresář tvých projektů není platná knihovna" #: Editor.java:1116 msgid "About Arduino" @@ -127,7 +138,7 @@ msgstr "O Arduinu" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "Přidat .ZIP Knihovnu..." #: Editor.java:650 msgid "Add File..." @@ -135,11 +146,11 @@ msgstr "Přidat soubor..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "Správce dalších desek URL" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "Správce dalších desek URL:" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" @@ -153,7 +164,7 @@ msgstr "Albánština" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -msgstr "" +msgstr "Všechno" #: tools/FixEncoding.java:77 msgid "" @@ -164,7 +175,7 @@ msgstr "Během opravy kódování souboru se vyskytla chyba.\nNepokoušejte se o #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "Nastala chyba při aktualizaci indexu knihoven!" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" @@ -271,7 +282,7 @@ msgstr "Pro --preferences-file je nutný argument" #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format msgid "Argument required for {0}" -msgstr "" +msgstr "Vyžadovaný argument pro {0}" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" @@ -295,11 +306,11 @@ msgstr "Autoformátování dokončeno." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Automatická detekce proxy nastavení" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "Automatické nastavení konfigurace URL:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -314,10 +325,6 @@ msgstr "Chyba na řádce: {0}" msgid "Bad file selected" msgstr "Vybrán špatný soubor" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Špatný návrh přimárního souboru nebo adresárová struktura." - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskičtina" @@ -326,15 +333,16 @@ msgstr "Baskičtina" msgid "Belarusian" msgstr "Běloruština" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengálština (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Vývojová deska" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -348,20 +356,20 @@ msgstr "Vývojová deska: " #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "Manažér Desek" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "Manažér Desek..." #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" -msgstr "" +msgstr "Desky zahrnuté v tomto balíku:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "Bootloader je specifikován ale chybí soubor: {0}" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -375,14 +383,14 @@ msgstr "Obojí NL & CR" msgid "Browse" msgstr "Prohlížet" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Adresář pro Build zmizel a nebo do něj nelze zapisovat" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Volby pro sestavení se změnily; sestavuji vše znovu " +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulharština" @@ -401,7 +409,7 @@ msgstr "Vypaluji zavaděč na I/O boardu /vývojové desky/ (chvilku to potrvá) #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "CRC není správny. Soubor je poškozen." #: ../../../processing/app/Base.java:379 #, java-format @@ -446,10 +454,6 @@ msgstr "Při startu vyhledat nové verze" msgid "Chinese (China)" msgstr "Čínština (Čína)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Čínština (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Čínština (Taiwan)" @@ -458,17 +462,9 @@ msgstr "Čínština (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Čínština (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Čínština (zjednodušené znaky)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Činština (tradiční znaky)" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "Klini na seznam neoficiálne podporovaných desek na URL" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -480,7 +476,7 @@ msgstr "Zakomentovat/Odkomentovat" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "Varování překladače:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -585,10 +581,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nebylo možné načíst systémové nastavení.\nPřeinstalujte Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Nelze načíst soubor nastavení předchozího sestavení, znovu sestavuji" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -616,10 +608,6 @@ msgstr "Nepodařilo se změnit název projektu (2)" msgid "Could not replace {0}" msgstr "Nemohu změnit {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Nelze zapsat soubor nastavení" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Projekt nebylo možné archivovat" @@ -647,18 +635,10 @@ msgstr "Chorvatština" msgid "Cut" msgstr "Vyjmout" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Čeština" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Česky (Česká Republika)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dánština" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dánština (Dánsko)" @@ -669,7 +649,7 @@ msgstr "Zmenšit odsazení" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -msgstr "" +msgstr "Default" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" @@ -694,7 +674,7 @@ msgstr "Zobrazit čísla řádků" msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Chceš odstránit {0}?\nJestli to udeláš nebudeš moci používat {0} nic víc." #: Editor.java:2064 msgid "Don't Save" @@ -732,29 +712,29 @@ msgstr "Konec nahrávaní." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "Staženo {0}kb z {1}kb." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "Stahuji definice desek." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Stahuji index knihoven..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Stahuji knihovnu: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Stahuji index platforem..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Stahuji nástroje ({0}/{1})." #: Preferences.java:91 msgid "Dutch" @@ -766,7 +746,7 @@ msgstr "Nizozemština (Nizozemí)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Edison Pomoc" #: Editor.java:1130 msgid "Edit" @@ -782,7 +762,7 @@ msgstr "Jazyk editoru: " #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Zapnout Code Folding" #: Preferences.java:92 msgid "English" @@ -795,11 +775,11 @@ msgstr "Angličtina (Velká Británie)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "Vlož seznam url oddelen čárkou" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "Vlož další URL, každý na nový řádek" #: Editor.java:1062 msgid "Environment" @@ -822,7 +802,7 @@ msgstr "Chyba kompilace." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "Chyba stahování {0}" #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -850,7 +830,7 @@ msgstr "Chyba při otevírání seriového portu ''{0}''." msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "Chyba pri otevření sériového portu ''{0}''. Zkus se podívat na dokumentaci která je na http://playground.arduino.cc/Linux/All#Permission" #: Preferences.java:277 msgid "Error reading preferences" @@ -867,7 +847,7 @@ msgstr "Chyba při čtení souboru s nastavením. Prosím smažte (či přesuňt #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +msgstr "Chyba běhu poinštalačního skriptu" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -930,9 +910,21 @@ msgstr "Estónština (Estónsko)" msgid "Examples" msgstr "Příklady" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" -msgstr "" +msgstr "Export kompilovaného Binaru" #: ../../../processing/app/Base.java:416 #, java-format @@ -949,7 +941,7 @@ msgstr "Filipínština" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Filter tvého hledání..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -988,7 +980,7 @@ msgstr "Uprav kódování a znovu nahraj" msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Pro informace jak instalovat knihovny se podívej na: http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -1013,7 +1005,7 @@ msgstr "Galician (Španělsko)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Galileo Pomoc" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -1057,7 +1049,7 @@ msgstr "Hindština" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Host name:" #: Sketch.java:295 msgid "" @@ -1103,7 +1095,7 @@ msgstr "Přidat knihovnu" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Nesprávný adresář pro instalaci IDE" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1115,7 +1107,7 @@ msgstr "Indonéština" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." -msgstr "" +msgstr "Inicializace balíčků..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -1124,40 +1116,45 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Instalace" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Instalace je kompletní!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Instalováno" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Instalace desek..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Instaluji knihovnu: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Instaluji nástroje ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Instaluji..." #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" msgstr "Nalezena neplatná knihovna v {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italština" @@ -1176,16 +1173,20 @@ msgstr "Lotyština" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Manažér Knihoven" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" +msgstr "Knihovna přidána do tvých knihoven. Zkontroluj menu \"Zahrnuté knihovny\"" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." msgstr "" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "Knihovna je již instalovaná: {0} verze {1}" #: Preferences.java:106 msgid "Lithuaninan" @@ -1193,23 +1194,24 @@ msgstr "Litevština" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." +msgstr "Nahrávam konfiguraci..." + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Mála dostupné paměti, múžou nastat problémy se stabilitou." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malajština (Malajsie)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Spravovat knihovny..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Manuální nastavení proxy" #: Preferences.java:107 msgid "Marathi" @@ -1219,9 +1221,10 @@ msgstr "Maráthština" msgid "Message" msgstr "Zpráva" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Chybí ukončující znaky \"*/\" komentáře" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1229,7 +1232,7 @@ msgstr "Mód není podporován" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Víc" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1246,16 +1249,12 @@ msgstr "Vícenásobní soubory nejsou podporováný" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "Byly nalezené násobné knihovny \"{0}\"" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" msgstr "Musíte označit právě jeden soubor s projektem" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Jméno nového souboru:" @@ -1266,7 +1265,7 @@ msgstr "Nepálština" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Síť" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -1298,11 +1297,7 @@ msgstr "Ne" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nemáte vybrán model vývojové desky (boardu); vyberte model boardu v Nástroje (Tools) > Board" +msgstr "Nebyla nalezena žádná autorizovaná data" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -1314,7 +1309,7 @@ msgstr "Nabyly nalezeny žádné parametry pro příkazovou řádku" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -msgstr "" +msgstr "Nebyl nalezel skompilovaný projekt" #: Editor.java:373 msgid "No files were added to the sketch." @@ -1334,7 +1329,7 @@ msgstr "Žádné parametry" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Bez proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1365,20 +1360,12 @@ msgstr "V adresáři {0} byla nalezena neplatná definice hardware." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norština" +msgstr "Žádný" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norwegian Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norština Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1404,7 +1391,7 @@ msgstr "Otevřít" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "Otevřít Předešlé" #: Editor.java:2688 msgid "Open URL" @@ -1438,13 +1425,18 @@ msgstr "Perština" msgid "Persian (Iran)" msgstr "Perština (Irán)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "Prosím potvrď zmazání desek" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "Prosím potvrď zmazání knihoven" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1469,7 +1461,7 @@ msgstr "Port" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Číslo portu:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1489,7 +1481,7 @@ msgstr "Vlastnosti" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "Připravuji desky..." #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1535,11 +1527,6 @@ msgstr "Problém s přístupem k souborům v adresáři" msgid "Problem getting data folder" msgstr "Problém s přístupem do datového adresáře." -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problém při přesunu {0} do adresáře pro build" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1558,10 +1545,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programátor" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Ukončit" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Znovu" @@ -1572,17 +1568,17 @@ msgstr "Reference" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "Vymazat" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "Mažu knihovnu: {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "Odstraňuji..." #: EditorHeader.java:300 msgid "Rename" @@ -1613,6 +1609,16 @@ msgstr "Nahraď za:" msgid "Romanian" msgstr "Rumunština" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ruština" @@ -1674,7 +1680,7 @@ msgstr "Vyberte nové umístení pro vaše projekty" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "Výběr verze" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." @@ -1682,11 +1688,11 @@ msgstr "Vybraná vývojová deska závisí na jádře '{0}' (neinstalováno)." #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "Vybraná deska není dostupná" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "Vybraná knihovna není dostupná" #: SerialMonitor.java:93 msgid "Send" @@ -1698,7 +1704,7 @@ msgstr "Seriový monitor" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" -msgstr "" +msgstr "Sériový Ploter" #: Serial.java:194 #, java-format @@ -1718,9 +1724,14 @@ msgstr "Seriový port {0} nenalezen\nMám zkusit nahrávat na jiný seriový por msgid "Serial ports" msgstr "Sériový port" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Nastavení" #: Base.java:1681 msgid "Settings issues" @@ -1823,20 +1834,16 @@ msgstr "Španělština" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "Specifikovaný adresář/zip soubor neobsahuje korektní knihovnu" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "Startuji..." #: Base.java:540 msgid "Sunshine" msgstr "Slunceee!" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahiština" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Švédština" @@ -1870,7 +1877,7 @@ msgstr "U třídy Client byl změněn název na EthernetClient." msgid "" "The IDE includes an updated {0} package, but you're using an older one.\n" "Do you want to upgrade {0}?" -msgstr "" +msgstr "IDE obsahuje novější {0} balíček, ale ty používaš verzi starší.\nChceš upgradovat {0}?" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." @@ -1951,13 +1958,7 @@ msgstr "Adresář projektů (Sketchbook folder) již neexistuje.\nArduino se pok msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "V souboru platform.txt od poskytovatele třetích stran není definováno compiler.path. Oznamte to prosím správci hardwaru třetích stran." +msgstr "Specifikovaný projektový adresář obsahuje kopii tvého IDE.\nProsím vyber pro svůj projekt jiný adresář." #: Sketch.java:1075 msgid "" @@ -1970,7 +1971,7 @@ msgstr "Tento soubor byl již na toto místo nakopírován\nze kterého jsi jej msgid "" "This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" "Are you sure you want to delete it?" -msgstr "" +msgstr "Táto knihovna není v seznamu Knihoven. Nebudeš ji moci znova sem instalovat.\nJste si jisti, že ji chcete odstranit?" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" @@ -1983,7 +1984,7 @@ msgstr "Čas na přestávku (Break)" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "Nástroj {0} není dostupný pro tvůj operačný systém." #: Editor.java:663 msgid "Tools" @@ -1991,7 +1992,7 @@ msgstr "Nástroje" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "Téma" #: Editor.java:1070 msgid "Troubleshooting" @@ -2004,7 +2005,7 @@ msgstr "Turečtina" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 msgid "Type" -msgstr "" +msgstr "Typ" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" @@ -2031,28 +2032,38 @@ msgstr "Nemohu se připojit: zkouším znovu" msgid "Unable to connect: wrong password?" msgstr "Nemohu se připojit: špatné heslo?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Nemohu otevřít seriový monitor" #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" -msgstr "" +msgstr "Nemohu otevřít sériový ploter" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Nezachycená výjimka typu: {0}" +msgstr "Nemůžu nalézt Arduino.cc pravdepodobne problém se sítí." #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Zpět" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2063,7 +2074,7 @@ msgstr "Nespecifikovaná platforma, není k dispozici launcher.\nAby bylo možn #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Aktualizovatelné" #: UpdateCheck.java:111 msgid "Update" @@ -2075,7 +2086,7 @@ msgstr "Při ukládání aktualizuj příponu souboru projektu (.pde -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "Aktualizuji seznam instalovaných knihoven" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -2101,10 +2112,6 @@ msgstr "Nahrávám na I/O boardu (vývojové desky)..." msgid "Uploading..." msgstr "Nahrávám..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdština (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Pro vyhledání užij výběr" @@ -2116,12 +2123,12 @@ msgstr "Použít externí editor" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Uživatelské jméno:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" +msgstr "Použití knihovny {0} ve verzi {1} v adresáři: {2} {3}" #: ../../../processing/app/debug/Compiler.java:94 #, java-format @@ -2143,33 +2150,33 @@ msgstr "Ověřit kód po nahrátí" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Kontrola/Kompilace" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "Kontroluji a nahrávám..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." -msgstr "" +msgstr "Kontroluji integritu archivu..." #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "Kontroluji..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Verze {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "Neznáma verze" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Verze {0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" @@ -2179,6 +2186,16 @@ msgstr "Vietnamština" msgid "Visit Arduino.cc" msgstr "Navštivte Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2194,32 +2211,38 @@ msgstr "Upozornění" msgid "" "Warning: This core does not support exporting sketches. Please consider " "upgrading it or contacting its author" -msgstr "" +msgstr "Varování: Toto jádro nedovede exportovat projekty. Prosím zvažte upgrade nebo kontaktujte svého dodavatele" #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" +msgstr "Varování: soubor {0} odkazuje na absolútní cestu {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Varování: vynucené použití nedůvěryhodných prvků" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Varování: vynucené spuštení nedůvěryhodného skriptu ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Varování: nedůvěryhodný prvek, spuštení skriptu přerušeno ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format msgid "" "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" " converted to {2}. Consider upgrading this core." +msgstr "Varování: platform.txt z jádra '{0}' obsahuje zastaralé {1}, automaticky skonvertované do {2}. Zvažte upgrade tohoto jádra." + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." msgstr "" #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 @@ -2227,7 +2250,7 @@ msgstr "" msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "" +msgstr "Varování: platform.txt z jádra '{0}' špatná vlastnost {1}, automaticky nastavená na {2}. Zvažte upgrade tohoto jádra." #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" @@ -2265,7 +2288,7 @@ msgstr "Soubor s příponou .cpp nesmí mít stejné jméno jako projekt." #: ../../../../../app/src/processing/app/Base.java:2312 msgid "You can't import a folder that contains your sketchbook" -msgstr "" +msgstr "Nelze importovat složku, která obsahuje tvůj projekt" #: Sketch.java:421 msgid "" @@ -2304,13 +2327,13 @@ msgstr "Pro dnešek jste se dostali na limit možných automatických\njmen pro msgid "" "Your copy of the IDE is installed in a subfolder of your settings folder.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Tvoje kopie IDE je nainstalována v podsložce složky nastavení.\nProsím přesuň IDE do jiného adresáře." #: ../../../processing/app/BaseNoGui.java:771 msgid "" "Your copy of the IDE is installed in a subfolder of your sketchbook.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Tvoje kopie IDE je nainstalována v podsložce složky projekty.\nProsím přesuň IDE do jiného adresáře." #: Base.java:2638 msgid "ZIP files or folders" @@ -2407,7 +2430,7 @@ msgstr "povoleno v Soubor > Vlastnosti" #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.arduino.cc/" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" @@ -2448,23 +2471,23 @@ msgstr "nahrávání (upload)" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "verze {0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Arduino {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "{0} ověření podpisu souboru se nezdařilo" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "{0} ověření podpisu souboru se nezdařilo. Soubor byl ignorován." #: Editor.java:380 #, java-format @@ -2474,6 +2497,16 @@ msgstr "{0} souborů přidáno ke skice" #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" +msgstr "{0} knihovny" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" msgstr "" #: debug/Compiler.java:365 diff --git a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties index 053754a0779..c0db0c7473d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties +++ b/arduino-core/src/processing/app/i18n/Resources_cs_CZ.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # horcicaa , 2012 # fatalwir , 2014 # Michal Ko\u010der , 2012 @@ -13,18 +14,18 @@ # Michal Ko\u010der , 2013-2014 # Ondrej Novy , 2015 # Zdeno Seker\u00e1k , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vy\u017eaduje restart programu Arduino) #: ../../../processing/app/debug/Compiler.java:529 #, java-format -!\ Not\ used\:\ {0}= +\ Not\ used\:\ {0}=\ Nepou\u017eit\u00fd\: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -!\ Used\:\ {0}= +\ Used\:\ {0}=\ Pou\u017eit\u00fd\: {0} #: debug/Compiler.java:455 'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' je podporov\u00e1no pouze u Arduino Leonardo @@ -32,11 +33,17 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' je podporov\u00e1no pouze u Arduino Leonardo\! +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editujte pouze kdy\u017e program Arduino nen\u00ed spu\u0161t\u011bn) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir u\u017e nen\u00ed podporov\u00e1n #: ../../../processing/app/Base.java:468 --verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload a --verbose-build m\u016f\u017ee b\u00fdt pou\u017eito jenom spole\u010dne s --verify nebo --upload @@ -46,15 +53,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Dostupn\u00e1 aktualizace n\u011bkter\u00fdch tv\u00fdch {0}desek{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Dostupn\u00e1 aktualizace n\u011bkter\u00fdch tv\u00fdch {0}desek{1} a {2}knihoven{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Dostupn\u00e1 aktualizace n\u011bkter\u00fdch tv\u00fdch {0}knihoven{1} #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Chcete p\u0159ed ukon\u010den\u00edm ulo\u017eit zm\u011bny
provedn\u00e9 v projektu?

Neulo\u017e\u00edte-li je v\u0161echny zm\u011bny budou nen\u00e1vratn\u011b ztraceny. @@ -76,25 +83,25 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=Nov\u011bj\u0161\u00ed {0} bal\u00ed\u010dek je dostupn\u00fd #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Podadres\u00e1\u0159 tv\u00fdch projekt\u016f nen\u00ed platn\u00e1 knihovna #: Editor.java:1116 About\ Arduino=O Arduinu #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=P\u0159idat .ZIP Knihovnu... #: Editor.java:650 Add\ File...=P\u0159idat soubor... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=Spr\u00e1vce dal\u0161\u00edch desek URL #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =Spr\u00e1vce dal\u0161\u00edch desek URL\: #: ../../../../../app/src/processing/app/Preferences.java:161 Afrikaans=Afrik\u00e1n\u0161tina @@ -105,13 +112,13 @@ Albanian=Alb\u00e1n\u0161tina #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=V\u0161echno #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=B\u011bhem opravy k\u00f3dov\u00e1n\u00ed souboru se vyskytla chyba.\nNepokou\u0161ejte se o ulo\u017een\u00ed tohot projektu, abyste nep\u0159epsali\np\u016fvodn\u00ed verzi. Pou\u017eijte Otev\u0159\u00edt k znovuotev\u0159en\u00ed projektu a zkuste to znovu.\n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=Nastala chyba p\u0159i aktualizaci indexu knihoven\! #: ../../../processing/app/BaseNoGui.java:528 An\ error\ occurred\ while\ uploading\ the\ sketch=Nastala chyba p\u0159i nahr\u00e1van\u00ed projektu. @@ -185,7 +192,7 @@ Argument\ required\ for\ --preferences-file=Pro --preferences-file je nutn\u00fd #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format -!Argument\ required\ for\ {0}= +Argument\ required\ for\ {0}=Vy\u017eadovan\u00fd argument pro {0} #: ../../../processing/app/Preferences.java:137 Armenian=Arm\u00e9n\u0161tina @@ -203,10 +210,10 @@ Auto\ Format=Automatick\u00e9 form\u00e1tov\u00e1n\u00ed Auto\ Format\ finished.=Autoform\u00e1tov\u00e1n\u00ed dokon\u010deno. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Automatick\u00e1 detekce proxy nastaven\u00ed #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=Automatick\u00e9 nastaven\u00ed konfigurace URL\: #: SerialMonitor.java:110 Autoscroll=Automatick\u00e9 scrollov\u00e1n\u00ed @@ -218,22 +225,20 @@ Bad\ error\ line\:\ {0}=Chyba na \u0159\u00e1dce\: {0} #: Editor.java:2136 Bad\ file\ selected=Vybr\u00e1n \u0161patn\u00fd soubor -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u0160patn\u00fd n\u00e1vrh p\u0159im\u00e1rn\u00edho souboru nebo adres\u00e1rov\u00e1 struktura. - #: ../../../processing/app/Preferences.java:149 Basque=Baski\u010dtina #: ../../../processing/app/Preferences.java:139 Belarusian=B\u011bloru\u0161tina -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Beng\u00e1l\u0161tina (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=V\u00fdvojov\u00e1 deska +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=V\u00fdvojov\u00e1 deska {0}\:{1}\:{2} nedefinuje volbu ''build.board''. Automaticky nastaveno na\: {3} @@ -242,17 +247,17 @@ Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-se Board\:\ =V\u00fdvojov\u00e1 deska\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=Mana\u017e\u00e9r Desek #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=Mana\u017e\u00e9r Desek... #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= +Boards\ included\ in\ this\ package\:=Desky zahrnut\u00e9 v tomto bal\u00edku\: #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=Bootloader je specifikov\u00e1n ale chyb\u00ed soubor\: {0} #: ../../../processing/app/Preferences.java:140 Bosnian=Bosen\u0161tina @@ -263,12 +268,12 @@ Both\ NL\ &\ CR=Oboj\u00ed NL & CR #: Preferences.java:81 Browse=Prohl\u00ed\u017eet -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Adres\u00e1\u0159 pro Build zmizel a nebo do n\u011bj nelze zapisovat - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Volby pro sestaven\u00ed se zm\u011bnily; sestavuji v\u0161e znovu +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulhar\u0161tina @@ -282,7 +287,7 @@ Burn\ Bootloader=Vyp\u00e1lit zavad\u011b\u010d Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Vypaluji zavad\u011b\u010d na I/O boardu /v\u00fdvojov\u00e9 desky/ (chvilku to potrv\u00e1)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC nen\u00ed spr\u00e1vny. Soubor je po\u0161kozen. #: ../../../processing/app/Base.java:379 #, java-format @@ -317,23 +322,14 @@ Check\ for\ updates\ on\ startup=P\u0159i startu vyhledat nov\u00e9 verze #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u010c\u00edn\u0161tina (\u010c\u00edna) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u010c\u00edn\u0161tina (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u010c\u00edn\u0161tina (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u010c\u00edn\u0161tina (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u010c\u00edn\u0161tina (zjednodu\u0161en\u00e9 znaky) - -#: Preferences.java:89 -Chinese\ Traditional=\u010cin\u0161tina (tradi\u010dn\u00ed znaky) - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Klini na seznam neofici\u00e1lne podporovan\u00fdch desek na URL #: Editor.java:521 Editor.java:2024 Close=Zav\u0159\u00edt @@ -342,7 +338,7 @@ Close=Zav\u0159\u00edt Comment/Uncomment=Zakomentovat/Odkomentovat #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =Varov\u00e1n\u00ed p\u0159eklada\u010de\: #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Kompiluji projekt... @@ -416,9 +412,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nebylo mo\u017en\u00e9 na\u010d\u00edst syst\u00e9mov\u00e9 nastaven\u00ed.\nP\u0159einstalujte Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nelze na\u010d\u00edst soubor nastaven\u00ed p\u0159edchoz\u00edho sestaven\u00ed, znovu sestavuji - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nemohu smazat starou verzi {0} @@ -440,9 +433,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nepoda\u0159ilo se zm\u011bnit n\u00e1zev #, java-format Could\ not\ replace\ {0}=Nemohu zm\u011bnit {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Nelze zapsat soubor nastaven\u00ed - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Projekt nebylo mo\u017en\u00e9 archivovat @@ -461,15 +451,9 @@ Croatian=Chorvat\u0161tina #: Editor.java:1149 Editor.java:2699 Cut=Vyjmout -#: ../../../processing/app/Preferences.java:83 -Czech=\u010ce\u0161tina - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u010cesky (\u010cesk\u00e1 Republika) -#: Preferences.java:90 -Danish=D\u00e1n\u0161tina - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=D\u00e1n\u0161tina (D\u00e1nsko) @@ -477,7 +461,7 @@ Danish\ (Denmark)=D\u00e1n\u0161tina (D\u00e1nsko) Decrease\ Indent=Zmen\u0161it odsazen\u00ed #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=Default #: EditorHeader.java:314 Sketch.java:591 Delete=Smazat @@ -493,7 +477,7 @@ Display\ line\ numbers=Zobrazit \u010d\u00edsla \u0159\u00e1dk\u016f #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=Chce\u0161 odstr\u00e1nit {0}?\nJestli to udel\u00e1\u0161 nebude\u0161 moci pou\u017e\u00edvat {0} nic v\u00edc. #: Editor.java:2064 Don't\ Save=Neukl\u00e1dat @@ -522,24 +506,24 @@ Done\ uploading.=Konec nahr\u00e1van\u00ed. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.=Sta\u017eeno {0}kb z {1}kb. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=Stahuji definice desek. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=Stahuji index knihoven... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=Stahuji knihovnu\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=Stahuji index platforem... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=Stahuji n\u00e1stroje ({0}/{1}). #: Preferences.java:91 Dutch=Nizozem\u0161tina @@ -548,7 +532,7 @@ Dutch=Nizozem\u0161tina Dutch\ (Netherlands)=Nizozem\u0161tina (Nizozem\u00ed) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=Edison Pomoc #: Editor.java:1130 Edit=\u00dapravy @@ -560,7 +544,7 @@ Editor\ font\ size\:\ =Velikost fontu editoru\: Editor\ language\:\ =Jazyk editoru\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=Zapnout Code Folding #: Preferences.java:92 English=Angli\u010dtina @@ -570,10 +554,10 @@ English\ (United\ Kingdom)=Angli\u010dtina (Velk\u00e1 Brit\u00e1nie) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=Vlo\u017e seznam url oddelen \u010d\u00e1rkou #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=Vlo\u017e dal\u0161\u00ed URL, ka\u017ed\u00fd na nov\u00fd \u0159\u00e1dek #: Editor.java:1062 Environment=Prost\u0159ed\u00ed @@ -591,7 +575,7 @@ Error\ compiling.=Chyba kompilace. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=Chyba stahov\u00e1n\u00ed {0} #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=Chyba v p\u0159istupu do datov\u00e9ho adres\u00e1\u0159e Arduina. @@ -612,7 +596,7 @@ Error\ opening\ serial\ port\ ''{0}''.=Chyba p\u0159i otev\u00edr\u00e1n\u00ed s #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=Chyba pri otev\u0159en\u00ed s\u00e9riov\u00e9ho portu ''{0}''. Zkus se pod\u00edvat na dokumentaci kter\u00e1 je na http\://playground.arduino.cc/Linux/All\#Permission #: Preferences.java:277 Error\ reading\ preferences=Chyba p\u0159i \u010dten\u00ed nastaven\u00ed @@ -624,7 +608,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=Chyba b\u011bhu poin\u0161tala\u010dn\u00edho skriptu #: ../../../cc/arduino/packages/DiscoveryManager.java:25 Error\ starting\ discovery\ method\:\ =Chyba na po\u010d\u00e1tku discovery metody\: @@ -673,8 +657,17 @@ Estonian\ (Estonia)=Est\u00f3n\u0161tina (Est\u00f3nsko) #: Editor.java:516 Examples=P\u0159\u00edklady +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= +Export\ compiled\ Binary=Export kompilovan\u00e9ho Binaru #: ../../../processing/app/Base.java:416 #, java-format @@ -687,7 +680,7 @@ File=Soubor Filipino=Filip\u00edn\u0161tina #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=Filter tv\u00e9ho hled\u00e1n\u00ed... #: FindReplace.java:124 FindReplace.java:127 Find=Najdi @@ -715,7 +708,7 @@ Finnish=Fin\u0161tina Fix\ Encoding\ &\ Reload=Uprav k\u00f3dov\u00e1n\u00ed a znovu nahraj #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=Pro informace jak instalovat knihovny se pod\u00edvej na\: http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -734,7 +727,7 @@ Galician=Galicij\u0161tina Galician\ (Spain)=Galician (\u0160pan\u011blsko) #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=Galileo Pomoc #: ../../../processing/app/Preferences.java:94 Georgian=Gruz\u00edn\u0161tina @@ -766,7 +759,7 @@ Help=N\u00e1pov\u011bda Hindi=Hind\u0161tina #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Host name\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Co takhle projekt nejprve ulo\u017eit\nne\u017e mu budeme m\u011bnit jm\u00e9no? @@ -794,7 +787,7 @@ Include\ Library=P\u0159idat knihovnu #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=Nespr\u00e1vn\u00fd adres\u00e1\u0159 pro instalaci IDE #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Zv\u011bt\u0161it odsazen\u00ed @@ -803,7 +796,7 @@ Increase\ Indent=Zv\u011bt\u0161it odsazen\u00ed Indonesian=Indon\u00e9\u0161tina #: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= +Initializing\ packages...=Inicializace bal\u00ed\u010dk\u016f... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 @@ -811,33 +804,37 @@ Indonesian=Indon\u00e9\u0161tina #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=Instalace #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=Instalace je kompletn\u00ed\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=Instalov\u00e1no #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=Instalace desek... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=Instaluji knihovnu\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=Instaluji n\u00e1stroje ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=Instaluji... #: ../../../processing/app/Base.java:1204 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Nalezena neplatn\u00e1 knihovna v {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Ital\u0161tina @@ -851,32 +848,36 @@ Korean=Korej\u0161tina Latvian=Loty\u0161tina #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Mana\u017e\u00e9r Knihoven #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Knihovna p\u0159id\u00e1na do tv\u00fdch knihoven. Zkontroluj menu "Zahrnut\u00e9 knihovny" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=Knihovna je ji\u017e instalovan\u00e1\: {0} verze {1} #: Preferences.java:106 Lithuaninan=Litev\u0161tina #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=Nahr\u00e1vam konfiguraci... + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=M\u00e1la dostupn\u00e9 pam\u011bti, m\u00fa\u017eou nastat probl\u00e9my se stabilitou. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaj\u0161tina (Malajsie) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Spravovat knihovny... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Manu\u00e1ln\u00ed nastaven\u00ed proxy #: Preferences.java:107 Marathi=Mar\u00e1th\u0161tina @@ -884,14 +885,15 @@ Marathi=Mar\u00e1th\u0161tina #: Base.java:2112 Message=Zpr\u00e1va -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Chyb\u00ed ukon\u010duj\u00edc\u00ed znaky "*/" koment\u00e1\u0159e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=M\u00f3d nen\u00ed podporov\u00e1n #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=V\u00edc #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dal\u0161\u00ed volby mohou b\u00fdt m\u011bn\u011bny p\u0159\u00edmo v souboru @@ -904,14 +906,11 @@ Multiple\ files\ not\ supported=V\u00edcen\u00e1sobn\u00ed soubory nejsou podpor #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"=Byly nalezen\u00e9 n\u00e1sobn\u00e9 knihovny "{0}" #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Mus\u00edte ozna\u010dit pr\u00e1v\u011b jeden soubor s projektem -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Jm\u00e9no nov\u00e9ho souboru\: @@ -919,7 +918,7 @@ Name\ for\ new\ file\:=Jm\u00e9no nov\u00e9ho souboru\: Nepali=Nep\u00e1l\u0161tina #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=S\u00ed\u0165 #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=S\u00ed\u0165ov\u00fd port @@ -943,10 +942,7 @@ Next\ Tab=N\u00e1sleduj\u00edc\u00ed Z\u00e1lo\u017eka No=Ne #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nem\u00e1te vybr\u00e1n model v\u00fdvojov\u00e9 desky (boardu); vyberte model boardu v N\u00e1stroje (Tools) > Board +No\ authorization\ data\ found=Nebyla nalezena \u017e\u00e1dn\u00e1 autorizovan\u00e1 data #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Pro autoform\u00e1tov\u00e1n\u00ed nejsou t\u0159eba zm\u011bny. @@ -955,7 +951,7 @@ No\ changes\ necessary\ for\ Auto\ Format.=Pro autoform\u00e1tov\u00e1n\u00ed ne No\ command\ line\ parameters\ found=Nabyly nalezeny \u017e\u00e1dn\u00e9 parametry pro p\u0159\u00edkazovou \u0159\u00e1dku #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=Nebyl nalezel skompilovan\u00fd projekt #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=K projektu nebyly p\u0159id\u00e1ny \u017e\u00e1dn\u00e9 soubory. @@ -970,7 +966,7 @@ No\ line\ ending=Chybn\u00fd konec \u0159\u00e1dky No\ parameters=\u017d\u00e1dn\u00e9 parametry #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Bez proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Opravdu, p\u0159i\u0161el v\u00e1\u0161 \u010das na trocha \u010derstv\u00e9ho vzduchu. @@ -994,17 +990,11 @@ No\ valid\ code\ files\ found=Nebyly nalezeny soubory obsahuj\u00edc\u00ed valid No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=V adres\u00e1\u0159i {0} byla nalezena neplatn\u00e1 definice hardware. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Nor\u0161tina +None=\u017d\u00e1dn\u00fd #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Nor\u0161tina Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nedostatek pem\u011bti; na http\://www.arduino.cc/en/Guide/Troubleshooting\#size naleznete typy jak velikost redukovat. @@ -1022,7 +1012,7 @@ Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Jenom --verify, --uplo Open=Otev\u0159\u00edt #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=Otev\u0159\u00edt P\u0159ede\u0161l\u00e9 #: Editor.java:2688 Open\ URL=Otev\u0159i URL @@ -1048,11 +1038,15 @@ Persian=Per\u0161tina #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Per\u0161tina (Ir\u00e1n) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=Pros\u00edm potvr\u010f zmaz\u00e1n\u00ed desek #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=Pros\u00edm potvr\u010f zmaz\u00e1n\u00ed knihoven #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Pros\u00edm importujte knihovnu SPI z Projekt\u016f (Sketch) > Import knihovny (Import Library). @@ -1071,7 +1065,7 @@ Polish=Pol\u0161tina Port=Port #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=\u010c\u00edslo portu\: #: ../../../processing/app/Preferences.java:151 Portugese=Portugal\u0161tina @@ -1086,7 +1080,7 @@ Portuguese\ (Portugal)=Portugal\u0161tina (Portugalsko) Preferences=Vlastnosti #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=P\u0159ipravuji desky... #: FindReplace.java:123 FindReplace.java:128 Previous=P\u0159edchoz\u00ed @@ -1121,10 +1115,6 @@ Problem\ accessing\ files\ in\ folder\ =Probl\u00e9m s p\u0159\u00edstupem k sou #: Base.java:1673 Problem\ getting\ data\ folder=Probl\u00e9m s p\u0159\u00edstupem do datov\u00e9ho adres\u00e1\u0159e. -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e9m p\u0159i p\u0159esunu {0} do adres\u00e1\u0159e pro build - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probl\u00e9m s p\u0159enosem dat na v\u00fdvojovou desku (board). Na http\://www.arduino.cc/en/Guide/Troubleshooting\#upload naleznete dal\u0161\u00ed doporu\u010den\u00ed. @@ -1137,9 +1127,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Program\u00e1tor +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Ukon\u010dit +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Znovu @@ -1147,15 +1144,15 @@ Redo=Znovu Reference=Reference #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=Vymazat #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=Ma\u017eu knihovnu\: {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=Odstra\u0148uji... #: EditorHeader.java:300 Rename=P\u0159ejmenovat @@ -1179,6 +1176,14 @@ Replace\ with\:=Nahra\u010f za\: #: Preferences.java:113 Romanian=Rumun\u0161tina +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ru\u0161tina @@ -1225,16 +1230,16 @@ Select\ new\ sketchbook\ location=Vyberte nov\u00e9 um\u00edsten\u00ed pro va\u0 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=V\u00fdb\u011br verze #: ../../../processing/app/debug/Compiler.java:146 Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Vybran\u00e1 v\u00fdvojov\u00e1 deska z\u00e1vis\u00ed na j\u00e1d\u0159e '{0}' (neinstalov\u00e1no). #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=Vybran\u00e1 deska nen\u00ed dostupn\u00e1 #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=Vybran\u00e1 knihovna nen\u00ed dostupn\u00e1 #: SerialMonitor.java:93 Send=Po\u0161li @@ -1243,7 +1248,7 @@ Send=Po\u0161li Serial\ Monitor=Seriov\u00fd monitor #: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= +Serial\ Plotter=S\u00e9riov\u00fd Ploter #: Serial.java:194 #, java-format @@ -1256,8 +1261,12 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=S\u00e9riov\u00fd port +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Nastaven\u00ed #: Base.java:1681 Settings\ issues=Probl\u00e9m s Nastaven\u00edm @@ -1328,17 +1337,14 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Pardon, projekt Spanish=\u0160pan\u011bl\u0161tina #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=Specifikovan\u00fd adres\u00e1\u0159/zip soubor neobsahuje korektn\u00ed knihovnu #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=Startuji... #: Base.java:540 Sunshine=Slunceee\! -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahi\u0161tina - #: ../../../processing/app/Preferences.java:153 Swedish=\u0160v\u00e9d\u0161tina @@ -1362,7 +1368,7 @@ The\ Client\ class\ has\ been\ renamed\ EthernetClient.=U t\u0159\u00eddy Client #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= +The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=IDE obsahuje nov\u011bj\u0161\u00ed {0} bal\u00ed\u010dek, ale ty pou\u017e\u00edva\u0161 verzi star\u0161\u00ed.\nChce\u0161 upgradovat {0}? #: debug/Compiler.java:420 The\ Server\ class\ has\ been\ renamed\ EthernetServer.=U t\u0159\u00eddy Server byl zm\u011bn\u011bn n\u00e1zev na EthernetServer. @@ -1401,16 +1407,13 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Adres\u00e1\u0159 projekt\u016f (Sketchbook folder) ji\u017e neexistuje.\nArduino se pokus\u00ed p\u0159epnout do defaultn\u00edho um\u00edst\u011bn\u00ed projektov\u00e9ho adres\u00e1\u0159e\na adres\u00e1\u0159 pro projekty (Sketchbook) vytvo\u0159\u00ed na tomto m\u00edst\u011b.\nArduino pak o sob\u011b p\u0159estane mluvit \nve t\u0159et\u00ed osob\u011b. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=V souboru platform.txt od poskytovatele t\u0159et\u00edch stran nen\u00ed definov\u00e1no compiler.path. Oznamte to pros\u00edm spr\u00e1vci hardwaru t\u0159et\u00edch stran. +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Specifikovan\u00fd projektov\u00fd adres\u00e1\u0159 obsahuje kopii tv\u00e9ho IDE.\nPros\u00edm vyber pro sv\u016fj projekt jin\u00fd adres\u00e1\u0159. #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Tento soubor byl ji\u017e na toto m\u00edsto nakop\u00edrov\u00e1n\nze kter\u00e9ho jsi jej zkou\u0161el p\u0159idat.\nNemohu to ud\u011blat. #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= +This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=T\u00e1to knihovna nen\u00ed v seznamu Knihoven. Nebude\u0161 ji moci znova sem instalovat.\nJste si jisti, \u017ee ji chcete odstranit? #: ../../../processing/app/EditorStatus.java:467 This\ report\ would\ have\ more\ information\ with=Tento v\u00fdpis by m\u011bl v\u00edce informac\u00ed s @@ -1420,13 +1423,13 @@ Time\ for\ a\ Break=\u010cas na p\u0159est\u00e1vku (Break) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=N\u00e1stroj {0} nen\u00ed dostupn\u00fd pro tv\u016fj opera\u010dn\u00fd syst\u00e9m. #: Editor.java:663 Tools=N\u00e1stroje #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=T\u00e9ma #: Editor.java:1070 Troubleshooting=\u0158e\u0161en\u00ed probl\u00e9m\u016f - Troubleshooting @@ -1436,7 +1439,7 @@ Turkish=Ture\u010dtina #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= +Type=Typ #: ../../../processing/app/Editor.java:2507 Type\ board\ password\ to\ access\ its\ console=Zadejte p\u0159\u00edstupov\u00e9 heslo ke konsoli v\u00fdvojov\u00e9 desky @@ -1457,29 +1460,37 @@ Unable\ to\ connect\:\ retrying=Nemohu se p\u0159ipojit\: zkou\u0161\u00edm znov #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Nemohu se p\u0159ipojit\: \u0161patn\u00e9 heslo? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Nemohu otev\u0159\u00edt seriov\u00fd monitor #: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= +Unable\ to\ open\ serial\ plotter=Nemohu otev\u0159\u00edt s\u00e9riov\u00fd ploter #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Nezachycen\u00e1 v\u00fdjimka typu\: {0} +Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Nem\u016f\u017eu nal\u00e9zt Arduino.cc pravdepodobne probl\u00e9m se s\u00edt\u00ed. #: Editor.java:1133 Editor.java:1355 Undo=Zp\u011bt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Nespecifikovan\u00e1 platforma, nen\u00ed k dispozici launcher.\nAby bylo mo\u017en\u00e9 otev\u0159en\u00ed URL \u010di adres\u00e1\u0159e, p\u0159idej do souboru\npreferences.txt "launcher\=/path/to/app" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=Aktualizovateln\u00e9 #: UpdateCheck.java:111 Update=Aktualizovat @@ -1488,7 +1499,7 @@ Update=Aktualizovat Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=P\u0159i ukl\u00e1d\u00e1n\u00ed aktualizuj p\u0159\u00edponu souboru projektu (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=Aktualizuji seznam instalovan\u00fdch knihoven #: EditorToolbar.java:41 Editor.java:545 Upload=Nahr\u00e1t @@ -1508,9 +1519,6 @@ Uploading\ to\ I/O\ Board...=Nahr\u00e1v\u00e1m na I/O boardu (v\u00fdvojov\u00e #: Sketch.java:1622 Uploading...=Nahr\u00e1v\u00e1m... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urd\u0161tina (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Pro vyhled\u00e1n\u00ed u\u017eij v\u00fdb\u011br @@ -1519,11 +1527,11 @@ Use\ external\ editor=Pou\u017e\u00edt extern\u00ed editor #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=U\u017eivatelsk\u00e9 jm\u00e9no\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= +Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=Pou\u017eit\u00ed knihovny {0} ve verzi {1} v adres\u00e1\u0159i\: {2} {3} #: ../../../processing/app/debug/Compiler.java:94 #, java-format @@ -1540,27 +1548,27 @@ Verify=Ov\u011b\u0159it Verify\ code\ after\ upload=Ov\u011b\u0159it k\u00f3d po nahr\u00e1t\u00ed #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Kontrola/Kompilace #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=Kontroluji a nahr\u00e1v\u00e1m... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= +Verifying\ archive\ integrity...=Kontroluji integritu archivu... #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=Kontroluji... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=Verze {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=Nezn\u00e1ma verze #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=Verze {0} #: ../../../processing/app/Preferences.java:154 Vietnamese=Vietnam\u0161tina @@ -1568,6 +1576,14 @@ Vietnamese=Vietnam\u0161tina #: Editor.java:1105 Visit\ Arduino.cc=Nav\u0161tivte Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=VAROV\u00c1N\u00cd\: knihovna {0} je ur\u010dena pro b\u011bh na architektu\u0159e {1} a m\u016f\u017ee b\u00fdt nekompatibiln\u00ed s Va\u0161\u00ed v\u00fdvojovou deskou, kter\u00e1 m\u00e1 architekturu {2}. @@ -1576,30 +1592,33 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be Warning=Upozorn\u011bn\u00ed #: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= +Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=Varov\u00e1n\u00ed\: Toto j\u00e1dro nedovede exportovat projekty. Pros\u00edm zva\u017ete upgrade nebo kontaktujte sv\u00e9ho dodavatele #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= +Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Varov\u00e1n\u00ed\: soubor {0} odkazuje na absol\u00fatn\u00ed cestu {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Varov\u00e1n\u00ed\: vynucen\u00e9 pou\u017eit\u00ed ned\u016fv\u011bryhodn\u00fdch prvk\u016f #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Varov\u00e1n\u00ed\: vynucen\u00e9 spu\u0161ten\u00ed ned\u016fv\u011bryhodn\u00e9ho skriptu ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Varov\u00e1n\u00ed\: ned\u016fv\u011bryhodn\u00fd prvek, spu\u0161ten\u00ed skriptu p\u0159eru\u0161eno ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Varov\u00e1n\u00ed\: platform.txt z j\u00e1dra '{0}' obsahuje zastaral\u00e9 {1}, automaticky skonvertovan\u00e9 do {2}. Zva\u017ete upgrade tohoto j\u00e1dra. + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Varov\u00e1n\u00ed\: platform.txt z j\u00e1dra '{0}' \u0161patn\u00e1 vlastnost {1}, automaticky nastaven\u00e1 na {2}. Zva\u017ete upgrade tohoto j\u00e1dra. #: ../../../../../app/src/processing/app/Preferences.java:190 Western\ Frisian=Z\u00e1padn\u00ed Fr\u00ed\u0161tina @@ -1626,7 +1645,7 @@ You\ can't\ fool\ me=Mne nep\u0159echytra\u010d\u00ed\u0161. You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Soubor s p\u0159\u00edponou .cpp nesm\u00ed m\u00edt stejn\u00e9 jm\u00e9no jako projekt. #: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= +You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Nelze importovat slo\u017eku, kter\u00e1 obsahuje tv\u016fj projekt #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze p\u0159ejmenovat projekt na "{0}"\nproto\u017ee soubor stejn\u00e9ho jm\u00e9na av\u0161ak s p\u0159\u00edponou .cpp ji\u017e existuje. @@ -1647,10 +1666,10 @@ You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ en You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Pro dne\u0161ek jste se dostali na limit mo\u017en\u00fdch automatick\u00fdch\njmen pro pojmenov\u00e1v\u00e1n\u00ed projekt\u016f. Co se j\u00edt tro\u0161ku proj\u00edt? #: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Tvoje kopie IDE je nainstalov\u00e1na v podslo\u017ece slo\u017eky nastaven\u00ed.\nPros\u00edm p\u0159esu\u0148 IDE do jin\u00e9ho adres\u00e1\u0159e. #: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Tvoje kopie IDE je nainstalov\u00e1na v podslo\u017ece slo\u017eky projekty.\nPros\u00edm p\u0159esu\u0148 IDE do jin\u00e9ho adres\u00e1\u0159e. #: Base.java:2638 ZIP\ files\ or\ folders=ZIP soubory \u010di adres\u00e1\u0159e @@ -1703,7 +1722,7 @@ createNewFile()\ returned\ false=funkce createNewFile() navr\u00e1tila false enabled\ in\ File\ >\ Preferences.=povoleno v Soubor > Vlastnosti #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.arduino.cc/ #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1734,20 +1753,20 @@ upload=nahr\u00e1v\u00e1n\u00ed (upload) #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=verze {0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed={0} ov\u011b\u0159en\u00ed podpisu souboru se nezda\u0159ilo #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} ov\u011b\u0159en\u00ed podpisu souboru se nezda\u0159ilo. Soubor byl ignorov\u00e1n. #: Editor.java:380 #, java-format @@ -1755,7 +1774,15 @@ upload=nahr\u00e1v\u00e1n\u00ed (upload) #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0} knihovny + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_da_DK.po b/arduino-core/src/processing/app/i18n/Resources_da_DK.po index 957ca2c3934..09c89829ff3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da_DK.po +++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jakob Enevoldsen , 2014 # Torben Løkke Leth , 2012 # Torben Løkke Leth , 2012 @@ -15,7 +16,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Danish (Denmark) (http://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\n" "MIME-Version: 1.0\n" @@ -46,10 +47,20 @@ msgstr "'Keyboard' kun understøttet af Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' kun understøttet af Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -311,10 +322,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -323,15 +330,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -372,14 +380,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -443,10 +451,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -455,14 +459,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Kinesisk, simpel" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Kinesisk, traditionel" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -582,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -613,10 +605,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "Kunne ikke erstatte {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -644,18 +632,10 @@ msgstr "" msgid "Cut" msgstr "Klip" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dansk" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -927,6 +907,18 @@ msgstr "" msgid "Examples" msgstr "Eksempler" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1155,6 +1147,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiensk" @@ -1179,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1192,12 +1193,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1216,8 +1218,9 @@ msgstr "" msgid "Message" msgstr "Besked" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1249,10 +1252,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1297,10 +1296,6 @@ msgstr "Nej" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1364,18 +1359,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1435,6 +1422,11 @@ msgstr "Persisk" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1532,11 +1524,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Problem med at åbne datamappe" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1555,10 +1542,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Afslut" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Annuller fortryd" @@ -1610,6 +1606,16 @@ msgstr "Erstat med:" msgid "Romanian" msgstr "Romænsk" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russisk" @@ -1715,6 +1721,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1830,10 +1841,6 @@ msgstr "" msgid "Sunshine" msgstr "Solskin" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Svensk" @@ -1950,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2028,6 +2029,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2041,15 +2047,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Fortryd" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2098,10 +2109,6 @@ msgstr "" msgid "Uploading..." msgstr "Uploader..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2176,6 +2183,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Besøg Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2219,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2473,6 +2496,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties index dac4580e13c..fc629029708 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da_DK.properties +++ b/arduino-core/src/processing/app/i18n/Resources_da_DK.properties @@ -6,11 +6,12 @@ # Translators: # Translators: # Translators: +# Translators: # Jakob Enevoldsen , 2014 # Torben L\u00f8kke Leth , 2012 # Torben L\u00f8kke Leth , 2012 # Torben L\u00f8kke Leth , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da_DK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da_DK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -29,9 +30,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' kun underst\u00f8ttet af Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -215,22 +222,20 @@ Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt. #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -260,12 +265,12 @@ Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt. #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -314,21 +319,12 @@ Cannot\ Rename=Kan ikke omd\u00f8be #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Kinesisk, simpel - -#: Preferences.java:89 -Chinese\ Traditional=Kinesisk, traditionel - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -413,9 +409,6 @@ Could\ not\ open\ the\ folder\n{0}=Kunne ikke \u00e5bne biblioteket\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne den gamle version af {0} @@ -437,9 +430,6 @@ Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne den gamle version af #, java-format Could\ not\ replace\ {0}=Kunne ikke erstatte {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -458,15 +448,9 @@ Could\ not\ replace\ {0}=Kunne ikke erstatte {0} #: Editor.java:1149 Editor.java:2699 Cut=Klip -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Dansk - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -670,6 +654,15 @@ Error\ compiling.=Fejl i kompilering. #: Editor.java:516 Examples=Eksempler +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -835,6 +828,10 @@ Indonesian=Indonesisk #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiensk @@ -853,6 +850,9 @@ Latvian=Lettisk #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -863,12 +863,13 @@ Latvian=Lettisk #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -881,8 +882,9 @@ Latvian=Lettisk #: Base.java:2112 Message=Besked -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -906,9 +908,6 @@ Moving=Flytter #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -942,9 +941,6 @@ No=Nej #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -993,15 +989,9 @@ No=Nej #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1045,6 +1035,10 @@ Persian=Persisk #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1118,10 +1112,6 @@ Problem\ Opening\ URL=Problem med at \u00e5bne URL #: Base.java:1673 Problem\ getting\ data\ folder=Problem med at \u00e5bne datamappe -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1134,9 +1124,16 @@ Problem\ with\ rename=Problem med at omd\u00f8de #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Afslut +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Annuller fortryd @@ -1176,6 +1173,14 @@ Replace\ with\:=Erstat med\: #: Preferences.java:113 Romanian=Rom\u00e6nsk +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russisk @@ -1253,6 +1258,10 @@ Send=Send #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1333,9 +1342,6 @@ Spanish=Spansk #: Base.java:540 Sunshine=Solskin -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Svensk @@ -1400,9 +1406,6 @@ The\ name\ cannot\ start\ with\ a\ period.=Navnet kan ikke starte med et punktum #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1454,6 +1457,10 @@ Turkish=Tyrkisk #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1464,13 +1471,17 @@ Turkish=Tyrkisk #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=Fortryd +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1505,9 +1516,6 @@ Upload=Upload #: Sketch.java:1622 Uploading...=Uploader... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1565,6 +1573,14 @@ Verify=Verificer #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f8g Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1594,6 +1610,9 @@ Warning=Advarsel #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1754,6 +1773,14 @@ http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_de_DE.po b/arduino-core/src/processing/app/i18n/Resources_de_DE.po index fd9e34faf99..860db3c6906 100644 --- a/arduino-core/src/processing/app/i18n/Resources_de_DE.po +++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Ettore Atalan , 2014-2015 # Lukas Bestle , 2013,2015 # Dr. Mathias Wilhelm , 2012 @@ -14,8 +15,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 18:58+0000\n" -"Last-Translator: Ettore Atalan \n" +"PO-Revision-Date: 2015-09-23 13:34+0000\n" +"Last-Translator: Lukas Bestle \n" "Language-Team: German (Germany) (http://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -39,19 +40,29 @@ msgstr " Benutzt: {0}" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "'Tastatur' wird nur vom Arduino Leonardo unterstützt" +msgstr "'Keyboard' wird nur vom Arduino Leonardo unterstützt" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' wird nur vom Arduino Leonardo unterstützt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "Der 'arch'-Ordner wird nicht mehr unterstützt. Bitte besuchen Sie http://goo.gl/gfFJzU für weitere Informationen." + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(nur bearbeiten, wenn Arduino nicht läuft)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "(veraltet)" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "--curdir wird nicht mehr unterstützt." +msgstr "--curdir wird nicht mehr unterstützt" #: ../../../processing/app/Base.java:468 msgid "" @@ -72,12 +83,12 @@ msgstr "
Für manche Ihrer {0}Boards{1} ist eine Aktualisierung verfügbar." #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "
Für manche Ihrer {0}Boards{1} und {2}Bibliotheken{3} ist eine Aktualisierung verfügbar." +msgstr "
Für manche Ihrer {0}Boards{1} und {2}Libraries{3} ist eine Aktualisierung verfügbar." #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "
Für manche Ihrer {0}Bibliotheken{1} ist eine Aktualisierung verfügbar." +msgstr "
Für manche Ihrer {0}Libraries{1} ist eine Aktualisierung verfügbar." #: Editor.java:2053 msgid "" @@ -180,7 +191,7 @@ msgstr "Beim Überprüfen/Hochladen des Sketches ist ein Fehler aufgetreten" msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "Ein unbekannter Fehler ist aufgetreten beim Versuch, \nden platformspezifischen Code für Ihr Gerät zu laden." +msgstr "Ein unbekannter Fehler ist aufgetreten beim Versuch, \nden plattformspezifischen Code für Ihr Gerät zu laden." #: Preferences.java:85 msgid "Arabic" @@ -310,10 +321,6 @@ msgstr "Fehler in Zeile: {0}" msgid "Bad file selected" msgstr "Falsche Datei ausgewählt" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Fehlerhafte primäre Sketch-Datei oder fehlerhafte Sketch-Ordnerstruktur" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskisch" @@ -322,15 +329,16 @@ msgstr "Baskisch" msgid "Belarusian" msgstr "Weißrussisch" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (Indien)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Platine" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "Board {0} (Plattform {1}, Paket {2}) ist unbekannt" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "CR und NL" msgid "Browse" msgstr "Durchsuchen" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Der Build-Ordner ist verschwunden oder kann nicht beschrieben werden" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Build-Optionen wurden verändert, alles wird neu gebaut" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "Mitgelieferte Beispiele" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarisch" @@ -442,10 +450,6 @@ msgstr "Beim Start nach Updates suchen" msgid "Chinese (China)" msgstr "Chinesisch (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinesisch (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinesisch (Taiwan)" @@ -454,14 +458,6 @@ msgstr "Chinesisch (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinesisch (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Vereinfachtes Chinesisch" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Traditionelles Chinesisch" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Klicken Sie für eine Liste mit inoffiziellen Platinenunterstützungs-URLs" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Die Standardeinstellungen konnten nicht geladen werden.\nSie müssen Arduino neu installieren." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Die vorherige Build-Voreinstellungsdatei konnte nicht gelesen werden, alles wird neu gebaut" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "Konnte den Sketch nicht umbenennen. (2)" msgid "Could not replace {0}" msgstr "{0} konnte nicht ersetzt werden" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Die Build-Voreinstellungsdatei konnte nicht geschrieben werden" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Sketch konnte nicht archiviert werden" @@ -643,18 +631,10 @@ msgstr "Kroatisch" msgid "Cut" msgstr "Ausschneiden" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tschechisch" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Tschechisch (Tschechische Republik)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dänisch" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dänisch (Dänemark)" @@ -926,6 +906,18 @@ msgstr "Estländisch (Estland)" msgid "Examples" msgstr "Beispiele" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "Beispiele aus eigenen Libraries" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "Beispiele aus Libraries" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "Export abgebrochen, Änderungen müssen erst gespeichert werden." + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Kompilierte Binärdatei exportieren" @@ -1154,6 +1146,11 @@ msgstr "Installationsvorgang..." msgid "Invalid library found in {0}: {1}" msgstr "Ungültige Bibliothek {0} in {1} gefunden" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "Ungültige Quotierung: Es konnte kein schließender [{0}]-Charakter gefunden werden." + #: Preferences.java:102 msgid "Italian" msgstr "Italienisch" @@ -1178,6 +1175,10 @@ msgstr "Bibliotheksverwalter" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Die Bibliothek wurde zu Ihren Bibliotheken hinzugefügt. Bitte im Menü \"Bibliothek einbinden\" nachprüfen" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "Eine Library kann nicht sowohl 'src'- als auch 'utility'-Ordner verwenden." + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,14 +1192,15 @@ msgstr "Litauisch" msgid "Loading configuration..." msgstr "Konfiguration wird geladen..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "Suche nach Rezepten wie {0}*{1}" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Wenig Speicher verfügbar, es können Stabilitätsprobleme auftreten." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malaysisch (Malaysia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Bibliotheken verwalten..." @@ -1215,9 +1217,10 @@ msgstr "Marathisch" msgid "Message" msgstr "Mitteilung" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Das */ am Ende eines /* Kommentars */ fehlt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "'{0}' aus der Library in {1} fehlt." #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1248,10 +1251,6 @@ msgstr "Mehrere Bibliotheken wurden für \"{0}\" gefunden" msgid "Must specify exactly one sketch file" msgstr "Es muss genau eine Sketch-Datei angegeben werden" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Name der neuen Datei:" @@ -1296,10 +1295,6 @@ msgstr "Nein" msgid "No authorization data found" msgstr "Keine Autorisierungsdaten gefunden" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Keine Platine ausgewählt; bitte eine Platine unter Werkzeuge > Platine auswählen" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Für Automatische Formatierung bedarf es keiner Änderungen." @@ -1363,18 +1358,10 @@ msgstr "Im Ordner {0} wurden keine gültigen Hardwaredefinitionen gefunden." msgid "None" msgstr "Nichts" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norwegisch" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norwegisches Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norwegisches Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "Persisch" msgid "Persian (Iran)" msgstr "Persisch (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "Plattform {0} (Paket {1}) ist unbekannt" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Bitte bestätigen Sie die Platinenlöschung" @@ -1531,11 +1523,6 @@ msgstr "Problem beim Zugriff auf Dateien im Ordner" msgid "Problem getting data folder" msgstr "Probleme beim Zugriff auf den Datenordner" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Probleme beim Verschieben von {0} in den Build-Ordner" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "Prozessor" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "Fortschritt {0}" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Verlassen" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "ABGESCHALTET" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Wiederholen" @@ -1609,6 +1605,16 @@ msgstr "Ersetzen durch:" msgid "Romanian" msgstr "Rumänisch" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "Rezept wird ausgeführt: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "Ausführen: {0}" + #: Preferences.java:114 msgid "Russian" msgstr "Russisch" @@ -1714,6 +1720,11 @@ msgstr "Serieller Port {0} nicht gefunden.\nMit einem anderen seriellen Port ver msgid "Serial ports" msgstr "Serielle Schnittstellen" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "Setze Build-Pfad auf {0}" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "Einstellungen" @@ -1829,10 +1840,6 @@ msgstr "Startvorgang..." msgid "Sunshine" msgstr "Sonnenschein" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Schwedisch" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "Der angegebene Sketchbook-Ordner enthält Ihre Kopie der IDE.\nBitte wählen Sie einen anderen Ordner für Ihr Sketchbook aus." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Die Dritt-platform.txt definiert keinen compiler.path. Bitte melden Sie dies an den Dritthardware-Maintainer." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "Fehler beim Verbinden: Erneuter Versuch" msgid "Unable to connect: wrong password?" msgstr "Fehler beim Verbinden: Falsches Passwort?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "Konnte {0} in {1} nicht finden." + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Fehler beim Öffnen des seriellen Monitors" @@ -2040,15 +2046,20 @@ msgstr "Konnte seriellen Plotter nicht öffnen" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Arduino.cc kann wegen möglicher Netzwerkprobleme nicht erreicht werden." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Unbehandelte Ausnahme vom Typ: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Rückgängig" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "Unbehandelter Typ {0} im Kontextschlüssel {1}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "Unbekannte Sketch-Dateierweiterung: {0}" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2097,10 +2108,6 @@ msgstr "Hochladen zur E/A-Platine..." msgid "Uploading..." msgstr "Hochladen..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Auswahl für Suche verwenden" @@ -2175,6 +2182,16 @@ msgstr "Vietnamesisch" msgid "Visit Arduino.cc" msgstr "Arduino.cc besuchen" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "WARNUNG: Kategorie '{0}' in der Library {1} ist ungültig. Setze sie auf '{2}'" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "WARNUNG: Unberechtigter Ordner {0} in der Library '{1}'" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Warnung: platform.txt aus dem Kern '{0}' enthält veraltete {1}, es wurde automatisch zu {2} konvertiert. Erwägen Sie eine Aktualisierung dieses Kerns." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "Warnung: Der platform.txt aus dem Kern '{0}' fehlt die Eigenschaft '{1}', sie wurde deshalb automatisch auf '{2}' festgelegt. Erwägen Sie eine Aktualisierung dieses Kerns." + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "{0} Dateien wurden zum Sketch hinzugefügt." msgid "{0} libraries" msgstr "{0} Bibliotheken" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "{0} muss ein Ordner sein" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "Das Muster {0} fehlt" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties index 46da46da848..8ebd2f9c91c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_de_DE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_de_DE.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # Ettore Atalan , 2014-2015 # Lukas Bestle , 2013,2015 # Dr. Mathias Wilhelm , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 18\:58+0000\nLast-Translator\: Ettore Atalan \nLanguage-Team\: German (Germany) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:34+0000\nLast-Translator\: Lukas Bestle \nLanguage-Team\: German (Germany) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (erfordert Neustart von Arduino) @@ -23,16 +24,22 @@ \ Used\:\ {0}=\ Benutzt\: {0} #: debug/Compiler.java:455 -'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Tastatur' wird nur vom Arduino Leonardo unterst\u00fctzt +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' wird nur vom Arduino Leonardo unterst\u00fctzt #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' wird nur vom Arduino Leonardo unterst\u00fctzt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=Der 'arch'-Ordner wird nicht mehr unterst\u00fctzt. Bitte besuchen Sie http\://goo.gl/gfFJzU f\u00fcr weitere Informationen. + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(nur bearbeiten, wenn Arduino nicht l\u00e4uft) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +(legacy)=(veraltet) + #: ../../../processing/app/helpers/CommandlineParser.java:149 ---curdir\ no\ longer\ supported=--curdir wird nicht mehr unterst\u00fctzt. +--curdir\ no\ longer\ supported=--curdir wird nicht mehr unterst\u00fctzt #: ../../../processing/app/Base.java:468 --verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload und --verbose-build k\u00f6nnen nur zusammen mit --verify oder --upload verwendet werden @@ -46,11 +53,11 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
F\u00fcr manche Ihrer {0}Boards{1} und {2}Bibliotheken{3} ist eine Aktualisierung verf\u00fcgbar. +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
F\u00fcr manche Ihrer {0}Boards{1} und {2}Libraries{3} ist eine Aktualisierung verf\u00fcgbar. #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
F\u00fcr manche Ihrer {0}Bibliotheken{1} ist eine Aktualisierung verf\u00fcgbar. +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
F\u00fcr manche Ihrer {0}Libraries{1} ist eine Aktualisierung verf\u00fcgbar. #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Wollen Sie die \u00c4nderungen an dem Sketch
vor dem Schlie\u00dfen speichern?

Wenn Sie dies nicht speichern, gehen alle \u00c4nderungen verloren. @@ -121,7 +128,7 @@ An\ error\ occurred\ while\ verifying\ the\ sketch=Beim \u00dcberpr\u00fcfen des An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Beim \u00dcberpr\u00fcfen/Hochladen des Sketches ist ein Fehler aufgetreten #: Base.java:228 -An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ein unbekannter Fehler ist aufgetreten beim Versuch, \nden platformspezifischen Code f\u00fcr Ihr Ger\u00e4t zu laden. +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Ein unbekannter Fehler ist aufgetreten beim Versuch, \nden plattformspezifischen Code f\u00fcr Ihr Ger\u00e4t zu laden. #: Preferences.java:85 Arabic=Arabisch @@ -214,22 +221,20 @@ Bad\ error\ line\:\ {0}=Fehler in Zeile\: {0} #: Editor.java:2136 Bad\ file\ selected=Falsche Datei ausgew\u00e4hlt -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Fehlerhafte prim\u00e4re Sketch-Datei oder fehlerhafte Sketch-Ordnerstruktur - #: ../../../processing/app/Preferences.java:149 Basque=Baskisch #: ../../../processing/app/Preferences.java:139 Belarusian=Wei\u00dfrussisch -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (Indien) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Platine +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=Board {0} (Plattform {1}, Paket {2}) ist unbekannt + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Die Platine {0}\:{1}\:{2} definiert keine "Build.Platine"-Einstellung. Sie wurde automatisch auf {3} gesetzt. @@ -259,12 +264,12 @@ Both\ NL\ &\ CR=CR und NL #: Preferences.java:81 Browse=Durchsuchen -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Der Build-Ordner ist verschwunden oder kann nicht beschrieben werden - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Build-Optionen wurden ver\u00e4ndert, alles wird neu gebaut +#: ../../../../../app/src/processing/app/Base.java:1210 +Built-in\ Examples=Mitgelieferte Beispiele + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarisch @@ -313,21 +318,12 @@ Check\ for\ updates\ on\ startup=Beim Start nach Updates suchen #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinesisch (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinesisch (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinesisch (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinesisch (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Vereinfachtes Chinesisch - -#: Preferences.java:89 -Chinese\ Traditional=Traditionelles Chinesisch - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Klicken Sie f\u00fcr eine Liste mit inoffiziellen Platinenunterst\u00fctzungs-URLs @@ -412,9 +408,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Die Standardeinstellungen konnten nicht geladen werden.\nSie m\u00fcssen Arduino neu installieren. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Die vorherige Build-Voreinstellungsdatei konnte nicht gelesen werden, alles wird neu gebaut - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Alte Version von {0} konnte nicht entfernt werden @@ -436,9 +429,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Konnte den Sketch nicht umbenennen. (2) #, java-format Could\ not\ replace\ {0}={0} konnte nicht ersetzt werden -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Die Build-Voreinstellungsdatei konnte nicht geschrieben werden - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Sketch konnte nicht archiviert werden @@ -457,15 +447,9 @@ Croatian=Kroatisch #: Editor.java:1149 Editor.java:2699 Cut=Ausschneiden -#: ../../../processing/app/Preferences.java:83 -Czech=Tschechisch - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Tschechisch (Tschechische Republik) -#: Preferences.java:90 -Danish=D\u00e4nisch - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=D\u00e4nisch (D\u00e4nemark) @@ -669,6 +653,15 @@ Estonian\ (Estonia)=Estl\u00e4ndisch (Estland) #: Editor.java:516 Examples=Beispiele +#: ../../../../../app/src/processing/app/Base.java:1244 +Examples\ from\ Custom\ Libraries=Beispiele aus eigenen Libraries + +#: ../../../../../app/src/processing/app/Base.java:1222 +Examples\ from\ Libraries=Beispiele aus Libraries + +#: ../../../../../app/src/processing/app/Editor.java:753 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Export abgebrochen, \u00c4nderungen m\u00fcssen erst gespeichert werden. + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Kompilierte Bin\u00e4rdatei exportieren @@ -834,6 +827,10 @@ Installing...=Installationsvorgang... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Ung\u00fcltige Bibliothek {0} in {1} gefunden +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Ung\u00fcltige Quotierung\: Es konnte kein schlie\u00dfender [{0}]-Charakter gefunden werden. + #: Preferences.java:102 Italian=Italienisch @@ -852,6 +849,9 @@ Library\ Manager=Bibliotheksverwalter #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Die Bibliothek wurde zu Ihren Bibliotheken hinzugef\u00fcgt. Bitte im Men\u00fc "Bibliothek einbinden" nachpr\u00fcfen +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Eine Library kann nicht sowohl 'src'- als auch 'utility'-Ordner verwenden. + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Bibliothek ist bereits installiert\: {0} Version {1} @@ -862,12 +862,13 @@ Lithuaninan=Litauisch #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Konfiguration wird geladen... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +Looking\ for\ recipes\ like\ {0}*{1}=Suche nach Rezepten wie {0}*{1} + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Wenig Speicher verf\u00fcgbar, es k\u00f6nnen Stabilit\u00e4tsprobleme auftreten. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaysisch (Malaysia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Bibliotheken verwalten... @@ -880,8 +881,9 @@ Marathi=Marathisch #: Base.java:2112 Message=Mitteilung -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Das */ am Ende eines /* Kommentars */ fehlt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +Missing\ '{0}'\ from\ library\ in\ {1}='{0}' aus der Library in {1} fehlt. #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modus wird nicht unterst\u00fctzt @@ -905,9 +907,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Mehrere Bibliotheken wurden f\u00fc #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Es muss genau eine Sketch-Datei angegeben werden -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Name der neuen Datei\: @@ -941,9 +940,6 @@ No=Nein #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Keine Autorisierungsdaten gefunden -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Keine Platine ausgew\u00e4hlt; bitte eine Platine unter Werkzeuge > Platine ausw\u00e4hlen - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=F\u00fcr Automatische Formatierung bedarf es keiner \u00c4nderungen. @@ -992,15 +988,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Im Ordner {0} wurden k #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Nichts -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norwegisch - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norwegisches Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norwegisches Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nicht genug Speicher; unter http\://www.arduino.cc/en/Guide/Troubleshooting\#size finden sich Hinweise, um die Gr\u00f6\u00dfe zu verringern. @@ -1044,6 +1034,10 @@ Persian=Persisch #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persisch (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +Platform\ {0}\ (package\ {1})\ is\ unknown=Plattform {0} (Paket {1}) ist unbekannt + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Bitte best\u00e4tigen Sie die Platinenl\u00f6schung @@ -1117,10 +1111,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem beim Zugriff auf Dateien im Ordn #: Base.java:1673 Problem\ getting\ data\ folder=Probleme beim Zugriff auf den Datenordner -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probleme beim Verschieben von {0} in den Build-Ordner - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleme beim Hochladen auf die Platine. Hilfestellung dazu unter http\://www.arduino.cc/en/Guide/Troubleshooting\#upload . @@ -1133,9 +1123,16 @@ Processor=Prozessor #: Editor.java:704 Programmer=Programmer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +Progress\ {0}=Fortschritt {0} + #: Base.java:783 Editor.java:593 Quit=Verlassen +#: ../../../../../app/src/processing/app/Base.java:1233 +RETIRED=ABGESCHALTET + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Wiederholen @@ -1175,6 +1172,14 @@ Replace\ with\:=Ersetzen durch\: #: Preferences.java:113 Romanian=Rum\u00e4nisch +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +Running\ recipe\:\ {0}=Rezept wird ausgef\u00fchrt\: {0} + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +Running\:\ {0}=Ausf\u00fchren\: {0} + #: Preferences.java:114 Russian=Russisch @@ -1252,6 +1257,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Serielle Schnittstellen +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +Setting\ build\ path\ to\ {0}=Setze Build-Pfad auf {0} + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Einstellungen @@ -1332,9 +1341,6 @@ Starting...=Startvorgang... #: Base.java:540 Sunshine=Sonnenschein -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Schwedisch @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Der angegebene Sketchbook-Ordner enth\u00e4lt Ihre Kopie der IDE.\nBitte w\u00e4hlen Sie einen anderen Ordner f\u00fcr Ihr Sketchbook aus. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Die Dritt-platform.txt definiert keinen compiler.path. Bitte melden Sie dies an den Dritthardware-Maintainer. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Diese Datei wurde bereits an den Ort kopiert, von dem Sie versuchen, sie hinzuzuf\u00fcgen.\nIch mache erst einmal nichts. @@ -1453,6 +1456,10 @@ Unable\ to\ connect\:\ retrying=Fehler beim Verbinden\: Erneuter Versuch #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Fehler beim Verbinden\: Falsches Passwort? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +Unable\ to\ find\ {0}\ in\ {1}=Konnte {0} in {1} nicht finden. + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Fehler beim \u00d6ffnen des seriellen Monitors @@ -1463,13 +1470,17 @@ Unable\ to\ open\ serial\ plotter=Konnte seriellen Plotter nicht \u00f6ffnen #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Arduino.cc kann wegen m\u00f6glicher Netzwerkprobleme nicht erreicht werden. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Unbehandelte Ausnahme vom Typ\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=R\u00fcckg\u00e4ngig +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Unbehandelter Typ {0} im Kontextschl\u00fcssel {1} + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +Unknown\ sketch\ file\ extension\:\ {0}=Unbekannte Sketch-Dateierweiterung\: {0} + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Unbekannte Plattform, kein Starter verf\u00fcgbar. Um das \u00d6ffnen einer URL oder eines Ordners zu erm\u00f6glichen, f\u00fcgen Sie die Zeile "launcher\=/pfad/zur/app" zur Datei preferences.txt hinzu @@ -1504,9 +1515,6 @@ Uploading\ to\ I/O\ Board...=Hochladen zur E/A-Platine... #: Sketch.java:1622 Uploading...=Hochladen... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Auswahl f\u00fcr Suche verwenden @@ -1564,6 +1572,14 @@ Vietnamese=Vietnamesisch #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc besuchen +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=WARNUNG\: Kategorie '{0}' in der Library {1} ist ung\u00fcltig. Setze sie auf '{2}' + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=WARNUNG\: Unberechtigter Ordner {0} in der Library '{1}' + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNUNG\: Bibliothek {0} behauptet auf {1} Architektur(en) ausgef\u00fchrt werden zu k\u00f6nnen und ist m\u00f6glicherweise inkompatibel mit Ihrer derzeitigen Platine, welche auf {2} Architektur(en) ausgef\u00fchrt werden kann. @@ -1593,6 +1609,9 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Warnu #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Warnung\: platform.txt aus dem Kern '{0}' enth\u00e4lt veraltete {1}, es wurde automatisch zu {2} konvertiert. Erw\u00e4gen Sie eine Aktualisierung dieses Kerns. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Warnung\: Der platform.txt aus dem Kern '{0}' fehlt die Eigenschaft '{1}', sie wurde deshalb automatisch auf '{2}' festgelegt. Erw\u00e4gen Sie eine Aktualisierung dieses Kerns. + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Warnung\: platform.txt aus dem Kern '{0}' fehlt die Eigenschaft {1}, sie wurde automatisch auf {2} festgelegt. Erw\u00e4gen Sie eine Aktualisierung dieses Kerns. @@ -1753,6 +1772,14 @@ version\ {0}=Version {0} #, java-format {0}\ libraries={0} Bibliotheken +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +{0}\ must\ be\ a\ folder={0} muss ein Ordner sein + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +{0}\ pattern\ is\ missing=Das Muster {0} fehlt + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} gab {1} zur\u00fcck diff --git a/arduino-core/src/processing/app/i18n/Resources_el_GR.po b/arduino-core/src/processing/app/i18n/Resources_el_GR.po index 23fa2f7db2d..8c712e3dfe8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.po +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Dimitris Zervas <01ttouch@gmail.com>, 2012 # Spyridon Papanastasiou , 2015 # Γιάννης Σφακιανάκης , 2013 @@ -14,7 +15,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Greek (Greece) (http://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\n" "MIME-Version: 1.0\n" @@ -45,10 +46,20 @@ msgstr "Το «Keyboard» υποστηρίζεται μόνο από το Arduin msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "Το «Mouse» υποστηρίζεται μόνο από το Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(επεξεραστείτε μόνο όταν το Arduino δεν τρέχει)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "το --curdir δεν υποστηρίζεται πλέον" @@ -310,10 +321,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -322,15 +329,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "" msgid "Browse" msgstr "Αναζήτηση" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -442,10 +450,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -454,14 +458,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Απλά Κινέζικα" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Παραδοσιακά Κινέζικα" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Δεν μπορεί να διαβάσει τις προεπιλεγμένες ρυθμίσεις.\nΠρέπει να εγκατασταθεί ξανά το Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "Δεν μπορεί να αντικατασταθεί το {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -643,18 +631,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Δανέζικα" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -926,6 +906,18 @@ msgstr "" msgid "Examples" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1154,6 +1146,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Ιταλικά" @@ -1178,6 +1175,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,12 +1192,13 @@ msgstr "Λιθουανίας" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1215,8 +1217,9 @@ msgstr "" msgid "Message" msgstr "Μήνυμα" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1248,10 +1251,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1296,10 +1295,6 @@ msgstr "Όχι" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1363,18 +1358,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "Περσικά" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1523,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Πρόβλημα κατα την λήψη του φακέλου δεδομένων" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Έξοδος" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1609,6 +1605,16 @@ msgstr "Αλλαγή με:" msgid "Romanian" msgstr "Ρουμάνικα" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ρώσσικα" @@ -1714,6 +1720,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1840,6 @@ msgstr "" msgid "Sunshine" msgstr "Λιακάδα" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2040,13 +2046,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2097,10 +2108,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2175,6 +2182,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties index bd9529f757d..6accf935d7e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_el_GR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_el_GR.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # Dimitris Zervas <01ttouch@gmail.com>, 2012 # Spyridon Papanastasiou , 2015 # \u0393\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2 \u03a3\u03c6\u03b1\u03ba\u03b9\u03b1\u03bd\u03ac\u03ba\u03b7\u03c2 , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el_GR\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el_GR\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b1\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino) @@ -28,9 +29,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u03a4\u03bf \u00abMouse\u00bb \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03cc\u03bd\u03bf \u03cc\u03c4\u03b1\u03bd \u03c4\u03bf Arduino \u03b4\u03b5\u03bd \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=\u03c4\u03bf --curdir \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd @@ -214,22 +221,20 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -259,12 +264,12 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you #: Preferences.java:81 Browse=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -313,21 +318,12 @@ Catalan=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=\u0391\u03c0\u03bb\u03ac \u039a\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 - -#: Preferences.java:89 -Chinese\ Traditional=\u03a0\u03b1\u03c1\u03b1\u03b4\u03bf\u03c3\u03b9\u03b1\u03ba\u03ac \u039a\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -412,9 +408,6 @@ Could\ not\ open\ the\ folder\n{0}=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.\n\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03be\u03b1\u03bd\u03ac \u03c4\u03bf Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03b7 \u03c0\u03b1\u03bb\u03b9\u03ac \u03b5\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 {0} @@ -436,9 +429,6 @@ Could\ not\ remove\ old\ version\ of\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\ #, java-format Could\ not\ replace\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03c4\u03bf {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -457,15 +447,9 @@ Could\ not\ replace\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u0394\u03b1\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1 - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -669,6 +653,15 @@ Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac #: Editor.java:516 !Examples= +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -834,6 +827,10 @@ Indonesian=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac @@ -852,6 +849,9 @@ Korean=\u039a\u03bf\u03c1\u03b5\u03ac\u03c4\u03b9\u03ba\u03b1 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -862,12 +862,13 @@ Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -880,8 +881,9 @@ Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2 #: Base.java:2112 Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -905,9 +907,6 @@ Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -941,9 +940,6 @@ No=\u038c\u03c7\u03b9 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -992,15 +988,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u039f\u03c7\u03b9 \u03b1\u0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1044,6 +1034,10 @@ Persian=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1117,10 +1111,6 @@ Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 #: Base.java:1673 Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1133,9 +1123,16 @@ Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u0388\u03be\u03bf\u03b4\u03bf\u03c2 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1175,6 +1172,14 @@ Replace\ with\:=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\: #: Preferences.java:113 Romanian=\u03a1\u03bf\u03c5\u03bc\u03ac\u03bd\u03b9\u03ba\u03b1 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u03a1\u03ce\u03c3\u03c3\u03b9\u03ba\u03b1 @@ -1252,6 +1257,10 @@ Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u0 #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1332,9 +1341,6 @@ Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac #: Base.java:540 Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1453,6 +1456,10 @@ Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b5\u03b9\u03 #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1463,13 +1470,17 @@ Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b5\u03b9\u03 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1504,9 +1515,6 @@ Upload\ Using\ Programmer=\u0395\u03be\u03b1\u03b3\u03ce\u03b3\u03b7 \u039c\u03a #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1564,6 +1572,14 @@ Verify=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1593,6 +1609,9 @@ Warning=\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1753,6 +1772,14 @@ Zip\ doesn't\ contain\ a\ library=\u03a4\u03bf \u03c3\u03c5\u03bc\u03c0\u03b9\u0 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_en.po b/arduino-core/src/processing/app/i18n/Resources_en.po index 68e2fc7bd58..a0dbcbacb6d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en.po +++ b/arduino-core/src/processing/app/i18n/Resources_en.po @@ -6,12 +6,13 @@ # Translators: # Translators: # Translators: +# Translators: msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: English (http://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\n" "MIME-Version: 1.0\n" @@ -42,10 +43,20 @@ msgstr "'Keyboard' only supported on the Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more information" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(edit only when Arduino is not running)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "(legacy)" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir no longer supported" @@ -307,10 +318,6 @@ msgstr "Bad error line: {0}" msgid "Bad file selected" msgstr "Bad file selected" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Bad sketch primary file or bad sketch directory structure" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basque" @@ -319,15 +326,16 @@ msgstr "Basque" msgid "Belarusian" msgstr "Belarusian" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Board" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "Board {0} (platform {1}, package {2}) is unknown" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -368,14 +376,14 @@ msgstr "Both NL & CR" msgid "Browse" msgstr "Browse" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Build folder disappeared or could not be written" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Build options changed, rebuilding all" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "Built-in Examples" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -439,10 +447,6 @@ msgstr "Check for updates on startup" msgid "Chinese (China)" msgstr "Chinese (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinese (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinese (Taiwan)" @@ -451,14 +455,6 @@ msgstr "Chinese (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinese (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinese Traditional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Click for a list of unofficial boards support URLs" @@ -578,10 +574,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Could not read default settings.\nYou'll need to reinstall Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Could not read prevous build preferences file, rebuilding all" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -609,10 +601,6 @@ msgstr "Could not rename the sketch. (2)" msgid "Could not replace {0}" msgstr "Could not replace {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Could not write build preferences file" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Couldn't archive sketch" @@ -640,18 +628,10 @@ msgstr "Croatian" msgid "Cut" msgstr "Cut" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Czech" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czech (Czech Republic)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danish (Denmark)" @@ -923,6 +903,18 @@ msgstr "Estonian (Estonia)" msgid "Examples" msgstr "Examples" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "Examples from Custom Libraries" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "Examples from Libraries" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "Export canceled, changes must first be saved." + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Export compiled Binary" @@ -1151,6 +1143,11 @@ msgstr "Installing..." msgid "Invalid library found in {0}: {1}" msgstr "Invalid library found in {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "Invalid quoting: no closing [{0}] char found." + #: Preferences.java:102 msgid "Italian" msgstr "Italian" @@ -1175,6 +1172,10 @@ msgstr "Library Manager" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Library added to your libraries. Check \"Include library\" menu" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "Library can't use both 'src' and 'utility' folders." + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1188,14 +1189,15 @@ msgstr "Lithuaninan" msgid "Loading configuration..." msgstr "Loading configuration..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "Looking for recipes like {0}*{1}" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Low memory available, stability problems may occur." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malay (Malaysia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Manage Libraries..." @@ -1212,9 +1214,10 @@ msgstr "Marathi" msgid "Message" msgstr "Message" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "Missing '{0}' from library in {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1245,10 +1248,6 @@ msgstr "Multiple libraries were found for \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Must specify exactly one sketch file" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Name for new file:" @@ -1293,10 +1292,6 @@ msgstr "No" msgid "No authorization data found" msgstr "No authorization data found" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "No board selected; please choose a board from the Tools > Board menu." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "No changes necessary for Auto Format." @@ -1360,18 +1355,10 @@ msgstr "No valid hardware definitions found in folder {0}." msgid "None" msgstr "None" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norwegian" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norwegian Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norwegian Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1431,6 +1418,11 @@ msgstr "Persian" msgid "Persian (Iran)" msgstr "Persian (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "Platform {0} (package {1}) is unknown" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Please confirm boards deletion" @@ -1528,11 +1520,6 @@ msgstr "Problem accessing files in folder " msgid "Problem getting data folder" msgstr "Problem getting data folder" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problem moving {0} to the build folder" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1551,10 +1538,19 @@ msgstr "Processor" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "Progress {0}" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Quit" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "RETIRED" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Redo" @@ -1606,6 +1602,16 @@ msgstr "Replace with:" msgid "Romanian" msgstr "Romanian" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "Running recipe: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "Running: {0}" + #: Preferences.java:114 msgid "Russian" msgstr "Russian" @@ -1711,6 +1717,11 @@ msgstr "Serial port {0} not found.\nRetry the upload with another serial port?" msgid "Serial ports" msgstr "Serial ports" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "Setting build path to {0}" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "Settings" @@ -1826,10 +1837,6 @@ msgstr "Starting..." msgid "Sunshine" msgstr "Sunshine" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Swedish" @@ -1946,12 +1953,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "The specified sketchbook folder contains your copy of the IDE.\nPlease choose a different folder for your sketchbook." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2024,6 +2025,11 @@ msgstr "Unable to connect: retrying" msgid "Unable to connect: wrong password?" msgstr "Unable to connect: wrong password?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "Unable to find {0} in {1}" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Unable to open serial monitor" @@ -2037,15 +2043,20 @@ msgstr "Unable to open serial plotter" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Unable to reach Arduino.cc due to possible network issues." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Uncaught exception type: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "Unhandled type {0} in context key {1}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "Unknown sketch file extension: {0}" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2094,10 +2105,6 @@ msgstr "Uploading to I/O Board..." msgid "Uploading..." msgstr "Uploading..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Use Selection For Find" @@ -2172,6 +2179,16 @@ msgstr "Vietnamese" msgid "Visit Arduino.cc" msgstr "Visit Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "WARNING: Spurious {0} folder in '{1}' library" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2215,6 +2232,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "Warning: platform.txt from core '{0}' misses property '{1}', using default value '{2}'. Consider upgrading this core." + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2469,6 +2492,16 @@ msgstr "{0} files added to the sketch." msgid "{0} libraries" msgstr "{0} libraries" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "{0} must be a folder" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "{0} pattern is missing" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_en.properties b/arduino-core/src/processing/app/i18n/Resources_en.properties index 2c3b4bae726..c425f2a9581 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en.properties @@ -6,7 +6,8 @@ # Translators: # Translators: # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# Translators: +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino) @@ -25,9 +26,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' only supported on the Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' folder is no longer supported\! See http\://goo.gl/gfFJzU for more information + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(edit only when Arduino is not running) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +(legacy)=(legacy) + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir no longer supported @@ -211,22 +218,20 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0} #: Editor.java:2136 Bad\ file\ selected=Bad file selected -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Bad sketch primary file or bad sketch directory structure - #: ../../../processing/app/Preferences.java:149 Basque=Basque #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Board +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=Board {0} (platform {1}, package {2}) is unknown + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Board {0}\:{1}\:{2} doesn''t define a ''build.board'' preference. Auto-set to\: {3} @@ -256,12 +261,12 @@ Both\ NL\ &\ CR=Both NL & CR #: Preferences.java:81 Browse=Browse -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Build folder disappeared or could not be written - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Build options changed, rebuilding all +#: ../../../../../app/src/processing/app/Base.java:1210 +Built-in\ Examples=Built-in Examples + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -310,21 +315,12 @@ Check\ for\ updates\ on\ startup=Check for updates on startup #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinese (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinese (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinese (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -Chinese\ Traditional=Chinese Traditional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Click for a list of unofficial boards support URLs @@ -409,9 +405,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read default settings.\nYou'll need to reinstall Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Could not read prevous build preferences file, rebuilding all - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Could not remove old version of {0} @@ -433,9 +426,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Could not rename the sketch. (2) #, java-format Could\ not\ replace\ {0}=Could not replace {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Could not write build preferences file - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Couldn't archive sketch @@ -454,15 +444,9 @@ Croatian=Croatian #: Editor.java:1149 Editor.java:2699 Cut=Cut -#: ../../../processing/app/Preferences.java:83 -Czech=Czech - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czech (Czech Republic) -#: Preferences.java:90 -Danish=Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danish (Denmark) @@ -666,6 +650,15 @@ Estonian\ (Estonia)=Estonian (Estonia) #: Editor.java:516 Examples=Examples +#: ../../../../../app/src/processing/app/Base.java:1244 +Examples\ from\ Custom\ Libraries=Examples from Custom Libraries + +#: ../../../../../app/src/processing/app/Base.java:1222 +Examples\ from\ Libraries=Examples from Libraries + +#: ../../../../../app/src/processing/app/Editor.java:753 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Export canceled, changes must first be saved. + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Export compiled Binary @@ -831,6 +824,10 @@ Installing...=Installing... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Invalid library found in {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Invalid quoting\: no closing [{0}] char found. + #: Preferences.java:102 Italian=Italian @@ -849,6 +846,9 @@ Library\ Manager=Library Manager #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Library added to your libraries. Check "Include library" menu +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Library can't use both 'src' and 'utility' folders. + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Library is already installed\: {0} version {1} @@ -859,12 +859,13 @@ Lithuaninan=Lithuaninan #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Loading configuration... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +Looking\ for\ recipes\ like\ {0}*{1}=Looking for recipes like {0}*{1} + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Low memory available, stability problems may occur. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malay (Malaysia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Manage Libraries... @@ -877,8 +878,9 @@ Marathi=Marathi #: Base.java:2112 Message=Message -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Missing the */ from the end of a /* comment */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +Missing\ '{0}'\ from\ library\ in\ {1}=Missing '{0}' from library in {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Mode not supported @@ -902,9 +904,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Multiple libraries were found for " #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Must specify exactly one sketch file -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Name for new file\: @@ -938,9 +937,6 @@ No=No #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=No authorization data found -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No board selected; please choose a board from the Tools > Board menu. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=No changes necessary for Auto Format. @@ -989,15 +985,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=No valid hardware defi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=None -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norwegian - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norwegian Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Not enough memory; see http\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips on reducing your footprint. @@ -1041,6 +1031,10 @@ Persian=Persian #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persian (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +Platform\ {0}\ (package\ {1})\ is\ unknown=Platform {0} (package {1}) is unknown + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Please confirm boards deletion @@ -1114,10 +1108,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem accessing files in folder #: Base.java:1673 Problem\ getting\ data\ folder=Problem getting data folder -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problem moving {0} to the build folder - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem uploading to board. See http\://www.arduino.cc/en/Guide/Troubleshooting\#upload for suggestions. @@ -1130,9 +1120,16 @@ Processor=Processor #: Editor.java:704 Programmer=Programmer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +Progress\ {0}=Progress {0} + #: Base.java:783 Editor.java:593 Quit=Quit +#: ../../../../../app/src/processing/app/Base.java:1233 +RETIRED=RETIRED + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Redo @@ -1172,6 +1169,14 @@ Replace\ with\:=Replace with\: #: Preferences.java:113 Romanian=Romanian +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +Running\ recipe\:\ {0}=Running recipe\: {0} + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +Running\:\ {0}=Running\: {0} + #: Preferences.java:114 Russian=Russian @@ -1249,6 +1254,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Serial ports +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +Setting\ build\ path\ to\ {0}=Setting build path to {0} + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Settings @@ -1329,9 +1338,6 @@ Starting...=Starting... #: Base.java:540 Sunshine=Sunshine -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Swedish @@ -1396,9 +1402,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=The specified sketchbook folder contains your copy of the IDE.\nPlease choose a different folder for your sketchbook. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=This file has already been copied to the\nlocation from which where you're trying to add it.\nI ain't not doin nuthin'. @@ -1450,6 +1453,10 @@ Unable\ to\ connect\:\ retrying=Unable to connect\: retrying #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Unable to connect\: wrong password? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +Unable\ to\ find\ {0}\ in\ {1}=Unable to find {0} in {1} + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Unable to open serial monitor @@ -1460,13 +1467,17 @@ Unable\ to\ open\ serial\ plotter=Unable to open serial plotter #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Unable to reach Arduino.cc due to possible network issues. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Undo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Unhandled type {0} in context key {1} + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +Unknown\ sketch\ file\ extension\:\ {0}=Unknown sketch file extension\: {0} + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Unspecified platform, no launcher available.\nTo enable opening URLs or folders, add a \n"launcher\=/path/to/app" line to preferences.txt @@ -1501,9 +1512,6 @@ Uploading\ to\ I/O\ Board...=Uploading to I/O Board... #: Sketch.java:1622 Uploading...=Uploading... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Use Selection For Find @@ -1561,6 +1569,14 @@ Vietnamese=Vietnamese #: Editor.java:1105 Visit\ Arduino.cc=Visit Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=WARNING\: Category '{0}' in library {1} is not valid. Setting to '{2}' + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=WARNING\: Spurious {0} folder in '{1}' library + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNING\: library {0} claims to run on {1} architecture(s) and may be incompatible with your current board which runs on {2} architecture(s). @@ -1590,6 +1606,9 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Warni #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Warning\: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Warning\: platform.txt from core '{0}' misses property '{1}', using default value '{2}'. Consider upgrading this core. + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Warning\: platform.txt from core '{0}' misses property {1}, automatically set to {2}. Consider upgrading this core. @@ -1750,6 +1769,14 @@ version\ {0}=version {0} #, java-format {0}\ libraries={0} libraries +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +{0}\ must\ be\ a\ folder={0} must be a folder + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +{0}\ pattern\ is\ missing={0} pattern is missing + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} returned {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_en_GB.po b/arduino-core/src/processing/app/i18n/Resources_en_GB.po index 50333b0a2c1..e32888357d8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.po +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Andi Chandler , 2013-2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: English (United Kingdom) (http://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "'Keyboard' only supported on the Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' only supported on the Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(edit only when Arduino is not running)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir no longer supported" @@ -64,18 +75,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Update available for some of your {0}boards{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Update available for some of your {0}boards{1} and {2}libraries{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Update available for some of your {0}libraries{1}" #: Editor.java:2053 msgid "" @@ -289,11 +300,11 @@ msgstr "Auto Format finished." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Auto-detect proxy settings" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "Automatic proxy configuration URL:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -308,10 +319,6 @@ msgstr "Bad error line: {0}" msgid "Bad file selected" msgstr "Bad file selected" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Bad sketch primary file or bad sketch directory structure" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basque" @@ -320,15 +327,16 @@ msgstr "Basque" msgid "Belarusian" msgstr "Belarusian" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Board" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "Both NL & CR" msgid "Browse" msgstr "Browse" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Build folder disappeared or could not be written" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Build options changed, rebuilding all" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -440,10 +448,6 @@ msgstr "Check for updates on startup" msgid "Chinese (China)" msgstr "Chinese (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinese (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinese (Taiwan)" @@ -452,14 +456,6 @@ msgstr "Chinese (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinese (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinese Traditional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Click for a list of unofficial boards support URLs" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Could not read default settings.\nYou'll need to reinstall Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Could not read prevous build preferences file, rebuilding all" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Could not rename the sketch. (2)" msgid "Could not replace {0}" msgstr "Could not replace {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Could not write build preferences file" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Couldn't archive sketch" @@ -641,18 +629,10 @@ msgstr "Croatian" msgid "Cut" msgstr "Cut" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Czech" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czech (Czech Republic)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danish (Denmark)" @@ -924,6 +904,18 @@ msgstr "Estonian (Estonia)" msgid "Examples" msgstr "Examples" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Export compiled Binary" @@ -1051,7 +1043,7 @@ msgstr "Hindi" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Host name:" #: Sketch.java:295 msgid "" @@ -1152,6 +1144,11 @@ msgstr "Installing..." msgid "Invalid library found in {0}: {1}" msgstr "Invalid library found in {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italian" @@ -1170,12 +1167,16 @@ msgstr "Latvian" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Library Manager" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Library added to your libraries. Check \"Include library\" menu" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,21 +1190,22 @@ msgstr "Lithuaninan" msgid "Loading configuration..." msgstr "Loading configuration..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Low memory available, stability problems may occur." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malay (Malaysia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Manage Libraries..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Manual proxy configuration" #: Preferences.java:107 msgid "Marathi" @@ -1213,9 +1215,10 @@ msgstr "Marathi" msgid "Message" msgstr "Message" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1246,10 +1249,6 @@ msgstr "Multiple libraries were found for \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Must specify exactly one sketch file" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Name for new file:" @@ -1260,7 +1259,7 @@ msgstr "Nepali" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Network" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -1294,10 +1293,6 @@ msgstr "No" msgid "No authorization data found" msgstr "No authorisation data found" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "No board selected; please choose a board from the Tools > Board menu." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "No changes necessary for Auto Format." @@ -1328,7 +1323,7 @@ msgstr "No parameters" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "No proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1361,18 +1356,10 @@ msgstr "No valid hardware definitions found in folder {0}." msgid "None" msgstr "None" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norwegian" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norwegian Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norwegian Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Persian" msgid "Persian (Iran)" msgstr "Persian (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Please confirm boards deletion" @@ -1463,7 +1455,7 @@ msgstr "Port" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Port number:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1529,11 +1521,6 @@ msgstr "Problem accessing files in folder " msgid "Problem getting data folder" msgstr "Problem getting data folder" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problem moving {0} to the build folder" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Processor" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Quit" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Redo" @@ -1607,6 +1603,16 @@ msgstr "Replace with:" msgid "Romanian" msgstr "Romanian" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russian" @@ -1712,9 +1718,14 @@ msgstr "Serial port {0} not found.\nRetry the upload with another serial port?" msgid "Serial ports" msgstr "Serial ports" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Settings" #: Base.java:1681 msgid "Settings issues" @@ -1827,10 +1838,6 @@ msgstr "Starting..." msgid "Sunshine" msgstr "Sunshine" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Swedish" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "The specified sketchbook folder contains your copy of the IDE.\nPlease choose a different folder for your sketchbook." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "Unable to connect: retrying" msgid "Unable to connect: wrong password?" msgstr "Unable to connect: wrong password?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Unable to open serial monitor" @@ -2038,15 +2044,20 @@ msgstr "Unable to open serial plotter" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Unable to reach Arduino.cc due to possible network issues." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Uncaught exception type: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2057,7 +2068,7 @@ msgstr "Unspecified platform, no launcher available.\nTo enable opening URLs or #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Updatable" #: UpdateCheck.java:111 msgid "Update" @@ -2095,10 +2106,6 @@ msgstr "Uploading to I/O Board..." msgid "Uploading..." msgstr "Uploading..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Use Selection For Find" @@ -2110,7 +2117,7 @@ msgstr "Use external editor" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Username:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -2137,7 +2144,7 @@ msgstr "Verify code after upload" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Verify/Compile" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." @@ -2173,6 +2180,16 @@ msgstr "Vietnamese" msgid "Visit Arduino.cc" msgstr "Visit Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2197,17 +2214,17 @@ msgstr "Warning: file {0} links to an absolute path {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Warning: forced trusting untrusted contributions" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Warning: forced untrusted script execution ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Warning: non trusted contribution, skipping script execution ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "{0} files added to the sketch." msgid "{0} libraries" msgstr "{0} libraries" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties index 62e121e303f..06b898eb652 100644 --- a/arduino-core/src/processing/app/i18n/Resources_en_GB.properties +++ b/arduino-core/src/processing/app/i18n/Resources_en_GB.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Andi Chandler , 2013-2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' only supported on the Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(edit only when Arduino is not running) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir no longer supported @@ -40,15 +47,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Update available for some of your {0}boards{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Update available for some of your {0}boards{1} and {2}libraries{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Update available for some of your {0}libraries{1} #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Do you want to save changes to this sketch
before closing?

If you don't save, your changes will be lost. @@ -197,10 +204,10 @@ Auto\ Format=Auto Format Auto\ Format\ finished.=Auto Format finished. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Auto-detect proxy settings #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=Automatic proxy configuration URL\: #: SerialMonitor.java:110 Autoscroll=Autoscroll @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0} #: Editor.java:2136 Bad\ file\ selected=Bad file selected -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Bad sketch primary file or bad sketch directory structure - #: ../../../processing/app/Preferences.java:149 Basque=Basque #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Board +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Board {0}\:{1}\:{2} doesn''t define a ''build.board'' preference. Auto-set to\: {3} @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=Both NL & CR #: Preferences.java:81 Browse=Browse -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Build folder disappeared or could not be written - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Build options changed, rebuilding all +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=Check for updates on startup #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinese (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinese (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinese (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -Chinese\ Traditional=Chinese Traditional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Click for a list of unofficial boards support URLs @@ -410,9 +406,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read default settings.\nYou'll need to reinstall Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Could not read prevous build preferences file, rebuilding all - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Could not remove old version of {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Could not rename the sketch. (2) #, java-format Could\ not\ replace\ {0}=Could not replace {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Could not write build preferences file - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Couldn't archive sketch @@ -455,15 +445,9 @@ Croatian=Croatian #: Editor.java:1149 Editor.java:2699 Cut=Cut -#: ../../../processing/app/Preferences.java:83 -Czech=Czech - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czech (Czech Republic) -#: Preferences.java:90 -Danish=Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danish (Denmark) @@ -667,6 +651,15 @@ Estonian\ (Estonia)=Estonian (Estonia) #: Editor.java:516 Examples=Examples +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Export compiled Binary @@ -760,7 +753,7 @@ Help=Help Hindi=Hindi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Host name\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=How about saving the sketch first \nbefore trying to rename it? @@ -832,6 +825,10 @@ Installing...=Installing... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Invalid library found in {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italian @@ -845,11 +842,14 @@ Korean=Korean Latvian=Latvian #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Library Manager #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Library added to your libraries. Check "Include library" menu +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Library is already installed\: {0} version {1} @@ -860,17 +860,18 @@ Lithuaninan=Lithuaninan #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Loading configuration... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Low memory available, stability problems may occur. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malay (Malaysia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Manage Libraries... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Manual proxy configuration #: Preferences.java:107 Marathi=Marathi @@ -878,8 +879,9 @@ Marathi=Marathi #: Base.java:2112 Message=Message -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Missing the */ from the end of a /* comment */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Mode not supported @@ -903,9 +905,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Multiple libraries were found for " #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Must specify exactly one sketch file -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Name for new file\: @@ -913,7 +912,7 @@ Name\ for\ new\ file\:=Name for new file\: Nepali=Nepali #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Network #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=Network ports @@ -939,9 +938,6 @@ No=No #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=No authorisation data found -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No board selected; please choose a board from the Tools > Board menu. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=No changes necessary for Auto Format. @@ -964,7 +960,7 @@ No\ line\ ending=No line ending No\ parameters=No parameters #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=No proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No really, time for some fresh air for you. @@ -990,15 +986,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=No valid hardware defi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=None -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norwegian - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norwegian Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Not enough memory; see http\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips on reducing your footprint. @@ -1042,6 +1032,10 @@ Persian=Persian #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persian (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Please confirm boards deletion @@ -1065,7 +1059,7 @@ Polish=Polish Port=Port #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=Port number\: #: ../../../processing/app/Preferences.java:151 Portugese=Portugese @@ -1115,10 +1109,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem accessing files in folder #: Base.java:1673 Problem\ getting\ data\ folder=Problem getting data folder -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problem moving {0} to the build folder - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem uploading to board. See http\://www.arduino.cc/en/Guide/Troubleshooting\#upload for suggestions. @@ -1131,9 +1121,16 @@ Processor=Processor #: Editor.java:704 Programmer=Programmer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Quit +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Redo @@ -1173,6 +1170,14 @@ Replace\ with\:=Replace with\: #: Preferences.java:113 Romanian=Romanian +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russian @@ -1250,8 +1255,12 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Serial ports +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Settings #: Base.java:1681 Settings\ issues=Settings issues @@ -1330,9 +1339,6 @@ Starting...=Starting... #: Base.java:540 Sunshine=Sunshine -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Swedish @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=The specified sketchbook folder contains your copy of the IDE.\nPlease choose a different folder for your sketchbook. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=This file has already been copied to the\nlocation from which where you're trying to add it.\nI ain't not doin nuthin'. @@ -1451,6 +1454,10 @@ Unable\ to\ connect\:\ retrying=Unable to connect\: retrying #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Unable to connect\: wrong password? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Unable to open serial monitor @@ -1461,19 +1468,23 @@ Unable\ to\ open\ serial\ plotter=Unable to open serial plotter #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Unable to reach Arduino.cc due to possible network issues. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Undo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Unspecified platform, no launcher available.\nTo enable opening URLs or folders, add a \n"launcher\=/path/to/app" line to preferences.txt #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=Updatable #: UpdateCheck.java:111 Update=Update @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=Uploading to I/O Board... #: Sketch.java:1622 Uploading...=Uploading... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Use Selection For Find @@ -1513,7 +1521,7 @@ Use\ external\ editor=Use external editor #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=Username\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -1534,7 +1542,7 @@ Verify=Verify Verify\ code\ after\ upload=Verify code after upload #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Verify/Compile #: ../../../../../app/src/processing/app/Base.java:451 Verifying\ and\ uploading...=Verifying and uploading... @@ -1562,6 +1570,14 @@ Vietnamese=Vietnamese #: Editor.java:1105 Visit\ Arduino.cc=Visit Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WARNING\: library {0} claims to run on {1} architecture(s) and may be incompatible with your current board which runs on {2} architecture(s). @@ -1577,20 +1593,23 @@ Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ conside Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Warning\: file {0} links to an absolute path {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Warning\: forced trusting untrusted contributions #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Warning\: forced untrusted script execution ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Warning\: non trusted contribution, skipping script execution ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Warning\: platform.txt from core '{0}' contains deprecated {1}, automatically converted to {2}. Consider upgrading this core. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Warning\: platform.txt from core '{0}' misses property {1}, automatically set to {2}. Consider upgrading this core. @@ -1751,6 +1770,14 @@ version\ {0}=version {0} #, java-format {0}\ libraries={0} libraries +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} returned {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_es.po b/arduino-core/src/processing/app/i18n/Resources_es.po index 5d66c4ed6d9..fd656cf8ffa 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.po +++ b/arduino-core/src/processing/app/i18n/Resources_es.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # David Martin Garcia , 2012 # Miguel Ángel Barrio Vázquez , 2012 # Erik Fargas , 2015 @@ -20,7 +21,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Spanish (http://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\n" "MIME-Version: 1.0\n" @@ -51,10 +52,20 @@ msgstr "'Teclado' sólo soportado por Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Ratón' sólo soportado por Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editar sólo cuando Arduino no está corriendo)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir ya no está soportado" @@ -297,11 +308,11 @@ msgstr "Auto Formato terminado." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Auto-detectar configuración del proxy" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "URL configuración automática proxy:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -316,10 +327,6 @@ msgstr "Línea error: {0}" msgid "Bad file selected" msgstr "Fichero mal Seleccionado" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Fichero primario del sketch malo o mala estructura de directorios en el sketch" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Vasco" @@ -328,15 +335,16 @@ msgstr "Vasco" msgid "Belarusian" msgstr "Beloruso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengalí (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -377,14 +385,14 @@ msgstr "Ambos NL & CR" msgid "Browse" msgstr "Explorar" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Carpeta de construcción no encontrada o no se puede escribir en ella" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opciones de compilación cambiadas, reconstruyendo todo" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -448,10 +456,6 @@ msgstr "Comprobar actualizaciones al iniciar" msgid "Chinese (China)" msgstr "Chino (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chino (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chino (Taiwan)" @@ -460,14 +464,6 @@ msgstr "Chino (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chino (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chino Simplificado" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chino Tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Clique para obtener una lista de las URLs de soporte para las tarjetas no oficiales" @@ -587,10 +583,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "No se pueden leer los ajustes predeterminados.\nNecesita reinstalar Arduino" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "No se puedo leer el archivo de preferencias de compilación previo, recompilando todo." - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -618,10 +610,6 @@ msgstr "No se pudo renombrar el programa. (2)" msgid "Could not replace {0}" msgstr "No pude reemplazar {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "No se pudo escribir el archivo de preferencias de compilación" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "No se pudo archivar el programa." @@ -649,18 +637,10 @@ msgstr "Croata" msgid "Cut" msgstr "Cortar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Checo" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czech (Czech Republic)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danés" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danish (Denmark)" @@ -932,6 +912,18 @@ msgstr "Estonio (Estonia)" msgid "Examples" msgstr "Ejemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Exportar Binarios compilados" @@ -1059,7 +1051,7 @@ msgstr "Hindú" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Nombre del Host:" #: Sketch.java:295 msgid "" @@ -1160,6 +1152,11 @@ msgstr "Instalando..." msgid "Invalid library found in {0}: {1}" msgstr "Libreria invalidad encontrada en {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1184,6 +1181,10 @@ msgstr "Gestor de Liberías" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Librería añadida a sus librerías. Revise el menú \"Incluir Librería\"" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1197,21 +1198,22 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "Cargando configuración..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Poca memoria disponible, se pueden producir problemas de estabilidad." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malayo (Malasia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Gestionar Librerías" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Configuración manual del proxy" #: Preferences.java:107 msgid "Marathi" @@ -1221,9 +1223,10 @@ msgstr "Marathi" msgid "Message" msgstr "mensaje" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Falta el */ del final del /* comentario*/" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1254,10 +1257,6 @@ msgstr "Se encontraron múltiples librerías para \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Debe especificar exáctamente un archivo de sketch" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nombre del nuevo fichero:" @@ -1268,7 +1267,7 @@ msgstr "Nepalí" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Red" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -1302,10 +1301,6 @@ msgstr "No" msgid "No authorization data found" msgstr "Datos de autorización no encontrados" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "No se ha seleccionado placa; por favor, seleccione una en el menú Herramientas> Placa" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Sin cambios necesarios para Auto Formato" @@ -1336,7 +1331,7 @@ msgstr "Sin parámetros" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Sin proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1369,18 +1364,10 @@ msgstr "No se encontraron definiciones de hardware validas en la carpeta {0}." msgid "None" msgstr "Ninguno" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Noruego" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noruego" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norwegian Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1440,6 +1427,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Irán)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Por favor confirme la eliminación de tarjetas" @@ -1471,7 +1463,7 @@ msgstr "Puerto" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Número de puerto:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1537,11 +1529,6 @@ msgstr "Problema accediendo a los archivos de la carpeta" msgid "Problem getting data folder" msgstr "Problema al adquirir carpeta de datos." -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problema al mover {0} a la carpeta de construcción" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1560,10 +1547,19 @@ msgstr "Procesador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Salir" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Rehacer" @@ -1615,6 +1611,16 @@ msgstr "Reemplazar con:" msgid "Romanian" msgstr "Rumano" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ruso" @@ -1720,9 +1726,14 @@ msgstr "Puerto {0} no encontrado.\n¿Reintentar la subida con otro puerto?" msgid "Serial ports" msgstr "Puertos Serie" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Ajustes" #: Base.java:1681 msgid "Settings issues" @@ -1835,10 +1846,6 @@ msgstr "Arrancando..." msgid "Sunshine" msgstr "Sol" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sueco" @@ -1955,12 +1962,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "La carpeta sketchbook especificada contiene tu copia del IDE.\nPor favor, escoge otra carpeta diferente para tus bocetos." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Third-party platform.txt does no define un compiler.path. Por favor, reporta esto al mantenedor de hardware third-party.javascript:;" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2033,6 +2034,11 @@ msgstr "Imposible conectarse: reintentando" msgid "Unable to connect: wrong password?" msgstr "Imposible conectar: contraseña incorrecta?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Imposible abrir el monitor serial" @@ -2046,15 +2052,20 @@ msgstr "Incapaz de abrir el plotter serie" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Incapaz de alcanzar Arduino.cc por posibles problemas de red." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Tipo de excepción no detectada: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Deshacer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2103,10 +2114,6 @@ msgstr "Subiendo a la Placa I/O..." msgid "Uploading..." msgstr "Subiendo..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Usar selección para buscar" @@ -2118,7 +2125,7 @@ msgstr "Usar editor externo" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Nombre usuario:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -2181,6 +2188,16 @@ msgstr "Vietnamés" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2224,6 +2241,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Atención: platform.txt del núcleo '{0}' contiene {1} desfasada, automáticamente convertida a {2}. Considera el actualizar este núcleo." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2478,6 +2501,16 @@ msgstr "{0} ficheros añadidos al programa." msgid "{0} libraries" msgstr "{0} librerías" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_es.properties b/arduino-core/src/processing/app/i18n/Resources_es.properties index 43e2cc1c65c..f98f38f5f6c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_es.properties +++ b/arduino-core/src/processing/app/i18n/Resources_es.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # David Martin Garcia , 2012 # Miguel \u00c1ngel Barrio V\u00e1zquez , 2012 # Erik Fargas , 2015 @@ -15,7 +16,7 @@ # Moritz Werner Casero , 2015 # Pedro Luis , 2015 # Salvador Parra Camacho , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Spanish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: es\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Spanish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: es\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requiere reiniciar Arduino) @@ -34,9 +35,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rat\u00f3n' s\u00f3lo soportado por Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3lo cuando Arduino no est\u00e1 corriendo) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir ya no est\u00e1 soportado @@ -205,10 +212,10 @@ Auto\ Format=Auto Formato Auto\ Format\ finished.=Auto Formato terminado. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Auto-detectar configuraci\u00f3n del proxy #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=URL configuraci\u00f3n autom\u00e1tica proxy\: #: SerialMonitor.java:110 Autoscroll=Autoscroll @@ -220,22 +227,20 @@ Bad\ error\ line\:\ {0}=L\u00ednea error\: {0} #: Editor.java:2136 Bad\ file\ selected=Fichero mal Seleccionado -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Fichero primario del sketch malo o mala estructura de directorios en el sketch - #: ../../../processing/app/Preferences.java:149 Basque=Vasco #: ../../../processing/app/Preferences.java:139 Belarusian=Beloruso -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengal\u00ed (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Board {0}\:{1}\:{2} no define el ajuste ''build.board''. Auto-ajuste a\: {3} @@ -265,12 +270,12 @@ Both\ NL\ &\ CR=Ambos NL & CR #: Preferences.java:81 Browse=Explorar -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Carpeta de construcci\u00f3n no encontrada o no se puede escribir en ella - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opciones de compilaci\u00f3n cambiadas, reconstruyendo todo +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -319,21 +324,12 @@ Check\ for\ updates\ on\ startup=Comprobar actualizaciones al iniciar #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chino (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chino (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chino (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chino (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chino Simplificado - -#: Preferences.java:89 -Chinese\ Traditional=Chino Tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Clique para obtener una lista de las URLs de soporte para las tarjetas no oficiales @@ -418,9 +414,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pueden leer los ajustes predeterminados.\nNecesita reinstalar Arduino -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=No se puedo leer el archivo de preferencias de compilaci\u00f3n previo, recompilando todo. - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=No pude eliminar la versi\u00f3n antigua de {0} @@ -442,9 +435,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=No se pudo renombrar el programa. (2) #, java-format Could\ not\ replace\ {0}=No pude reemplazar {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=No se pudo escribir el archivo de preferencias de compilaci\u00f3n - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=No se pudo archivar el programa. @@ -463,15 +453,9 @@ Croatian=Croata #: Editor.java:1149 Editor.java:2699 Cut=Cortar -#: ../../../processing/app/Preferences.java:83 -Czech=Checo - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czech (Czech Republic) -#: Preferences.java:90 -Danish=Dan\u00e9s - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danish (Denmark) @@ -675,6 +659,15 @@ Estonian\ (Estonia)=Estonio (Estonia) #: Editor.java:516 Examples=Ejemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Exportar Binarios compilados @@ -768,7 +761,7 @@ Help=Ayuda Hindi=Hind\u00fa #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Nombre del Host\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u00bfPor qu\u00e9 no salvar el programa primero\nantes de intentar renombrarlo? @@ -840,6 +833,10 @@ Installing...=Instalando... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Libreria invalidad encontrada en {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -858,6 +855,9 @@ Library\ Manager=Gestor de Liber\u00edas #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Librer\u00eda a\u00f1adida a sus librer\u00edas. Revise el men\u00fa "Incluir Librer\u00eda" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=La librer\u00eda ya estaba instalada\: {0} versi\u00f3n {1} @@ -868,17 +868,18 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Cargando configuraci\u00f3n... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Poca memoria disponible, se pueden producir problemas de estabilidad. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malayo (Malasia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Gestionar Librer\u00edas #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Configuraci\u00f3n manual del proxy #: Preferences.java:107 Marathi=Marathi @@ -886,8 +887,9 @@ Marathi=Marathi #: Base.java:2112 Message=mensaje -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta el */ del final del /* comentario*/ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modo no soportado @@ -911,9 +913,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Se encontraron m\u00faltiples libre #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Debe especificar ex\u00e1ctamente un archivo de sketch -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nombre del nuevo fichero\: @@ -921,7 +920,7 @@ Name\ for\ new\ file\:=Nombre del nuevo fichero\: Nepali=Nepal\u00ed #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Red #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=Puertos de Red @@ -947,9 +946,6 @@ No=No #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Datos de autorizaci\u00f3n no encontrados -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No se ha seleccionado placa; por favor, seleccione una en el men\u00fa Herramientas> Placa - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Sin cambios necesarios para Auto Formato @@ -972,7 +968,7 @@ No\ line\ ending=Sin ajuste de l\u00ednea No\ parameters=Sin par\u00e1metros #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Sin proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No, en serio, toma un poco de aire fresco. @@ -998,15 +994,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=No se encontraron defi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Ninguno -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Noruego - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruego -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norwegian Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=No hay suficiente memoria, ver http\://www.arduino.cc/en/Guide/Troubleshooting\#size para obtener consejos sobre c\u00f3mo reducir su huella. @@ -1050,6 +1040,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Ir\u00e1n) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Por favor confirme la eliminaci\u00f3n de tarjetas @@ -1073,7 +1067,7 @@ Polish=Polaco Port=Puerto #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=N\u00famero de puerto\: #: ../../../processing/app/Preferences.java:151 Portugese=Portugues @@ -1123,10 +1117,6 @@ Problem\ accessing\ files\ in\ folder\ =Problema accediendo a los archivos de la #: Base.java:1673 Problem\ getting\ data\ folder=Problema al adquirir carpeta de datos. -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problema al mover {0} a la carpeta de construcci\u00f3n - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema subiendo a la placa. Visita http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugerencias. @@ -1139,9 +1129,16 @@ Processor=Procesador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Salir +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Rehacer @@ -1181,6 +1178,14 @@ Replace\ with\:=Reemplazar con\: #: Preferences.java:113 Romanian=Rumano +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ruso @@ -1258,8 +1263,12 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Puertos Serie +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Ajustes #: Base.java:1681 Settings\ issues=Cuestiones de ajustes @@ -1338,9 +1347,6 @@ Starting...=Arrancando... #: Base.java:540 Sunshine=Sol -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Sueco @@ -1405,9 +1411,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=La carpeta sketchbook especificada contiene tu copia del IDE.\nPor favor, escoge otra carpeta diferente para tus bocetos. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Third-party platform.txt does no define un compiler.path. Por favor, reporta esto al mantenedor de hardware third-party.javascript\:; - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ese fichero ya se hab\u00eda copiado a la ubicaci\u00f3n\ndesde la que lo quer\u00edas a\u00f1adir,,,\nNo har\u00e9 nada. @@ -1459,6 +1462,10 @@ Unable\ to\ connect\:\ retrying=Imposible conectarse\: reintentando #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Imposible conectar\: contrase\u00f1a incorrecta? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Imposible abrir el monitor serial @@ -1469,13 +1476,17 @@ Unable\ to\ open\ serial\ plotter=Incapaz de abrir el plotter serie #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Incapaz de alcanzar Arduino.cc por posibles problemas de red. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Tipo de excepci\u00f3n no detectada\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Deshacer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=No se ha especificado plataforma, no hay lanzador disponible.\nPara activar URL o carpetas, a\u00f1ade una l\u00ednea a\n"launcher\=/ruta/a/aplicaci\u00f3n/" en preferences.txt @@ -1510,9 +1521,6 @@ Uploading\ to\ I/O\ Board...=Subiendo a la Placa I/O... #: Sketch.java:1622 Uploading...=Subiendo... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Usar selecci\u00f3n para buscar @@ -1521,7 +1529,7 @@ Use\ external\ editor=Usar editor externo #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=Nombre usuario\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -1570,6 +1578,14 @@ Vietnamese=Vietnam\u00e9s #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ATENCI\u00d3N\: la librer\u00eda {0} pretende ejecutarse sobre arquitectura(s) {1} y puede ser incompatible con tu actual tarjeta la cual corre sobre arquitectura(s) {2}. @@ -1599,6 +1615,9 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=ATENC #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Atenci\u00f3n\: platform.txt del n\u00facleo '{0}' contiene {1} desfasada, autom\u00e1ticamente convertida a {2}. Considera el actualizar este n\u00facleo. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Atenci\u00f3n\: platform.txt del n\u00facleo '{0}' pierde la propiedad {1}, autom\u00e1ticamente fijada a {2}. Considera el actualizar este n\u00facleo. @@ -1759,6 +1778,14 @@ version\ {0}=versi\u00f3n {0} #, java-format {0}\ libraries={0} librer\u00edas +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} retorn\u00f3 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_et.po b/arduino-core/src/processing/app/i18n/Resources_et.po index 5ff1242dca7..431a4a0ca3a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.po +++ b/arduino-core/src/processing/app/i18n/Resources_et.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2013 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Estonian (http://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "'Keyboard' töötab vaid Arduino Leonardo peal" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' töötab vaid Arduino Leonardo peal" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(Arduino ei tohi muutmise ajal käia)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "Viga real: {0}" msgid "Bad file selected" msgstr "Vigane fail valitud" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "lisa NL+CR (\\\\r\\\\n)" msgid "Browse" msgstr "Sirvi" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "Käivitamisel kontrolli uuendusi" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Hiina (lihtsustatud)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Traditsiooniline Hiina" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Visandi ümbernimetamine nurjus. (2)" msgid "Could not replace {0}" msgstr "{0} pole võimalik asendada" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Visandi arhiveerimine ebaõnnestus" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "Lõika" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Taani" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "Näited" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Itaalia" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "Leedu" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "Marathi" msgid "Message" msgstr "Teade" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Uue faili nimi:" @@ -1294,10 +1293,6 @@ msgstr "Ei" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Automaatvormindus ei vaja muudatusi." @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Pärsia" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Probleem andmekausta nime leidmisega" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Probleem {0} liigutamisega kompileerimiskausta" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "Pogrammaator" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Välju" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Tee uuesti" @@ -1607,6 +1603,16 @@ msgstr "Asenda järgnevaga:" msgid "Romanian" msgstr "Rumeenia" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Vene" @@ -1712,6 +1718,11 @@ msgstr "Jadaport {0} puudub.\nProovin mõnda teist porti?" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Särasilm" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Võta tagasi" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "I/O plaadile laadimine…" msgid "Uploading..." msgstr "Üleslaadimine…" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Kasuta otsimiseks valikut" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Külasta Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "Visandisse on lisatud {0} faili." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_et.properties b/arduino-core/src/processing/app/i18n/Resources_et.properties index e990a8c41af..6cda8e0aca2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(vajab Arduino taask\u00e4ivitamist) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' t\u00f6\u00f6tab vaid Arduino Leonardo peal +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino ei tohi muutmise ajal k\u00e4ia) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=Viga real\: {0} #: Editor.java:2136 Bad\ file\ selected=Vigane fail valitud -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=lisa NL+CR (\\\\r\\\\n) #: Preferences.java:81 Browse=Sirvi -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=K\u00e4ivitamisel kontrolli uuendusi #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Hiina (lihtsustatud) - -#: Preferences.java:89 -Chinese\ Traditional=Traditsiooniline Hiina - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa lugeda vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Ei saanud {0} vana versiooni eemaldada @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2) #, java-format Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus @@ -455,15 +445,9 @@ Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ #: Editor.java:1149 Editor.java:2699 Cut=L\u00f5ika -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Taani - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Estonian=Eesti #: Editor.java:516 Examples=N\u00e4ited +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=Indoneesia #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Itaalia @@ -850,6 +847,9 @@ Latvian=L\u00e4ti #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=Leedu #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Marathi=Marathi #: Base.java:2112 Message=Teade -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Moving=Liigutamine #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Uue faili nimi\: @@ -939,9 +938,6 @@ No=Ei #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi. @@ -990,15 +986,9 @@ No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Persian=P\u00e4rsia #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ Setting\ the\ Platform=Platvormi valimise viga #: Base.java:1673 Problem\ getting\ data\ folder=Probleem andmekausta nime leidmisega -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probleem {0} liigutamisega kompileerimiskausta - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem plaadile \u00fcleslaadimisega. Vaata soovitusi probleemi lahendamiseks http\://www.arduino.cc/en/Guide/Troubleshooting\#upload @@ -1131,9 +1121,16 @@ Problem\ with\ rename=Probleem nime muutmisega #: Editor.java:704 Programmer=Pogrammaator +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=V\u00e4lju +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Tee uuesti @@ -1173,6 +1170,14 @@ Replace\ with\:=Asenda j\u00e4rgnevaga\: #: Preferences.java:113 Romanian=Rumeenia +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Vene @@ -1250,6 +1255,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=Hispaania #: Base.java:540 Sunshine=S\u00e4rasilm -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema. @@ -1451,6 +1454,10 @@ Troubleshooting=Probleemide lahendamine #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Troubleshooting=Probleemide lahendamine #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=V\u00f5ta tagasi +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Tundmatu platvorm, veebilehitseja puudub.\nVeebiaadresside avamiseks lisa\n"launcher\=/kaust/brauser" rida preferences.txt faili. @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=I/O plaadile laadimine\u2026 #: Sketch.java:1622 Uploading...=\u00dcleslaadimine\u2026 -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Kasuta otsimiseks valikut @@ -1562,6 +1570,14 @@ Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist #: Editor.java:1105 Visit\ Arduino.cc=K\u00fclasta Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=Hoiatus #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=\u00fcleslaadimise ajal #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} tagastas {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_et_EE.po b/arduino-core/src/processing/app/i18n/Resources_et_EE.po index ba98f88002e..08605559d00 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.po +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2012 # Georg, 2014 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Estonian (Estonia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "'Keyboard' on toetatud vaid Arduino Leonardo plaatidega" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' on toetatud vaid Arduino Leonardo plaatidega" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(Arduino ei tohi muutmise ajal käia)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "Viga real: {0}" msgid "Bad file selected" msgstr "Vigane fail valitud" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -321,15 +328,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Plaat" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "lisa NL+CR (\\r\\n)" msgid "Browse" msgstr "Sirvi" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Kompileerimise kaust on haihtunud või pole kirjutatav" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaaria" @@ -441,10 +449,6 @@ msgstr "Käivitamisel kontrolli uuendusi" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -453,14 +457,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Hiina (lihtsustatud)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Traditsiooniline Hiina" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "Visandi ümbernimetamine nurjus. (2)" msgid "Could not replace {0}" msgstr "{0} pole võimalik asendada" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Visandi arhiveerimine ebaõnnestus" @@ -642,18 +630,10 @@ msgstr "Horvaatia" msgid "Cut" msgstr "Lõika" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tšehhi" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Taani" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "" msgid "Examples" msgstr "Näited" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Itaalia" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "Leedu" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "Marathi" msgid "Message" msgstr "Teade" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Uue faili nimi:" @@ -1295,10 +1294,6 @@ msgstr "Ei" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Plaat pole valitud. Palun tee oma valik menüüs Tööriistad > Plaat." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Automaatvormindus ei vaja muudatusi." @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norra (Bokmål)" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "Pärsia" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Probleem andmekausta nime leidmisega" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Probleem {0} liigutamisega kompileerimiskausta" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "Processor" msgid "Programmer" msgstr "Pogrammaator" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Välju" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Tee uuesti" @@ -1608,6 +1604,16 @@ msgstr "Asenda järgnevaga:" msgid "Romanian" msgstr "Rumeenia" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Vene" @@ -1713,6 +1719,11 @@ msgstr "Jadaport {0} puudub.\nProovin mõnda teist porti?" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "Särasilm" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Tekkis eriline viga: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Võta tagasi" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "I/O plaadile laadimine..." msgid "Uploading..." msgstr "Üleslaadimine..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Kasuta otsimiseks valikut" @@ -2174,6 +2181,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Külasta Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "Visandisse on lisatud {0} faili." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties index e55735eca49..0d88c06e710 100644 --- a/arduino-core/src/processing/app/i18n/Resources_et_EE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_et_EE.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Cougar , 2012 # Georg, 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et_EE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et_EE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vajab Arduino taask\u00e4ivitamist) @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' on toetatud vaid Arduino Leonardo plaatidega +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino ei tohi muutmise ajal k\u00e4ia) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=Viga real\: {0} #: Editor.java:2136 Bad\ file\ selected=Vigane fail valitud -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Plaat +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=lisa NL+CR (\\r\\n) #: Preferences.java:81 Browse=Sirvi -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Kompileerimise kaust on haihtunud v\u00f5i pole kirjutatav - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaaria @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=K\u00e4ivitamisel kontrolli uuendusi #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Hiina (lihtsustatud) - -#: Preferences.java:89 -Chinese\ Traditional=Traditsiooniline Hiina - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ re-save\ sketch=Visandi uuesti salvestamine eba\u00f5nnestus #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ei saa avada vaikimisi seadeid.\nArduino tuleb uuesti paigaldada. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Ei saanud {0} vana versiooni eemaldada @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Visandi \u00fcmbernimetamine nurjus. (2) #, java-format Could\ not\ replace\ {0}={0} pole v\u00f5imalik asendada -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Visandi arhiveerimine eba\u00f5nnestus @@ -456,15 +446,9 @@ Croatian=Horvaatia #: Editor.java:1149 Editor.java:2699 Cut=L\u00f5ika -#: ../../../processing/app/Preferences.java:83 -Czech=T\u0161ehhi - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Taani - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Estonian=Eesti #: Editor.java:516 Examples=N\u00e4ited +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Indonesian=Indoneesia #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Itaalia @@ -851,6 +848,9 @@ Latvian=L\u00e4ti #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=Leedu #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Marathi=Marathi #: Base.java:2112 Message=Teade -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Moving=Liigutamine #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Uue faili nimi\: @@ -940,9 +939,6 @@ No=Ei #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plaat pole valitud. Palun tee oma valik men\u00fc\u00fcs T\u00f6\u00f6riistad > Plaat. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Automaatvormindus ei vaja muudatusi. @@ -991,15 +987,9 @@ No\ reference\ available\ for\ "{0}"="{0}" kohta juhend puudub #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norra (Bokm\u00e5l) -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=P\u00e4rsia #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ Setting\ the\ Platform=Platvormi valimise viga #: Base.java:1673 Problem\ getting\ data\ folder=Probleem andmekausta nime leidmisega -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probleem {0} liigutamisega kompileerimiskausta - #: 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. @@ -1132,9 +1122,16 @@ Processor=Processor #: Editor.java:704 Programmer=Pogrammaator +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=V\u00e4lju +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Tee uuesti @@ -1174,6 +1171,14 @@ Replace\ with\:=Asenda j\u00e4rgnevaga\: #: Preferences.java:113 Romanian=Rumeenia +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Vene @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=Hispaania #: Base.java:540 Sunshine=S\u00e4rasilm -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=See fail on juba kopeeritud kohta, kust sa seda\nkopeerida \u00fcritad. Seega ei pea ma midagi tegema. @@ -1452,6 +1455,10 @@ Ukrainian=Ukraina #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1462,13 +1469,17 @@ Ukrainian=Ukraina #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Tekkis eriline viga\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=V\u00f5ta tagasi +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Tundmatu platvorm, veebilehitseja puudub.\nVeebiaadresside avamiseks lisa\n"launcher\=/kaust/brauser" rida preferences.txt faili. @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=I/O plaadile laadimine... #: Sketch.java:1622 Uploading...=\u00dcleslaadimine... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Kasuta otsimiseks valikut @@ -1563,6 +1571,14 @@ Verify\ code\ after\ upload=Kontrolli koodi peale \u00fcleslaadimist #: Editor.java:1105 Visit\ Arduino.cc=K\u00fclasta Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=Hoiatus #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ upload=\u00fcleslaadimise ajal #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} tagastas {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_da.po b/arduino-core/src/processing/app/i18n/Resources_eu.po similarity index 70% rename from arduino-core/src/processing/app/i18n/Resources_da.po rename to arduino-core/src/processing/app/i18n/Resources_eu.po index e516523ec69..b449cd6bf6e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da.po +++ b/arduino-core/src/processing/app/i18n/Resources_eu.po @@ -6,23 +6,28 @@ # Translators: # Translators: # Translators: +# Translators: +# @atzerritik, 2014 +# Ivan Barquero , 2014 +# Ivan Barquero , 2014 +# Zylu , 2014 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" -"Language-Team: Danish (http://www.transifex.com/mbanzi/arduino-ide-15/language/da/)\n" +"Language-Team: Basque (http://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: da\n" +"Language: eu\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "" +msgstr "(Arduinoa berabiarazi behar da)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format @@ -36,14 +41,24 @@ msgstr "" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "'Teklatua' Arduino Leonardo-rekin bateragarria da soilik" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" +msgstr "'Sagua' Arduino Leonardo-rekin bateragarria da soilik" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" msgstr "" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" +msgstr "(soilik editatu Arduino lanean ez dagoenean )" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" msgstr "" #: ../../../processing/app/helpers/CommandlineParser.java:149 @@ -58,7 +73,7 @@ msgstr "" #: Sketch.java:746 msgid ".pde -> .ino" -msgstr "" +msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format @@ -82,28 +97,28 @@ msgid "" " font: 11pt \"Lucida Grande\"; margin-top: 8px } Do you " "want to save changes to this sketch
before closing?

If you don't " "save, your changes will be lost." -msgstr "" +msgstr " Sketch honetarako aldaketak gorde nahi dituzu
itxi aurretik?

Ez baduzu gordetzen, zure aldaketak galduko dira." #: Sketch.java:398 #, java-format msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" +msgstr "Dagoeneko \"{0}\" izeneko fitxategi bat existitzen da \"{1}\"-n" #: Editor.java:2169 #, java-format msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" +msgstr "Dagoeneko {0} izeneko karpeta bat existitzen da. Ezin da sketcha ireki" #: Base.java:2690 #, java-format msgid "A library named {0} already exists" -msgstr "" +msgstr "Dagoeneko {0} izeneko liburutegi bat existitzen da" #: UpdateCheck.java:103 msgid "" "A new version of Arduino is available,\n" "would you like to visit the Arduino download page?" -msgstr "" +msgstr "Arduinoren bertsio berri bat eskuragarri dago,\nArduinoren deskargako orria bisitatzea nahi duzu?" #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format @@ -116,7 +131,7 @@ msgstr "" #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "Arduinori buruz" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." @@ -124,7 +139,7 @@ msgstr "" #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "Fitxategia gehitu..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" @@ -140,7 +155,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:96 msgid "Albanian" -msgstr "" +msgstr "Albaniera" #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 @@ -153,7 +168,7 @@ msgid "" "An error occurred while trying to fix the file encoding.\n" "Do not attempt to save this sketch as it may overwrite\n" "the old version. Use Open to re-open the sketch and try again.\n" -msgstr "" +msgstr "Arazo bat gertatu da fitxategiaren kodifikazioa konpontzen saiatzean.\nEz saiatu sketch hau gordetzen, aurreko bertsioa gainidatzi bait dezake.\nZabaldu sakatu sketch-a berriro zabaltzeko eta saiatu berriro.\n" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" @@ -177,41 +192,41 @@ msgstr "" msgid "" "An unknown error occurred while trying to load\n" "platform-specific code for your machine." -msgstr "" +msgstr "Akats ezezagun bat gertatu da kargatzen saiatzerakoan\nkodigoa zure makonaren plataformako espezifikoa da." #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "Arabiera" #: Preferences.java:86 msgid "Aragonese" -msgstr "" +msgstr "Aragoiera" #: tools/Archiver.java:48 msgid "Archive Sketch" -msgstr "" +msgstr "Sketch-a gorde" #: tools/Archiver.java:109 msgid "Archive sketch as:" -msgstr "" +msgstr "Gorde sketcha honela:" #: tools/Archiver.java:139 msgid "Archive sketch canceled." -msgstr "" +msgstr "Sketch-aren gordetzea bertan behera utzi da.." #: tools/Archiver.java:75 msgid "" "Archiving the sketch has been canceled because\n" "the sketch couldn't save properly." -msgstr "" +msgstr "Sketch-aren gordetzea bertan behera utzi da\nsketch-a ezin bait da ondo gorde." #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "Arduino ARM (32-bit) Plakak" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" -msgstr "" +msgstr "Arduino AVR Plakak" #: Editor.java:2137 msgid "" @@ -223,42 +238,42 @@ msgstr "" msgid "" "Arduino cannot run because it could not\n" "create a folder to store your settings." -msgstr "" +msgstr "Arduinok ezin du funtzionatu ezin duelako karpeta\nbat zure konfigurazioa gordetzeko sortu." #: Base.java:1889 msgid "" "Arduino cannot run because it could not\n" "create a folder to store your sketchbook." -msgstr "" +msgstr "Arduinok ezin du funtzionatu ezin duelako karpeta\nbat zure sketchbook-a gordetzeko sortu." #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "Arduino:" #: Sketch.java:588 #, java-format msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" +msgstr "\"{0}\" ezabatu nahi duzula seguru zara?" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" -msgstr "" +msgstr "Sketch hau ezabatu nahi duzula seguru zara?" #: ../../../processing/app/Base.java:356 msgid "Argument required for --board" -msgstr "" +msgstr "Argumentua beharrezkoa da --plakarako" #: ../../../processing/app/Base.java:363 msgid "Argument required for --port" -msgstr "" +msgstr "Argumentua beharrezkoa da --atakarako" #: ../../../processing/app/Base.java:377 msgid "Argument required for --pref" -msgstr "" +msgstr "Argumentua beharrezkoa da --pref arako" #: ../../../processing/app/Base.java:384 msgid "Argument required for --preferences-file" -msgstr "" +msgstr "Argumentua beharrezkoa da --Hobespen fitxategirako" #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 @@ -268,11 +283,11 @@ msgstr "" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "Armeniera" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" -msgstr "" +msgstr "Bable" #: ../../../processing/app/debug/Compiler.java:145 msgid "Authorization required" @@ -280,11 +295,11 @@ msgstr "" #: tools/AutoFormat.java:91 msgid "Auto Format" -msgstr "" +msgstr "Formatu Automatikoa." #: tools/AutoFormat.java:944 msgid "Auto Format finished." -msgstr "" +msgstr "Formatu automatikoa bukatu da." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" @@ -296,36 +311,33 @@ msgstr "" #: SerialMonitor.java:110 msgid "Autoscroll" -msgstr "" +msgstr "Autoscroll" #: Editor.java:2619 #, java-format msgid "Bad error line: {0}" -msgstr "" +msgstr "Errore lerroa: {0}" #: Editor.java:2136 msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" +msgstr "Hautatutako fitxategi txarra da" #: ../../../processing/app/Preferences.java:149 msgid "Basque" -msgstr "" +msgstr "Euskara" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" +msgstr "Bielorrusiera" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" +msgstr "Plaka" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" msgstr "" #: ../../../processing/app/debug/TargetBoard.java:42 @@ -333,11 +345,11 @@ msgstr "" msgid "" "Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" " {3}" -msgstr "" +msgstr "Plaka {0}:{1}:{2} ez du definitzen ''build.board'' lehentasuna. Auto-seta: {3} etara" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "Plaka:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" @@ -358,39 +370,39 @@ msgstr "" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "Bosniera" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "NL & CR Biak" #: Preferences.java:81 msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" +msgstr "Bilatu" #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" +msgstr "Konpilazio-aukerak aldatu dira, guztia berkonpilatzen" + +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" msgstr "" #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "Bulgariera" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" -msgstr "" +msgstr "Myanmarniera" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "Idatzi Bootloader-a" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" +msgstr "Bootloader-a S/I plakaN idazten (honek minutu bat har dezake)..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." @@ -408,16 +420,16 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "Canada-frantses" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 msgid "Cancel" -msgstr "" +msgstr "Utzi" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "Ezin da berrizendatu" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" @@ -425,39 +437,27 @@ msgstr "" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "Orga-itzulera" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "Katalana" #: Preferences.java:419 msgid "Check for updates on startup" -msgstr "" +msgstr "Eguneratzeak bilatzen ditu Hasieran" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "Txinera(Txina)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "Txinera (Taiwan)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" +msgstr "Txinera (Taiwan)(Big5)" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" @@ -465,11 +465,11 @@ msgstr "" #: Editor.java:521 Editor.java:2024 msgid "Close" -msgstr "" +msgstr "Itxi" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" -msgstr "" +msgstr "Iruzkina / iruzkina desegitea" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " @@ -477,94 +477,94 @@ msgstr "" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." -msgstr "" +msgstr "Sketch konpilatzen" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "" +msgstr "Kopiatu" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "" +msgstr "HTMLa bezala kopia" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "Errore-mezua kopia ezazu" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" -msgstr "" +msgstr "Fororako Kopia" #: Sketch.java:1089 #, java-format msgid "Could not add ''{0}'' to the sketch." -msgstr "" +msgstr "Ezin izango litzateke gehitu ''{0}'' sketchera." #: Editor.java:2188 msgid "Could not copy to a proper location." -msgstr "" +msgstr "Ezin izan zen kopiatu kokapen egokian." #: Editor.java:2179 msgid "Could not create the sketch folder." -msgstr "" +msgstr "Sketch-karpeta ezin da sortu." #: Editor.java:2206 msgid "Could not create the sketch." -msgstr "" +msgstr "Sketcha ezin da sortu" #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "" +msgstr " \"{0}\" ezin da ezabatu" #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "" +msgstr "Ezin izango litzateke ezabatu oraingoa ''{0}'' fitxategia." #: Base.java:2533 Base.java:2556 #, java-format msgid "Could not delete {0}" -msgstr "" +msgstr "Ezin izango litzateke ezabatu {0}" #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" +msgstr "Ezin du boards.tx-ik aurkitu {0}-etan. -1,5 bertsioaren aurrekoa da ?" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format msgid "Could not find tool {0}" -msgstr "" +msgstr "Ez du {0} tresna aurkitzen" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format msgid "Could not find tool {0} from package {1}" -msgstr "" +msgstr "Ez du pakete {1}-eko tresna {0} aurkitzen" #: Base.java:1934 #, java-format msgid "" "Could not open the URL\n" "{0}" -msgstr "" +msgstr "URL-a ezin da ireki\n{0}" #: Base.java:1958 #, java-format msgid "" "Could not open the folder\n" "{0}" -msgstr "" +msgstr "Karpeta ezin da ireki\n{0}" #: Sketch.java:1769 msgid "" "Could not properly re-save the sketch. You may be in trouble at this point,\n" "and it might be time to copy and paste your code to another text editor." -msgstr "" +msgstr "Ez zen ahal izan sketcha zentzu hertsian gorde. Arazoetan egon zaitezke puntu honetan,\neta denbora izan liteke kopiatu eta zure kodea beste testu-editore batengana itsatsi." #: Sketch.java:1768 msgid "Could not re-save sketch" -msgstr "" +msgstr "Ezin izango luke gorde sketcha" #: Theme.java:52 msgid "" @@ -576,89 +576,73 @@ msgstr "" msgid "" "Could not read default settings.\n" "You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" +msgstr "Ezarpen lehenetsiak ezin dira irakurri.\nArduino Instalatu berriro behar izango duzu." #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" -msgstr "" +msgstr "Ezin izango litzateke kendu bertsio zaharra{0}" #: Sketch.java:483 Sketch.java:528 #, java-format msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" +msgstr "Ezin izango luke berrizendatu \"{0}\"-a \"{1}\"-ra" #: Sketch.java:475 msgid "Could not rename the sketch. (0)" -msgstr "" +msgstr "Ezin izango luke berrizendatu sketcha. (0)" #: Sketch.java:496 msgid "Could not rename the sketch. (1)" -msgstr "" +msgstr "Ezin izango luke berrizendatu sketcha. (1)" #: Sketch.java:503 msgid "Could not rename the sketch. (2)" -msgstr "" +msgstr "Ezin izango luke berrizendatu sketcha. (2)" #: Base.java:2492 #, java-format msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" +msgstr "Ezin izango luke ordeztu {0}" #: tools/Archiver.java:74 msgid "Couldn't archive sketch" -msgstr "" +msgstr "Sketcha ezin da artxibatu" #: Sketch.java:1647 msgid "Couldn't determine program size: {0}" -msgstr "" +msgstr "Ezin izango luke erabaki programa-neurria: {0}" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "" +msgstr "Ezin da egin" #: debug/BasicUploader.java:209 msgid "" "Couldn't find a Board on the selected port. Check that you have the correct " "port selected. If it is correct, try pressing the board's reset button " "after initiating the upload." -msgstr "" +msgstr "Ezin du inongo plakarik aurkitu aukeratutako atakan. Ataka zuzena duzula hautatuta egiaztatu ezazu. Zuzena bada, kargatu hasi ondoren reset-botoia sakatzen du." #: ../../../processing/app/Preferences.java:82 msgid "Croatian" -msgstr "" +msgstr " kroaziera" #: Editor.java:1149 Editor.java:2699 msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" +msgstr "Ebaki" #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" #: Editor.java:1224 Editor.java:2765 msgid "Decrease Indent" -msgstr "" +msgstr "Txikitu koska" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" @@ -666,21 +650,21 @@ msgstr "" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" -msgstr "" +msgstr "Ezabatu" #: debug/Uploader.java:199 msgid "" "Device is not responding, check the right serial port is selected or RESET " "the board right before exporting" -msgstr "" +msgstr "Gailuak ez du erantzuten, egiaztatzen du serieko ataka zuzena hau aukeratuta edo resetea plaka esportatu baino lehen" #: tools/FixEncoding.java:57 msgid "Discard all changes and reload sketch?" -msgstr "" +msgstr "Aldaketa guztiak baztertzen dituzu eta sketcha kargatzen duzu?" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "Lerro-zenbakiak erakusten ditu" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format @@ -691,15 +675,15 @@ msgstr "" #: Editor.java:2064 msgid "Don't Save" -msgstr "" +msgstr "Ez Gorde" #: Editor.java:2275 Editor.java:2311 msgid "Done Saving." -msgstr "" +msgstr "Gordeta bukatu" #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "Bootloader-erreketa bukatuta." #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 @@ -708,11 +692,11 @@ msgstr "" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "konpilazio eginda." #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "Inprimaketa bukatu du." #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" @@ -720,7 +704,7 @@ msgstr "" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "Datu-karga bukatuta du." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format @@ -751,11 +735,11 @@ msgstr "" #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "Nederlandera" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "Nederlandera (Holanda)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" @@ -763,15 +747,15 @@ msgstr "" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "Editatu" #: Preferences.java:370 msgid "Editor font size: " -msgstr "" +msgstr " Letra-tamaina Editorea:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "Hizkuntza editorea:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" @@ -779,11 +763,11 @@ msgstr "" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "Ingeles" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "Ingeles ( Ingalaterra )" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 @@ -796,21 +780,21 @@ msgstr "" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "Ingurunea" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 msgid "Error" -msgstr "" +msgstr "Errore" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "Akatsa fitxategi bat gehitzerakoan" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "konpilazio-errore" #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format @@ -819,24 +803,24 @@ msgstr "" #: Base.java:1674 msgid "Error getting the Arduino data folder." -msgstr "" +msgstr "Arazoak Arduino-ko karpetaren datuak irakurtzerakoan" #: Serial.java:593 #, java-format msgid "Error inside Serial.{0}()" -msgstr "" +msgstr "Akatsa Serial.{0}() -ean" #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "Karga-errore {0}" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "''{0}'' hutseko irekierako serieko ataka." #: ../../../processing/app/Serial.java:119 #, java-format @@ -847,14 +831,14 @@ msgstr "" #: Preferences.java:277 msgid "Error reading preferences" -msgstr "" +msgstr "Hutseko irakurketako lehentasunak" #: Preferences.java:279 #, java-format msgid "" "Error reading the preferences file. Please delete (or move)\n" "{0} and restart Arduino." -msgstr "" +msgstr "Lehentasun-fitxategia irakurri hutsa. Mesedez ezabatu ezazu (edo eraman) \n{0} eta Arduino berrabiarazi." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 @@ -864,20 +848,20 @@ msgstr "" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " -msgstr "" +msgstr "Aurkikuntza-metodoa hasiz hutsa:" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "Hutsa ukitu ''{0}'' serieko ataka." #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." -msgstr "" +msgstr "Akatsa bootloaderak erretzen diren bitartean." #: ../../../processing/app/Editor.java:2555 msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" +msgstr "Bootloader-a erretzerakoan hutsa: desagertu {0} konfigurazio-parametroa" #: ../../../../../app/src/processing/app/Editor.java:1940 msgid "Error while compiling: missing '{0}' configuration parameter" @@ -886,11 +870,11 @@ msgstr "" #: SketchCode.java:83 #, java-format msgid "Error while loading code {0}" -msgstr "" +msgstr "Kodea {0} kargatzerakoan hutsa" #: Editor.java:2567 msgid "Error while printing." -msgstr "" +msgstr "Inprimatzerakoan hutsa." #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" @@ -899,7 +883,7 @@ msgstr "" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" +msgstr "Kargatzerakoan hutsa: desagertu {0} konfigurazio-parametroa" #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 @@ -913,14 +897,26 @@ msgstr "" #: Preferences.java:93 msgid "Estonian" -msgstr "" +msgstr "Estoniera" #: ../../../processing/app/Preferences.java:146 msgid "Estonian (Estonia)" -msgstr "" +msgstr "Estoniera (Estonia)" #: Editor.java:516 msgid "Examples" +msgstr "Adibideak" + +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." msgstr "" #: ../../../../../app/src/processing/app/Editor.java:750 @@ -930,15 +926,15 @@ msgstr "" #: ../../../processing/app/Base.java:416 #, java-format msgid "Failed to open sketch: \"{0}\"" -msgstr "" +msgstr "Sketcha irekitzeko huts eginda: \"{0}\"" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "Fitxategi" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "Filipiniera" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." @@ -946,36 +942,36 @@ msgstr "" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" -msgstr "" +msgstr "Bilatu" #: Editor.java:1249 msgid "Find Next" -msgstr "" +msgstr "Aurkitu hurrengoa" #: Editor.java:1259 msgid "Find Previous" -msgstr "" +msgstr "Aurkitu aurrekoa" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" -msgstr "" +msgstr "Aipamen bidezko dei" #: Editor.java:1234 msgid "Find..." -msgstr "" +msgstr "Bilatu..." #: FindReplace.java:80 msgid "Find:" -msgstr "" +msgstr "Aurkitu" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "Finlandiera" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "" +msgstr "Kodea konpontzen & kargatu" #: ../../../processing/app/BaseNoGui.java:318 msgid "" @@ -990,15 +986,15 @@ msgstr "" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "Frantses" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "Maiz egiten diren galderak" #: Preferences.java:96 msgid "Galician" -msgstr "" +msgstr "Galiziera" #: ../../../../../app/src/processing/app/Preferences.java:176 msgid "Galician (Spain)" @@ -1010,43 +1006,43 @@ msgstr "" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "Georgiera" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "Aleman" #: Editor.java:1054 msgid "Getting Started" -msgstr "" +msgstr "Abiarazi" #: ../../../processing/app/Sketch.java:1646 #, java-format msgid "" "Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " "for local variables. Maximum is {1} bytes." -msgstr "" +msgstr "Aldagai osoek memoria dinamikoko {0} byte ({2}%%) darabiltzate, {3} byte uzten dituzte aldagai lokaletarako. Maximoa {1} byte dira." #: ../../../processing/app/Sketch.java:1651 #, java-format msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" +msgstr "Aldagai osoek memoria dinamikoko {0} byte darabiltzate." #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "Greziera" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "Hebreera" #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "Laguntza" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "Indiera" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" @@ -1056,27 +1052,27 @@ msgstr "" msgid "" "How about saving the sketch first \n" "before trying to rename it?" -msgstr "" +msgstr "sketcha hura izendatzen saiatu baino lehen \nlehenik eta behin ez duzulako gordetzen" #: Sketch.java:882 msgid "How very Borges of you" -msgstr "" +msgstr "Hor konpon, Marianton!" #: Preferences.java:100 msgid "Hungarian" -msgstr "" +msgstr "Hungariera" #: FindReplace.java:96 msgid "Ignore Case" -msgstr "" +msgstr "Ezikusi Maiuskula/minuskula" #: Base.java:1058 msgid "Ignoring bad library name" -msgstr "" +msgstr "Liburutegi izen txarra ez ikusi egin" #: Base.java:1436 msgid "Ignoring sketch with bad name" -msgstr "" +msgstr "Ez ikusi egin izen txarrarekiko esketcha" #: ../../../processing/app/Sketch.java:736 msgid "" @@ -1087,7 +1083,7 @@ msgid "" "disable this in the Preferences dialog.\n" "\n" "Save sketch and update its extension?" -msgstr "" +msgstr "1.0 Arduinon, ez-betetzeko fitxategiko luzapena aldatu da\n.pde-tatik .ino.-etatik sketch berriak (sortutako horiek barne\n\"Save-As-en\") erabiliko du luzapena berria. Luzapena\noraingo sketchen eguneratuko da gorde, baina ahal zara\nhau desgaitu ezazu Lehentasun-elkarrizketan.\n\nSketcha gordetzen duzu eta bere luzapena eguneratzen duzu?" #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" @@ -1100,11 +1096,11 @@ msgstr "" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" -msgstr "" +msgstr "Handitu koska" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "Indonesiera" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." @@ -1149,23 +1145,28 @@ msgstr "" #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" +msgstr " {0}: {1}-etan aurkitutako liburutegi okerra" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." msgstr "" #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "Italiera" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "Japoniera" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "Koreera" #: Preferences.java:105 msgid "Latvian" -msgstr "" +msgstr "Letoniera" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" @@ -1175,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1182,18 +1187,19 @@ msgstr "" #: Preferences.java:106 msgid "Lithuaninan" -msgstr "" +msgstr "Lituaniera" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1206,14 +1212,15 @@ msgstr "" #: Preferences.java:107 msgid "Marathi" -msgstr "" +msgstr "Marathiera" #: Base.java:2112 msgid "Message" -msgstr "" +msgstr "Mezua" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1226,11 +1233,11 @@ msgstr "" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" -msgstr "" +msgstr "Zuzenean fitxategian lehentasun gehiago editatu ahal dituzte" #: Editor.java:2156 msgid "Moving" -msgstr "" +msgstr "Mugitzen" #: ../../../processing/app/BaseNoGui.java:484 msgid "Multiple files not supported" @@ -1243,19 +1250,15 @@ msgstr "" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" +msgstr "Zehaztu behar du sketch-fitxategi zehazki bat" #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "Fitxategi berriaren izena" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "Nepalera" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" @@ -1267,39 +1270,35 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 msgid "Network upload using programmer not supported" -msgstr "" +msgstr "Laguntzarik ez dago artxibo-kargarako sarean programagailua erabiliz" #: EditorToolbar.java:41 Editor.java:493 msgid "New" -msgstr "" +msgstr "Berria" #: EditorHeader.java:292 msgid "New Tab" -msgstr "" +msgstr "Fitxa berri" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "Lerro-amaiera" #: EditorHeader.java:340 msgid "Next Tab" -msgstr "" +msgstr "Hurrengo fitxa" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" -msgstr "" +msgstr "Ez" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." -msgstr "" +msgstr "Aldaketa bat ere beharrezko Auto Formaturako." #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" @@ -1311,15 +1310,15 @@ msgstr "" #: Editor.java:373 msgid "No files were added to the sketch." -msgstr "" +msgstr "Fitxategi bat ere ez zioten sketchari gehitu." #: Platform.java:167 msgid "No launcher available" -msgstr "" +msgstr "Inongo jaurtitzailerik-Launcher ez dago" #: SerialMonitor.java:112 msgid "No line ending" -msgstr "" +msgstr "Ez lerro-bukaera" #: ../../../processing/app/BaseNoGui.java:665 msgid "No parameters" @@ -1331,12 +1330,12 @@ msgstr "" #: Base.java:541 msgid "No really, time for some fresh air for you." -msgstr "" +msgstr "Ez benetan, zuretzako aire freskoren baterako denbora." #: Editor.java:1872 #, java-format msgid "No reference available for \"{0}\"" -msgstr "" +msgstr "Aipamen erabilgarri bat ere {0}" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 @@ -1349,43 +1348,35 @@ msgstr "" #: ../../../processing/app/Sketch.java:204 msgid "No valid code files found" -msgstr "" +msgstr "Aurkitutako baliozko kode-fitxategi bat ere" #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format msgid "No valid hardware definitions found in folder {0}." -msgstr "" +msgstr "Karpetan {0} aurkitutako baliozko hardware-definizio bat ere." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" +msgstr " Norvegiera" #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " "for tips on reducing your footprint." -msgstr "" +msgstr "Memoria nahikorik ez dago ; bisita http://www.arduino.cc/en/Guide/Troubleshooting#size bere erabilera txikiagotzea bezala ikasteko." #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 msgid "OK" -msgstr "" +msgstr "OK" #: Sketch.java:992 Editor.java:376 msgid "One file added to the sketch." -msgstr "" +msgstr "Sketcherako fitxategi bat gehitu da." #: ../../../processing/app/BaseNoGui.java:455 msgid "Only --verify, --upload or --get-pref are supported" @@ -1393,7 +1384,7 @@ msgstr "" #: EditorToolbar.java:41 msgid "Open" -msgstr "" +msgstr "Ireki" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" @@ -1401,34 +1392,39 @@ msgstr "" #: Editor.java:2688 msgid "Open URL" -msgstr "" +msgstr "Ireki URLa." #: Base.java:636 msgid "Open an Arduino sketch..." -msgstr "" +msgstr "Arduino sketcha ireki ezazu" #: Base.java:903 Editor.java:501 msgid "Open..." -msgstr "" +msgstr "Ireki" #: Editor.java:563 msgid "Page Setup" -msgstr "" +msgstr "Prestatu orrialdea" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "Pasahitza:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" -msgstr "" +msgstr "Itsatsi" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "Persiera" #: ../../../processing/app/Preferences.java:161 msgid "Persian (Iran)" +msgstr "Persiera (Iran)" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 @@ -1441,11 +1437,11 @@ msgstr "" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" +msgstr "Mesedez SPI-liburutegia Sketchetik inportatu ezazu > Inportazioko Liburutegiko menua." #: ../../../processing/app/debug/Compiler.java:529 msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" +msgstr "Mesedez Wire liburutegia sketch > Import Library menutik inportatu ezazu." #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 @@ -1454,11 +1450,11 @@ msgstr "" #: Preferences.java:110 msgid "Polish" -msgstr "" +msgstr "Poloniera" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "Ataka" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" @@ -1466,19 +1462,19 @@ msgstr "" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "Portugalera" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "Portugalera (Brazil)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "Portugalera (Portugal)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" -msgstr "" +msgstr "Hobespenak" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." @@ -1486,82 +1482,86 @@ msgstr "" #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" -msgstr "" +msgstr "Aurrekoa" #: EditorHeader.java:326 msgid "Previous Tab" -msgstr "" +msgstr "Aurreko fitxa" #: Editor.java:571 msgid "Print" -msgstr "" +msgstr "Inprimatu" #: Editor.java:2571 msgid "Printing canceled." -msgstr "" +msgstr "Utzi inprimaketa." #: Editor.java:2547 msgid "Printing..." -msgstr "" +msgstr "Inprimatzen..." #: Base.java:1957 msgid "Problem Opening Folder" -msgstr "" +msgstr "Arazoko Irekierako Karpeta" #: Base.java:1933 msgid "Problem Opening URL" -msgstr "" +msgstr "Arazoak URLa irekitzerakoan" #: Base.java:227 msgid "Problem Setting the Platform" -msgstr "" +msgstr "Plataformaren Konfigurazio Arazoa" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 msgid "Problem accessing board folder /www/sd" -msgstr "" +msgstr "Arazoa plakako karpeta sartzerakoan dago /www/sd" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "Fitxategiak karpetan atzituz arazoa" #: Base.java:1673 msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" +msgstr "Arazoak karpetaren datuak irakurtzerakoan" #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " "http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" +msgstr "Plakaratzeko upload arazoa. http://www.arduino.cc/en/Guide/Troubleshooting#upload ikusi ezazu iradokizunetarako." #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" -msgstr "" +msgstr "Izen-aldaketarekiko arazoa" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "Prozesadorea" #: Editor.java:704 msgid "Programmer" +msgstr "Programatzaile" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" msgstr "" #: Base.java:783 Editor.java:593 msgid "Quit" +msgstr "kentzea" + +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" msgstr "" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" -msgstr "" +msgstr "Berregin" #: Editor.java:1078 msgid "Reference" -msgstr "" +msgstr "Aipamen" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" @@ -1579,58 +1579,68 @@ msgstr "" #: EditorHeader.java:300 msgid "Rename" -msgstr "" +msgstr "Izena aldatu" #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 msgid "Replace" -msgstr "" +msgstr "Ordeztu" #: FindReplace.java:122 FindReplace.java:129 msgid "Replace & Find" -msgstr "" +msgstr "Bilatu & Ordeztu" #: FindReplace.java:120 FindReplace.java:131 msgid "Replace All" -msgstr "" +msgstr "Ordeztu guztiak" #: Sketch.java:1043 #, java-format msgid "Replace the existing version of {0}?" -msgstr "" +msgstr "{0}-aren oraingo bertsioa ordeztu ezazu ?" #: FindReplace.java:81 msgid "Replace with:" -msgstr "" +msgstr "Ordeztu honekin" #: Preferences.java:113 msgid "Romanian" +msgstr "Erromaniko" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" msgstr "" #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "Errusiera" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 msgid "Save" -msgstr "" +msgstr "Gorde" #: Editor.java:537 msgid "Save As..." -msgstr "" +msgstr "Gorde honela..." #: Editor.java:2317 msgid "Save Canceled." -msgstr "" +msgstr "Utzi gordeatzea" #: Editor.java:2020 #, java-format msgid "Save changes to \"{0}\"? " -msgstr "" +msgstr "Gorde aldaketak \"{0}\"an ?" #: Sketch.java:825 msgid "Save sketch folder as..." -msgstr "" +msgstr "Gorde sketch-karpeta honela" #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" @@ -1638,7 +1648,7 @@ msgstr "" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." -msgstr "" +msgstr "Gordetzen" #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" @@ -1646,23 +1656,23 @@ msgstr "" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." -msgstr "" +msgstr "Hautatu (edo sortu berri) esketcharako karpeta..." #: Editor.java:1198 Editor.java:2739 msgid "Select All" -msgstr "" +msgstr "Hautatu dena" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" +msgstr "Hautatu ezazu zip-fitxategi bat edo gehitzea nahi izango zenukeen liburutegia edukiz karpeta bat" #: Sketch.java:975 msgid "Select an image or other data file to copy to your sketch" -msgstr "" +msgstr "Irudi edo fitxategi bat aukera ezazu zure schetchean kopiatzeko " #: Preferences.java:330 msgid "Select new sketchbook location" -msgstr "" +msgstr "Lokalizazio berria aukeratzen du sketchbookerako" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 @@ -1671,7 +1681,7 @@ msgstr "" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" +msgstr "Aukeratutako plaka '{0}' nukleoaren mendean dago (ez dago instalatuta)." #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" @@ -1683,11 +1693,11 @@ msgstr "" #: SerialMonitor.java:93 msgid "Send" -msgstr "" +msgstr "Bidali" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" -msgstr "" +msgstr "Serieko monitorea" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" @@ -1698,87 +1708,92 @@ msgstr "" msgid "" "Serial port ''{0}'' not found. Did you select the right one from the Tools >" " Serial Port menu?" -msgstr "" +msgstr "Serieko ataka ''{0}'' ez aurkituta. Ongi aukeratu duzu era zuzenean menutik Erremintetatik > Serieko Ataka ?" #: Editor.java:2343 #, java-format msgid "" "Serial port {0} not found.\n" "Retry the upload with another serial port?" -msgstr "" +msgstr "Ez aurkitutako serieko ataka {0}.\nBirsaioa beste serieko ataka batekin kargatu?" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" #: Base.java:1681 msgid "Settings issues" -msgstr "" +msgstr "konfigurazioaren kontuak" #: Editor.java:641 msgid "Show Sketch Folder" -msgstr "" +msgstr "Erakustaldiko Sketcheko Karpeta" #: ../../../processing/app/EditorStatus.java:468 msgid "Show verbose output during compilation" -msgstr "" +msgstr "Emaitza zehatzak konpilazioan zehar erakustea" #: Preferences.java:387 msgid "Show verbose output during: " -msgstr "" +msgstr "Irteera luzea erakusten duzu zehar:" #: Editor.java:607 msgid "Sketch" -msgstr "" +msgstr "Sketch" #: Sketch.java:1754 msgid "Sketch Disappeared" -msgstr "" +msgstr "Sketcha desagertu zen" #: Base.java:1411 msgid "Sketch Does Not Exist" -msgstr "" +msgstr "Sketcha ez da existitzen" #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 msgid "Sketch is Read-Only" -msgstr "" +msgstr "Irakurtzeko soilik Sketch" #: Sketch.java:294 msgid "Sketch is Untitled" -msgstr "" +msgstr "Sketcha ez du izenik" #: Sketch.java:720 msgid "Sketch is read-only" -msgstr "" +msgstr "Sketcha Irakurtzeko soilik\tda\n " #: Sketch.java:1653 msgid "" "Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " "tips on reducing it." -msgstr "" +msgstr "Sketcha handiegi; bisitatu http://www.arduino.cc/en/Guide/Troubleshooting#size tamaina txikiagotzea bezala jakiteko" #: ../../../processing/app/Sketch.java:1639 #, java-format msgid "" "Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " "bytes." -msgstr "" +msgstr "Sketchak byteak darabiltza {0} ({2}%%-a) programako biltegiratzeko espazioaren. Maximoa byteak da {1}." #: Editor.java:510 msgid "Sketchbook" -msgstr "" +msgstr "Sketchbook" #: Base.java:258 msgid "Sketchbook folder disappeared" -msgstr "" +msgstr "Sketchbook karpeta desagertu da" #: Preferences.java:315 msgid "Sketchbook location:" -msgstr "" +msgstr "Sketchbook kokalekua" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" @@ -1790,29 +1805,29 @@ msgstr "" #: ../../../processing/app/Preferences.java:152 msgid "Slovenian" -msgstr "" +msgstr "Esloveniera" #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save the sketch in another location,\n" "and try again." -msgstr "" +msgstr "Fitxategi batzuk markatzen dituzte \"Irakurtzeko-soilik \", hala egingo duzu\nsketch beste lokalizazio batean gorde behar izan ezazu,\neta berriro probatu ezazu." #: Sketch.java:721 msgid "" "Some files are marked \"read-only\", so you'll\n" "need to re-save this sketch to another location." -msgstr "" +msgstr "Fitxategi batzuk markatzen dituzte \"irakurtzeko soilik\", hala egingo duzu\nbeste lokalizazio baterako sketch hau gorde behar izan ezazu." #: Sketch.java:457 #, java-format msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" +msgstr "Barkatu, dagoeneko izendatutako \"{0}\" sketch bat (edo karpeta) existitzen da." #: Preferences.java:115 msgid "Spanish" -msgstr "" +msgstr "Espainiera" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" @@ -1824,19 +1839,15 @@ msgstr "" #: Base.java:540 msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" +msgstr "Eguzkia" #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "Suediera" #: Preferences.java:84 msgid "System Default" -msgstr "" +msgstr "Sistemako lehenetsia" #: ../../../../../app/src/processing/app/Preferences.java:188 msgid "Talossan" @@ -1844,11 +1855,11 @@ msgstr "" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "Tamilera" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "Jada 'BYTE' gako-hitza ez dute sostengatzen." #: ../../../processing/app/BaseNoGui.java:484 msgid "The --upload option supports only one file at a time" @@ -1856,7 +1867,7 @@ msgstr "" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "Client klasea berrizendatu dute EthernetClient." #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format @@ -1867,11 +1878,11 @@ msgstr "" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "" +msgstr "Server klasea berrizendatu dute EthernetServer." #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." -msgstr "" +msgstr "Udp klasea berrizendatu dute EthernetUdp." #: Editor.java:2147 #, java-format @@ -1879,7 +1890,7 @@ msgid "" "The file \"{0}\" needs to be inside\n" "a sketch folder named \"{1}\".\n" "Create this folder, move the file, and continue?" -msgstr "" +msgstr "Fitxategiak {0} barruan egon behar du\n{1} izendatutako sketch-karpeta bat.\nKarpeta hau sortzen duzu, fitxategia mugitzen duzu, eta jarraitzen duzu?" #: Base.java:1054 Base.java:2674 #, java-format @@ -1887,25 +1898,25 @@ msgid "" "The library \"{0}\" cannot be used.\n" "Library names must contain only basic letters and numbers.\n" "(ASCII only and no spaces, and it cannot start with a number)" -msgstr "" +msgstr "Liburutegia {0} ezin dute erabili. Liburutegi-izenek bakarrik oinarrizko gutunak eta numbers. eduki behar dituzte. (ASCII-a bakarrik eta espazio bat ere, eta ezin da zenbaki batekin hasi)" #: Sketch.java:374 msgid "" "The main file can't use an extension.\n" "(It may be time for your to graduate to a\n" "\"real\" programming environment)" -msgstr "" +msgstr "Fitxategi nagusiak ezin du luzapena bat erabili.\n(Denbora izan daiteke zuen graduatu\n\"benetako\" programazio-ingurumena)" #: Sketch.java:356 msgid "The name cannot start with a period." -msgstr "" +msgstr "Izena ezin da hasi puntuarekin." #: Base.java:1412 msgid "" "The selected sketch no longer exists.\n" "You may need to restart Arduino to update\n" "the sketchbook menu." -msgstr "" +msgstr "Jada hautatutako skettcha ez da existitzen.\nSketchbook-menua eguneratzeko Arduino berriz hasi behar dezakezu." #: Base.java:1430 #, java-format @@ -1915,21 +1926,21 @@ msgid "" "(ASCII-only with no spaces, and it cannot start with a number).\n" "To get rid of this message, remove the sketch from\n" "{1}" -msgstr "" +msgstr "Sketch {0} ezin dute erabili.\nSketch-izenek bakarrik oinarrizko gutunak eta zenbakiak eduki behar dituzte\n(Espazio batekin erko ASCII-a, eta ezin da zenbaki batekin hasi).\nMezu honetaz libratzeko, eskema|esketxa kentzen duzu {1}" #: Sketch.java:1755 msgid "" "The sketch folder has disappeared.\n" " Will attempt to re-save in the same location,\n" "but anything besides the code will be lost." -msgstr "" +msgstr "Sketch-karpeta desagertu da.\nSaiatuko da lokalizazio berean gorde,\nbaina kodeaz gain edozer galduko dute." #: ../../../processing/app/Sketch.java:2028 msgid "" "The sketch name had to be modified. Sketch names can only consist\n" "of ASCII characters and numbers (but cannot start with a number).\n" "They should also be less than 64 characters long." -msgstr "" +msgstr "Sketch-izena aldatu behar izan zuten. Bakarrik sketch-izenak izan daitezke\nASCII-karaktereen eta zenbakien (baina ezin da zenbaki batekin hasi).\n64 luzera-karaktere baino gutxiago izan behar ditu ere." #: Base.java:259 msgid "" @@ -1938,7 +1949,7 @@ msgid "" "location, and create a new sketchbook folder if\n" "necessary. Arduino will then stop talking about\n" "himself in the third person." -msgstr "" +msgstr "Ez du sketchbook karpeta aurkitzen. Arduinok lokalizazioari aldatuko dio lehenetsi, eta beharrezkoa bada, karpeta berria sor zezan. Arduinok bere burua buruz hitz egiten utziko du hirugarren pertsonarengan" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 msgid "" @@ -1946,18 +1957,12 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" "location from which where you're trying to add it.\n" "I ain't not doin nuthin'." -msgstr "" +msgstr "Dagoeneko fitxategi hau kopiatu dute lokalizaziora zeinetatik \nnon hura gehitzen saiatzen ari zara.\nEz dut ezer egiten" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "" @@ -1967,11 +1972,11 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" -msgstr "" +msgstr "Txosten honek informazio gehiago izango luke" #: Base.java:535 msgid "Time for a Break" -msgstr "" +msgstr "Atsedenerako denbora" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format @@ -1980,7 +1985,7 @@ msgstr "" #: Editor.java:663 msgid "Tools" -msgstr "" +msgstr "Tresnak" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" @@ -1988,11 +1993,11 @@ msgstr "" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "Arazoak konpontzen" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "Turkiera" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 @@ -2001,32 +2006,37 @@ msgstr "" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" -msgstr "" +msgstr "Plakaren pasahitza idatz ezazu bere kontsolara sartzeko" #: ../../../processing/app/Sketch.java:1673 msgid "Type board password to upload a new sketch" -msgstr "" +msgstr "Plakaren pasahitza idatz ezazu sketch berri bat kargatzeko" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "Ukrainera" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" +msgstr "Konektatu ezinezkoa da: sketcha zubia erabiltzen ari da?" #: ../../../processing/app/NetworkMonitor.java:130 msgid "Unable to connect: retrying" -msgstr "" +msgstr "Konektatu ezinezkoa da: Saiatzen" #: ../../../processing/app/Editor.java:2526 msgid "Unable to connect: wrong password?" +msgstr "Konektatu ezinezkoa da: pasahitz okerra?" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" msgstr "" #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" -msgstr "" +msgstr "Serial-monitorea ireki ezinezkoa da." #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" @@ -2037,13 +2047,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "Desegin" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2051,7 +2066,7 @@ msgid "" "Unspecified platform, no launcher available.\n" "To enable opening URLs or folders, add a \n" "\"launcher=/path/to/app\" line to preferences.txt" -msgstr "" +msgstr "Plataforma ezezaguna, Inongo jaurtitzailerik-Launcher ez dago.\nURLs-ak edo karpetak irekiz ahalbidetzeko, gaineratzen zara\n\"launcher=/path/to/app\"-lerroa preferences.txt-etara" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 @@ -2060,11 +2075,11 @@ msgstr "" #: UpdateCheck.java:111 msgid "Update" -msgstr "" +msgstr "Eguneratu" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" +msgstr "Eguneratze-sketchak hedadura berrira artxibatzen du gordetzen duenean (.pde -> .ino)" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" @@ -2072,39 +2087,35 @@ msgstr "" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" -msgstr "" +msgstr "Kargatu" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" -msgstr "" +msgstr "Programagailu erabiliz kargatu" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." -msgstr "" +msgstr "Datu-karga bertan behera utzi da." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "Utxi Kargaketa" #: Editor.java:2378 msgid "Uploading to I/O Board..." -msgstr "" +msgstr "S/I Plakak Kargatzen ..." #: Sketch.java:1622 msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" +msgstr "Kargatzen..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "Aurkikuntzarako Erabilera-Hautaketa" #: Preferences.java:409 msgid "Use external editor" -msgstr "" +msgstr "Kanpoko editorea erabili ezazu" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 @@ -2119,20 +2130,20 @@ msgstr "" #: ../../../processing/app/debug/Compiler.java:94 #, java-format msgid "Using library {0} in folder: {1} {2}" -msgstr "" +msgstr "{0} liburu-denda {1} {2} karpetan erabiliz:" #: ../../../processing/app/debug/Compiler.java:320 #, java-format msgid "Using previously compiled file: {0}" -msgstr "" +msgstr "Erabili lehenago bildutako fitxategia: {0}" #: EditorToolbar.java:41 EditorToolbar.java:46 msgid "Verify" -msgstr "" +msgstr "Egiaztatu" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "Kodea egiaztatzen duzu geroago kargatu" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" @@ -2166,10 +2177,20 @@ msgstr "" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "Vietnamera" #: Editor.java:1105 msgid "Visit Arduino.cc" +msgstr "Arduino.cc bisita" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" msgstr "" #: ../../../processing/app/debug/Compiler.java:115 @@ -2177,11 +2198,11 @@ msgstr "" msgid "" "WARNING: library {0} claims to run on {1} architecture(s) and may be " "incompatible with your current board which runs on {2} architecture(s)." -msgstr "" +msgstr "OHARTARAZPENA: {0} liburutegia {1} arkitekturan() funtzionatzen saiatzen da eta zure plakarekin, zeinek {2} arkitekturarekin() funtzionatzen duen, bateraezina izan liteke" #: Base.java:2128 msgid "Warning" -msgstr "" +msgstr "Abisua" #: ../../../processing/app/debug/Compiler.java:1295 msgid "" @@ -2215,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2228,33 +2255,33 @@ msgstr "" #: debug/Compiler.java:444 msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" +msgstr "Wire.receive() berrizendatu dute Wire.read()." #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send() berrizendatu dute Wire.write()." #: FindReplace.java:105 msgid "Wrap Around" -msgstr "" +msgstr "Egokitu" #: debug/Uploader.java:213 msgid "" "Wrong microcontroller found. Did you select the right board from the Tools " "> Board menu?" -msgstr "" +msgstr "Mikrokontrolatzaile okerra. Plaka aukeratu duzu era zuzenean menutik Erremintetatik > Plaka ?" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" -msgstr "" +msgstr "Bai" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "" +msgstr "Ezin nauzu engainatu" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" +msgstr "Ezin duzu izan izen bera sketcha bezain .cpp-fitxategi bat." #: ../../../../../app/src/processing/app/Base.java:2312 msgid "You can't import a folder that contains your sketchbook" @@ -2264,34 +2291,34 @@ msgstr "" msgid "" "You can't rename the sketch to \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "Ezin duzu Sketcha berrizendatu \"{0}\"\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta." #: Sketch.java:861 msgid "" "You can't save the sketch as \"{0}\"\n" "because the sketch already has a .cpp file with that name." -msgstr "" +msgstr "Ezin duzu sketcha gorde \"{0}\"-a bezala\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta." #: Sketch.java:883 msgid "" "You cannot save the sketch into a folder\n" "inside itself. This would go on forever." -msgstr "" +msgstr "Ezin duzu sketcha gorde bere burua \nbarruan karpeta batean. Honek betiko jarraituko luke." #: Base.java:1888 msgid "You forgot your sketchbook" -msgstr "" +msgstr "Zure sketchbooka ahaztu zenuen" #: ../../../processing/app/AbstractMonitor.java:92 msgid "" "You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" +msgstr "{0} zapaldu duzu baina ezer ez zuten bidali. Lerro-bukaera bat hautatu behar izango zenuke?" #: Base.java:536 msgid "" "You've reached the limit for auto naming of new sketches\n" "for the day. How about going for a walk instead?" -msgstr "" +msgstr "Programa-mugara heldu zara gaur era automatikoan esleitutako izenarekin. Paseo bat ematen baduzu iruditzen zaizula?" #: ../../../processing/app/BaseNoGui.java:768 msgid "" @@ -2307,16 +2334,16 @@ msgstr "" #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "ZIP-fitxategiak edo karpetak" #: Base.java:2661 msgid "Zip doesn't contain a library" -msgstr "" +msgstr "ZIP ez dauka liburutegi bat" #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "\".{0}\" ez da balio izandako luzapena." #: SketchCode.java:258 #, java-format @@ -2333,7 +2360,7 @@ msgid "" "As of Arduino 0019, the Ethernet library depends on the SPI library.\n" "You appear to be using it or another library that depends on the SPI library.\n" "\n" -msgstr "" +msgstr "\n0019 Arduinotik aurrera, Ethernet-liburutegia SPI-liburutegiaren esku dago.\nHura erabiltzen ari izan iruditzen zara edo SPI-liburutegiaren esku dagoen beste liburutegi bat.\n" #: debug/Compiler.java:415 msgid "" @@ -2341,62 +2368,62 @@ msgid "" "As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n" "Please use Serial.write() instead.\n" "\n" -msgstr "" +msgstr "\n1.0 Arduino-tik aurrera, 'BYTE' gako-hitza ez da supported.\njada mesedez Serial.write() erabili ezazu.\n" #: debug/Compiler.java:427 msgid "" "\n" "As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n" "\n" -msgstr "" +msgstr "\n1.0 Arduino-tik aurrera, Ethernet-liburutegiko Client klasea berrizendatu dute EthernetClient.\n" #: debug/Compiler.java:421 msgid "" "\n" "As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n" "\n" -msgstr "" +msgstr "\n1.0 Arduino-tik aurrera, Ethernet-liburutegiko Server klasea berrizendatu dute EthernetServer .\n" #: debug/Compiler.java:433 msgid "" "\n" "As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" "\n" -msgstr "" +msgstr "\n1.0 Arduinotik aurrera, Ethernet-liburutegiko Udp klasea berrizendatu dute EthernetUdp.\n" #: debug/Compiler.java:445 msgid "" "\n" "As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\n 1.0 Arduino-tik aurrera, Wire.receive() funtzioa, beste libraries batzuekiko funtserako Wire.read() etara berrizendatu zuten.\n" #: debug/Compiler.java:439 msgid "" "\n" "As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" "\n" -msgstr "" +msgstr "\n1.0 Arduinotik aurrera, Wire.send()-funtzioa, beste liburutegi batzuekiko funtserako Wire.write() -etara berrizendatu zuten\n" #: SerialMonitor.java:130 SerialMonitor.java:133 msgid "baud" -msgstr "" +msgstr "baud" #: Preferences.java:389 msgid "compilation " -msgstr "" +msgstr "konpilazio" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "Konektatu !" #: Sketch.java:540 msgid "createNewFile() returned false" -msgstr "" +msgstr "createNewFile() itzuli faltsu" #: ../../../processing/app/EditorStatus.java:469 msgid "enabled in File > Preferences." -msgstr "" +msgstr "Gaitu File > Preferences" #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" @@ -2404,39 +2431,39 @@ msgstr "" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" +msgstr "http://www.arduino.cc/en/Main/Software" #: UpdateCheck.java:53 msgid "http://www.arduino.cc/latest.txt" -msgstr "" +msgstr "http://www.arduino.cc/latest.txt" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "" +msgstr "Letra-tamaina elbarria {0} ez ikusi egin" #: Editor.java:936 Editor.java:943 msgid "name is null" -msgstr "" +msgstr "Izen nulu" #: Editor.java:932 msgid "serialMenu is null" -msgstr "" +msgstr "serialMenu-a nulua da" #: debug/Uploader.java:195 #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "hautatutako serieko ataka {0} ez da existitzen edo zure plaka ez dago konektatuta" #: ../../../processing/app/Base.java:389 #, java-format msgid "unknown option: {0}" -msgstr "" +msgstr "Aukera ezezaguna: {0}" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "Kargatu" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format @@ -2462,61 +2489,71 @@ msgstr "" #: Editor.java:380 #, java-format msgid "{0} files added to the sketch." -msgstr "" +msgstr "{0} sketchari gehitutako fitxategiak." #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" -msgstr "" +msgstr "{0} itzuli {1}" #: Editor.java:2213 #, java-format msgid "{0} | Arduino {1}" -msgstr "" +msgstr "{0} | Arduino {1}" #: ../../../processing/app/Base.java:519 #, java-format msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" +msgstr "{0}: Argumentu elbarria --pref, \"pref=value\" formaren izan behar izango litzateke" #: ../../../processing/app/Base.java:476 #, java-format msgid "" "{0}: Invalid board name, it should be of the form \"package:arch:board\" or " "\"package:arch:board:options\"" -msgstr "" +msgstr "{0}: Plaka-izen elbarria, \"package:arch:board\" edo \"package:arch:board:options\" izan behar izango litzateke formaren." #: ../../../processing/app/Base.java:509 #, java-format msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" +msgstr "{0}: Aukera elbarria {1} plakarako {2} aukera" #: ../../../processing/app/Base.java:507 #, java-format msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" +msgstr "{0}: Plakarako {1} aukera elbarria" #: ../../../processing/app/Base.java:502 #, java-format msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" +msgstr "{0}: Aukera elbarria, \"name=value\" formaren izan behar izango litzateke." #: ../../../processing/app/Base.java:486 #, java-format msgid "{0}: Unknown architecture" -msgstr "" +msgstr "{0}: Arkitektura ezezaguna" #: ../../../processing/app/Base.java:491 #, java-format msgid "{0}: Unknown board" -msgstr "" +msgstr "{0}: Plaka ezezaguna" #: ../../../processing/app/Base.java:481 #, java-format msgid "{0}: Unknown package" -msgstr "" +msgstr "{0}: Pakete ezezaguna" diff --git a/arduino-core/src/processing/app/i18n/Resources_da.properties b/arduino-core/src/processing/app/i18n/Resources_eu.properties similarity index 50% rename from arduino-core/src/processing/app/i18n/Resources_da.properties rename to arduino-core/src/processing/app/i18n/Resources_eu.properties index 6ceaba494e1..c731066d20a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_da.properties +++ b/arduino-core/src/processing/app/i18n/Resources_eu.properties @@ -6,10 +6,15 @@ # Translators: # Translators: # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Danish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/da/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# Translators: +# @atzerritik, 2014 +# Ivan Barquero , 2014 +# Ivan Barquero , 2014 +# Zylu , 2014 +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Basque (http\://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: eu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= +\ \ (requires\ restart\ of\ Arduino)=(Arduinoa berabiarazi behar da) #: ../../../processing/app/debug/Compiler.java:529 #, java-format @@ -20,13 +25,19 @@ !\ Used\:\ {0}= #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teklatua' Arduino Leonardo-rekin bateragarria da soilik #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Sagua' Arduino Leonardo-rekin bateragarria da soilik + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= #: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= +(edit\ only\ when\ Arduino\ is\ not\ running)=(soilik editatu Arduino lanean ez dagoenean ) + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -35,7 +46,7 @@ !--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= #: Sketch.java:746 -!.pde\ ->\ .ino= +.pde\ ->\ .ino=.pde -> .ino #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format @@ -50,22 +61,22 @@ !
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= #: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= +\ \ 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.= Sketch honetarako aldaketak gorde nahi dituzu
itxi aurretik?

Ez baduzu gordetzen, zure aldaketak galduko dira. #: Sketch.java:398 #, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= +A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Dagoeneko "{0}" izeneko fitxategi bat existitzen da "{1}"-n #: Editor.java:2169 #, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= +A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Dagoeneko {0} izeneko karpeta bat existitzen da. Ezin da sketcha ireki #: Base.java:2690 #, java-format -!A\ library\ named\ {0}\ already\ exists= +A\ library\ named\ {0}\ already\ exists=Dagoeneko {0} izeneko liburutegi bat existitzen da #: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= +A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Arduinoren bertsio berri bat eskuragarri dago,\nArduinoren deskargako orria bisitatzea nahi duzu? #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format @@ -75,13 +86,13 @@ !A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=Arduinori buruz #: ../../../../../app/src/processing/app/Base.java:1177 !Add\ .ZIP\ Library...= #: Editor.java:650 -!Add\ File...= +Add\ File...=Fitxategia gehitu... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 !Additional\ Boards\ Manager\ URLs= @@ -93,7 +104,7 @@ !Afrikaans= #: ../../../processing/app/Preferences.java:96 -!Albanian= +Albanian=Albaniera #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 @@ -101,7 +112,7 @@ !All= #: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= +An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Arazo bat gertatu da fitxategiaren kodifikazioa konpontzen saiatzean.\nEz saiatu sketch hau gordetzen, aurreko bertsioa gainidatzi bait dezake.\nZabaldu sakatu sketch-a berriro zabaltzeko eta saiatu berriro.\n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 !An\ error\ occurred\ while\ updating\ libraries\ index\!= @@ -118,62 +129,62 @@ !An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= #: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= +An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Akats ezezagun bat gertatu da kargatzen saiatzerakoan\nkodigoa zure makonaren plataformako espezifikoa da. #: Preferences.java:85 -!Arabic= +Arabic=Arabiera #: Preferences.java:86 -!Aragonese= +Aragonese=Aragoiera #: tools/Archiver.java:48 -!Archive\ Sketch= +Archive\ Sketch=Sketch-a gorde #: tools/Archiver.java:109 -!Archive\ sketch\ as\:= +Archive\ sketch\ as\:=Gorde sketcha honela\: #: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= +Archive\ sketch\ canceled.=Sketch-aren gordetzea bertan behera utzi da.. #: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= +Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Sketch-aren gordetzea bertan behera utzi da\nsketch-a ezin bait da ondo gorde. #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bit) Plakak #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=Arduino AVR Plakak #: Editor.java:2137 !Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= #: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduinok ezin du funtzionatu ezin duelako karpeta\nbat zure konfigurazioa gordetzeko sortu. #: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= +Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduinok ezin du funtzionatu ezin duelako karpeta\nbat zure sketchbook-a gordetzeko sortu. #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =Arduino\: #: Sketch.java:588 #, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?="{0}" ezabatu nahi duzula seguru zara? #: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= +Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Sketch hau ezabatu nahi duzula seguru zara? #: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= +Argument\ required\ for\ --board=Argumentua beharrezkoa da --plakarako #: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= +Argument\ required\ for\ --port=Argumentua beharrezkoa da --atakarako #: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= +Argument\ required\ for\ --pref=Argumentua beharrezkoa da --pref arako #: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= +Argument\ required\ for\ --preferences-file=Argumentua beharrezkoa da --Hobespen fitxategirako #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 @@ -181,19 +192,19 @@ !Argument\ required\ for\ {0}= #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=Armeniera #: ../../../processing/app/Preferences.java:138 -!Asturian= +Asturian=Bable #: ../../../processing/app/debug/Compiler.java:145 !Authorization\ required= #: tools/AutoFormat.java:91 -!Auto\ Format= +Auto\ Format=Formatu Automatikoa. #: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= +Auto\ Format\ finished.=Formatu automatikoa bukatu da. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 !Auto-detect\ proxy\ settings= @@ -202,37 +213,35 @@ !Automatic\ proxy\ configuration\ URL\:= #: SerialMonitor.java:110 -!Autoscroll= +Autoscroll=Autoscroll #: Editor.java:2619 #, java-format -!Bad\ error\ line\:\ {0}= +Bad\ error\ line\:\ {0}=Errore lerroa\: {0} #: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= +Bad\ file\ selected=Hautatutako fitxategi txarra da #: ../../../processing/app/Preferences.java:149 -!Basque= +Basque=Euskara #: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= +Belarusian=Bielorrusiera #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=Plaka + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= +Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Plaka {0}\:{1}\:{2} ez du definitzen ''build.board'' lehentasuna. Auto-seta\: {3} etara #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =Plaka\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Boards\ Manager= @@ -248,31 +257,31 @@ !Bootloader\ file\ specified\ but\ missing\:\ {0}= #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=Bosniera #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=NL & CR Biak #: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= +Browse=Bilatu #: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= +Build\ options\ changed,\ rebuilding\ all=Konpilazio-aukerak aldatu dira, guztia berkonpilatzen + +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=Bulgariera #: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= +Burmese\ (Myanmar)=Myanmarniera #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=Idatzi Bootloader-a #: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= +Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader-a S/I plakaN idazten (honek minutu bat har dezake)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 !CRC\ doesn't\ match.\ File\ is\ corrupted.= @@ -286,232 +295,211 @@ !Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=Canada-frantses #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= +Cancel=Utzi #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=Ezin da berrizendatu #: ../../../processing/app/Base.java:465 !Cannot\ specify\ any\ sketch\ files= #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=Orga-itzulera #: Preferences.java:87 -!Catalan= +Catalan=Katalana #: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= +Check\ for\ updates\ on\ startup=Eguneratzeak bilatzen ditu Hasieran #: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (China)=Txinera(Txina) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=Txinera (Taiwan) #: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= +Chinese\ (Taiwan)\ (Big5)=Txinera (Taiwan)(Big5) #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= #: Editor.java:521 Editor.java:2024 -!Close= +Close=Itxi #: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= +Comment/Uncomment=Iruzkina / iruzkina desegitea #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 !Compiler\ warnings\:\ = #: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= +Compiling\ sketch...=Sketch konpilatzen #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=Kopiatu #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=HTMLa bezala kopia #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=Errore-mezua kopia ezazu #: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= +Copy\ for\ Forum=Fororako Kopia #: Sketch.java:1089 #, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= +Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Ezin izango litzateke gehitu ''{0}'' sketchera. #: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= +Could\ not\ copy\ to\ a\ proper\ location.=Ezin izan zen kopiatu kokapen egokian. #: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= +Could\ not\ create\ the\ sketch\ folder.=Sketch-karpeta ezin da sortu. #: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= +Could\ not\ create\ the\ sketch.=Sketcha ezin da sortu #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=\ "{0}" ezin da ezabatu #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Ezin izango litzateke ezabatu oraingoa ''{0}'' fitxategia. #: Base.java:2533 Base.java:2556 #, java-format -!Could\ not\ delete\ {0}= +Could\ not\ delete\ {0}=Ezin izango litzateke ezabatu {0} #: ../../../processing/app/debug/TargetPlatform.java:74 #, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= +Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=Ezin du boards.tx-ik aurkitu {0}-etan. -1,5 bertsioaren aurrekoa da ? #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 #, java-format -!Could\ not\ find\ tool\ {0}= +Could\ not\ find\ tool\ {0}=Ez du {0} tresna aurkitzen #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 #, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= +Could\ not\ find\ tool\ {0}\ from\ package\ {1}=Ez du pakete {1}-eko tresna {0} aurkitzen #: Base.java:1934 #, java-format -!Could\ not\ open\ the\ URL\n{0}= +Could\ not\ open\ the\ URL\n{0}=URL-a ezin da ireki\n{0} #: Base.java:1958 #, java-format -!Could\ not\ open\ the\ folder\n{0}= +Could\ not\ open\ the\ folder\n{0}=Karpeta ezin da ireki\n{0} #: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= +Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Ez zen ahal izan sketcha zentzu hertsian gorde. Arazoetan egon zaitezke puntu honetan,\neta denbora izan liteke kopiatu eta zure kodea beste testu-editore batengana itsatsi. #: Sketch.java:1768 -!Could\ not\ re-save\ sketch= +Could\ not\ re-save\ sketch=Ezin izango luke gorde sketcha #: Theme.java:52 !Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= #: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= +Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Ezarpen lehenetsiak ezin dira irakurri.\nArduino Instalatu berriro behar izango duzu. #: Base.java:2482 #, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= +Could\ not\ remove\ old\ version\ of\ {0}=Ezin izango litzateke kendu bertsio zaharra{0} #: Sketch.java:483 Sketch.java:528 #, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= +Could\ not\ rename\ "{0}"\ to\ "{1}"=Ezin izango luke berrizendatu "{0}"-a "{1}"-ra #: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= +Could\ not\ rename\ the\ sketch.\ (0)=Ezin izango luke berrizendatu sketcha. (0) #: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= +Could\ not\ rename\ the\ sketch.\ (1)=Ezin izango luke berrizendatu sketcha. (1) #: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= +Could\ not\ rename\ the\ sketch.\ (2)=Ezin izango luke berrizendatu sketcha. (2) #: Base.java:2492 #, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= +Could\ not\ replace\ {0}=Ezin izango luke ordeztu {0} #: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= +Couldn't\ archive\ sketch=Sketcha ezin da artxibatu #: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= +Couldn't\ determine\ program\ size\:\ {0}=Ezin izango luke erabaki programa-neurria\: {0} #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=Ezin da egin #: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= +Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Ezin du inongo plakarik aurkitu aukeratutako atakan. Ataka zuzena duzula hautatuta egiaztatu ezazu. Zuzena bada, kargatu hasi ondoren reset-botoia sakatzen du. #: ../../../processing/app/Preferences.java:82 -!Croatian= +Croatian=\ kroaziera #: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= +Cut=Ebaki #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= #: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= +Decrease\ Indent=Txikitu koska #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 !Default= #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=Ezabatu #: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= +Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Gailuak ez du erantzuten, egiaztatzen du serieko ataka zuzena hau aukeratuta edo resetea plaka esportatu baino lehen #: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= +Discard\ all\ changes\ and\ reload\ sketch?=Aldaketa guztiak baztertzen dituzu eta sketcha kargatzen duzu? #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=Lerro-zenbakiak erakusten ditu #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format !Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= #: Editor.java:2064 -!Don't\ Save= +Don't\ Save=Ez Gorde #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=Gordeta bukatu #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=Bootloader-erreketa bukatuta. #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 !Done\ compiling= #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=konpilazio eginda. #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=Inprimaketa bukatu du. #: ../../../processing/app/BaseNoGui.java:514 !Done\ uploading= #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=Datu-karga bukatuta du. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format @@ -535,31 +523,31 @@ !Downloading\ tools\ ({0}/{1}).= #: Preferences.java:91 -!Dutch= +Dutch=Nederlandera #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=Nederlandera (Holanda) #: ../../../../../app/src/processing/app/Editor.java:1309 !Edison\ Help= #: Editor.java:1130 -!Edit= +Edit=Editatu #: Preferences.java:370 -!Editor\ font\ size\:\ = +Editor\ font\ size\:\ =\ Letra-tamaina Editorea\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =Hizkuntza editorea\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 !Enable\ Code\ Folding= #: Preferences.java:92 -!English= +English=Ingeles #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=Ingeles ( Ingalaterra ) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 @@ -569,50 +557,50 @@ !Enter\ additional\ URLs,\ one\ for\ each\ row= #: Editor.java:1062 -!Environment= +Environment=Ingurunea #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= +Error=Errore #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=Akatsa fitxategi bat gehitzerakoan #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=konpilazio-errore #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format !Error\ downloading\ {0}= #: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= +Error\ getting\ the\ Arduino\ data\ folder.=Arazoak Arduino-ko karpetaren datuak irakurtzerakoan #: Serial.java:593 #, java-format -!Error\ inside\ Serial.{0}()= +Error\ inside\ Serial.{0}()=Akatsa Serial.{0}() -ean #: ../../../processing/app/debug/TargetPlatform.java:95 #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=Karga-errore {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=''{0}'' hutseko irekierako serieko ataka. #: ../../../processing/app/Serial.java:119 #, java-format !Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= #: Preferences.java:277 -!Error\ reading\ preferences= +Error\ reading\ preferences=Hutseko irakurketako lehentasunak #: Preferences.java:279 #, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= +Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Lehentasun-fitxategia irakurri hutsa. Mesedez ezabatu ezazu (edo eraman) \n{0} eta Arduino berrabiarazi. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 @@ -620,34 +608,34 @@ !Error\ running\ post\ install\ script= #: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = +Error\ starting\ discovery\ method\:\ =Aurkikuntza-metodoa hasiz hutsa\: #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=Hutsa ukitu ''{0}'' serieko ataka. #: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= +Error\ while\ burning\ bootloader.=Akatsa bootloaderak erretzen diren bitartean. #: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Bootloader-a erretzerakoan hutsa\: desagertu {0} konfigurazio-parametroa #: ../../../../../app/src/processing/app/Editor.java:1940 !Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= #: SketchCode.java:83 #, java-format -!Error\ while\ loading\ code\ {0}= +Error\ while\ loading\ code\ {0}=Kodea {0} kargatzerakoan hutsa #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=Inprimatzerakoan hutsa. #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Kargatzerakoan hutsa\: desagertu {0} konfigurazio-parametroa #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 @@ -658,54 +646,63 @@ !Error\ while\ verifying/uploading= #: Preferences.java:93 -!Estonian= +Estonian=Estoniera #: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= +Estonian\ (Estonia)=Estoniera (Estonia) #: Editor.java:516 -!Examples= +Examples=Adibideak + +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= #: ../../../processing/app/Base.java:416 #, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= +Failed\ to\ open\ sketch\:\ "{0}"=Sketcha irekitzeko huts eginda\: "{0}" #: Editor.java:491 -!File= +File=Fitxategi #: Preferences.java:94 -!Filipino= +Filipino=Filipiniera #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 !Filter\ your\ search...= #: FindReplace.java:124 FindReplace.java:127 -!Find= +Find=Bilatu #: Editor.java:1249 -!Find\ Next= +Find\ Next=Aurkitu hurrengoa #: Editor.java:1259 -!Find\ Previous= +Find\ Previous=Aurkitu aurrekoa #: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= +Find\ in\ Reference=Aipamen bidezko dei #: Editor.java:1234 -!Find...= +Find...=Bilatu... #: FindReplace.java:80 -!Find\:= +Find\:=Aurkitu #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=Finlandiera #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= +Fix\ Encoding\ &\ Reload=Kodea konpontzen & kargatu #: ../../../processing/app/BaseNoGui.java:318 !For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= @@ -715,13 +712,13 @@ !Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 -!French= +French=Frantses #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=Maiz egiten diren galderak #: Preferences.java:96 -!Galician= +Galician=Galiziera #: ../../../../../app/src/processing/app/Preferences.java:176 !Galician\ (Spain)= @@ -730,57 +727,57 @@ !Galileo\ Help= #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=Georgiera #: Preferences.java:97 -!German= +German=Aleman #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=Abiarazi #: ../../../processing/app/Sketch.java:1646 #, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= +Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=Aldagai osoek memoria dinamikoko {0} byte ({2}%%) darabiltzate, {3} byte uzten dituzte aldagai lokaletarako. Maximoa {1} byte dira. #: ../../../processing/app/Sketch.java:1651 #, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= +Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Aldagai osoek memoria dinamikoko {0} byte darabiltzate. #: Preferences.java:98 -!Greek= +Greek=Greziera #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=Hebreera #: Editor.java:1015 -!Help= +Help=Laguntza #: Preferences.java:99 -!Hindi= +Hindi=Indiera #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 !Host\ name\:= #: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= +How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=sketcha hura izendatzen saiatu baino lehen \nlehenik eta behin ez duzulako gordetzen #: Sketch.java:882 -!How\ very\ Borges\ of\ you= +How\ very\ Borges\ of\ you=Hor konpon, Marianton\! #: Preferences.java:100 -!Hungarian= +Hungarian=Hungariera #: FindReplace.java:96 -!Ignore\ Case= +Ignore\ Case=Ezikusi Maiuskula/minuskula #: Base.java:1058 -!Ignoring\ bad\ library\ name= +Ignoring\ bad\ library\ name=Liburutegi izen txarra ez ikusi egin #: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= +Ignoring\ sketch\ with\ bad\ name=Ez ikusi egin izen txarrarekiko esketcha #: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= +In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=1.0 Arduinon, ez-betetzeko fitxategiko luzapena aldatu da\n.pde-tatik .ino.-etatik sketch berriak (sortutako horiek barne\n"Save-As-en") erabiliko du luzapena berria. Luzapena\noraingo sketchen eguneratuko da gorde, baina ahal zara\nhau desgaitu ezazu Lehentasun-elkarrizketan.\n\nSketcha gordetzen duzu eta bere luzapena eguneratzen duzu? #: ../../../../../app/src/processing/app/Editor.java:778 !Include\ Library= @@ -790,10 +787,10 @@ !Incorrect\ IDE\ installation\ folder= #: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= +Increase\ Indent=Handitu koska #: Preferences.java:101 -!Indonesian= +Indonesian=Indonesiera #: ../../../../../app/src/processing/app/Base.java:295 !Initializing\ packages...= @@ -829,19 +826,23 @@ #: ../../../processing/app/Base.java:1204 #, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= +Invalid\ library\ found\ in\ {0}\:\ {1}=\ {0}\: {1}-etan aurkitutako liburutegi okerra + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= #: Preferences.java:102 -!Italian= +Italian=Italiera #: Preferences.java:103 -!Japanese= +Japanese=Japoniera #: Preferences.java:104 -!Korean= +Korean=Koreera #: Preferences.java:105 -!Latvian= +Latvian=Letoniera #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 !Library\ Manager= @@ -849,22 +850,26 @@ #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= #: Preferences.java:106 -!Lithuaninan= +Lithuaninan=Lituaniera #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -872,13 +877,14 @@ !Manual\ proxy\ configuration= #: Preferences.java:107 -!Marathi= +Marathi=Marathiera #: Base.java:2112 -!Message= +Message=Mezua -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -887,10 +893,10 @@ !More= #: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= +More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Zuzenean fitxategian lehentasun gehiago editatu ahal dituzte #: Editor.java:2156 -!Moving= +Moving=Mugitzen #: ../../../processing/app/BaseNoGui.java:484 !Multiple\ files\ not\ supported= @@ -900,16 +906,13 @@ !Multiple\ libraries\ were\ found\ for\ "{0}"= #: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= +Must\ specify\ exactly\ one\ sketch\ file=Zehaztu behar du sketch-fitxategi zehazki bat #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=Fitxategi berriaren izena #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=Nepalera #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 !Network= @@ -918,31 +921,28 @@ !Network\ ports= #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= +Network\ upload\ using\ programmer\ not\ supported=Laguntzarik ez dago artxibo-kargarako sarean programagailua erabiliz #: EditorToolbar.java:41 Editor.java:493 -!New= +New=Berria #: EditorHeader.java:292 -!New\ Tab= +New\ Tab=Fitxa berri #: SerialMonitor.java:112 -!Newline= +Newline=Lerro-amaiera #: EditorHeader.java:340 -!Next\ Tab= +Next\ Tab=Hurrengo fitxa #: Preferences.java:78 UpdateCheck.java:108 -!No= +No=Ez #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= +No\ changes\ necessary\ for\ Auto\ Format.=Aldaketa bat ere beharrezko Auto Formaturako. #: ../../../processing/app/BaseNoGui.java:665 !No\ command\ line\ parameters\ found= @@ -951,13 +951,13 @@ !No\ compiled\ sketch\ found= #: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= +No\ files\ were\ added\ to\ the\ sketch.=Fitxategi bat ere ez zioten sketchari gehitu. #: Platform.java:167 -!No\ launcher\ available= +No\ launcher\ available=Inongo jaurtitzailerik-Launcher ez dago #: SerialMonitor.java:112 -!No\ line\ ending= +No\ line\ ending=Ez lerro-bukaera #: ../../../processing/app/BaseNoGui.java:665 !No\ parameters= @@ -966,11 +966,11 @@ !No\ proxy= #: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= +No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Ez benetan, zuretzako aire freskoren baterako denbora. #: Editor.java:1872 #, java-format -!No\ reference\ available\ for\ "{0}"= +No\ reference\ available\ for\ "{0}"=Aipamen erabilgarri bat ere {0} #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 @@ -980,66 +980,64 @@ !No\ sketchbook= #: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= +No\ valid\ code\ files\ found=Aurkitutako baliozko kode-fitxategi bat ere #: ../../../processing/app/debug/TargetPackage.java:63 #, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= +No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Karpetan {0} aurkitutako baliozko hardware-definizio bat ere. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= +Norwegian\ Bokm\u00e5l=\ Norvegiera #: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= +Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Memoria nahikorik ez dago ; bisita http\://www.arduino.cc/en/Guide/Troubleshooting\#size bere erabilera txikiagotzea bezala ikasteko. #: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2145 Editor.java:2465 -!OK= +OK=OK #: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= +One\ file\ added\ to\ the\ sketch.=Sketcherako fitxategi bat gehitu da. #: ../../../processing/app/BaseNoGui.java:455 !Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= #: EditorToolbar.java:41 -!Open= +Open=Ireki #: ../../../../../app/src/processing/app/Editor.java:625 !Open\ Recent= #: Editor.java:2688 -!Open\ URL= +Open\ URL=Ireki URLa. #: Base.java:636 -!Open\ an\ Arduino\ sketch...= +Open\ an\ Arduino\ sketch...=Arduino sketcha ireki ezazu #: Base.java:903 Editor.java:501 -!Open...= +Open...=Ireki #: Editor.java:563 -!Page\ Setup= +Page\ Setup=Prestatu orrialdea #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=Pasahitza\: #: Editor.java:1189 Editor.java:2731 -!Paste= +Paste=Itsatsi #: Preferences.java:109 -!Persian= +Persian=Persiera #: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= +Persian\ (Iran)=Persiera (Iran) + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1048,96 +1046,99 @@ !Please\ confirm\ library\ deletion= #: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Mesedez SPI-liburutegia Sketchetik inportatu ezazu > Inportazioko Liburutegiko menua. #: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= +Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Mesedez Wire liburutegia sketch > Import Library menutik inportatu ezazu. #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 !Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= #: Preferences.java:110 -!Polish= +Polish=Poloniera #: ../../../processing/app/Editor.java:718 -!Port= +Port=Ataka #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 !Port\ number\:= #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=Portugalera #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=Portugalera (Brazil) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=Portugalera (Portugal) #: Preferences.java:295 Editor.java:583 -!Preferences= +Preferences=Hobespenak #: ../../../../../app/src/processing/app/Base.java:297 !Preparing\ boards...= #: FindReplace.java:123 FindReplace.java:128 -!Previous= +Previous=Aurrekoa #: EditorHeader.java:326 -!Previous\ Tab= +Previous\ Tab=Aurreko fitxa #: Editor.java:571 -!Print= +Print=Inprimatu #: Editor.java:2571 -!Printing\ canceled.= +Printing\ canceled.=Utzi inprimaketa. #: Editor.java:2547 -!Printing...= +Printing...=Inprimatzen... #: Base.java:1957 -!Problem\ Opening\ Folder= +Problem\ Opening\ Folder=Arazoko Irekierako Karpeta #: Base.java:1933 -!Problem\ Opening\ URL= +Problem\ Opening\ URL=Arazoak URLa irekitzerakoan #: Base.java:227 -!Problem\ Setting\ the\ Platform= +Problem\ Setting\ the\ Platform=Plataformaren Konfigurazio Arazoa #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= +Problem\ accessing\ board\ folder\ /www/sd=Arazoa plakako karpeta sartzerakoan dago /www/sd #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =Fitxategiak karpetan atzituz arazoa #: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= +Problem\ getting\ data\ folder=Arazoak karpetaren datuak irakurtzerakoan #: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= +Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Plakaratzeko upload arazoa. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload ikusi ezazu iradokizunetarako. #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= +Problem\ with\ rename=Izen-aldaketarekiko arazoa #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=Prozesadorea #: Editor.java:704 -!Programmer= +Programmer=Programatzaile + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= #: Base.java:783 Editor.java:593 -!Quit= +Quit=kentzea + +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= #: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= +Redo=Berregin #: Editor.java:1078 -!Reference= +Reference=Aipamen #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 !Remove= @@ -1151,77 +1152,85 @@ !Removing...= #: EditorHeader.java:300 -!Rename= +Rename=Izena aldatu #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= +Replace=Ordeztu #: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= +Replace\ &\ Find=Bilatu & Ordeztu #: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= +Replace\ All=Ordeztu guztiak #: Sketch.java:1043 #, java-format -!Replace\ the\ existing\ version\ of\ {0}?= +Replace\ the\ existing\ version\ of\ {0}?={0}-aren oraingo bertsioa ordeztu ezazu ? #: FindReplace.java:81 -!Replace\ with\:= +Replace\ with\:=Ordeztu honekin #: Preferences.java:113 -!Romanian= +Romanian=Erromaniko + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= #: Preferences.java:114 -!Russian= +Russian=Errusiera #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 -!Save= +Save=Gorde #: Editor.java:537 -!Save\ As...= +Save\ As...=Gorde honela... #: Editor.java:2317 -!Save\ Canceled.= +Save\ Canceled.=Utzi gordeatzea #: Editor.java:2020 #, java-format -!Save\ changes\ to\ "{0}"?\ \ = +Save\ changes\ to\ "{0}"?\ \ =Gorde aldaketak "{0}"an ? #: Sketch.java:825 -!Save\ sketch\ folder\ as...= +Save\ sketch\ folder\ as...=Gorde sketch-karpeta honela #: ../../../../../app/src/processing/app/Preferences.java:425 !Save\ when\ verifying\ or\ uploading= #: Editor.java:2270 Editor.java:2308 -!Saving...= +Saving...=Gordetzen #: ../../../processing/app/FindReplace.java:131 !Search\ all\ Sketch\ Tabs= #: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= +Select\ (or\ create\ new)\ folder\ for\ sketches...=Hautatu (edo sortu berri) esketcharako karpeta... #: Editor.java:1198 Editor.java:2739 -!Select\ All= +Select\ All=Hautatu dena #: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= +Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Hautatu ezazu zip-fitxategi bat edo gehitzea nahi izango zenukeen liburutegia edukiz karpeta bat #: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= +Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Irudi edo fitxategi bat aukera ezazu zure schetchean kopiatzeko #: Preferences.java:330 -!Select\ new\ sketchbook\ location= +Select\ new\ sketchbook\ location=Lokalizazio berria aukeratzen du sketchbookerako #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 !Select\ version= #: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= +Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Aukeratutako plaka '{0}' nukleoaren mendean dago (ez dago instalatuta). #: ../../../../../app/src/processing/app/Base.java:374 !Selected\ board\ is\ not\ available= @@ -1230,73 +1239,77 @@ !Selected\ library\ is\ not\ available= #: SerialMonitor.java:93 -!Send= +Send=Bidali #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= +Serial\ Monitor=Serieko monitorea #: ../../../../../app/src/processing/app/Editor.java:804 !Serial\ Plotter= #: Serial.java:194 #, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= +Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Serieko ataka ''{0}'' ez aurkituta. Ongi aukeratu duzu era zuzenean menutik Erremintetatik > Serieko Ataka ? #: Editor.java:2343 #, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= +Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Ez aurkitutako serieko ataka {0}.\nBirsaioa beste serieko ataka batekin kargatu? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= #: Base.java:1681 -!Settings\ issues= +Settings\ issues=konfigurazioaren kontuak #: Editor.java:641 -!Show\ Sketch\ Folder= +Show\ Sketch\ Folder=Erakustaldiko Sketcheko Karpeta #: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= +Show\ verbose\ output\ during\ compilation=Emaitza zehatzak konpilazioan zehar erakustea #: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = +Show\ verbose\ output\ during\:\ =Irteera luzea erakusten duzu zehar\: #: Editor.java:607 -!Sketch= +Sketch=Sketch #: Sketch.java:1754 -!Sketch\ Disappeared= +Sketch\ Disappeared=Sketcha desagertu zen #: Base.java:1411 -!Sketch\ Does\ Not\ Exist= +Sketch\ Does\ Not\ Exist=Sketcha ez da existitzen #: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= +Sketch\ is\ Read-Only=Irakurtzeko soilik Sketch #: Sketch.java:294 -!Sketch\ is\ Untitled= +Sketch\ is\ Untitled=Sketcha ez du izenik #: Sketch.java:720 -!Sketch\ is\ read-only= +Sketch\ is\ read-only=Sketcha Irakurtzeko soilik\tda\n #: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= +Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Sketcha handiegi; bisitatu http\://www.arduino.cc/en/Guide/Troubleshooting\#size tamaina txikiagotzea bezala jakiteko #: ../../../processing/app/Sketch.java:1639 #, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= +Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=Sketchak byteak darabiltza {0} ({2}%%-a) programako biltegiratzeko espazioaren. Maximoa byteak da {1}. #: Editor.java:510 -!Sketchbook= +Sketchbook=Sketchbook #: Base.java:258 -!Sketchbook\ folder\ disappeared= +Sketchbook\ folder\ disappeared=Sketchbook karpeta desagertu da #: Preferences.java:315 -!Sketchbook\ location\:= +Sketchbook\ location\:=Sketchbook kokalekua #: ../../../processing/app/BaseNoGui.java:428 !Sketchbook\ path\ not\ defined= @@ -1305,20 +1318,20 @@ !Slovak= #: ../../../processing/app/Preferences.java:152 -!Slovenian= +Slovenian=Esloveniera #: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Fitxategi batzuk markatzen dituzte "Irakurtzeko-soilik ", hala egingo duzu\nsketch beste lokalizazio batean gorde behar izan ezazu,\neta berriro probatu ezazu. #: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= +Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Fitxategi batzuk markatzen dituzte "irakurtzeko soilik", hala egingo duzu\nbeste lokalizazio baterako sketch hau gorde behar izan ezazu. #: Sketch.java:457 #, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= +Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Barkatu, dagoeneko izendatutako "{0}" sketch bat (edo karpeta) existitzen da. #: Preferences.java:115 -!Spanish= +Spanish=Espainiera #: ../../../../../app/src/processing/app/Base.java:2333 !Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= @@ -1327,131 +1340,129 @@ !Starting...= #: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= +Sunshine=Eguzkia #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=Suediera #: Preferences.java:84 -!System\ Default= +System\ Default=Sistemako lehenetsia #: ../../../../../app/src/processing/app/Preferences.java:188 !Talossan= #: Preferences.java:116 -!Tamil= +Tamil=Tamilera #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Jada 'BYTE' gako-hitza ez dute sostengatzen. #: ../../../processing/app/BaseNoGui.java:484 !The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client klasea berrizendatu dute EthernetClient. #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format !The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server klasea berrizendatu dute EthernetServer. #: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= +The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp klasea berrizendatu dute EthernetUdp. #: Editor.java:2147 #, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= +The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Fitxategiak {0} barruan egon behar du\n{1} izendatutako sketch-karpeta bat.\nKarpeta hau sortzen duzu, fitxategia mugitzen duzu, eta jarraitzen duzu? #: Base.java:1054 Base.java:2674 #, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= +The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Liburutegia {0} ezin dute erabili. Liburutegi-izenek bakarrik oinarrizko gutunak eta numbers. eduki behar dituzte. (ASCII-a bakarrik eta espazio bat ere, eta ezin da zenbaki batekin hasi) #: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= +The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Fitxategi nagusiak ezin du luzapena bat erabili.\n(Denbora izan daiteke zuen graduatu\n"benetako" programazio-ingurumena) #: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= +The\ name\ cannot\ start\ with\ a\ period.=Izena ezin da hasi puntuarekin. #: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= +The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Jada hautatutako skettcha ez da existitzen.\nSketchbook-menua eguneratzeko Arduino berriz hasi behar dezakezu. #: Base.java:1430 #, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= +The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Sketch {0} ezin dute erabili.\nSketch-izenek bakarrik oinarrizko gutunak eta zenbakiak eduki behar dituzte\n(Espazio batekin erko ASCII-a, eta ezin da zenbaki batekin hasi).\nMezu honetaz libratzeko, eskema|esketxa kentzen duzu {1} #: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= +The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Sketch-karpeta desagertu da.\nSaiatuko da lokalizazio berean gorde,\nbaina kodeaz gain edozer galduko dute. #: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= +The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=Sketch-izena aldatu behar izan zuten. Bakarrik sketch-izenak izan daitezke\nASCII-karaktereen eta zenbakien (baina ezin da zenbaki batekin hasi).\n64 luzera-karaktere baino gutxiago izan behar ditu ere. #: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= +The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Ez du sketchbook karpeta aurkitzen. Arduinok lokalizazioari aldatuko dio lehenetsi, eta beharrezkoa bada, karpeta berria sor zezan. Arduinok bere burua buruz hitz egiten utziko du hirugarren pertsonarengan #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= +This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dagoeneko fitxategi hau kopiatu dute lokalizaziora zeinetatik \nnon hura gehitzen saiatzen ari zara.\nEz dut ezer egiten #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 !This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= #: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= +This\ report\ would\ have\ more\ information\ with=Txosten honek informazio gehiago izango luke #: Base.java:535 -!Time\ for\ a\ Break= +Time\ for\ a\ Break=Atsedenerako denbora #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format !Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= #: Editor.java:663 -!Tools= +Tools=Tresnak #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 !Topic= #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=Arazoak konpontzen #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=Turkiera #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 !Type= #: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= +Type\ board\ password\ to\ access\ its\ console=Plakaren pasahitza idatz ezazu bere kontsolara sartzeko #: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= +Type\ board\ password\ to\ upload\ a\ new\ sketch=Plakaren pasahitza idatz ezazu sketch berri bat kargatzeko #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=Ukrainera #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= +Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Konektatu ezinezkoa da\: sketcha zubia erabiltzen ari da? #: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= +Unable\ to\ connect\:\ retrying=Konektatu ezinezkoa da\: Saiatzen #: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= +Unable\ to\ connect\:\ wrong\ password?=Konektatu ezinezkoa da\: pasahitz okerra? + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= #: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= +Unable\ to\ open\ serial\ monitor=Serial-monitorea ireki ezinezkoa da. #: ../../../../../app/src/processing/app/Editor.java:2709 !Unable\ to\ open\ serial\ plotter= @@ -1460,55 +1471,56 @@ #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +Undo=Desegin + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -!Uncaught\ exception\ type\:\ {0}= +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= -#: Editor.java:1133 Editor.java:1355 -!Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= #: Platform.java:168 -!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= +Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma ezezaguna, Inongo jaurtitzailerik-Launcher ez dago.\nURLs-ak edo karpetak irekiz ahalbidetzeko, gaineratzen zara\n"launcher\=/path/to/app"-lerroa preferences.txt-etara #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 !Updatable= #: UpdateCheck.java:111 -!Update= +Update=Eguneratu #: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= +Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Eguneratze-sketchak hedadura berrira artxibatzen du gordetzen duenean (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 !Updating\ list\ of\ installed\ libraries= #: EditorToolbar.java:41 Editor.java:545 -!Upload= +Upload=Kargatu #: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= +Upload\ Using\ Programmer=Programagailu erabiliz kargatu #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=Datu-karga bertan behera utzi da. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=Utxi Kargaketa #: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= +Uploading\ to\ I/O\ Board...=S/I Plakak Kargatzen ... #: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= +Uploading...=Kargatzen... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=Aurkikuntzarako Erabilera-Hautaketa #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=Kanpoko editorea erabili ezazu #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 @@ -1520,17 +1532,17 @@ #: ../../../processing/app/debug/Compiler.java:94 #, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= +Using\ library\ {0}\ in\ folder\:\ {1}\ {2}={0} liburu-denda {1} {2} karpetan erabiliz\: #: ../../../processing/app/debug/Compiler.java:320 #, java-format -!Using\ previously\ compiled\ file\:\ {0}= +Using\ previously\ compiled\ file\:\ {0}=Erabili lehenago bildutako fitxategia\: {0} #: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= +Verify=Egiaztatu #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=Kodea egiaztatzen duzu geroago kargatu #: ../../../../../app/src/processing/app/Editor.java:725 !Verify/Compile= @@ -1556,17 +1568,25 @@ !Version\ {0}= #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=Vietnamera #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=Arduino.cc bisita + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= #: ../../../processing/app/debug/Compiler.java:115 #, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= +WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=OHARTARAZPENA\: {0} liburutegia {1} arkitekturan() funtzionatzen saiatzen da eta zure plakarekin, zeinek {2} arkitekturarekin() funtzionatzen duen, bateraezina izan liteke #: Base.java:2128 -!Warning= +Warning=Abisua #: ../../../processing/app/debug/Compiler.java:1295 !Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= @@ -1590,6 +1610,9 @@ #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1598,46 +1621,46 @@ !Western\ Frisian= #: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= +Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() berrizendatu dute Wire.read(). #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() berrizendatu dute Wire.write(). #: FindReplace.java:105 -!Wrap\ Around= +Wrap\ Around=Egokitu #: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= +Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mikrokontrolatzaile okerra. Plaka aukeratu duzu era zuzenean menutik Erremintetatik > Plaka ? #: Preferences.java:77 UpdateCheck.java:108 -!Yes= +Yes=Bai #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=Ezin nauzu engainatu #: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= +You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Ezin duzu izan izen bera sketcha bezain .cpp-fitxategi bat. #: ../../../../../app/src/processing/app/Base.java:2312 !You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= #: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ezin duzu Sketcha berrizendatu "{0}"\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta. #: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= +You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ezin duzu sketcha gorde "{0}"-a bezala\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta. #: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= +You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Ezin duzu sketcha gorde bere burua \nbarruan karpeta batean. Honek betiko jarraituko luke. #: Base.java:1888 -!You\ forgot\ your\ sketchbook= +You\ forgot\ your\ sketchbook=Zure sketchbooka ahaztu zenuen #: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= +You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?={0} zapaldu duzu baina ezer ez zuten bidali. Lerro-bukaera bat hautatu behar izango zenuke? #: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= +You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Programa-mugara heldu zara gaur era automatikoan esleitutako izenarekin. Paseo bat ematen baduzu iruditzen zaizula? #: ../../../processing/app/BaseNoGui.java:768 !Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= @@ -1646,84 +1669,84 @@ !Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=ZIP-fitxategiak edo karpetak #: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= +Zip\ doesn't\ contain\ a\ library=ZIP ez dauka liburutegi bat #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=".{0}" ez da balio izandako luzapena. #: SketchCode.java:258 #, java-format !"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= #: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= +\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n0019 Arduinotik aurrera, Ethernet-liburutegia SPI-liburutegiaren esku dago.\nHura erabiltzen ari izan iruditzen zara edo SPI-liburutegiaren esku dagoen beste liburutegi bat.\n #: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n1.0 Arduino-tik aurrera, 'BYTE' gako-hitza ez da supported.\njada mesedez Serial.write() erabili ezazu.\n #: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n1.0 Arduino-tik aurrera, Ethernet-liburutegiko Client klasea berrizendatu dute EthernetClient.\n #: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n1.0 Arduino-tik aurrera, Ethernet-liburutegiko Server klasea berrizendatu dute EthernetServer .\n #: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\n1.0 Arduinotik aurrera, Ethernet-liburutegiko Udp klasea berrizendatu dute EthernetUdp.\n #: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n 1.0 Arduino-tik aurrera, Wire.receive() funtzioa, beste libraries batzuekiko funtserako Wire.read() etara berrizendatu zuten.\n #: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= +\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n1.0 Arduinotik aurrera, Wire.send()-funtzioa, beste liburutegi batzuekiko funtserako Wire.write() -etara berrizendatu zuten\n #: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= +baud=baud #: Preferences.java:389 -!compilation\ = +compilation\ =konpilazio #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=Konektatu \! #: Sketch.java:540 -!createNewFile()\ returned\ false= +createNewFile()\ returned\ false=createNewFile() itzuli faltsu #: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= +enabled\ in\ File\ >\ Preferences.=Gaitu File > Preferences #: ../../../../../app/src/processing/app/Editor.java:1352 !http\://www.arduino.cc/= #: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= +http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software #: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= +http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: Preferences.java:625 #, java-format -!ignoring\ invalid\ font\ size\ {0}= +ignoring\ invalid\ font\ size\ {0}=Letra-tamaina elbarria {0} ez ikusi egin #: Editor.java:936 Editor.java:943 -!name\ is\ null= +name\ is\ null=Izen nulu #: Editor.java:932 -!serialMenu\ is\ null= +serialMenu\ is\ null=serialMenu-a nulua da #: debug/Uploader.java:195 #, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=hautatutako serieko ataka {0} ez da existitzen edo zure plaka ez dago konektatuta #: ../../../processing/app/Base.java:389 #, java-format -!unknown\ option\:\ {0}= +unknown\ option\:\ {0}=Aukera ezezaguna\: {0} #: Preferences.java:391 -!upload= +upload=Kargatu #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format @@ -1744,48 +1767,56 @@ #: Editor.java:380 #, java-format -!{0}\ files\ added\ to\ the\ sketch.= +{0}\ files\ added\ to\ the\ sketch.={0} sketchari gehitutako fitxategiak. #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format -!{0}\ returned\ {1}= +{0}\ returned\ {1}={0} itzuli {1} #: Editor.java:2213 #, java-format -!{0}\ |\ Arduino\ {1}= +{0}\ |\ Arduino\ {1}={0} | Arduino {1} #: ../../../processing/app/Base.java:519 #, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= +{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argumentu elbarria --pref, "pref\=value" formaren izan behar izango litzateke #: ../../../processing/app/Base.java:476 #, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= +{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Plaka-izen elbarria, "package\:arch\:board" edo "package\:arch\:board\:options" izan behar izango litzateke formaren. #: ../../../processing/app/Base.java:509 #, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= +{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Aukera elbarria {1} plakarako {2} aukera #: ../../../processing/app/Base.java:507 #, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= +{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Plakarako {1} aukera elbarria #: ../../../processing/app/Base.java:502 #, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= +{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Aukera elbarria, "name\=value" formaren izan behar izango litzateke. #: ../../../processing/app/Base.java:486 #, java-format -!{0}\:\ Unknown\ architecture= +{0}\:\ Unknown\ architecture={0}\: Arkitektura ezezaguna #: ../../../processing/app/Base.java:491 #, java-format -!{0}\:\ Unknown\ board= +{0}\:\ Unknown\ board={0}\: Plaka ezezaguna #: ../../../processing/app/Base.java:481 #, java-format -!{0}\:\ Unknown\ package= +{0}\:\ Unknown\ package={0}\: Pakete ezezaguna diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.po b/arduino-core/src/processing/app/i18n/Resources_fa.po index b150c9bd318..078140f4562 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.po +++ b/arduino-core/src/processing/app/i18n/Resources_fa.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # arminjavan , 2014 # Ebrahim Byagowi , 2012 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Persian (http://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "\"صفحه کلید\" فقط دربردهای آردوینو لئونا msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "\"ماوس\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(ویرایش فقط به هنگامی که آردئینو درحال اجرا نیست)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "خطای نامناسب خط: {0}" msgid "Bad file selected" msgstr "پرونده انتخاب‌شدهٔ نامناسب" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "باسکی" @@ -321,15 +328,16 @@ msgstr "باسکی" msgid "Belarusian" msgstr "بلاروسی" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "برد" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "هر دوی NL و CR" msgid "Browse" msgstr "یافتن" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "ساختن پوشه مخفی شده‌است یا نمی‌توان نوشته شود" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "گزینه های ساخت تغییر یافت, در حال بازسازی همه" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "بلغاری" @@ -441,10 +449,6 @@ msgstr "بررسی برای به‌روزرسانی‌ها در ابتدای ب msgid "Chinese (China)" msgstr "چینی (چین)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "چینی (هنگ کنگ)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "چینی (تایوان)" @@ -453,14 +457,6 @@ msgstr "چینی (تایوان)" msgid "Chinese (Taiwan) (Big5)" msgstr "چینی (تایوان) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "چینی ساده" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "چینی سنتی" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "نمی‌توان تنظیمات پیش‌فرض را خواند.\nشما می‌بایست که آردئینو را مجدداً نصب کنید." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "نمی‌توان طرح را تغییر نام داد. (۲)" msgid "Could not replace {0}" msgstr "نمی‌توان {0} را جایگزین نمود" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "نمی توان پرونده تنظیمات ساخت را نوشت" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "نمی‌توان طرح را بایگانی نمود" @@ -642,18 +630,10 @@ msgstr "کرواسیایی" msgid "Cut" msgstr "بریدن" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "چکی (زبان کشور چک)" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "دانمارکی" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "استونیایی (استونی)" msgid "Examples" msgstr "نمونه‌ها" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "ایتالیایی" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "لیتوانیایی" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "مراتی" msgid "Message" msgstr "پیغام" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "نام برای پروندهٔ جدید:" @@ -1295,10 +1294,6 @@ msgstr "خیر" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "بردی انتخاب شده‌است؛ لطفاً یک برد از منوی ابزارها > برد انتخاب کنید." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "تغییری برای قالب‌بندی خودکار نیاز نیست." @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "نروژی" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "فارسی" msgid "Persian (Iran)" msgstr "فارسی (ایران)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "اشکال در دسترسی به پروند ها در پوشه" msgid "Problem getting data folder" msgstr "اشکال گرفتن پوشهٔ داده‌ها" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "اشکال به‌هنگام انتقال {0} به پوشهٔ ساخت" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "پردازشگر" msgid "Programmer" msgstr "پروگرامر" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "خروج" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "انجام دوباره" @@ -1608,6 +1604,16 @@ msgstr "جایگزین کردن:" msgid "Romanian" msgstr "رومانیایی" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "روسی" @@ -1713,6 +1719,11 @@ msgstr "درگاه سریال {0} یافت نشد.\nانجام مجدد باگذ msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "طلوع" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "سوئدی" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "ناتوان از اتصال: تلاش ادامه دارد" msgid "Unable to connect: wrong password?" msgstr "ناتوان از اتصال: آیا رمز ورود اشتباه است؟" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "ناتوان از گشودن نمایشگر سریال" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "خطای گرفته نشده از نوع: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "بازگردانی" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "بارگذاری به برد I/O..." msgid "Uploading..." msgstr "بارگذاری..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "استفاده از گزینش برای یافتن" @@ -2174,6 +2181,16 @@ msgstr "ویتنامی" msgid "Visit Arduino.cc" msgstr "بازدید Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "{0} پرونده به طرح افزوده شد." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_fa.properties b/arduino-core/src/processing/app/i18n/Resources_fa.properties index cc9fe6656f2..677e51e695e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fa.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fa.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # arminjavan , 2014 # Ebrahim Byagowi , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f\u0646 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648) @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo="\u0645\u0627\u0648\u0633" \u0641\u0642\u0637 \u062f\u0631\u0628\u0631\u062f\u0647\u0627\u06cc \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06af\u0631\u062f\u062f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0648\u06cc\u0631\u0627\u06cc\u0634 \u0641\u0642\u0637 \u0628\u0647 \u0647\u0646\u06af\u0627\u0645\u06cc \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u062f\u0631\u062d\u0627\u0644 \u0627\u062c\u0631\u0627 \u0646\u06cc\u0633\u062a) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=\u062e\u0637\u0627\u06cc \u0646\u0627\u0645\u0646\u0627\ #: Editor.java:2136 Bad\ file\ selected=\u067e\u0631\u0648\u0646\u062f\u0647 \u0627\u0646\u062a\u062e\u0627\u0628\u200c\u0634\u062f\u0647\u0654 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u0628\u0627\u0633\u06a9\u06cc #: ../../../processing/app/Preferences.java:139 Belarusian=\u0628\u0644\u0627\u0631\u0648\u0633\u06cc -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u0628\u0631\u062f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=\u0647\u0631 \u062f\u0648\u06cc NL \u0648 CR #: Preferences.java:81 Browse=\u06cc\u0627\u0641\u062a\u0646 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0633\u0627\u062e\u062a\u0646 \u067e\u0648\u0634\u0647 \u0645\u062e\u0641\u06cc \u0634\u062f\u0647\u200c\u0627\u0633\u062a \u06cc\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0646\u0648\u0634\u062a\u0647 \u0634\u0648\u062f - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u06af\u0632\u06cc\u0646\u0647 \u0647\u0627\u06cc \u0633\u0627\u062e\u062a \u062a\u063a\u06cc\u06cc\u0631 \u06cc\u0627\u0641\u062a, \u062f\u0631 \u062d\u0627\u0644 \u0628\u0627\u0632\u0633\u0627\u0632\u06cc \u0647\u0645\u0647 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0628\u0644\u063a\u0627\u0631\u06cc @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=\u0628\u0631\u0631\u0633\u06cc \u0628\u0631\u06 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u0686\u06cc\u0646\u06cc (\u0686\u06cc\u0646) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u0686\u06cc\u0646\u06cc (\u0647\u0646\u06af \u06a9\u0646\u06af) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u0686\u06cc\u0646\u06cc (\u062a\u0627\u06cc\u0648\u0627\u0646) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u0686\u06cc\u0646\u06cc (\u062a\u0627\u06cc\u0648\u0627\u0646) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u0686\u06cc\u0646\u06cc \u0633\u0627\u062f\u0647 - -#: Preferences.java:89 -Chinese\ Traditional=\u0686\u06cc\u0646\u06cc \u0633\u0646\u062a\u06cc - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ re-save\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u067e\u06cc\u0634\u200c\u0641\u0631\u0636 \u0631\u0627 \u062e\u0648\u0627\u0646\u062f.\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u06a9\u0647 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 \u0631\u0627 \u0645\u062c\u062f\u062f\u0627\u064b \u0646\u0635\u0628 \u06a9\u0646\u06cc\u062f. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, 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 @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627 #, java-format Could\ not\ replace\ {0}=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 {0} \u0631\u0627 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u0646\u0645\u0648\u062f -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u0646\u0645\u06cc \u062a\u0648\u0627\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0633\u0627\u062e\u062a \u0631\u0627 \u0646\u0648\u0634\u062a - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646 \u0637\u0631\u062d \u0631\u0627 \u0628\u0627\u06cc\u06af\u0627\u0646\u06cc \u0646\u0645\u0648\u062f @@ -456,15 +446,9 @@ Croatian=\u06a9\u0631\u0648\u0627\u0633\u06cc\u0627\u06cc\u06cc #: Editor.java:1149 Editor.java:2699 Cut=\u0628\u0631\u06cc\u062f\u0646 -#: ../../../processing/app/Preferences.java:83 -Czech=\u0686\u06a9\u06cc (\u0632\u0628\u0627\u0646 \u06a9\u0634\u0648\u0631 \u0686\u06a9) - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u062f\u0627\u0646\u0645\u0627\u0631\u06a9\u06cc - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Estonian\ (Estonia)=\u0627\u0633\u062a\u0648\u0646\u06cc\u0627\u06cc\u06cc (\u06 #: Editor.java:516 Examples=\u0646\u0645\u0648\u0646\u0647\u200c\u0647\u0627 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Indonesian=\u0627\u0646\u062f\u0648\u0646\u0632\u06cc\u0627\u06cc\u06cc #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627\u06cc\u06cc @@ -851,6 +848,9 @@ Latvian=\u0644\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Marathi=\u0645\u0631\u0627\u062a\u06cc #: Base.java:2112 Message=\u067e\u06cc\u063a\u0627\u0645 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Moving=\u0627\u0646\u062a\u0642\u0627\u0644 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u067e\u0631\u0648\u0646\u062f\u0647\u0654 \u062c\u062f\u06cc\u062f\: @@ -940,9 +939,6 @@ No=\u062e\u06cc\u0631 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0628\u0631\u062f\u06cc \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647\u200c\u0627\u0633\u062a\u061b \u0644\u0637\u0641\u0627\u064b \u06cc\u06a9 \u0628\u0631\u062f \u0627\u0632 \u0645\u0646\u0648\u06cc \u0627\u0628\u0632\u0627\u0631\u0647\u0627 > \u0628\u0631\u062f \u0627\u0646\u062a\u062e\u0627\u0628 \u06a9\u0646\u06cc\u062f. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u062a\u063a\u06cc\u06cc\u0631\u06cc \u0628\u0631\u0627\u06cc \u0642\u0627\u0644\u0628\u200c\u0628\u0646\u062f\u06cc \u062e\u0648\u062f\u06a9\u0627\u0631 \u0646\u06cc\u0627\u0632 \u0646\u06cc\u0633\u062a. @@ -991,15 +987,9 @@ No\ valid\ code\ files\ found=\u067e\u0631\u0648\u0646\u062f\u0647 \u062d\u0627\ #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u0646\u0631\u0648\u0698\u06cc -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=\u0641\u0627\u0631\u0633\u06cc #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u0641\u0627\u0631\u0633\u06cc (\u0627\u06cc\u0631\u0627\u0646) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ accessing\ files\ in\ folder\ =\u0627\u0634\u06a9\u0627\u0644 \u062f\u0 #: Base.java:1673 Problem\ getting\ data\ folder=\u0627\u0634\u06a9\u0627\u0644 \u06af\u0631\u0641\u062a\u0646 \u067e\u0648\u0634\u0647\u0654 \u062f\u0627\u062f\u0647\u200c\u0647\u0627 -#: Sketch.java:1467 -#, 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 - #: 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. @@ -1132,9 +1122,16 @@ Processor=\u067e\u0631\u062f\u0627\u0632\u0634\u06af\u0631 #: Editor.java:704 Programmer=\u067e\u0631\u0648\u06af\u0631\u0627\u0645\u0631 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u062e\u0631\u0648\u062c +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u0627\u0646\u062c\u0627\u0645 \u062f\u0648\u0628\u0627\u0631\u0647 @@ -1174,6 +1171,14 @@ Replace\ with\:=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646 \u06a9\u0631\u062f\u0 #: Preferences.java:113 Romanian=\u0631\u0648\u0645\u0627\u0646\u06cc\u0627\u06cc\u06cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u0631\u0648\u0633\u06cc @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc #: Base.java:540 Sunshine=\u0637\u0644\u0648\u0639 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u0633\u0648\u0626\u062f\u06cc @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0627\u06cc\u0646 \u067e\u0631\u0648\u0646\u062f\u0647 \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u0628\u0647 \u0645\u0648\u0636\u0639\u06cc\u062a\u06cc \u06a9\u0647\n\u0634\u0645\u0627 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f \u0628\u06cc\u0627\u0641\u0632\u0627\u06cc\u06cc\u062f \u06a9\u067e\u06cc\u200c\u0634\u062f\u0647\u200c\u0627\u0633\u062a.\n\u0645\u0646 \u06a9\u0627\u0631\u06cc \u0646\u0645\u06cc\u200c\u06a9\u0646\u0645. @@ -1452,6 +1455,10 @@ Unable\ to\ connect\:\ retrying=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u063 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u0632 \u0627\u062a\u0635\u0627\u0644\: \u0622\u06cc\u0627 \u0631\u0645\u0632 \u0648\u0631\u0648\u062f \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0633\u062a\u061f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u0632 \u06af\u0634\u0648\u062f\u0646 \u0646\u0645\u0627\u06cc\u0634\u06af\u0631 \u0633\u0631\u06cc\u0627\u0644 @@ -1462,13 +1469,17 @@ Unable\ to\ open\ serial\ monitor=\u0646\u0627\u062a\u0648\u0627\u0646 \u0627\u0 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, 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} - #: Editor.java:1133 Editor.java:1355 Undo=\u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u06cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\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. @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u #: Sketch.java:1622 Uploading...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 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 @@ -1563,6 +1571,14 @@ Vietnamese=\u0648\u06cc\u062a\u0646\u0627\u0645\u06cc #: Editor.java:1105 Visit\ Arduino.cc=\u0628\u0627\u0632\u062f\u06cc\u062f Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=\u0627\u062e\u0637\u0627\u0631 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0}\u060c{1} \u0631\u0627 \u0628\u0627\u0632\u06af\u0631\u062f\u0627\u0646\u062f diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_HK.po b/arduino-core/src/processing/app/i18n/Resources_fa_IR.po similarity index 87% rename from arduino-core/src/processing/app/i18n/Resources_zh_HK.po rename to arduino-core/src/processing/app/i18n/Resources_fa_IR.po index a658be81840..5ba44f29097 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_HK.po +++ b/arduino-core/src/processing/app/i18n/Resources_fa_IR.po @@ -6,19 +6,20 @@ # Translators: # Translators: # Translators: -# Dicky Ho , 2012 +# Translators: +# Ali Mirjamali , 2013 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" -"Language-Team: Chinese (Hong Kong) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_HK/)\n" +"Language-Team: Persian (Iran) (http://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Language: zh_HK\n" +"Language: fa_IR\n" "Plural-Forms: nplurals=1; plural=0;\n" #: Preferences.java:358 Preferences.java:374 @@ -37,16 +38,26 @@ msgstr "" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" +msgstr "کی‌برد فقط در آردوینو لئوناردو پشتیبانی می‌شود" #: debug/Compiler.java:450 msgid "'Mouse' only supported on the Arduino Leonardo" +msgstr "ماوس فقط در آردوینو لئوناردو پشتیبانی می‌شود" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" msgstr "" #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -117,7 +128,7 @@ msgstr "" #: Editor.java:1116 msgid "About Arduino" -msgstr "" +msgstr "در مورد آردوینو" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." @@ -125,7 +136,7 @@ msgstr "" #: Editor.java:650 msgid "Add File..." -msgstr "" +msgstr "اضافه کردن فایل..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" @@ -182,7 +193,7 @@ msgstr "" #: Preferences.java:85 msgid "Arabic" -msgstr "" +msgstr "عربی" #: Preferences.java:86 msgid "Aragonese" @@ -208,11 +219,11 @@ msgstr "" #: ../../../processing/app/I18n.java:83 msgid "Arduino ARM (32-bits) Boards" -msgstr "" +msgstr "بردهای (۳۲ بیتی) ARM آردوینو" #: ../../../processing/app/I18n.java:82 msgid "Arduino AVR Boards" -msgstr "" +msgstr "بردهای AVR آردوینو" #: Editor.java:2137 msgid "" @@ -234,12 +245,12 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:471 msgid "Arduino: " -msgstr "" +msgstr "آردوینو:" #: Sketch.java:588 #, java-format msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" +msgstr "اطمینان دارید که می‌خواهید \"{0}\" را حذف کنید؟" #: Sketch.java:587 msgid "Are you sure you want to delete this sketch?" @@ -269,7 +280,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" -msgstr "" +msgstr "ارمنی" #: ../../../processing/app/Preferences.java:138 msgid "Asturian" @@ -306,11 +317,7 @@ msgstr "" #: Editor.java:2136 msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" +msgstr "فایل اشتباه انتخاب شده" #: ../../../processing/app/Preferences.java:149 msgid "Basque" @@ -318,15 +325,16 @@ msgstr "" #: ../../../processing/app/Preferences.java:139 msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" +msgstr "بلاروسی" #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" +msgstr "بُرد" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" msgstr "" #: ../../../processing/app/debug/TargetBoard.java:42 @@ -338,7 +346,7 @@ msgstr "" #: ../../../processing/app/EditorStatus.java:472 msgid "Board: " -msgstr "" +msgstr "بُرد:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" @@ -359,27 +367,27 @@ msgstr "" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" -msgstr "" +msgstr "بوسنی" #: SerialMonitor.java:112 msgid "Both NL & CR" -msgstr "" +msgstr "هم خط جدید و هم سر خط" #: Preferences.java:81 msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" -msgstr "" +msgstr "بلغاری" #: ../../../processing/app/Preferences.java:141 msgid "Burmese (Myanmar)" @@ -387,7 +395,7 @@ msgstr "" #: Editor.java:708 msgid "Burn Bootloader" -msgstr "" +msgstr "Bootloader را ذخیره کن" #: Editor.java:2504 msgid "Burning bootloader to I/O Board (this may take a minute)..." @@ -409,7 +417,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" -msgstr "" +msgstr "فرانسوی (کانادا)" #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 @@ -418,7 +426,7 @@ msgstr "" #: Sketch.java:455 msgid "Cannot Rename" -msgstr "" +msgstr "تغییر نام ممکن نیست" #: ../../../processing/app/Base.java:465 msgid "Cannot specify any sketch files" @@ -426,11 +434,11 @@ msgstr "" #: SerialMonitor.java:112 msgid "Carriage return" -msgstr "" +msgstr "سر خط" #: Preferences.java:87 msgid "Catalan" -msgstr "" +msgstr "کاتالان" #: Preferences.java:419 msgid "Check for updates on startup" @@ -438,35 +446,23 @@ msgstr "" #: ../../../processing/app/Preferences.java:142 msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" +msgstr "چینی (کشور چین)" #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" -msgstr "" +msgstr "چینی (تایوان)" #: ../../../processing/app/Preferences.java:143 msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" #: Editor.java:521 Editor.java:2024 msgid "Close" -msgstr "" +msgstr "بستن" #: Editor.java:1208 Editor.java:2749 msgid "Comment/Uncomment" @@ -482,15 +478,15 @@ msgstr "" #: Editor.java:1157 Editor.java:2707 msgid "Copy" -msgstr "" +msgstr "کپی" #: Editor.java:1177 Editor.java:2723 msgid "Copy as HTML" -msgstr "" +msgstr "کپی کردن با فرمت HTML" #: ../../../processing/app/EditorStatus.java:455 msgid "Copy error messages" -msgstr "" +msgstr "پیغامهای خطا را کپی کن" #: Editor.java:1165 Editor.java:2715 msgid "Copy for Forum" @@ -516,12 +512,12 @@ msgstr "" #: Sketch.java:617 #, java-format msgid "Could not delete \"{0}\"." -msgstr "" +msgstr "حذف ''{0}'' ممکن نشد." #: Sketch.java:1066 #, java-format msgid "Could not delete the existing ''{0}'' file." -msgstr "" +msgstr "حذف فایل ''{0}'' ممکن نشد." #: Base.java:2533 Base.java:2556 #, java-format @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -624,7 +612,7 @@ msgstr "" #: Sketch.java:616 msgid "Couldn't do it" -msgstr "" +msgstr "این کار ممکن نیست" #: debug/BasicUploader.java:209 msgid "" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -667,7 +647,7 @@ msgstr "" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" -msgstr "" +msgstr "حذف" #: debug/Uploader.java:199 msgid "" @@ -681,7 +661,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:438 msgid "Display line numbers" -msgstr "" +msgstr "شماره خطوط را نشان بده" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format @@ -692,15 +672,15 @@ msgstr "" #: Editor.java:2064 msgid "Don't Save" -msgstr "" +msgstr "ذخیره نشود" #: Editor.java:2275 Editor.java:2311 msgid "Done Saving." -msgstr "" +msgstr "ذخیره شد." #: Editor.java:2510 msgid "Done burning bootloader." -msgstr "" +msgstr "ذخیره Bootloader انجام گردید." #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 @@ -709,11 +689,11 @@ msgstr "" #: Editor.java:1911 Editor.java:1928 msgid "Done compiling." -msgstr "" +msgstr "کامپایل شد." #: Editor.java:2564 msgid "Done printing." -msgstr "" +msgstr "پایان چاپ." #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" @@ -721,7 +701,7 @@ msgstr "" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." -msgstr "" +msgstr "آپلود شد." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format @@ -752,11 +732,11 @@ msgstr "" #: Preferences.java:91 msgid "Dutch" -msgstr "" +msgstr "هلندی" #: ../../../processing/app/Preferences.java:144 msgid "Dutch (Netherlands)" -msgstr "" +msgstr "هلندی" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" @@ -764,15 +744,15 @@ msgstr "" #: Editor.java:1130 msgid "Edit" -msgstr "" +msgstr "ویرایش" #: Preferences.java:370 msgid "Editor font size: " -msgstr "" +msgstr "اندازه فونت ویرایشگر:" #: Preferences.java:353 msgid "Editor language: " -msgstr "" +msgstr "زبان ویرایشگر:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" @@ -780,11 +760,11 @@ msgstr "" #: Preferences.java:92 msgid "English" -msgstr "" +msgstr "انگلیسی" #: ../../../processing/app/Preferences.java:145 msgid "English (United Kingdom)" -msgstr "" +msgstr "انگلیسی (انگلستان)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 @@ -797,21 +777,21 @@ msgstr "" #: Editor.java:1062 msgid "Environment" -msgstr "" +msgstr "محیط برنامه نویسی" #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 msgid "Error" -msgstr "" +msgstr "خطا" #: Sketch.java:1065 Sketch.java:1088 msgid "Error adding file" -msgstr "" +msgstr "خطا در اضافه کردن فایل" #: debug/Compiler.java:369 msgid "Error compiling." -msgstr "" +msgstr "خطای کامپایل." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format @@ -832,12 +812,12 @@ msgstr "" #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format msgid "Error loading {0}" -msgstr "" +msgstr "خطای بارگذاری {0}" #: Serial.java:181 #, java-format msgid "Error opening serial port ''{0}''." -msgstr "" +msgstr "خطا در بازکردن پورت سریال \"{0}\"." #: ../../../processing/app/Serial.java:119 #, java-format @@ -848,7 +828,7 @@ msgstr "" #: Preferences.java:277 msgid "Error reading preferences" -msgstr "" +msgstr "خطا در خواندن تنظیمات برنامه" #: Preferences.java:279 #, java-format @@ -870,7 +850,7 @@ msgstr "" #: Serial.java:125 #, java-format msgid "Error touching serial port ''{0}''." -msgstr "" +msgstr "خطا در دسترسی به پورت سریال ''{0}''." #: Editor.java:2512 Editor.java:2516 Editor.java:2520 msgid "Error while burning bootloader." @@ -891,7 +871,7 @@ msgstr "" #: Editor.java:2567 msgid "Error while printing." -msgstr "" +msgstr "خطا در هنگام چاپ." #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" @@ -922,6 +902,18 @@ msgstr "" #: Editor.java:516 msgid "Examples" +msgstr "مثال‌ها" + +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." msgstr "" #: ../../../../../app/src/processing/app/Editor.java:750 @@ -935,11 +927,11 @@ msgstr "" #: Editor.java:491 msgid "File" -msgstr "" +msgstr "فایل" #: Preferences.java:94 msgid "Filipino" -msgstr "" +msgstr "فلیپینی" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." @@ -947,15 +939,15 @@ msgstr "" #: FindReplace.java:124 FindReplace.java:127 msgid "Find" -msgstr "" +msgstr "جستجو" #: Editor.java:1249 msgid "Find Next" -msgstr "" +msgstr "جستجو مورد بعدی" #: Editor.java:1259 msgid "Find Previous" -msgstr "" +msgstr "جستجو مورد قبلی" #: Editor.java:1086 Editor.java:2775 msgid "Find in Reference" @@ -963,15 +955,15 @@ msgstr "" #: Editor.java:1234 msgid "Find..." -msgstr "" +msgstr "جستجو..." #: FindReplace.java:80 msgid "Find:" -msgstr "" +msgstr "جستجو:" #: ../../../processing/app/Preferences.java:147 msgid "Finnish" -msgstr "" +msgstr "فنلاندی" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -991,11 +983,11 @@ msgstr "" #: Preferences.java:95 msgid "French" -msgstr "" +msgstr "فرانسوی" #: Editor.java:1097 msgid "Frequently Asked Questions" -msgstr "" +msgstr "سوالات متداول" #: Preferences.java:96 msgid "Galician" @@ -1011,15 +1003,15 @@ msgstr "" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" -msgstr "" +msgstr "گرجی" #: Preferences.java:97 msgid "German" -msgstr "" +msgstr "آلمانی" #: Editor.java:1054 msgid "Getting Started" -msgstr "" +msgstr "شروع به کار" #: ../../../processing/app/Sketch.java:1646 #, java-format @@ -1035,19 +1027,19 @@ msgstr "" #: Preferences.java:98 msgid "Greek" -msgstr "" +msgstr "یونانی" #: ../../../processing/app/Preferences.java:95 msgid "Hebrew" -msgstr "" +msgstr "عبری" #: Editor.java:1015 msgid "Help" -msgstr "" +msgstr "راهنما" #: Preferences.java:99 msgid "Hindi" -msgstr "" +msgstr "هندی" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" @@ -1105,7 +1097,7 @@ msgstr "" #: Preferences.java:101 msgid "Indonesian" -msgstr "" +msgstr "اندونزایی" #: ../../../../../app/src/processing/app/Base.java:295 msgid "Initializing packages..." @@ -1152,17 +1144,22 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" -msgstr "" +msgstr "ایتالیایی" #: Preferences.java:103 msgid "Japanese" -msgstr "" +msgstr "ژاپنی" #: Preferences.java:104 msgid "Korean" -msgstr "" +msgstr "کره‌ای" #: Preferences.java:105 msgid "Latvian" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1211,10 +1213,11 @@ msgstr "" #: Base.java:2112 msgid "Message" -msgstr "" +msgstr "پیغام" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,17 +1249,13 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" -msgstr "" +msgstr "اسم فایل جدید:" #: ../../../processing/app/Preferences.java:149 msgid "Nepali" -msgstr "" +msgstr "نپالی" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" @@ -1272,7 +1271,7 @@ msgstr "" #: EditorToolbar.java:41 Editor.java:493 msgid "New" -msgstr "" +msgstr "جدید" #: EditorHeader.java:292 msgid "New Tab" @@ -1280,7 +1279,7 @@ msgstr "" #: SerialMonitor.java:112 msgid "Newline" -msgstr "" +msgstr "خط جدید" #: EditorHeader.java:340 msgid "Next Tab" @@ -1288,16 +1287,12 @@ msgstr "" #: Preferences.java:78 UpdateCheck.java:108 msgid "No" -msgstr "" +msgstr "خیر" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1394,7 +1381,7 @@ msgstr "" #: EditorToolbar.java:41 msgid "Open" -msgstr "" +msgstr "باز کردن" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" @@ -1410,15 +1397,15 @@ msgstr "" #: Base.java:903 Editor.java:501 msgid "Open..." -msgstr "開啟..." +msgstr "باز کردن..." #: Editor.java:563 msgid "Page Setup" -msgstr "" +msgstr "تنظیم صفحه" #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 msgid "Password:" -msgstr "" +msgstr "کلمه عبور:" #: Editor.java:1189 Editor.java:2731 msgid "Paste" @@ -1426,12 +1413,17 @@ msgstr "" #: Preferences.java:109 msgid "Persian" -msgstr "" +msgstr "فارسی" #: ../../../processing/app/Preferences.java:161 msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1455,11 +1447,11 @@ msgstr "" #: Preferences.java:110 msgid "Polish" -msgstr "" +msgstr "لهستانی" #: ../../../processing/app/Editor.java:718 msgid "Port" -msgstr "" +msgstr "پورت" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" @@ -1467,19 +1459,19 @@ msgstr "" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" -msgstr "" +msgstr "پرتغالی" #: ../../../processing/app/Preferences.java:127 msgid "Portuguese (Brazil)" -msgstr "" +msgstr "پرتغالی (برزیل)" #: ../../../processing/app/Preferences.java:128 msgid "Portuguese (Portugal)" -msgstr "" +msgstr "پرتغالی (کشور پرتغال)" #: Preferences.java:295 Editor.java:583 msgid "Preferences" -msgstr "" +msgstr "تنظیمات برنامه" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." @@ -1487,7 +1479,7 @@ msgstr "" #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" -msgstr "" +msgstr "قبلی" #: EditorHeader.java:326 msgid "Previous Tab" @@ -1495,19 +1487,19 @@ msgstr "" #: Editor.java:571 msgid "Print" -msgstr "" +msgstr "چاپ" #: Editor.java:2571 msgid "Printing canceled." -msgstr "" +msgstr "پرینت کنسل شد." #: Editor.java:2547 msgid "Printing..." -msgstr "" +msgstr "در حال چاپ..." #: Base.java:1957 msgid "Problem Opening Folder" -msgstr "" +msgstr "خطا در بازکردن پوشه" #: Base.java:1933 msgid "Problem Opening URL" @@ -1523,17 +1515,12 @@ msgstr "" #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 msgid "Problem accessing files in folder " -msgstr "" +msgstr "خطا در دسترسی به فایلهای پوشه" #: Base.java:1673 msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1542,19 +1529,28 @@ msgstr "" #: Sketch.java:355 Sketch.java:362 Sketch.java:373 msgid "Problem with rename" -msgstr "" +msgstr "خطا در تغییر نام" #: ../../../processing/app/I18n.java:86 msgid "Processor" -msgstr "" +msgstr "پردازنده" #: Editor.java:704 msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" -msgstr "關閉" +msgstr "خروج" + +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" @@ -1580,19 +1576,19 @@ msgstr "" #: EditorHeader.java:300 msgid "Rename" -msgstr "" +msgstr "تغییر نام" #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 msgid "Replace" -msgstr "" +msgstr "جایگزینی" #: FindReplace.java:122 FindReplace.java:129 msgid "Replace & Find" -msgstr "" +msgstr "جستجو و جایگزینی" #: FindReplace.java:120 FindReplace.java:131 msgid "Replace All" -msgstr "" +msgstr "جایگزینی همه" #: Sketch.java:1043 #, java-format @@ -1601,15 +1597,25 @@ msgstr "" #: FindReplace.java:81 msgid "Replace with:" -msgstr "" +msgstr "جایگزینی با:" #: Preferences.java:113 msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" -msgstr "" +msgstr "روسی" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 @@ -1618,16 +1624,16 @@ msgstr "" #: Editor.java:537 msgid "Save As..." -msgstr "" +msgstr "ذخیره کردن به عنوان..." #: Editor.java:2317 msgid "Save Canceled." -msgstr "" +msgstr "ذخیره سازی کنسل شد." #: Editor.java:2020 #, java-format msgid "Save changes to \"{0}\"? " -msgstr "" +msgstr "تغییرات \"{0}\" را ذخیره می‌کنید؟" #: Sketch.java:825 msgid "Save sketch folder as..." @@ -1639,7 +1645,7 @@ msgstr "" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." -msgstr "" +msgstr "در حال ذخیره کردن..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" @@ -1651,7 +1657,7 @@ msgstr "" #: Editor.java:1198 Editor.java:2739 msgid "Select All" -msgstr "" +msgstr "انتخاب همه" #: Base.java:2636 msgid "Select a zip file or a folder containing the library you'd like to add" @@ -1684,7 +1690,7 @@ msgstr "" #: SerialMonitor.java:93 msgid "Send" -msgstr "" +msgstr "ارسال" #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 msgid "Serial Monitor" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1813,7 +1824,7 @@ msgstr "" #: Preferences.java:115 msgid "Spanish" -msgstr "" +msgstr "اسپانیایی" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" @@ -1827,13 +1838,9 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" -msgstr "" +msgstr "سوئدی" #: Preferences.java:84 msgid "System Default" @@ -1845,11 +1852,11 @@ msgstr "" #: Preferences.java:116 msgid "Tamil" -msgstr "" +msgstr "تامیل" #: debug/Compiler.java:414 msgid "The 'BYTE' keyword is no longer supported." -msgstr "" +msgstr "عبارت BYTE دیگر پشیبانی نمی‌شود." #: ../../../processing/app/BaseNoGui.java:484 msgid "The --upload option supports only one file at a time" @@ -1857,7 +1864,7 @@ msgstr "" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." -msgstr "" +msgstr "The Client به EthernetClient تغییر نام یافته." #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format @@ -1868,7 +1875,7 @@ msgstr "" #: debug/Compiler.java:420 msgid "The Server class has been renamed EthernetServer." -msgstr "" +msgstr "The Server به EthernetServer تغییر نام یافته." #: debug/Compiler.java:432 msgid "The Udp class has been renamed EthernetUdp." @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -1981,7 +1982,7 @@ msgstr "" #: Editor.java:663 msgid "Tools" -msgstr "" +msgstr "ابزار" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" @@ -1989,11 +1990,11 @@ msgstr "" #: Editor.java:1070 msgid "Troubleshooting" -msgstr "" +msgstr "خطا یابی" #: ../../../processing/app/Preferences.java:117 msgid "Turkish" -msgstr "" +msgstr "ترکی" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 @@ -2010,7 +2011,7 @@ msgstr "" #: ../../../processing/app/Preferences.java:118 msgid "Ukrainian" -msgstr "" +msgstr "اکراینی" #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,13 +2044,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2061,7 +2072,7 @@ msgstr "" #: UpdateCheck.java:111 msgid "Update" -msgstr "" +msgstr "به روز رسانی" #: Preferences.java:428 msgid "Update sketch files to new extension on save (.pde -> .ino)" @@ -2073,7 +2084,7 @@ msgstr "" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" -msgstr "" +msgstr "آپلود" #: EditorToolbar.java:46 Editor.java:553 msgid "Upload Using Programmer" @@ -2081,11 +2092,11 @@ msgstr "" #: Editor.java:2403 Editor.java:2439 msgid "Upload canceled." -msgstr "" +msgstr "آپلود کنسل شد." #: ../../../processing/app/Sketch.java:1678 msgid "Upload cancelled" -msgstr "" +msgstr "آپلود کنسل شد" #: Editor.java:2378 msgid "Uploading to I/O Board..." @@ -2093,19 +2104,15 @@ msgstr "" #: Sketch.java:1622 msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" +msgstr "در حال آپلود..." #: Editor.java:1269 msgid "Use Selection For Find" -msgstr "" +msgstr "متن انتخاب شده را جستجو کن" #: Preferences.java:409 msgid "Use external editor" -msgstr "" +msgstr "استفاده از ویرایشگر متفرقه" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 @@ -2133,7 +2140,7 @@ msgstr "" #: Preferences.java:400 msgid "Verify code after upload" -msgstr "" +msgstr "کد را پس از آپلود، مجدد چک کن" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" @@ -2167,10 +2174,20 @@ msgstr "" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" -msgstr "" +msgstr "ویتنامی" #: Editor.java:1105 msgid "Visit Arduino.cc" +msgstr "سایت Arduino.cc را بازدید کنید." + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" msgstr "" #: ../../../processing/app/debug/Compiler.java:115 @@ -2182,7 +2199,7 @@ msgstr "" #: Base.java:2128 msgid "Warning" -msgstr "" +msgstr "اخطار" #: ../../../processing/app/debug/Compiler.java:1295 msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2233,7 +2256,7 @@ msgstr "" #: debug/Compiler.java:438 msgid "Wire.send() has been renamed Wire.write()." -msgstr "" +msgstr "Wire.send با Wire.write تغییر نام یافته." #: FindReplace.java:105 msgid "Wrap Around" @@ -2247,11 +2270,11 @@ msgstr "" #: Preferences.java:77 UpdateCheck.java:108 msgid "Yes" -msgstr "" +msgstr "بله" #: Sketch.java:1074 msgid "You can't fool me" -msgstr "" +msgstr "نمی‌توانی من را سر کار بگذاری" #: Sketch.java:411 msgid "You can't have a .cpp file with the same name as the sketch." @@ -2308,7 +2331,7 @@ msgstr "" #: Base.java:2638 msgid "ZIP files or folders" -msgstr "" +msgstr "فایلهای ZIP و پوشه‌ها" #: Base.java:2661 msgid "Zip doesn't contain a library" @@ -2317,7 +2340,7 @@ msgstr "" #: Sketch.java:364 #, java-format msgid "\".{0}\" is not a valid extension." -msgstr "" +msgstr "''{0}'' یک پسوند فایل صحیح نیست." #: SketchCode.java:258 #, java-format @@ -2385,11 +2408,11 @@ msgstr "" #: Preferences.java:389 msgid "compilation " -msgstr "" +msgstr "در حال کامپایل" #: ../../../processing/app/NetworkMonitor.java:111 msgid "connected!" -msgstr "" +msgstr "متصل شد!" #: Sketch.java:540 msgid "createNewFile() returned false" @@ -2428,7 +2451,7 @@ msgstr "" #, java-format msgid "" "the selected serial port {0} does not exist or your board is not connected" -msgstr "" +msgstr "پورت سریال {0} وجود ندارد یا این که بورد شما به آن وصل نیست" #: ../../../processing/app/Base.java:389 #, java-format @@ -2437,7 +2460,7 @@ msgstr "" #: Preferences.java:391 msgid "upload" -msgstr "" +msgstr "آپلود" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_nn.properties b/arduino-core/src/processing/app/i18n/Resources_fa_IR.properties similarity index 74% rename from arduino-core/src/processing/app/i18n/Resources_nn.properties rename to arduino-core/src/processing/app/i18n/Resources_fa_IR.properties index 6bee75a30c2..3b45be66ec7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nn.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fa_IR.properties @@ -6,7 +6,9 @@ # Translators: # Translators: # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Norwegian Nynorsk (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nn/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nn\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# Translators: +# Ali Mirjamali , 2013 +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Persian (Iran) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa_IR\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -20,14 +22,20 @@ !\ Used\:\ {0}= #: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u06a9\u06cc\u200c\u0628\u0631\u062f \u0641\u0642\u0637 \u062f\u0631 \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f #: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u0645\u0627\u0648\u0633 \u0641\u0642\u0637 \u062f\u0631 \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -75,13 +83,13 @@ !A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= #: Editor.java:1116 -!About\ Arduino= +About\ Arduino=\u062f\u0631 \u0645\u0648\u0631\u062f \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 #: ../../../../../app/src/processing/app/Base.java:1177 !Add\ .ZIP\ Library...= #: Editor.java:650 -!Add\ File...= +Add\ File...=\u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 !Additional\ Boards\ Manager\ URLs= @@ -121,7 +129,7 @@ !An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= #: Preferences.java:85 -!Arabic= +Arabic=\u0639\u0631\u0628\u06cc #: Preferences.java:86 !Aragonese= @@ -139,10 +147,10 @@ !Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= #: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= +Arduino\ ARM\ (32-bits)\ Boards=\u0628\u0631\u062f\u0647\u0627\u06cc (\u06f3\u06f2 \u0628\u06cc\u062a\u06cc) ARM \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 #: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= +Arduino\ AVR\ Boards=\u0628\u0631\u062f\u0647\u0627\u06cc AVR \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 #: Editor.java:2137 !Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= @@ -154,11 +162,11 @@ !Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= #: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = +Arduino\:\ =\u0622\u0631\u062f\u0648\u06cc\u0646\u0648\: #: Sketch.java:588 #, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= +Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0627\u0637\u0645\u06cc\u0646\u0627\u0646 \u062f\u0627\u0631\u06cc\u062f \u06a9\u0647 \u0645\u06cc\u200c\u062e\u0648\u0627\u0647\u06cc\u062f "{0}" \u0631\u0627 \u062d\u0630\u0641 \u06a9\u0646\u06cc\u062f\u061f #: Sketch.java:587 !Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= @@ -181,7 +189,7 @@ !Argument\ required\ for\ {0}= #: ../../../processing/app/Preferences.java:137 -!Armenian= +Armenian=\u0627\u0631\u0645\u0646\u06cc #: ../../../processing/app/Preferences.java:138 !Asturian= @@ -209,30 +217,28 @@ !Bad\ error\ line\:\ {0}= #: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= +Bad\ file\ selected=\u0641\u0627\u06cc\u0644 \u0627\u0634\u062a\u0628\u0627\u0647 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= +Belarusian=\u0628\u0644\u0627\u0631\u0648\u0633\u06cc #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 -!Board= +Board=\u0628\u064f\u0631\u062f + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= #: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = +Board\:\ =\u0628\u064f\u0631\u062f\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Boards\ Manager= @@ -248,28 +254,28 @@ !Bootloader\ file\ specified\ but\ missing\:\ {0}= #: ../../../processing/app/Preferences.java:140 -!Bosnian= +Bosnian=\u0628\u0648\u0633\u0646\u06cc #: SerialMonitor.java:112 -!Both\ NL\ &\ CR= +Both\ NL\ &\ CR=\u0647\u0645 \u062e\u0637 \u062c\u062f\u06cc\u062f \u0648 \u0647\u0645 \u0633\u0631 \u062e\u0637 #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 -!Bulgarian= +Bulgarian=\u0628\u0644\u063a\u0627\u0631\u06cc #: ../../../processing/app/Preferences.java:141 !Burmese\ (Myanmar)= #: Editor.java:708 -!Burn\ Bootloader= +Burn\ Bootloader=Bootloader \u0631\u0627 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0646 #: Editor.java:2504 !Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= @@ -286,50 +292,41 @@ !Can't\ find\ the\ sketch\ in\ the\ specified\ path= #: ../../../processing/app/Preferences.java:92 -!Canadian\ French= +Canadian\ French=\u0641\u0631\u0627\u0646\u0633\u0648\u06cc (\u06a9\u0627\u0646\u0627\u062f\u0627) #: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 #: Editor.java:2064 Editor.java:2145 Editor.java:2465 !Cancel= #: Sketch.java:455 -!Cannot\ Rename= +Cannot\ Rename=\u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u0645\u0645\u06a9\u0646 \u0646\u06cc\u0633\u062a #: ../../../processing/app/Base.java:465 !Cannot\ specify\ any\ sketch\ files= #: SerialMonitor.java:112 -!Carriage\ return= +Carriage\ return=\u0633\u0631 \u062e\u0637 #: Preferences.java:87 -!Catalan= +Catalan=\u06a9\u0627\u062a\u0627\u0644\u0627\u0646 #: Preferences.java:419 !Check\ for\ updates\ on\ startup= #: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= +Chinese\ (China)=\u0686\u06cc\u0646\u06cc (\u06a9\u0634\u0648\u0631 \u0686\u06cc\u0646) #: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= +Chinese\ (Taiwan)=\u0686\u06cc\u0646\u06cc (\u062a\u0627\u06cc\u0648\u0627\u0646) #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= #: Editor.java:521 Editor.java:2024 -!Close= +Close=\u0628\u0633\u062a\u0646 #: Editor.java:1208 Editor.java:2749 !Comment/Uncomment= @@ -341,13 +338,13 @@ !Compiling\ sketch...= #: Editor.java:1157 Editor.java:2707 -!Copy= +Copy=\u06a9\u067e\u06cc #: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= +Copy\ as\ HTML=\u06a9\u067e\u06cc \u06a9\u0631\u062f\u0646 \u0628\u0627 \u0641\u0631\u0645\u062a HTML #: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= +Copy\ error\ messages=\u067e\u06cc\u063a\u0627\u0645\u0647\u0627\u06cc \u062e\u0637\u0627 \u0631\u0627 \u06a9\u067e\u06cc \u06a9\u0646 #: Editor.java:1165 Editor.java:2715 !Copy\ for\ Forum= @@ -367,11 +364,11 @@ #: Sketch.java:617 #, java-format -!Could\ not\ delete\ "{0}".= +Could\ not\ delete\ "{0}".=\u062d\u0630\u0641 ''{0}'' \u0645\u0645\u06a9\u0646 \u0646\u0634\u062f. #: Sketch.java:1066 #, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= +Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u062d\u0630\u0641 \u0641\u0627\u06cc\u0644 ''{0}'' \u0645\u0645\u06a9\u0646 \u0646\u0634\u062f. #: Base.java:2533 Base.java:2556 #, java-format @@ -409,9 +406,6 @@ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -433,9 +427,6 @@ #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -443,7 +434,7 @@ !Couldn't\ determine\ program\ size\:\ {0}= #: Sketch.java:616 -!Couldn't\ do\ it= +Couldn't\ do\ it=\u0627\u06cc\u0646 \u06a9\u0627\u0631 \u0645\u0645\u06a9\u0646 \u0646\u06cc\u0633\u062a #: debug/BasicUploader.java:209 !Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= @@ -454,15 +445,9 @@ #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -473,7 +458,7 @@ !Default= #: EditorHeader.java:314 Sketch.java:591 -!Delete= +Delete=\u062d\u0630\u0641 #: debug/Uploader.java:199 !Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= @@ -482,36 +467,36 @@ !Discard\ all\ changes\ and\ reload\ sketch?= #: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= +Display\ line\ numbers=\u0634\u0645\u0627\u0631\u0647 \u062e\u0637\u0648\u0637 \u0631\u0627 \u0646\u0634\u0627\u0646 \u0628\u062f\u0647 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format !Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= #: Editor.java:2064 -!Don't\ Save= +Don't\ Save=\u0630\u062e\u06cc\u0631\u0647 \u0646\u0634\u0648\u062f #: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= +Done\ Saving.=\u0630\u062e\u06cc\u0631\u0647 \u0634\u062f. #: Editor.java:2510 -!Done\ burning\ bootloader.= +Done\ burning\ bootloader.=\u0630\u062e\u06cc\u0631\u0647 Bootloader \u0627\u0646\u062c\u0627\u0645 \u06af\u0631\u062f\u06cc\u062f. #: ../../../processing/app/BaseNoGui.java:507 #: ../../../processing/app/BaseNoGui.java:552 !Done\ compiling= #: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= +Done\ compiling.=\u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 \u0634\u062f. #: Editor.java:2564 -!Done\ printing.= +Done\ printing.=\u067e\u0627\u06cc\u0627\u0646 \u0686\u0627\u067e. #: ../../../processing/app/BaseNoGui.java:514 !Done\ uploading= #: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= +Done\ uploading.=\u0622\u067e\u0644\u0648\u062f \u0634\u062f. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format @@ -535,31 +520,31 @@ !Downloading\ tools\ ({0}/{1}).= #: Preferences.java:91 -!Dutch= +Dutch=\u0647\u0644\u0646\u062f\u06cc #: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= +Dutch\ (Netherlands)=\u0647\u0644\u0646\u062f\u06cc #: ../../../../../app/src/processing/app/Editor.java:1309 !Edison\ Help= #: Editor.java:1130 -!Edit= +Edit=\u0648\u06cc\u0631\u0627\u06cc\u0634 #: Preferences.java:370 -!Editor\ font\ size\:\ = +Editor\ font\ size\:\ =\u0627\u0646\u062f\u0627\u0632\u0647 \u0641\u0648\u0646\u062a \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631\: #: Preferences.java:353 -!Editor\ language\:\ = +Editor\ language\:\ =\u0632\u0628\u0627\u0646 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 !Enable\ Code\ Folding= #: Preferences.java:92 -!English= +English=\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc #: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= +English\ (United\ Kingdom)=\u0627\u0646\u06af\u0644\u06cc\u0633\u06cc (\u0627\u0646\u06af\u0644\u0633\u062a\u0627\u0646) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 @@ -569,18 +554,18 @@ !Enter\ additional\ URLs,\ one\ for\ each\ row= #: Editor.java:1062 -!Environment= +Environment=\u0645\u062d\u06cc\u0637 \u0628\u0631\u0646\u0627\u0645\u0647 \u0646\u0648\u06cc\u0633\u06cc #: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 #: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 #: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= +Error=\u062e\u0637\u0627 #: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= +Error\ adding\ file=\u062e\u0637\u0627 \u062f\u0631 \u0627\u0636\u0627\u0641\u0647 \u06a9\u0631\u062f\u0646 \u0641\u0627\u06cc\u0644 #: debug/Compiler.java:369 -!Error\ compiling.= +Error\ compiling.=\u062e\u0637\u0627\u06cc \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format @@ -597,18 +582,18 @@ #: ../../../processing/app/debug/TargetPlatform.java:106 #: ../../../processing/app/debug/TargetPlatform.java:117 #, java-format -!Error\ loading\ {0}= +Error\ loading\ {0}=\u062e\u0637\u0627\u06cc \u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc {0} #: Serial.java:181 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.= +Error\ opening\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u062f\u0631 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u0648\u0631\u062a \u0633\u0631\u06cc\u0627\u0644 "{0}". #: ../../../processing/app/Serial.java:119 #, java-format !Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= #: Preferences.java:277 -!Error\ reading\ preferences= +Error\ reading\ preferences=\u062e\u0637\u0627 \u062f\u0631 \u062e\u0648\u0627\u0646\u062f\u0646 \u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 #: Preferences.java:279 #, java-format @@ -624,7 +609,7 @@ #: Serial.java:125 #, java-format -!Error\ touching\ serial\ port\ ''{0}''.= +Error\ touching\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u067e\u0648\u0631\u062a \u0633\u0631\u06cc\u0627\u0644 ''{0}''. #: Editor.java:2512 Editor.java:2516 Editor.java:2520 !Error\ while\ burning\ bootloader.= @@ -640,7 +625,7 @@ !Error\ while\ loading\ code\ {0}= #: Editor.java:2567 -!Error\ while\ printing.= +Error\ while\ printing.=\u062e\u0637\u0627 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e. #: ../../../processing/app/BaseNoGui.java:528 !Error\ while\ uploading= @@ -664,7 +649,16 @@ !Estonian\ (Estonia)= #: Editor.java:516 -!Examples= +Examples=\u0645\u062b\u0627\u0644\u200c\u0647\u0627 + +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -674,34 +668,34 @@ !Failed\ to\ open\ sketch\:\ "{0}"= #: Editor.java:491 -!File= +File=\u0641\u0627\u06cc\u0644 #: Preferences.java:94 -!Filipino= +Filipino=\u0641\u0644\u06cc\u067e\u06cc\u0646\u06cc #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 !Filter\ your\ search...= #: FindReplace.java:124 FindReplace.java:127 -!Find= +Find=\u062c\u0633\u062a\u062c\u0648 #: Editor.java:1249 -!Find\ Next= +Find\ Next=\u062c\u0633\u062a\u062c\u0648 \u0645\u0648\u0631\u062f \u0628\u0639\u062f\u06cc #: Editor.java:1259 -!Find\ Previous= +Find\ Previous=\u062c\u0633\u062a\u062c\u0648 \u0645\u0648\u0631\u062f \u0642\u0628\u0644\u06cc #: Editor.java:1086 Editor.java:2775 !Find\ in\ Reference= #: Editor.java:1234 -!Find...= +Find...=\u062c\u0633\u062a\u062c\u0648... #: FindReplace.java:80 -!Find\:= +Find\:=\u062c\u0633\u062a\u062c\u0648\: #: ../../../processing/app/Preferences.java:147 -!Finnish= +Finnish=\u0641\u0646\u0644\u0627\u0646\u062f\u06cc #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 @@ -715,10 +709,10 @@ !Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= #: Preferences.java:95 -!French= +French=\u0641\u0631\u0627\u0646\u0633\u0648\u06cc #: Editor.java:1097 -!Frequently\ Asked\ Questions= +Frequently\ Asked\ Questions=\u0633\u0648\u0627\u0644\u0627\u062a \u0645\u062a\u062f\u0627\u0648\u0644 #: Preferences.java:96 !Galician= @@ -730,13 +724,13 @@ !Galileo\ Help= #: ../../../processing/app/Preferences.java:94 -!Georgian= +Georgian=\u06af\u0631\u062c\u06cc #: Preferences.java:97 -!German= +German=\u0622\u0644\u0645\u0627\u0646\u06cc #: Editor.java:1054 -!Getting\ Started= +Getting\ Started=\u0634\u0631\u0648\u0639 \u0628\u0647 \u06a9\u0627\u0631 #: ../../../processing/app/Sketch.java:1646 #, java-format @@ -747,16 +741,16 @@ !Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= #: Preferences.java:98 -!Greek= +Greek=\u06cc\u0648\u0646\u0627\u0646\u06cc #: ../../../processing/app/Preferences.java:95 -!Hebrew= +Hebrew=\u0639\u0628\u0631\u06cc #: Editor.java:1015 -!Help= +Help=\u0631\u0627\u0647\u0646\u0645\u0627 #: Preferences.java:99 -!Hindi= +Hindi=\u0647\u0646\u062f\u06cc #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 !Host\ name\:= @@ -793,7 +787,7 @@ !Increase\ Indent= #: Preferences.java:101 -!Indonesian= +Indonesian=\u0627\u0646\u062f\u0648\u0646\u0632\u0627\u06cc\u06cc #: ../../../../../app/src/processing/app/Base.java:295 !Initializing\ packages...= @@ -831,14 +825,18 @@ #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 -!Italian= +Italian=\u0627\u06cc\u062a\u0627\u0644\u06cc\u0627\u06cc\u06cc #: Preferences.java:103 -!Japanese= +Japanese=\u0698\u0627\u067e\u0646\u06cc #: Preferences.java:104 -!Korean= +Korean=\u06a9\u0631\u0647\u200c\u0627\u06cc #: Preferences.java:105 !Latvian= @@ -849,6 +847,9 @@ #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -859,12 +860,13 @@ #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -875,10 +877,11 @@ !Marathi= #: Base.java:2112 -!Message= +Message=\u067e\u06cc\u063a\u0627\u0645 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -902,14 +905,11 @@ #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 -!Name\ for\ new\ file\:= +Name\ for\ new\ file\:=\u0627\u0633\u0645 \u0641\u0627\u06cc\u0644 \u062c\u062f\u06cc\u062f\: #: ../../../processing/app/Preferences.java:149 -!Nepali= +Nepali=\u0646\u067e\u0627\u0644\u06cc #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 !Network= @@ -921,26 +921,23 @@ !Network\ upload\ using\ programmer\ not\ supported= #: EditorToolbar.java:41 Editor.java:493 -!New= +New=\u062c\u062f\u06cc\u062f #: EditorHeader.java:292 !New\ Tab= #: SerialMonitor.java:112 -!Newline= +Newline=\u062e\u0637 \u062c\u062f\u06cc\u062f #: EditorHeader.java:340 !Next\ Tab= #: Preferences.java:78 UpdateCheck.java:108 -!No= +No=\u062e\u06cc\u0631 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -989,15 +986,9 @@ #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1012,7 +1003,7 @@ !Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= #: EditorToolbar.java:41 -!Open= +Open=\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646 #: ../../../../../app/src/processing/app/Editor.java:625 !Open\ Recent= @@ -1024,23 +1015,27 @@ !Open\ an\ Arduino\ sketch...= #: Base.java:903 Editor.java:501 -!Open...= +Open...=\u0628\u0627\u0632 \u06a9\u0631\u062f\u0646... #: Editor.java:563 -!Page\ Setup= +Page\ Setup=\u062a\u0646\u0638\u06cc\u0645 \u0635\u0641\u062d\u0647 #: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= +Password\:=\u06a9\u0644\u0645\u0647 \u0639\u0628\u0648\u0631\: #: Editor.java:1189 Editor.java:2731 !Paste= #: Preferences.java:109 -!Persian= +Persian=\u0641\u0627\u0631\u0633\u06cc #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1058,46 +1053,46 @@ !Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= #: Preferences.java:110 -!Polish= +Polish=\u0644\u0647\u0633\u062a\u0627\u0646\u06cc #: ../../../processing/app/Editor.java:718 -!Port= +Port=\u067e\u0648\u0631\u062a #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 !Port\ number\:= #: ../../../processing/app/Preferences.java:151 -!Portugese= +Portugese=\u067e\u0631\u062a\u063a\u0627\u0644\u06cc #: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= +Portuguese\ (Brazil)=\u067e\u0631\u062a\u063a\u0627\u0644\u06cc (\u0628\u0631\u0632\u06cc\u0644) #: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= +Portuguese\ (Portugal)=\u067e\u0631\u062a\u063a\u0627\u0644\u06cc (\u06a9\u0634\u0648\u0631 \u067e\u0631\u062a\u063a\u0627\u0644) #: Preferences.java:295 Editor.java:583 -!Preferences= +Preferences=\u062a\u0646\u0638\u06cc\u0645\u0627\u062a \u0628\u0631\u0646\u0627\u0645\u0647 #: ../../../../../app/src/processing/app/Base.java:297 !Preparing\ boards...= #: FindReplace.java:123 FindReplace.java:128 -!Previous= +Previous=\u0642\u0628\u0644\u06cc #: EditorHeader.java:326 !Previous\ Tab= #: Editor.java:571 -!Print= +Print=\u0686\u0627\u067e #: Editor.java:2571 -!Printing\ canceled.= +Printing\ canceled.=\u067e\u0631\u06cc\u0646\u062a \u06a9\u0646\u0633\u0644 \u0634\u062f. #: Editor.java:2547 -!Printing...= +Printing...=\u062f\u0631 \u062d\u0627\u0644 \u0686\u0627\u067e... #: Base.java:1957 -!Problem\ Opening\ Folder= +Problem\ Opening\ Folder=\u062e\u0637\u0627 \u062f\u0631 \u0628\u0627\u0632\u06a9\u0631\u062f\u0646 \u067e\u0648\u0634\u0647 #: Base.java:1933 !Problem\ Opening\ URL= @@ -1109,29 +1104,32 @@ !Problem\ accessing\ board\ folder\ /www/sd= #: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = +Problem\ accessing\ files\ in\ folder\ =\u062e\u0637\u0627 \u062f\u0631 \u062f\u0633\u062a\u0631\u0633\u06cc \u0628\u0647 \u0641\u0627\u06cc\u0644\u0647\u0627\u06cc \u067e\u0648\u0634\u0647 #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= #: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= +Problem\ with\ rename=\u062e\u0637\u0627 \u062f\u0631 \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 #: ../../../processing/app/I18n.java:86 -!Processor= +Processor=\u067e\u0631\u062f\u0627\u0632\u0646\u062f\u0647 #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 -!Quit= +Quit=\u062e\u0631\u0648\u062c + +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1151,43 +1149,51 @@ !Removing...= #: EditorHeader.java:300 -!Rename= +Rename=\u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 #: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= +Replace=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc #: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= +Replace\ &\ Find=\u062c\u0633\u062a\u062c\u0648 \u0648 \u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc #: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= +Replace\ All=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0647\u0645\u0647 #: Sketch.java:1043 #, java-format !Replace\ the\ existing\ version\ of\ {0}?= #: FindReplace.java:81 -!Replace\ with\:= +Replace\ with\:=\u062c\u0627\u06cc\u06af\u0632\u06cc\u0646\u06cc \u0628\u0627\: #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 -!Russian= +Russian=\u0631\u0648\u0633\u06cc #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 #: Editor.java:2064 Editor.java:2468 !Save= #: Editor.java:537 -!Save\ As...= +Save\ As...=\u0630\u062e\u06cc\u0631\u0647 \u06a9\u0631\u062f\u0646 \u0628\u0647 \u0639\u0646\u0648\u0627\u0646... #: Editor.java:2317 -!Save\ Canceled.= +Save\ Canceled.=\u0630\u062e\u06cc\u0631\u0647 \u0633\u0627\u0632\u06cc \u06a9\u0646\u0633\u0644 \u0634\u062f. #: Editor.java:2020 #, java-format -!Save\ changes\ to\ "{0}"?\ \ = +Save\ changes\ to\ "{0}"?\ \ =\u062a\u063a\u06cc\u06cc\u0631\u0627\u062a "{0}" \u0631\u0627 \u0630\u062e\u06cc\u0631\u0647 \u0645\u06cc\u200c\u06a9\u0646\u06cc\u062f\u061f #: Sketch.java:825 !Save\ sketch\ folder\ as...= @@ -1196,7 +1202,7 @@ !Save\ when\ verifying\ or\ uploading= #: Editor.java:2270 Editor.java:2308 -!Saving...= +Saving...=\u062f\u0631 \u062d\u0627\u0644 \u0630\u062e\u06cc\u0631\u0647 \u06a9\u0631\u062f\u0646... #: ../../../processing/app/FindReplace.java:131 !Search\ all\ Sketch\ Tabs= @@ -1205,7 +1211,7 @@ !Select\ (or\ create\ new)\ folder\ for\ sketches...= #: Editor.java:1198 Editor.java:2739 -!Select\ All= +Select\ All=\u0627\u0646\u062a\u062e\u0627\u0628 \u0647\u0645\u0647 #: Base.java:2636 !Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= @@ -1230,7 +1236,7 @@ !Selected\ library\ is\ not\ available= #: SerialMonitor.java:93 -!Send= +Send=\u0627\u0631\u0633\u0627\u0644 #: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 !Serial\ Monitor= @@ -1249,6 +1255,10 @@ #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1318,7 +1328,7 @@ !Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= #: Preferences.java:115 -!Spanish= +Spanish=\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc #: ../../../../../app/src/processing/app/Base.java:2333 !Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= @@ -1329,11 +1339,8 @@ #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 -!Swedish= +Swedish=\u0633\u0648\u0626\u062f\u06cc #: Preferences.java:84 !System\ Default= @@ -1342,23 +1349,23 @@ !Talossan= #: Preferences.java:116 -!Tamil= +Tamil=\u062a\u0627\u0645\u06cc\u0644 #: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= +The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0639\u0628\u0627\u0631\u062a BYTE \u062f\u06cc\u06af\u0631 \u067e\u0634\u06cc\u0628\u0627\u0646\u06cc \u0646\u0645\u06cc\u200c\u0634\u0648\u062f. #: ../../../processing/app/BaseNoGui.java:484 !The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= #: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= +The\ Client\ class\ has\ been\ renamed\ EthernetClient.=The Client \u0628\u0647 EthernetClient \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u06cc\u0627\u0641\u062a\u0647. #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format !The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= #: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= +The\ Server\ class\ has\ been\ renamed\ EthernetServer.=The Server \u0628\u0647 EthernetServer \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u06cc\u0627\u0641\u062a\u0647. #: debug/Compiler.java:432 !The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= @@ -1396,9 +1403,6 @@ #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1416,16 +1420,16 @@ !Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= #: Editor.java:663 -!Tools= +Tools=\u0627\u0628\u0632\u0627\u0631 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 !Topic= #: Editor.java:1070 -!Troubleshooting= +Troubleshooting=\u062e\u0637\u0627 \u06cc\u0627\u0628\u06cc #: ../../../processing/app/Preferences.java:117 -!Turkish= +Turkish=\u062a\u0631\u06a9\u06cc #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 @@ -1438,7 +1442,7 @@ !Type\ board\ password\ to\ upload\ a\ new\ sketch= #: ../../../processing/app/Preferences.java:118 -!Ukrainian= +Ukrainian=\u0627\u06a9\u0631\u0627\u06cc\u0646\u06cc #: ../../../processing/app/Editor.java:2524 #: ../../../processing/app/NetworkMonitor.java:145 @@ -1450,6 +1454,10 @@ #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1460,13 +1468,17 @@ #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1475,7 +1487,7 @@ !Updatable= #: UpdateCheck.java:111 -!Update= +Update=\u0628\u0647 \u0631\u0648\u0632 \u0631\u0633\u0627\u0646\u06cc #: Preferences.java:428 !Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= @@ -1484,31 +1496,28 @@ !Updating\ list\ of\ installed\ libraries= #: EditorToolbar.java:41 Editor.java:545 -!Upload= +Upload=\u0622\u067e\u0644\u0648\u062f #: EditorToolbar.java:46 Editor.java:553 !Upload\ Using\ Programmer= #: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= +Upload\ canceled.=\u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u0633\u0644 \u0634\u062f. #: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= +Upload\ cancelled=\u0622\u067e\u0644\u0648\u062f \u06a9\u0646\u0633\u0644 \u0634\u062f #: Editor.java:2378 !Uploading\ to\ I/O\ Board...= #: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= +Uploading...=\u062f\u0631 \u062d\u0627\u0644 \u0622\u067e\u0644\u0648\u062f... #: Editor.java:1269 -!Use\ Selection\ For\ Find= +Use\ Selection\ For\ Find=\u0645\u062a\u0646 \u0627\u0646\u062a\u062e\u0627\u0628 \u0634\u062f\u0647 \u0631\u0627 \u062c\u0633\u062a\u062c\u0648 \u06a9\u0646 #: Preferences.java:409 -!Use\ external\ editor= +Use\ external\ editor=\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u0648\u06cc\u0631\u0627\u06cc\u0634\u06af\u0631 \u0645\u062a\u0641\u0631\u0642\u0647 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 @@ -1530,7 +1539,7 @@ !Verify= #: Preferences.java:400 -!Verify\ code\ after\ upload= +Verify\ code\ after\ upload=\u06a9\u062f \u0631\u0627 \u067e\u0633 \u0627\u0632 \u0622\u067e\u0644\u0648\u062f\u060c \u0645\u062c\u062f\u062f \u0686\u06a9 \u06a9\u0646 #: ../../../../../app/src/processing/app/Editor.java:725 !Verify/Compile= @@ -1556,17 +1565,25 @@ !Version\ {0}= #: ../../../processing/app/Preferences.java:154 -!Vietnamese= +Vietnamese=\u0648\u06cc\u062a\u0646\u0627\u0645\u06cc #: Editor.java:1105 -!Visit\ Arduino.cc= +Visit\ Arduino.cc=\u0633\u0627\u06cc\u062a Arduino.cc \u0631\u0627 \u0628\u0627\u0632\u062f\u06cc\u062f \u06a9\u0646\u06cc\u062f. + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= #: Base.java:2128 -!Warning= +Warning=\u0627\u062e\u0637\u0627\u0631 #: ../../../processing/app/debug/Compiler.java:1295 !Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= @@ -1590,6 +1607,9 @@ #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1601,7 +1621,7 @@ !Wire.receive()\ has\ been\ renamed\ Wire.read().= #: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= +Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send \u0628\u0627 Wire.write \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u06cc\u0627\u0641\u062a\u0647. #: FindReplace.java:105 !Wrap\ Around= @@ -1610,10 +1630,10 @@ !Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= #: Preferences.java:77 UpdateCheck.java:108 -!Yes= +Yes=\u0628\u0644\u0647 #: Sketch.java:1074 -!You\ can't\ fool\ me= +You\ can't\ fool\ me=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc \u0645\u0646 \u0631\u0627 \u0633\u0631 \u06a9\u0627\u0631 \u0628\u06af\u0630\u0627\u0631\u06cc #: Sketch.java:411 !You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= @@ -1646,14 +1666,14 @@ !Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= #: Base.java:2638 -!ZIP\ files\ or\ folders= +ZIP\ files\ or\ folders=\u0641\u0627\u06cc\u0644\u0647\u0627\u06cc ZIP \u0648 \u067e\u0648\u0634\u0647\u200c\u0647\u0627 #: Base.java:2661 !Zip\ doesn't\ contain\ a\ library= #: Sketch.java:364 #, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= +".{0}"\ is\ not\ a\ valid\ extension.=''{0}'' \u06cc\u06a9 \u067e\u0633\u0648\u0646\u062f \u0641\u0627\u06cc\u0644 \u0635\u062d\u06cc\u062d \u0646\u06cc\u0633\u062a. #: SketchCode.java:258 #, java-format @@ -1684,10 +1704,10 @@ !baud= #: Preferences.java:389 -!compilation\ = +compilation\ =\u062f\u0631 \u062d\u0627\u0644 \u06a9\u0627\u0645\u067e\u0627\u06cc\u0644 #: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= +connected\!=\u0645\u062a\u0635\u0644 \u0634\u062f\! #: Sketch.java:540 !createNewFile()\ returned\ false= @@ -1716,14 +1736,14 @@ #: debug/Uploader.java:195 #, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= +the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u067e\u0648\u0631\u062a \u0633\u0631\u06cc\u0627\u0644 {0} \u0648\u062c\u0648\u062f \u0646\u062f\u0627\u0631\u062f \u06cc\u0627 \u0627\u06cc\u0646 \u06a9\u0647 \u0628\u0648\u0631\u062f \u0634\u0645\u0627 \u0628\u0647 \u0622\u0646 \u0648\u0635\u0644 \u0646\u06cc\u0633\u062a #: ../../../processing/app/Base.java:389 #, java-format !unknown\ option\:\ {0}= #: Preferences.java:391 -!upload= +upload=\u0622\u067e\u0644\u0648\u062f #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format @@ -1750,6 +1770,14 @@ #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.po b/arduino-core/src/processing/app/i18n/Resources_fi.po index 7af1ad8fa22..eb42e4206d4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.po +++ b/arduino-core/src/processing/app/i18n/Resources_fi.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jaakko Fagerlund , 2013 # lotof , 2014 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Finnish (http://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "'Keyboard' on tuettu vain Arduino Leonardossa" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' on tuettu vain Arduino Leonardossa." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(Muokkaa vain kun Arduino on suljettuna)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "Paha virhe rivillä: {0}" msgid "Bad file selected" msgstr "Väärä tiedosto valittu" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -321,15 +328,16 @@ msgstr "" msgid "Belarusian" msgstr "Belarusia" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Kortti" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "NL & CR" msgid "Browse" msgstr "Selaa" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Rakennuskansio hävisi tai sinne ei voitu kirjoittaa" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaria" @@ -441,10 +449,6 @@ msgstr "Tarkista päivitykset käynnistyessä" msgid "Chinese (China)" msgstr "Kiina (Kiina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Kiina (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Kiina (Taiwan)" @@ -453,14 +457,6 @@ msgstr "Kiina (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Kiina (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "kiina (yksinkertaistettu)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "kiina (perinteinen)" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "Sketsiä ei voitu uudelleennimetä. (2)" msgid "Could not replace {0}" msgstr "{0}:aa ei voitu korvata" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Sketsin arkistointi ei onnistunut" @@ -642,18 +630,10 @@ msgstr "Kroatia" msgid "Cut" msgstr "Leikkaa" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tsekki" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "tanska" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "Estonia (Estonia)" msgid "Examples" msgstr "Esimerkit" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Virheellinen kirjasto paikassa {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "italia" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "liettua" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "marathi" msgid "Message" msgstr "Viesti" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Uuden tiedoston nimi:" @@ -1295,10 +1294,6 @@ msgstr "Ei" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Levyä ei valittu - ole hyvä ja valitse Työkalut -> Levy." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Jäsennin ei vaatinut muutoksia." @@ -1362,18 +1357,10 @@ msgstr "Validia laitteistokonfiguraatiota ei löytynyt kansiosta {0}." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norjan bokmäl" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "persia" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "Ongelma avatessa tiedostoja kansiosta" msgid "Problem getting data folder" msgstr "Datakansiota haettaessa tapahtui ongelma." -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Ongelma siirrettäessä {0} rakennuskansioon" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "Prosessori" msgid "Programmer" msgstr "Ohjelmoija" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Lopeta" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Tee uudelleen" @@ -1608,6 +1604,16 @@ msgstr "Korvaa tällä:" msgid "Romanian" msgstr "romania" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "venäjä" @@ -1713,6 +1719,11 @@ msgstr "Sarjaporttia {0} ei löydy.\nKokeile lähettämistä toisella sarjaporti msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "Täydellistä" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Ruotsi" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "Yhdistäminen ei onnistu: kokeillaan uudelleen" msgid "Unable to connect: wrong password?" msgstr "Yhdistäminen ei onnistu: väärä salasana?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Sarjamonitorin avaus ei onnistu" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Käsittelemätön virhe tyyppiä: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Kumoa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "Lähetetään I/O levylle..." msgid "Uploading..." msgstr "Lähetetään..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Etsi valintaa" @@ -2174,6 +2181,16 @@ msgstr "Vietnami" msgid "Visit Arduino.cc" msgstr "Vieraile Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "{0} tiedostoa lisätty sketsiin." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_fi.properties b/arduino-core/src/processing/app/i18n/Resources_fi.properties index d6851369e90..76c8236dc14 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fi.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Jaakko Fagerlund , 2013 # lotof , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Finnish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Finnish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vaatii Arduinon k\u00e4ynnist\u00e4misen uudelleen)s @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' on tuettu vain Arduino Leonardossa. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Muokkaa vain kun Arduino on suljettuna) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=Paha virhe rivill\u00e4\: {0} #: Editor.java:2136 Bad\ file\ selected=V\u00e4\u00e4r\u00e4 tiedosto valittu -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusia -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Kortti +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Kortti {0}\:{1}\:{2} ei m\u00e4\u00e4rittele ''build.board'' asetusta. Automaattisesti asetettu\: {3} @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=NL & CR #: Preferences.java:81 Browse=Selaa -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Rakennuskansio h\u00e4visi tai sinne ei voitu kirjoittaa - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaria @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=Tarkista p\u00e4ivitykset k\u00e4ynnistyess\u00 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Kiina (Kiina) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Kiina (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Kiina (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Kiina (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=kiina (yksinkertaistettu) - -#: Preferences.java:89 -Chinese\ Traditional=kiina (perinteinen) - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ re-save\ sketch=Sketsi\u00e4 ei voitu tallentaa uudelleen #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Oletusasetuksia ei voitu lukea.\nAsenna Arduino uudelleen. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}={0}\:n vanhaa versiota ei voitu poistaa @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Sketsi\u00e4 ei voitu uudelleennimet\u00e4 #, java-format Could\ not\ replace\ {0}={0}\:aa ei voitu korvata -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Sketsin arkistointi ei onnistunut @@ -456,15 +446,9 @@ Croatian=Kroatia #: Editor.java:1149 Editor.java:2699 Cut=Leikkaa -#: ../../../processing/app/Preferences.java:83 -Czech=Tsekki - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=tanska - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Estonian\ (Estonia)=Estonia (Estonia) #: Editor.java:516 Examples=Esimerkit +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Indonesian=indonesia #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Virheellinen kirjasto paikassa {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=italia @@ -851,6 +848,9 @@ Latvian=latvia #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=liettua #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Marathi=marathi #: Base.java:2112 Message=Viesti -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Moving=Siirret\u00e4\u00e4n #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Uuden tiedoston nimi\: @@ -940,9 +939,6 @@ No=Ei #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Levy\u00e4 ei valittu - ole hyv\u00e4 ja valitse Ty\u00f6kalut -> Levy. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=J\u00e4sennin ei vaatinut muutoksia. @@ -991,15 +987,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Validia laitteistokonf #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norjan bokm\u00e4l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Ei tarpeeksi muistia; katso http\://www.arduino.cc/en/Guide/Troubleshooting\#size vinkeiksi muistim\u00e4\u00e4r\u00e4n vapauttamiseksi. @@ -1043,6 +1033,10 @@ Persian=persia #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ accessing\ files\ in\ folder\ =Ongelma avatessa tiedostoja kansiosta #: Base.java:1673 Problem\ getting\ data\ folder=Datakansiota haettaessa tapahtui ongelma. -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Ongelma siirrett\u00e4ess\u00e4 {0} rakennuskansioon - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Ongelma l\u00e4hetett\u00e4ess\u00e4 levylle. Katsohttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload ratkaisuiksi. @@ -1132,9 +1122,16 @@ Processor=Prosessori #: Editor.java:704 Programmer=Ohjelmoija +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Lopeta +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Tee uudelleen @@ -1174,6 +1171,14 @@ Replace\ with\:=Korvaa t\u00e4ll\u00e4\: #: Preferences.java:113 Romanian=romania +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=ven\u00e4j\u00e4 @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=espanja #: Base.java:540 Sunshine=T\u00e4ydellist\u00e4 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Ruotsi @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=T\u00e4m\u00e4 tiedosto on jo kopioitu paikkaan josta\nyrit\u00e4t sit\u00e4 lis\u00e4t\u00e4. @@ -1452,6 +1455,10 @@ Unable\ to\ connect\:\ retrying=Yhdist\u00e4minen ei onnistu\: kokeillaan uudell #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Yhdist\u00e4minen ei onnistu\: v\u00e4\u00e4r\u00e4 salasana? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Sarjamonitorin avaus ei onnistu @@ -1462,13 +1469,17 @@ Unable\ to\ open\ serial\ monitor=Sarjamonitorin avaus ei onnistu #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=K\u00e4sittelem\u00e4t\u00f6n virhe tyyppi\u00e4\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Kumoa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=M\u00e4\u00e4rittelem\u00e4t\u00f6n alusta, k\u00e4ynnistint\u00e4 ei saatavilla.\nAvataksesi URL\:ja tai kansioita, lis\u00e4\u00e4 rivi \n"launcher\=/polku/k\u00e4ynnistimeen" tiedostoon preferences.txt. @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=L\u00e4hetet\u00e4\u00e4n I/O levylle... #: Sketch.java:1622 Uploading...=L\u00e4hetet\u00e4\u00e4n... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Etsi valintaa @@ -1563,6 +1571,14 @@ Vietnamese=Vietnami #: Editor.java:1105 Visit\ Arduino.cc=Vieraile Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=Varoitus #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ upload=l\u00e4hett\u00e4ess\u00e4 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} palautti {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.po b/arduino-core/src/processing/app/i18n/Resources_fil.po index af51eac19d8..315f41c6b8d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.po +++ b/arduino-core/src/processing/app/i18n/Resources_fil.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # David A. Mellis <>, 2012 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Filipino (http://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(baguhin lamang kung hindi tumatakbo ang Arduino)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "May mali sa linya: {0}" msgid "Bad file selected" msgstr "Mali ang File na napili" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Board" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "Parehong NL at CR" msgid "Browse" msgstr "Browse" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Nawawala ang build folder o hindi sya masulatan" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "Suriin ang updates tuwing magsisimula" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Hindi mapalitan ang pangalan ng sketch. (2)" msgid "Could not replace {0}" msgstr "Hindi mapalitan ang {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Hindi mai-archive and sketch" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "I-Cut" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "Mga Halimbawa" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italian" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "Mensahe" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Pangalan para sa bagong file:" @@ -1294,10 +1293,6 @@ msgstr "Hindi" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Persian" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "May problema sa pagkuha ng data folder" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "May problema sa paglipat ng {0} sa build folder" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Quit" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Ulitin Muli" @@ -1607,6 +1603,16 @@ msgstr "Palitan ng:" msgid "Romanian" msgstr "Romanian" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "Hindi makita ang serial port na {0}.\nSubukan muli ang pagupload gamit a msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Sinag ng araw" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Hindi nahuling exception type: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Ipawalang Bisa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "Ina-upload sa I/O Board..." msgid "Uploading..." msgstr "Inaupload..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Gamitin ang Napili sa Paghahanap" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Bisitahin ang Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "{0} files and naidagdag sa sketch." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_fil.properties b/arduino-core/src/processing/app/i18n/Resources_fil.properties index 2fa9f14a6c8..2a804a87881 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fil.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fil.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # David A. Mellis <>, 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Filipino (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fil\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Filipino (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fil\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (kinakailangang i-restart ang Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(baguhin lamang kung hindi tumatakbo ang Arduino) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=May mali sa linya\: {0} #: Editor.java:2136 Bad\ file\ selected=Mali ang File na napili -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Board +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=Parehong NL at CR #: Preferences.java:81 Browse=Browse -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Nawawala ang build folder o hindi sya masulatan - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=Suriin ang updates tuwing magsisimula #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ re-save\ sketch=Hindi mai-resave ang sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Hindi mabasa ang default settings.\nKinakailangan mong i-reinstall ang Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Hindi maaalis ang lumang bersyon na {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Hindi mapalitan ang pangalan ng sketch. (2 #, java-format Could\ not\ replace\ {0}=Hindi mapalitan ang {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Hindi mai-archive and sketch @@ -455,15 +445,9 @@ Couldn't\ do\ it=Hindi ko magawa yan #: Editor.java:1149 Editor.java:2699 Cut=I-Cut -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Error\ while\ printing.=May mali habang nagpi-print. #: Editor.java:516 Examples=Mga Halimbawa +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Increase\ Indent=Dagdagan ang Indent #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italian @@ -850,6 +847,9 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Latvian=Latvian #: Base.java:2112 Message=Mensahe -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Moving=Inililipat #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Pangalan para sa bagong file\: @@ -939,9 +938,6 @@ No=Hindi #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Walang piniling board; Maaari lamang na pumili ng board mula sa Mga Kasangkapan > Board menu. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No\ reference\ available\ for\ "{0}"=Walang sanggunian para sa "{0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Persian=Persian #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ Setting\ the\ Platform=May problema sa pagset ng Platform #: Base.java:1673 Problem\ getting\ data\ folder=May problema sa pagkuha ng data folder -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=May problema sa paglipat ng {0} sa build folder - #: 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. @@ -1131,9 +1121,16 @@ Problem\ with\ rename=May mali sa pag palit ng pangalan #: Editor.java:704 Programmer=Programmer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Quit +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ulitin Muli @@ -1173,6 +1170,14 @@ Replace\ with\:=Palitan ng\: #: Preferences.java:113 Romanian=Romanian +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=Spanish #: Base.java:540 Sunshine=Sinag ng araw -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ang file na ito ay nakopya na sa lokasyon kung saan mo sya gustong ikopya.\nWala na akong gagawin. @@ -1451,6 +1454,10 @@ Troubleshooting=Mga Sagot sa Problema #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Troubleshooting=Mga Sagot sa Problema #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Hindi nahuling exception type\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Ipawalang Bisa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Hindi malamang platform, walang launcher na maaaring magamit.\nPara mabuksan ang URLs o folders, magdagdag ng\n"launcher\=/path/to/app" sa preferences.txt @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=Ina-upload sa I/O Board... #: Sketch.java:1622 Uploading...=Inaupload... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Gamitin ang Napili sa Paghahanap @@ -1562,6 +1570,14 @@ Verify\ code\ after\ upload=I-verify ang code pagkatapos mai-upload #: Editor.java:1105 Visit\ Arduino.cc=Bisitahin ang Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=Warning #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=upload #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} ay nagbalik ng {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.po b/arduino-core/src/processing/app/i18n/Resources_fr.po index 8f3692dc9bc..4d183149df1 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2012 # AntoineM , 2012 # dbarbier , 2013-2014 @@ -23,8 +24,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-25 06:37+0000\n" -"Last-Translator: Lucas Mascaro \n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" +"Last-Translator: Federico Fissore \n" "Language-Team: French (http://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -54,10 +55,20 @@ msgstr "« Keyboard » n'est pris en compte que par l'Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "« Mouse » n'est pris en compte que par l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(éditer uniquement lorsque Arduino ne s'exécute pas)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir n'est plus supporté" @@ -319,10 +330,6 @@ msgstr "Erreur à la ligne : {0}" msgid "Bad file selected" msgstr "Mauvais fichier sélectionné" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Le fichier principal ou la structure du dossier du croquis n'est pas conforme" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "basque" @@ -331,15 +338,16 @@ msgstr "basque" msgid "Belarusian" msgstr "biélorusse" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (Inde)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Type de carte" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -380,14 +388,14 @@ msgstr "Les deux, NL et CR" msgid "Browse" msgstr "Parcourir" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Dossier de compilation disparu ou n'a pas pu être créé" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Les options de compilation ont été modifiées, tout sera recompilé" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "bulgare" @@ -451,10 +459,6 @@ msgstr "Vérifier les mises à jour au démarrage" msgid "Chinese (China)" msgstr "chinois (Chine)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "chinois (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "chinois (Taïwan)" @@ -463,14 +467,6 @@ msgstr "chinois (Taïwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "chinois (Taïwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "chinois - simplifié" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "chinois - traditionnel" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Cliquez pour la liste non-officielle des URL des cartes supportées " @@ -590,10 +586,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Impossible de lire les paramètres par défaut.\nVous devrez réinstaller l'environnement Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Impossible de lire le fichier de préférences actuel, tout sera recompilé" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -621,10 +613,6 @@ msgstr "Impossible de renommer le croquis. (2)" msgid "Could not replace {0}" msgstr "Impossible de remplacer {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Impossible d'écrire le fichier de préférences" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Impossible d'archiver le croquis" @@ -652,18 +640,10 @@ msgstr "croate" msgid "Cut" msgstr "Couper" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "tchèque" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Tchèque (République Tchèque)" -#: Preferences.java:90 -msgid "Danish" -msgstr "danois" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danois (Danemark)" @@ -935,6 +915,18 @@ msgstr "estonien (Estonie)" msgid "Examples" msgstr "Exemples" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Exporter les binaires compilées" @@ -1163,6 +1155,11 @@ msgstr "Installation..." msgid "Invalid library found in {0}: {1}" msgstr "Bibliothèque non valide trouvée dans {0} : {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "italien" @@ -1187,6 +1184,10 @@ msgstr "Gestionnaire de bibliothèque" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "La bibliothèque a été ajoutée à votre dossier de bibliothèques. Veuillez regarder le menu « Importer bibliothèque »" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1200,14 +1201,15 @@ msgstr "lituanien" msgid "Loading configuration..." msgstr "Chargement de la configuration" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "La mémoire disponible faible, des problèmes de stabilité pourraient survenir." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malais (Malaisie)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Gérer les bibliothèque" @@ -1224,9 +1226,10 @@ msgstr "marathe" msgid "Message" msgstr "Message" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Il manque */ à la fin du /* commentaire */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1257,10 +1260,6 @@ msgstr "Plusieurs bibliothèque trouvées pour \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Il faut spécifier un et un seul fichier de croquis" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "n'ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nom du nouveau fichier :" @@ -1305,10 +1304,6 @@ msgstr "Non" msgid "No authorization data found" msgstr "Pas de donnée d'autorisation trouvé" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Aucune carte sélectionnée, veuillez choisir une carte dans le menu Outil > Type de carte." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Aucun changement nécessaire pour le formatage automatique." @@ -1372,18 +1367,10 @@ msgstr "Aucune définition de matériel valide n''a été trouvée dans le dossi msgid "None" msgstr "Rien" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norvégien" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "norvégien Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Nynorsk (Norvège)" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1443,6 +1430,11 @@ msgstr "persan" msgid "Persian (Iran)" msgstr "persan (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Confirmez la suppression des cartes" @@ -1540,11 +1532,6 @@ msgstr "Problème lors de l'accès aux fichiers du dossier " msgid "Problem getting data folder" msgstr "Problème pendant l'acquisition du dossier de données" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problème de déplacement de {0} vers le dossier de compilation" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1563,10 +1550,19 @@ msgstr "Processeur" msgid "Programmer" msgstr "Programmateur" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Quitter" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Rétablir" @@ -1618,6 +1614,16 @@ msgstr "Remplacer par :" msgid "Romanian" msgstr "roumain" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "russe" @@ -1723,6 +1729,11 @@ msgstr "Port série {0} introuvable.\nRéessayer le téléversement à partir d' msgid "Serial ports" msgstr "Ports série" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "Paramètres" @@ -1838,10 +1849,6 @@ msgstr "Démarrage " msgid "Sunshine" msgstr "Soleil" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "suédois" @@ -1958,12 +1965,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "Le dossier de votre carnet de croquis spécifié contiens votre IDE.\nVeuillez choisir un dossier différent." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Le fichier platform.txt du matériel tiers ne précise pas compiler.path. Veuillez en référer au fabricant du matériel." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2036,6 +2037,11 @@ msgstr "Connexion impossible : nouvelle tentative" msgid "Unable to connect: wrong password?" msgstr "Connexion impossible : mauvais mot de passe ?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Impossible d'ouvrir le moniteur série" @@ -2049,15 +2055,20 @@ msgstr "Impossible d'ouvrir le traceur série" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Impossible de se connecter à Arduino.cc a cause d'un possible problème de réseau." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Exception non capturée de type : {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Annuler" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2106,10 +2117,6 @@ msgstr "Téléversement vers la carte E/S..." msgid "Uploading..." msgstr "Téléversement..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Ourdou (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Utiliser la sélection pour trouver" @@ -2184,6 +2191,16 @@ msgstr "vietnamien" msgid "Visit Arduino.cc" msgstr "Visiter Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2227,6 +2244,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Attention: platform.txt du cœur '{0}' contiens {1} dépassé, converti automatiquement en {2}. La mise a niveau de ce cœur est conseillée." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2481,6 +2504,16 @@ msgstr "{0} fichiers ajoutés au croquis." msgid "{0} libraries" msgstr "{0} bibliothèques" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_fr.properties b/arduino-core/src/processing/app/i18n/Resources_fr.properties index 8a272dc5509..d30ad9610f7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2012 # AntoineM , 2012 # dbarbier , 2013-2014 @@ -18,7 +19,7 @@ # R D , 2012 # Simon , 2015 # Vincent Moulin , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-25 06\:37+0000\nLast-Translator\: Lucas Mascaro \nLanguage-Team\: French (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino) @@ -37,9 +38,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab\u00a0Mouse\u00a0\u00bb n'est pris en compte que par l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir n'est plus support\u00e9 @@ -223,22 +230,20 @@ Bad\ error\ line\:\ {0}=Erreur \u00e0 la ligne\u00a0\: {0} #: Editor.java:2136 Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9 -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Le fichier principal ou la structure du dossier du croquis n'est pas conforme - #: ../../../processing/app/Preferences.java:149 Basque=basque #: ../../../processing/app/Preferences.java:139 Belarusian=bi\u00e9lorusse -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (Inde) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Type de carte +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=La carte {0}\:{1}\:{2} ne d\u00e9finit pas d''option \u00ab build.board \u00bb. Elle est mise automatiquement \u00e0 \: {3} @@ -268,12 +273,12 @@ Both\ NL\ &\ CR=Les deux, NL et CR #: Preferences.java:81 Browse=Parcourir -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de compilation disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Les options de compilation ont \u00e9t\u00e9 modifi\u00e9es, tout sera recompil\u00e9 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=bulgare @@ -322,21 +327,12 @@ Check\ for\ updates\ on\ startup=V\u00e9rifier les mises \u00e0 jour au d\u00e9m #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=chinois (Chine) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=chinois (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=chinois (Ta\u00efwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=chinois (Ta\u00efwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=chinois - simplifi\u00e9 - -#: Preferences.java:89 -Chinese\ Traditional=chinois - traditionnel - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Cliquez pour la liste non-officielle des URL des cartes support\u00e9es @@ -421,9 +417,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer l'environnement Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Impossible de lire le fichier de pr\u00e9f\u00e9rences actuel, tout sera recompil\u00e9 - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Impossible de retirer la vieille version de {0} @@ -445,9 +438,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Impossible de renommer le croquis. (2) #, java-format Could\ not\ replace\ {0}=Impossible de remplacer {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Impossible d'\u00e9crire le fichier de pr\u00e9f\u00e9rences - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Impossible d'archiver le croquis @@ -466,15 +456,9 @@ Croatian=croate #: Editor.java:1149 Editor.java:2699 Cut=Couper -#: ../../../processing/app/Preferences.java:83 -Czech=tch\u00e8que - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Tch\u00e8que (R\u00e9publique Tch\u00e8que) -#: Preferences.java:90 -Danish=danois - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danois (Danemark) @@ -678,6 +662,15 @@ Estonian\ (Estonia)=estonien (Estonie) #: Editor.java:516 Examples=Exemples +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Exporter les binaires compil\u00e9es @@ -843,6 +836,10 @@ Installing...=Installation... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioth\u00e8que non valide trouv\u00e9e dans {0} \: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=italien @@ -861,6 +858,9 @@ Library\ Manager=Gestionnaire de biblioth\u00e8que #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=La biblioth\u00e8que a \u00e9t\u00e9 ajout\u00e9e \u00e0 votre dossier de biblioth\u00e8ques. Veuillez regarder le menu \u00ab\u00a0Importer biblioth\u00e8que\u00a0\u00bb +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=La biblioth\u00e8que est d\u00e9ja install\u00e9\: {0} version {1} @@ -871,12 +871,13 @@ Lithuaninan=lituanien #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Chargement de la configuration +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=La m\u00e9moire disponible faible, des probl\u00e8mes de stabilit\u00e9 pourraient survenir. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malais (Malaisie) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=G\u00e9rer les biblioth\u00e8que @@ -889,8 +890,9 @@ Marathi=marathe #: Base.java:2112 Message=Message -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Il manque */ \u00e0 la fin du /* commentaire */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Mode non support\u00e9 @@ -914,9 +916,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Plusieurs biblioth\u00e8que trouv\u #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Il faut sp\u00e9cifier un et un seul fichier de croquis -#: ../../../processing/app/Preferences.java:158 -N'Ko=n'ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nom du nouveau fichier\u00a0\: @@ -950,9 +949,6 @@ No=Non #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Pas de donn\u00e9e d'autorisation trouv\u00e9 -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > Type de carte. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Aucun changement n\u00e9cessaire pour le formatage automatique. @@ -1001,15 +997,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Aucune d\u00e9finition #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Rien -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norv\u00e9gien - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=norv\u00e9gien Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Nynorsk (Norv\u00e8ge) - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=M\u00e9more insuffisante ; consulter la page http\://www.arduino.cc/en/Guide/Troubleshooting\#size pour obtenir des astuces sur comment le r\u00e9duire. @@ -1053,6 +1043,10 @@ Persian=persan #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=persan (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Confirmez la suppression des cartes @@ -1126,10 +1120,6 @@ Problem\ accessing\ files\ in\ folder\ =Probl\u00e8me lors de l'acc\u00e8s aux f #: Base.java:1673 Problem\ getting\ data\ folder=Probl\u00e8me pendant l'acquisition du dossier de donn\u00e9es -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e8me de d\u00e9placement de {0} vers le dossier de compilation - #: 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. @@ -1142,9 +1132,16 @@ Processor=Processeur #: Editor.java:704 Programmer=Programmateur +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Quitter +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=R\u00e9tablir @@ -1184,6 +1181,14 @@ Replace\ with\:=Remplacer par\u00a0\: #: Preferences.java:113 Romanian=roumain +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=russe @@ -1261,6 +1266,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Ports s\u00e9rie +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Param\u00e8tres @@ -1341,9 +1350,6 @@ Starting...=D\u00e9marrage #: Base.java:540 Sunshine=Soleil -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=su\u00e9dois @@ -1408,9 +1414,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Le dossier de votre carnet de croquis sp\u00e9cifi\u00e9 contiens votre IDE.\nVeuillez choisir un dossier diff\u00e9rent. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Le fichier platform.txt du mat\u00e9riel tiers ne pr\u00e9cise pas compiler.path. Veuillez en r\u00e9f\u00e9rer au fabricant du mat\u00e9riel. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ce fichier a d\u00e9j\u00e0 \u00e9t\u00e9 copi\u00e9 \u00e0\nl'emplacement duquel vous essayez de l'ajouter.\nJ'frai rien dans ce cas-l\u00e0. @@ -1462,6 +1465,10 @@ Unable\ to\ connect\:\ retrying=Connexion impossible \: nouvelle tentative #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Connexion impossible \: mauvais mot de passe ? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Impossible d'ouvrir le moniteur s\u00e9rie @@ -1472,13 +1479,17 @@ Unable\ to\ open\ serial\ plotter=Impossible d'ouvrir le traceur s\u00e9rie #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Impossible de se connecter \u00e0 Arduino.cc a cause d'un possible probl\u00e8me de r\u00e9seau. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Exception non captur\u00e9e de type\u00a0\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Annuler +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plate-forme non sp\u00e9cifi\u00e9e, aucun lanceur disponible.\nPour permettre l'ouverture d'URLs ou de dossiers, \najouter une ligne \u00ab\u00a0launcher\=/chemin/vers/app\u00a0\u00bb \u00e0 preferences.txt @@ -1513,9 +1524,6 @@ Uploading\ to\ I/O\ Board...=T\u00e9l\u00e9versement vers la carte E/S... #: Sketch.java:1622 Uploading...=T\u00e9l\u00e9versement... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Ourdou (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Utiliser la s\u00e9lection pour trouver @@ -1573,6 +1581,14 @@ Vietnamese=vietnamien #: Editor.java:1105 Visit\ Arduino.cc=Visiter Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ATTENTION \: la biblioth\u00e8que {0} pr\u00e9tend \u00eatre ex\u00e9cutable sur la (ou les) architecture(s) {1} et peut \u00eatre incompatible avec votre carte actuelle qui s'ex\u00e9cute sur {2}. @@ -1602,6 +1618,9 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Atten #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Attention\: platform.txt du c\u0153ur '{0}' contiens {1} d\u00e9pass\u00e9, converti automatiquement en {2}. La mise a niveau de ce c\u0153ur est conseill\u00e9e. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Attention\: platform.txt du c\u0153ur '{0}' ne contiens pas la propri\u00e9t\u00e9 {1}, r\u00e9gl\u00e9 automatiquement sur {2}. La mise a niveau de ce c\u0153ur est conseill\u00e9e. @@ -1762,6 +1781,14 @@ version\ {0}=version {0} #, java-format {0}\ libraries={0} biblioth\u00e8ques +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} a retourn\u00e9 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po index 28f5990c540..18c76bdeee6 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.po +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2015 # Alexis Morin , 2012 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: French (Canada) (http://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "« Keyboard » n'est supporté que sur l'Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "« Mouse » n'est supporté que sur l'Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(éditer uniquement lorsque Arduino ne s'exécute pas)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir n'est plus supporté" @@ -309,10 +320,6 @@ msgstr "Erreur à la ligne : {0}" msgid "Bad file selected" msgstr "Mauvais fichier sélectionné" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -321,15 +328,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "NL & CR" msgid "Browse" msgstr "Parcourir" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Dossier de construction disparu ou n'a pas pu être créé" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -441,10 +449,6 @@ msgstr "Au démarrage, vérifier pour les mises à jour." msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -453,14 +457,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinois simplifié" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinois traditonnel" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Impossible de lire les paramètres par défaut.\nVous devrez réinstaller Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "Impossible de renommer le croquis. (2)" msgid "Could not replace {0}" msgstr "Impossible de remplacer {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Impossible d'archiver le croquis" @@ -642,18 +630,10 @@ msgstr "" msgid "Cut" msgstr "Couper" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danois" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "" msgid "Examples" msgstr "Exemples" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italien" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "Lithuanien" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "Marathi" msgid "Message" msgstr "Message" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nom du nouveau fichier:" @@ -1295,10 +1294,6 @@ msgstr "Non" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Aucune carte sélectionnée, veuillez choisir une carte dans le menu Outil > \nType de carte." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Aucun changement nécessaire pour le formatage automatique." @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "Farsi" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Problème d'obtention du dossier de données" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problème de déplacement de {0} vers le dossier de construction" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "" msgid "Programmer" msgstr "Programmateur" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Quitter" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Rétablir" @@ -1608,6 +1604,16 @@ msgstr "Remplacer par:" msgid "Romanian" msgstr "Roumain" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russe" @@ -1713,6 +1719,11 @@ msgstr "Port série {0} introuvable.\nRéessayer le téléversement à partir d' msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "Soleil" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Exception non capturée de type: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Annuler" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "Téléversement vers la carte E/S..." msgid "Uploading..." msgstr "Téléversement..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Utiliser la sélection pour trouver" @@ -2174,6 +2181,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Visiter Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "{0} fichiers ajoutés au croquis." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties index c878a6a19ab..6c9a4e7f0bc 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fr_CA.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Alexis Morin , 2015 # Alexis Morin , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (Canada) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr_CA\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: French (Canada) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr_CA\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino) @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab Mouse \u00bb n'est support\u00e9 que sur l'Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir n'est plus support\u00e9 @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=Erreur \u00e0 la ligne \: {0} #: Editor.java:2136 Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=NL & CR #: Preferences.java:81 Browse=Parcourir -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de construction disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9 - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=Au d\u00e9marrage, v\u00e9rifier pour les mises #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Chinois simplifi\u00e9 - -#: Preferences.java:89 -Chinese\ Traditional=Chinois traditonnel - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ re-save\ sketch=Impossible de r\u00e9-enregistrer le croquis #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Impossible de retirer la vieille version de {0} @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Impossible de renommer le croquis. (2) #, java-format Could\ not\ replace\ {0}=Impossible de remplacer {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Impossible d'archiver le croquis @@ -456,15 +446,9 @@ Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ #: Editor.java:1149 Editor.java:2699 Cut=Couper -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danois - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Estonian=Estonien #: Editor.java:516 Examples=Exemples +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Indonesian=Indon\u00e9sien #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italien @@ -851,6 +848,9 @@ Latvian=Letton #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=Lithuanien #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Marathi=Marathi #: Base.java:2112 Message=Message -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Moving=D\u00e9placement #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Nom du nouveau fichier\: @@ -940,9 +939,6 @@ No=Non #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > \nType de carte. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Aucun changement n\u00e9cessaire pour le formatage automatique. @@ -991,15 +987,9 @@ No\ reference\ available\ for\ "{0}"=Aucune r\u00e9f\u00e9rence disponible pour #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=Farsi #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ Setting\ the\ Platform=Probl\u00e8me \u00e0 configurer la plate-forme #: Base.java:1673 Problem\ getting\ data\ folder=Probl\u00e8me d'obtention du dossier de donn\u00e9es -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e8me de d\u00e9placement de {0} vers le dossier de construction - #: 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/\nGuide/Troubleshooting\#upload pour suggestions. @@ -1132,9 +1122,16 @@ Problem\ with\ rename=Probl\u00e8me de renommage #: Editor.java:704 Programmer=Programmateur +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Quitter +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=R\u00e9tablir @@ -1174,6 +1171,14 @@ Replace\ with\:=Remplacer par\: #: Preferences.java:113 Romanian=Roumain +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russe @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=Espagnol #: Base.java:540 Sunshine=Soleil -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ce fichier a d\u00e9j\u00e0 \u00e9t\u00e9 copi\u00e9 \u00e0\nl'emplacement duquel vous essayez de l'ajouter.\nJ'frai rien dans ce cas-l\u00e0. @@ -1452,6 +1455,10 @@ Troubleshooting=D\u00e9pannage #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1462,13 +1469,17 @@ Troubleshooting=D\u00e9pannage #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Exception non captur\u00e9e de type\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Annuler +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plate-forme non sp\u00e9cifi\u00e9e, aucun lanceur disponible.\nPour permettre l'ouverture d'URLs ou de dossiers, \najouter une ligne \u00ab launcher\=/chemin/vers/app \u00bb \u00e0 preferences.txt @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=T\u00e9l\u00e9versement vers la carte E/S... #: Sketch.java:1622 Uploading...=T\u00e9l\u00e9versement... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Utiliser la s\u00e9lection pour trouver @@ -1563,6 +1571,14 @@ Verify\ code\ after\ upload=V\u00e9rifier le code apr\u00e8s t\u00e9l\u00e9verse #: Editor.java:1105 Visit\ Arduino.cc=Visiter Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=Avertissement #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ upload=t\u00e9l\u00e9versement #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} a retourn\u00e9 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_fy.po b/arduino-core/src/processing/app/i18n/Resources_fy.po index 0464dbeecfc..a88cf659381 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fy.po +++ b/arduino-core/src/processing/app/i18n/Resources_fy.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Robin van der Vliet , 2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Western Frisian (http://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskysk" @@ -320,15 +327,16 @@ msgstr "Baskysk" msgid "Belarusian" msgstr "Wytrussysk" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "Blêdzje" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaarsk" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "Sineesk (Sina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Sineesk (Hongkong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Sineesk (Taiwan)" @@ -452,14 +456,6 @@ msgstr "Sineesk (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Sineesk (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "Kroatysk" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tsjechysk" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Tsjechysk (Tsjechje)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Deensk" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Deensk (Denemark)" @@ -924,6 +904,18 @@ msgstr "Estysk (Estlân)" msgid "Examples" msgstr "Foarbylden" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italjaansk" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "Litousk" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "Nee" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Noarsk" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noarsk Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Noarsk Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Perzysk" msgid "Persian (Iran)" msgstr "Perzysk (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Prosessor" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "Roemeensk" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russysk" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "Seriële poarten" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Sinneskyn" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sweedsk" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,13 +2044,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Oerdû (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "Fjetnameesk" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_fy.properties b/arduino-core/src/processing/app/i18n/Resources_fy.properties index 6c70a217cca..5902e732d5f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_fy.properties +++ b/arduino-core/src/processing/app/i18n/Resources_fy.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Robin van der Vliet , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Western Frisian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Western Frisian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Asturian=Asturysk #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Baskysk #: ../../../processing/app/Preferences.java:139 Belarusian=Wytrussysk -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Bosnian=Bosnysk #: Preferences.java:81 Browse=Bl\u00eadzje -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaarsk @@ -311,21 +316,12 @@ Catalan=Katalaansk #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Sineesk (Sina) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Sineesk (Hongkong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Sineesk (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Sineesk (Taiwan) (Big5) -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Copy\ as\ HTML=Kopiearje as HTML #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ Copy\ as\ HTML=Kopiearje as HTML #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Croatian=Kroatysk #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -Czech=Tsjechysk - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Tsjechysk (Tsjechje) -#: Preferences.java:90 -Danish=Deensk - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Deensk (Denemark) @@ -667,6 +651,15 @@ Estonian\ (Estonia)=Estysk (Estl\u00e2n) #: Editor.java:516 Examples=Foarbylden +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=Yndonezysk #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italjaansk @@ -850,6 +847,9 @@ Latvian=Letsk #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=Litousk #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Lithuaninan=Litousk #: Base.java:2112 !Message= -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Lithuaninan=Litousk #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ No=Nee #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No\ sketchbook=Gjin sketsboek #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Noarsk - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noarsk Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Noarsk Nynorsk - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Persian=Perzysk #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Perzysk (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Previous\ Tab=Foarige ljepbl\u00ead #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Processor=Prosessor #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 !Quit= +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Replace\ &\ Find=Sykje en ferfange #: Preferences.java:113 Romanian=Roemeensk +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russysk @@ -1250,6 +1255,10 @@ Serial\ Monitor=Seri\u00eble monitor #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Seri\u00eble poarten +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=Spaansk #: Base.java:540 Sunshine=Sinneskyn -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Sweedsk @@ -1397,9 +1403,6 @@ Talossan=Talossaansk #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Ukrainian=Ukraynsk #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Ukrainian=Ukraynsk #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Ukrainian=Ukraynsk #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Oerd\u00fb (Pakistan) - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Vietnamese=Fjetnameesk #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=Warsk\u00f4ging #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ unknown\ option\:\ {0}=\u00fbnbekende opsje\: {0} #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.po b/arduino-core/src/processing/app/i18n/Resources_gl.po index 6dd6aff14d7..e5691d879ff 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.po +++ b/arduino-core/src/processing/app/i18n/Resources_gl.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # ccpr1l , 2014 # Diego Prado Gesto <>, 2012 # Marce Villarino , 2013 @@ -15,7 +16,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Galician (http://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\n" "MIME-Version: 1.0\n" @@ -46,10 +47,20 @@ msgstr "«Keyboard» so é compatíbel coa Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "«Mouse» só é compatíbel coa Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editar só cando Arduino non se esté a executar)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -311,10 +322,6 @@ msgstr "Liña de erro incorrecta: {0}" msgid "Bad file selected" msgstr "Escolleuse un ficheiro danado" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -323,15 +330,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -372,14 +380,14 @@ msgstr "Ambos NL & CR" msgid "Browse" msgstr "Navegar" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "O cartafol de construción desapareceu ou non foi posíbel escribir nel" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -443,10 +451,6 @@ msgstr "Buscar actualizacións ao iniciar" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -455,14 +459,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinés simplificado" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinés tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -582,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Non se poden ler as configuracións predeterminadas.\nNecesitarás reinstalar Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -613,10 +605,6 @@ msgstr "Non foi posíbel cambiar o nome do sketch. (2)" msgid "Could not replace {0}" msgstr "Non se pode reemplazar {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Non foi posíbel arquivar o sketch" @@ -644,18 +632,10 @@ msgstr "Croata" msgid "Cut" msgstr "Cortar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Checo" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danés" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -927,6 +907,18 @@ msgstr "" msgid "Examples" msgstr "Exemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1155,6 +1147,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Encontrada unha biblioteca inválida en {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1179,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1192,12 +1193,13 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1216,8 +1218,9 @@ msgstr "Maratí" msgid "Message" msgstr "Mensaxe" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1249,10 +1252,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome do novo ficheiro:" @@ -1297,10 +1296,6 @@ msgstr "Non" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Non hai tarxeta seleccionada; por favor escolle unha tarxeta do menú\nFerramentas > Tarxeta" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Non se necesitan cambios para o Formateado Automático" @@ -1364,18 +1359,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noruegués Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1435,6 +1422,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1532,11 +1524,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Problema obtendo carpeta de datos" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problema movendo {0} ao cartafol de construción" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1555,10 +1542,19 @@ msgstr "Procesador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Saír" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refacer" @@ -1610,6 +1606,16 @@ msgstr "Reemplazar con:" msgid "Romanian" msgstr "Romanés" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ruso" @@ -1715,6 +1721,11 @@ msgstr "O porto serie {0} non foi atopado\nVolver a tenta-la carga con outro por msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1830,10 +1841,6 @@ msgstr "" msgid "Sunshine" msgstr "O sol brilla" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1950,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2028,6 +2029,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2041,15 +2047,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Excepción non recollida de tipo: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Desfacer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2098,10 +2109,6 @@ msgstr "Cargando á Tarxeta de E/S..." msgid "Uploading..." msgstr "Estase a cargar..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Usar a escolla para buscar" @@ -2176,6 +2183,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Visitar Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2219,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2473,6 +2496,16 @@ msgstr "Engadíronse {0} ficheiros ao sketch." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_gl.properties b/arduino-core/src/processing/app/i18n/Resources_gl.properties index 22e2608ea20..f36e85595f4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_gl.properties @@ -6,11 +6,12 @@ # Translators: # Translators: # Translators: +# Translators: # ccpr1l , 2014 # Diego Prado Gesto <>, 2012 # Marce Villarino , 2013 # Marce Villarino , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (require reiniciar Arduino) @@ -29,9 +30,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abMouse\u00bb s\u00f3 \u00e9 compat\u00edbel coa Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3 cando Arduino non se est\u00e9 a executar) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -215,22 +222,20 @@ Bad\ error\ line\:\ {0}=Li\u00f1a de erro incorrecta\: {0} #: Editor.java:2136 Bad\ file\ selected=Escolleuse un ficheiro danado -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -260,12 +265,12 @@ Both\ NL\ &\ CR=Ambos NL & CR #: Preferences.java:81 Browse=Navegar -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=O cartafol de construci\u00f3n desapareceu ou non foi pos\u00edbel escribir nel - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -314,21 +319,12 @@ Check\ for\ updates\ on\ startup=Buscar actualizaci\u00f3ns ao iniciar #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Chin\u00e9s simplificado - -#: Preferences.java:89 -Chinese\ Traditional=Chin\u00e9s tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -413,9 +409,6 @@ Could\ not\ re-save\ sketch=Non foi pos\u00edbel gardar de novo o sketch #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Non se poden ler as configuraci\u00f3ns predeterminadas.\nNecesitar\u00e1s reinstalar Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Non se pode eliminar a versi\u00f3n anterior de {0} @@ -437,9 +430,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Non foi pos\u00edbel cambiar o nome do ske #, java-format Could\ not\ replace\ {0}=Non se pode reemplazar {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Non foi pos\u00edbel arquivar o sketch @@ -458,15 +448,9 @@ Croatian=Croata #: Editor.java:1149 Editor.java:2699 Cut=Cortar -#: ../../../processing/app/Preferences.java:83 -Czech=Checo - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Dan\u00e9s - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -670,6 +654,15 @@ Estonian=Estoniano #: Editor.java:516 Examples=Exemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -835,6 +828,10 @@ Indonesian=Indonesio #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Encontrada unha biblioteca inv\u00e1lida en {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -853,6 +850,9 @@ Latvian=Let\u00f3n #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -863,12 +863,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -881,8 +882,9 @@ Marathi=Marat\u00ed #: Base.java:2112 Message=Mensaxe -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -906,9 +908,6 @@ Moving=Movendo #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Nome do novo ficheiro\: @@ -942,9 +941,6 @@ No=Non #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Non hai tarxeta seleccionada; por favor escolle unha tarxeta do men\u00fa\nFerramentas > Tarxeta - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Non se necesitan cambios para o Formateado Autom\u00e1tico @@ -993,15 +989,9 @@ No\ reference\ available\ for\ "{0}"=Non hai referencias dispo\u00f1\u00edbeis p #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruegu\u00e9s Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1045,6 +1035,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1118,10 +1112,6 @@ Problem\ Setting\ the\ Platform=Problema Configurando a Plataforma #: Base.java:1673 Problem\ getting\ data\ folder=Problema obtendo carpeta de datos -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problema movendo {0} ao cartafol de construci\u00f3n - #: 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. @@ -1134,9 +1124,16 @@ Processor=Procesador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Sa\u00edr +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refacer @@ -1176,6 +1173,14 @@ Replace\ with\:=Reemplazar con\: #: Preferences.java:113 Romanian=Roman\u00e9s +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ruso @@ -1253,6 +1258,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1333,9 +1342,6 @@ Spanish=Espa\u00f1ol #: Base.java:540 Sunshine=O sol brilla -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1400,9 +1406,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro xa foi copiado no lugar\ndende a cal est\u00e1s a tentar engadilo.\nNon vou facer nada. @@ -1454,6 +1457,10 @@ Ukrainian=Ucraniano #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1464,13 +1471,17 @@ Ukrainian=Ucraniano #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Excepci\u00f3n non recollida de tipo\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Desfacer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma 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 @@ -1505,9 +1516,6 @@ Uploading\ to\ I/O\ Board...=Cargando \u00e1 Tarxeta de E/S... #: Sketch.java:1622 Uploading...=Estase a cargar... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Usar a escolla para buscar @@ -1565,6 +1573,14 @@ Verify\ code\ after\ upload=Verificar o c\u00f3digo despois de cargar #: Editor.java:1105 Visit\ Arduino.cc=Visitar Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1594,6 +1610,9 @@ Warning=Alerta #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1754,6 +1773,14 @@ upload=carga #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} devolveu {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_gl_ES.po b/arduino-core/src/processing/app/i18n/Resources_gl_ES.po index ff591d178bf..a6ed60e52b5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl_ES.po +++ b/arduino-core/src/processing/app/i18n/Resources_gl_ES.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Xurxo Guerra Perez , 2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Galician (Spain) (http://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "'Teclado' só soportado no Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Rato' só soportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editar só cando Arduino non está en execución)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Éuscaro" @@ -320,15 +327,16 @@ msgstr "Éuscaro" msgid "Belarusian" msgstr "Bielorruso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengalí (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Mudáronse as opcións de compilación, recompilar todo" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaro" @@ -440,10 +448,6 @@ msgstr "Verificar se hai actualizacións no inicio" msgid "Chinese (China)" msgstr "Chinés (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinés (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinés (Taiwan)" @@ -452,14 +456,6 @@ msgstr "Chinés (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinés (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinés simplificado" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinés tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Non foi posíbel renomear. (2)" msgid "Could not replace {0}" msgstr "Non foi posíbel substituír {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Non se puido escribir o ficheiro de preferencias de compilación" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Non foi posíbel arquivar o sketch" @@ -641,18 +629,10 @@ msgstr "Croata" msgid "Cut" msgstr "Cortar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Checo" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Checo (República Checa) " -#: Preferences.java:90 -msgid "Danish" -msgstr "Danés" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danés (Dinamarca)" @@ -924,6 +904,18 @@ msgstr "Estoniano (Estonia)" msgid "Examples" msgstr "Exemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Biblioteca non válida atopada en {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,14 +1190,15 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Pouca memoria dispoñíbel, poden acontecer problemas de estabilidade." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malaio (Malaisia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1213,9 +1215,10 @@ msgstr "Marathi" msgid "Message" msgstr "Mensaxe" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Falta o */ do final do /* comentario */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome do novo ficheiro:" @@ -1294,10 +1293,6 @@ msgstr "Non" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Noruegués" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noruegués Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Noruegués Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Procesador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Saír" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refacer" @@ -1607,6 +1603,16 @@ msgstr "Substituír con:" msgid "Romanian" msgstr "Romanés" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ruso" @@ -1712,6 +1718,11 @@ msgstr "Non se atopou o porto serie {0}.\nTentar subir dende outro?" msgid "Serial ports" msgstr "Portos serie" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Suahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sueco" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "Non foi posíbel conectar: reintentando" msgid "Unable to connect: wrong password?" msgstr "Non foi posíbel conectar: contrasinal non válido?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Desfacer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "Subindo á placa I/O..." msgid "Uploading..." msgstr "Subindo..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdú (Paquistán)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "{0} ficheiros engadidos ao sketch." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties b/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties index 7f7802c8a12..16c71b4af64 100644 --- a/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties +++ b/arduino-core/src/processing/app/i18n/Resources_gl_ES.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Xurxo Guerra Perez , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (Spain) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl_ES\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Galician (Spain) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl_ES\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requ\u00edrese o reinicio de Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' s\u00f3 soportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3 cando Arduino non est\u00e1 en execuci\u00f3n) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Autoscroll=Desprazamento autom. #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u00c9uscaro #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorruso -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengal\u00ed (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Bosnian=Bosniaco #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Mud\u00e1ronse as opci\u00f3ns de compilaci\u00f3n, recompilar todo +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaro @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=Verificar se hai actualizaci\u00f3ns no inicio #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chin\u00e9s (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chin\u00e9s (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chin\u00e9s (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chin\u00e9s (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chin\u00e9s simplificado - -#: Preferences.java:89 -Chinese\ Traditional=Chin\u00e9s tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ open\ the\ folder\n{0}=Non foi pos\u00edbel o cartafol\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Non foi pos\u00edbel a versi\u00f3n antiga de {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Non foi pos\u00edbel renomear. (2) #, java-format Could\ not\ replace\ {0}=Non foi pos\u00edbel substitu\u00edr {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Non se puido escribir o ficheiro de preferencias de compilaci\u00f3n - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Non foi pos\u00edbel arquivar o sketch @@ -455,15 +445,9 @@ Croatian=Croata #: Editor.java:1149 Editor.java:2699 Cut=Cortar -#: ../../../processing/app/Preferences.java:83 -Czech=Checo - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Checo (Rep\u00fablica Checa) -#: Preferences.java:90 -Danish=Dan\u00e9s - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Dan\u00e9s (Dinamarca) @@ -667,6 +651,15 @@ Estonian\ (Estonia)=Estoniano (Estonia) #: Editor.java:516 Examples=Exemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=Indonesio #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca non v\u00e1lida atopada en {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -850,6 +847,9 @@ Latvian=Let\u00f3n #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Pouca memoria dispo\u00f1\u00edbel, poden acontecer problemas de estabilidade. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaio (Malaisia) - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Marathi=Marathi #: Base.java:2112 Message=Mensaxe -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final do /* comentario */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modo non soportado @@ -903,9 +905,6 @@ Moving=Movendo #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nome do novo ficheiro\: @@ -939,9 +938,6 @@ No=Non #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No\ sketchbook=Sen sketchbook #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Noruegu\u00e9s - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruegu\u00e9s Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Noruegu\u00e9s Nynorsk - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ Opening\ URL=Problema abrindo o URL #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Processor=Procesador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Sa\u00edr +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refacer @@ -1173,6 +1170,14 @@ Replace\ with\:=Substitu\u00edr con\: #: Preferences.java:113 Romanian=Roman\u00e9s +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ruso @@ -1250,6 +1255,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Portos serie +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=Castel\u00e1n #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Suahili - #: ../../../processing/app/Preferences.java:153 Swedish=Sueco @@ -1397,9 +1403,6 @@ The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ bas #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Unable\ to\ connect\:\ retrying=Non foi pos\u00edbel conectar\: reintentando #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Non foi pos\u00edbel conectar\: contrasinal non v\u00e1lido? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Unable\ to\ connect\:\ wrong\ password?=Non foi pos\u00edbel conectar\: contrasi #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=Desfacer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=Subindo \u00e1 placa I/O... #: Sketch.java:1622 Uploading...=Subindo... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urd\u00fa (Paquist\u00e1n) - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ATENCI\u00d3N\: a biblioteca {0} indica que pode ser executada en arquitectura(s) {1} pero pode ser incompat\u00edbel coa t\u00faa placa que se executa en arquitectura(s) {2}. @@ -1591,6 +1607,9 @@ Warning=Atenci\u00f3n #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=subir #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} devolveu {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.po b/arduino-core/src/processing/app/i18n/Resources_hi.po index 8045cc4d986..959580ddaf0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.po +++ b/arduino-core/src/processing/app/i18n/Resources_hi.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Gaurav Waghmare , 2015 # Nishant Sood , 2012 # Parimal Naigaonkar , 2012 @@ -14,7 +15,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Hindi (http://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\n" "MIME-Version: 1.0\n" @@ -45,10 +46,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(तभी सम्पादित करें जब अर्दुइनो चल न रहा हो)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -310,10 +321,6 @@ msgstr "Bad error line: {0}" msgid "Bad file selected" msgstr "खराब फाइल चुनी गई" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -322,15 +329,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "बोर्ड" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "दोनों NL और CR" msgid "Browse" msgstr "ब्राउज़ करें" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "बिल्ड पुस्तिका गायब हो गयी या उसमे प्रवेश निषेधात्मक है " - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "बिल्ड विकल्प बदले गए, सभी का फिर से निर्माण हो रहा है " +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -442,10 +450,6 @@ msgstr "शुरुआत में अद्यतन के लिए जा msgid "Chinese (China)" msgstr "चीनी (चीन)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "चीनी (हॉन्ग कॉन्ग) " - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -454,14 +458,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "सरल चीनी " - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "डिफौल्ट सेत्तिंग्स स्तापित नहीं हो सकी \nअर्दुइनो फिर से इन्स्टाल कीजिये" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "स्केत्च का नाम नहीं बदला जा msgid "Could not replace {0}" msgstr "{0} की जगह नहीं कर सका" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "स्केच संग्रह नहीं किया जा सका" @@ -643,18 +631,10 @@ msgstr "" msgid "Cut" msgstr "कट" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -926,6 +906,18 @@ msgstr "" msgid "Examples" msgstr "उदाहरण" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1154,6 +1146,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "इतालवी " @@ -1178,6 +1175,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,12 +1192,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1215,8 +1217,9 @@ msgstr "मराठी " msgid "Message" msgstr "संदेश" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1248,10 +1251,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "नयी फाइल का नाम " @@ -1296,10 +1295,6 @@ msgstr "नहीं " msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "कोई बोर्ड चयनित नही, उपकरण से एक बोर्ड का चयन करें> बोर्ड मेनू" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "ऑटो फॉर्मेट के लिए कोई बदलाव जरुरी नहीं हैं " @@ -1363,18 +1358,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "पारसी " msgid "Persian (Iran)" msgstr "पारसी (ईरान)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1523,6 @@ msgstr "पुस्तिका में फाइलो तक पहुच msgid "Problem getting data folder" msgstr "डेटा फ़ोल्डर को लेने में समस्या है " -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "{0} को बिल्ड पुस्तिका में डालने में समस्या " - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "" msgid "Programmer" msgstr "प्रोग्रामर" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "छोडिये" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "रीडू" @@ -1609,6 +1605,16 @@ msgstr "की जगह:" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "रूसी " @@ -1714,6 +1720,11 @@ msgstr "सीरियल पोर्ट नंबर {0} नहीं म msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1840,6 @@ msgstr "" msgid "Sunshine" msgstr "सूर्य किरन" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2040,15 +2046,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "नहीं पकड़ा जा सकने वाला अपवाद: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "अन्डू" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2097,10 +2108,6 @@ msgstr "इ/ओ बोर्ड पर उपलोड हो रहा है.. msgid "Uploading..." msgstr "अपलोड हो रहा है ....." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "ढूँढने के लिये सिलेक्शन का उपयोग कीजिये" @@ -2175,6 +2182,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Arduino.cc देखिये" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "स्केत्च में {0} फाइल्स जोड़ी ग msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_hi.properties b/arduino-core/src/processing/app/i18n/Resources_hi.properties index f4c7ac5d30a..d4e5585c2b5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hi.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # Gaurav Waghmare , 2015 # Nishant Sood , 2012 # Parimal Naigaonkar , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hindi (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hindi (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092b\u093f\u0930 \u0938\u0947 \u091a\u093e\u0932\u0942 \u0915\u0930\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915) @@ -28,9 +29,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0924\u092d\u0940 \u0938\u092e\u094d\u092a\u093e\u0926\u093f\u0924 \u0915\u0930\u0947\u0902 \u091c\u092c \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u091a\u0932 \u0928 \u0930\u0939\u093e \u0939\u094b) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -214,22 +221,20 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0} #: Editor.java:2136 Bad\ file\ selected=\u0916\u0930\u093e\u092c \u092b\u093e\u0907\u0932 \u091a\u0941\u0928\u0940 \u0917\u0908 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u092c\u094b\u0930\u094d\u0921 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -259,12 +264,12 @@ Both\ NL\ &\ CR=\u0926\u094b\u0928\u094b\u0902 NL \u0914\u0930 CR #: Preferences.java:81 Browse=\u092c\u094d\u0930\u093e\u0909\u091c\u093c \u0915\u0930\u0947\u0902 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u092c\u093f\u0932\u094d\u0921 \u092a\u0941\u0938\u094d\u0924\u093f\u0915\u093e \u0917\u093e\u092f\u092c \u0939\u094b \u0917\u092f\u0940 \u092f\u093e \u0909\u0938\u092e\u0947 \u092a\u094d\u0930\u0935\u0947\u0936 \u0928\u093f\u0937\u0947\u0927\u093e\u0924\u094d\u092e\u0915 \u0939\u0948 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u092c\u093f\u0932\u094d\u0921 \u0935\u093f\u0915\u0932\u094d\u092a \u092c\u0926\u0932\u0947 \u0917\u090f, \u0938\u092d\u0940 \u0915\u093e \u092b\u093f\u0930 \u0938\u0947 \u0928\u093f\u0930\u094d\u092e\u093e\u0923 \u0939\u094b \u0930\u0939\u093e \u0939\u0948 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -313,21 +318,12 @@ Check\ for\ updates\ on\ startup=\u0936\u0941\u0930\u0941\u0906\u0924 \u092e\u0 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u091a\u0940\u0928\u0940 (\u091a\u0940\u0928) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u091a\u0940\u0928\u0940 (\u0939\u0949\u0928\u094d\u0917 \u0915\u0949\u0928\u094d\u0917) - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=\u0938\u0930\u0932 \u091a\u0940\u0928\u0940 - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -412,9 +408,6 @@ Could\ not\ re-save\ sketch=\u0906\u092a\u0915\u0940 \u0938\u094d\u0915\u0947\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0921\u093f\u092b\u094c\u0932\u094d\u091f \u0938\u0947\u0924\u094d\u0924\u093f\u0902\u0917\u094d\u0938 \u0938\u094d\u0924\u093e\u092a\u093f\u0924 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0940 \n\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u092b\u093f\u0930 \u0938\u0947 \u0907\u0928\u094d\u0938\u094d\u091f\u093e\u0932 \u0915\u0940\u091c\u093f\u092f\u0947 -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, 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 @@ -436,9 +429,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0938\u094d\u0915\u0947\u0924\u094d\u091a #, java-format Could\ not\ replace\ {0}={0} \u0915\u0940 \u091c\u0917\u0939 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u093e -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0938\u094d\u0915\u0947\u091a \u0938\u0902\u0917\u094d\u0930\u0939 \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e \u0938\u0915\u093e @@ -457,15 +447,9 @@ Couldn't\ do\ it=\u092f\u0939 \u0915\u093f\u092f\u093e \u0928\u0939\u0940\u0902 #: Editor.java:1149 Editor.java:2699 Cut=\u0915\u091f -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -669,6 +653,15 @@ Error\ while\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \ #: Editor.java:516 Examples=\u0909\u0926\u093e\u0939\u0930\u0923 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -834,6 +827,10 @@ Increase\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u092c\u0922\u #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0907\u0924\u093e\u0932\u0935\u0940 @@ -852,6 +849,9 @@ Japanese=\u091c\u093e\u092a\u093e\u0928\u0940 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -862,12 +862,13 @@ Japanese=\u091c\u093e\u092a\u093e\u0928\u0940 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -880,8 +881,9 @@ Marathi=\u092e\u0930\u093e\u0920\u0940 #: Base.java:2112 Message=\u0938\u0902\u0926\u0947\u0936 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -905,9 +907,6 @@ Moving=\u0917\u0924\u093f\u0936\u0940\u0932 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=\u0928\u092f\u0940 \u092b\u093e\u0907\u0932 \u0915\u093e \u0928\u093e\u092e @@ -941,9 +940,6 @@ No=\u0928\u0939\u0940\u0902 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0915\u094b\u0908 \u092c\u094b\u0930\u094d\u0921 \u091a\u092f\u0928\u093f\u0924 \u0928\u0939\u0940, \u0909\u092a\u0915\u0930\u0923 \u0938\u0947 \u090f\u0915 \u092c\u094b\u0930\u094d\u0921 \u0915\u093e \u091a\u092f\u0928 \u0915\u0930\u0947\u0902> \u092c\u094b\u0930\u094d\u0921 \u092e\u0947\u0928\u0942 - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0911\u091f\u094b \u092b\u0949\u0930\u094d\u092e\u0947\u091f \u0915\u0947 \u0932\u093f\u090f \u0915\u094b\u0908 \u092c\u0926\u0932\u093e\u0935 \u091c\u0930\u0941\u0930\u0940 \u0928\u0939\u0940\u0902 \u0939\u0948\u0902 @@ -992,15 +988,9 @@ No\ reference\ available\ for\ "{0}"="{0}" \u0915\u0947 \u0932\u093f\u092f\u0947 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1044,6 +1034,10 @@ Persian=\u092a\u093e\u0930\u0938\u0940 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u092a\u093e\u0930\u0938\u0940 (\u0908\u0930\u093e\u0928) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1117,10 +1111,6 @@ Problem\ accessing\ files\ in\ folder\ =\u092a\u0941\u0938\u094d\u0924\u093f\u09 #: Base.java:1673 Problem\ getting\ data\ folder=\u0921\u0947\u091f\u093e \u092b\u093c\u094b\u0932\u094d\u0921\u0930 \u0915\u094b \u0932\u0947\u0928\u0947 \u092e\u0947\u0902 \u0938\u092e\u0938\u094d\u092f\u093e \u0939\u0948 -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder={0} \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 - #: 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 @@ -1133,9 +1123,16 @@ Problem\ with\ rename=\u0928\u093e\u092e \u092c\u0926\u0932\u0928\u0947 \u092e\u #: Editor.java:704 Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u093e\u092e\u0930 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u091b\u094b\u0921\u093f\u092f\u0947 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u0930\u0940\u0921\u0942 @@ -1175,6 +1172,14 @@ Replace\ with\:=\u0915\u0940 \u091c\u0917\u0939\: #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u0930\u0942\u0938\u0940 @@ -1252,6 +1257,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1332,9 +1341,6 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u092e\u093e\u09 #: Base.java:540 Sunshine=\u0938\u0942\u0930\u094d\u092f \u0915\u093f\u0930\u0928 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u092f\u0939 \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0909\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0939\u0948 \u091c\u093f\u0938 \u091c\u0917\u0939 \u092a\u0930 \u0906\u092a \u0907\u0938\u0947 \u0915\u0949\u092a\u0940 \u0915\u0930 \u0930\u0939\u0947 \u0939\u0948\u0902 \n\u0915\u0941\u091b \u0928\u0939\u0940\u0902 \u0915\u093f\u092f\u093e \u091c\u093e\u092f\u0917\u093e @@ -1453,6 +1456,10 @@ Troubleshooting=\u0938\u092e\u0938\u094d\u092f\u093e \u0928\u093f\u0935\u093e\u0 #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1463,13 +1470,17 @@ Troubleshooting=\u0938\u092e\u0938\u094d\u092f\u093e \u0928\u093f\u0935\u093e\u0 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, 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} - #: Editor.java:1133 Editor.java:1355 Undo=\u0905\u0928\u094d\u0921\u0942 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\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 @@ -1504,9 +1515,6 @@ Uploading\ to\ I/O\ Board...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a #: Sketch.java:1622 Uploading...=\u0905\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948 ..... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 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 @@ -1564,6 +1572,14 @@ Verify=\u091c\u093e\u0902\u091a \u0915\u0930\u0947\u0902 #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0926\u0947\u0916\u093f\u092f\u0947 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1593,6 +1609,9 @@ Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1753,6 +1772,14 @@ upload=\u0909\u092a\u0932\u094b\u0921 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u0932\u094c\u091f\u093e\u092f\u093e {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po index 3a60fe990e5..e6107eb09f2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.po +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Dubravko Penezic , 2012 # Dubravko Penezic , 2013 # mbruck , 2014 @@ -14,7 +15,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Croatian (Croatia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\n" "MIME-Version: 1.0\n" @@ -45,10 +46,20 @@ msgstr "'Keyboard' podrška dostupna samo na Arduino Leonardu" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' podrška dostupna samo na Arduino Leonardo-u" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(uređivanje je moguće dok Arduino nije pokrenut)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -310,10 +321,6 @@ msgstr "Greška u liniji: {0}" msgid "Bad file selected" msgstr "Pogrešno odabrana datoteka" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basque" @@ -322,15 +329,16 @@ msgstr "Basque" msgid "Belarusian" msgstr "Belarusian" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Pločica" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "Oba NL & CR" msgid "Browse" msgstr "Pregledaj" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Mapa za kompajliranje je nestala ili se u nju nemože zapisivati" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opcije konstrukcije izmjenjene, rekonstrukcija svega" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -442,10 +450,6 @@ msgstr "Provjeri promjene pri pokretanju" msgid "Chinese (China)" msgstr "Chinese (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinese (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinese (Taiwan)" @@ -454,14 +458,6 @@ msgstr "Chinese (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinese (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinese Traditional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nemogu pročitati osnovne postavke.\nPotrebno je ponovno instalirati Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Ne mogu se pročitati datoteka prethodnih postavki konstrukcije, rekonstrukcija svega" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "Nemogu preimenovati skicu.(2)" msgid "Could not replace {0}" msgstr "Nemogu zamjeniti {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Ne može se upisivati u datoteku postavki konstrukcije" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nemogu arhivirati skicu" @@ -643,18 +631,10 @@ msgstr "Hrvatski" msgid "Cut" msgstr "Izreži" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Czech" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -926,6 +906,18 @@ msgstr "Estonian (Estonia)" msgid "Examples" msgstr "Primjeri" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1154,6 +1146,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Neispravna biblioteka u {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italian" @@ -1178,6 +1175,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,12 +1192,13 @@ msgstr "Lithuaninan" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1215,9 +1217,10 @@ msgstr "Marathi" msgid "Message" msgstr "Poruka" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Nedostaje */ na kraju bloka /* komentar */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1248,10 +1251,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Mora se navesti samo jedna datoteka skica" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Naziv nove datoteke:" @@ -1296,10 +1295,6 @@ msgstr "Ne" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nije odabrana niti jedna pločica; odaberite plčicu iz Alati> Pločica izbornika." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Nema promjena nakon auto formatiranja." @@ -1363,18 +1358,10 @@ msgstr "Nije pronađena definicija hardwera u mapi {0}." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norwegian Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "Persian" msgid "Persian (Iran)" msgstr "Persian (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1523,6 @@ msgstr "Problem pri pristupu datotekama u mapi" msgid "Problem getting data folder" msgstr "Problem pri dohvatu mape s podacima." -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problem pri pomicanju {0} u mapu za izradu" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programator" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Kraj" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Ponovi" @@ -1609,6 +1605,16 @@ msgstr "Zamjeni sa:" msgid "Romanian" msgstr "Polish" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Polish" @@ -1714,6 +1720,11 @@ msgstr "Serijski port {0} nij pronađen.\nDa pokušam prijenos s drugim serijski msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1840,6 @@ msgstr "" msgid "Sunshine" msgstr "Sunčeve zrake" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Swedish" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "Nima konekcije: ponovni pokušaj" msgid "Unable to connect: wrong password?" msgstr "Nije moguča konekcija: pogrešna lozinka?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Ne može se otvoriti prozor serijske komunikacije" @@ -2040,15 +2046,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Nerzavrstana greška :{0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Vrati" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2097,10 +2108,6 @@ msgstr "Prenošenje na I/O ploču..." msgid "Uploading..." msgstr "Prenošenje..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Iskoristi selekciju za pretragu" @@ -2175,6 +2182,16 @@ msgstr "Vietnamese" msgid "Visit Arduino.cc" msgstr "Posjeti Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "{0} datoteka dodano u skicu." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties index ec9f198b95f..03aedea9ba9 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hr_HR.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # Dubravko Penezic , 2012 # Dubravko Penezic , 2013 # mbruck , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hr_HR\nPlural-Forms\: nplurals\=3; plural\=n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hr_HR\nPlural-Forms\: nplurals\=3; plural\=n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (potrebno ponovno pokretanje Arduina) @@ -28,9 +29,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' podr\u0161ka dostupna samo na Arduino Leonardo-u +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(ure\u0111ivanje je mogu\u0107e dok Arduino nije pokrenut) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -214,22 +221,20 @@ Bad\ error\ line\:\ {0}=Gre\u0161ka u liniji\: {0} #: Editor.java:2136 Bad\ file\ selected=Pogre\u0161no odabrana datoteka -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Basque #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Plo\u010dica +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Plo\u010da {0}\:{1}\:{2} ne definira ''build.board'' postavke. Auto-pode\u0161avanje na\: {3} @@ -259,12 +264,12 @@ Both\ NL\ &\ CR=Oba NL & CR #: Preferences.java:81 Browse=Pregledaj -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Mapa za kompajliranje je nestala ili se u nju nemo\u017ee zapisivati - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opcije konstrukcije izmjenjene, rekonstrukcija svega +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -313,21 +318,12 @@ Check\ for\ updates\ on\ startup=Provjeri promjene pri pokretanju #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinese (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinese (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinese (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -Chinese\ Traditional=Chinese Traditional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -412,9 +408,6 @@ Could\ not\ re-save\ sketch=Nemogu ponovno pohraniti skicu. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nemogu pro\u010ditati osnovne postavke.\nPotrebno je ponovno instalirati Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Ne mogu se pro\u010ditati datoteka prethodnih postavki konstrukcije, rekonstrukcija svega - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nemogu maknuti staru verziju {0} @@ -436,9 +429,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nemogu preimenovati skicu.(2) #, java-format Could\ not\ replace\ {0}=Nemogu zamjeniti {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Ne mo\u017ee se upisivati u datoteku postavki konstrukcije - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nemogu arhivirati skicu @@ -457,15 +447,9 @@ Croatian=Hrvatski #: Editor.java:1149 Editor.java:2699 Cut=Izre\u017ei -#: ../../../processing/app/Preferences.java:83 -Czech=Czech - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -669,6 +653,15 @@ Estonian\ (Estonia)=Estonian (Estonia) #: Editor.java:516 Examples=Primjeri +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -834,6 +827,10 @@ Indonesian=Indonesian #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Neispravna biblioteka u {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italian @@ -852,6 +849,9 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -862,12 +862,13 @@ Lithuaninan=Lithuaninan #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -880,8 +881,9 @@ Marathi=Marathi #: Base.java:2112 Message=Poruka -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Nedostaje */ na kraju bloka /* komentar */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -905,9 +907,6 @@ Moving=Pomakni #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Mora se navesti samo jedna datoteka skica -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Naziv nove datoteke\: @@ -941,9 +940,6 @@ No=Ne #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nije odabrana niti jedna plo\u010dica; odaberite pl\u010dicu iz Alati> Plo\u010dica izbornika. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nema promjena nakon auto formatiranja. @@ -992,15 +988,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nije prona\u0111ena de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nema dovoljno memorije; vidi http\://www.arduino.cc/en/Guide/Troubleshooting\#size za savjete kako smanjiti program. @@ -1044,6 +1034,10 @@ Persian=Persian #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persian (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1117,10 +1111,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem pri pristupu datotekama u mapi #: Base.java:1673 Problem\ getting\ data\ folder=Problem pri dohvatu mape s podacima. -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problem pri pomicanju {0} u mapu za izradu - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem prijenosa na plo\u010dicu. vidi http\://www.arduino.cc/en/Guide/Troubleshooting\#upload za sugestije. @@ -1133,9 +1123,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Programator +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Kraj +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ponovi @@ -1175,6 +1172,14 @@ Replace\ with\:=Zamjeni sa\: #: Preferences.java:113 Romanian=Polish +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Polish @@ -1252,6 +1257,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1332,9 +1341,6 @@ Spanish=Spanish #: Base.java:540 Sunshine=Sun\u010deve zrake -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Swedish @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Datoteka je v\u0107 kopirana na\nmjesto @@ -1453,6 +1456,10 @@ Unable\ to\ connect\:\ retrying=Nima konekcije\: ponovni poku\u0161aj #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Nije mogu\u010da konekcija\: pogre\u0161na lozinka? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Ne mo\u017ee se otvoriti prozor serijske komunikacije @@ -1463,13 +1470,17 @@ Unable\ to\ open\ serial\ monitor=Ne mo\u017ee se otvoriti prozor serijske komun #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Nerzavrstana gre\u0161ka \:{0} - #: Editor.java:1133 Editor.java:1355 Undo=Vrati +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Nespecificirana platforma, ne postoji pokreta\u010d.\nKako bi se omogu\u0107ilo otvaranje URL-ova i mapa potrebnop je dodati\n"launcher\=/path/to/app" liniju u preferences.txt @@ -1504,9 +1515,6 @@ Uploading\ to\ I/O\ Board...=Preno\u0161enje na I/O plo\u010du... #: Sketch.java:1622 Uploading...=Preno\u0161enje... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Iskoristi selekciju za pretragu @@ -1564,6 +1572,14 @@ Vietnamese=Vietnamese #: Editor.java:1105 Visit\ Arduino.cc=Posjeti Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=UPOZORENJE\: biblioteka {0} je pisana za izvr\u0161avanje na {1} arhitekturi(ama), i mo\u017ee biti nekompatibilna sa teku\u0107om plo\u010dom koja je bazirana {2} arhitekturi(ima). @@ -1593,6 +1609,9 @@ Warning=Upozorenje #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1753,6 +1772,14 @@ upload=prijenos #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} vratio {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.po b/arduino-core/src/processing/app/i18n/Resources_hu.po index 76617aa4114..2ab9de1a6ef 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.po +++ b/arduino-core/src/processing/app/i18n/Resources_hu.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # benewfy , 2015 # Melinda , 2014 # Cseh Robert , 2012 @@ -14,7 +15,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Hungarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\n" "MIME-Version: 1.0\n" @@ -45,10 +46,20 @@ msgstr "Az 'USB billentyűzet' megvalósítást csak az Arduino Leonardo támoga msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "Az 'USB Egér' megvalósítást csak az Arduino Leonardo támogatja." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(csak akkor szerkeszthető, ha az Arduino nem fut)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -310,10 +321,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -322,15 +329,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "Soremelés és kocsivissza" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -442,10 +450,6 @@ msgstr "Újabb verzió ellenőrzése indításkor" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -454,14 +458,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Az alapértelezett beállítások nem olvashatóak\\nAz Arduino újratelepítése szükséges." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "Nem cserélhető: {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -643,18 +631,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -926,6 +906,18 @@ msgstr "" msgid "Examples" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1154,6 +1146,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "" @@ -1178,6 +1175,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,12 +1192,13 @@ msgstr "Litván" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1215,8 +1217,9 @@ msgstr "" msgid "Message" msgstr "Üzenet" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1248,10 +1251,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Új file neve:" @@ -1296,10 +1295,6 @@ msgstr "" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nincs alappanel kiválasztva. Választani az Eszközök > Alappanel menüből lehet." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1363,18 +1358,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "Perzsa" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1523,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Probléma a könyvtár elérésekor" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Kilépés" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1609,6 +1605,16 @@ msgstr "" msgid "Romanian" msgstr "Román" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Orosz" @@ -1714,6 +1720,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1840,6 @@ msgstr "" msgid "Sunshine" msgstr "Napfény" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2040,13 +2046,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2097,10 +2108,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2175,6 +2182,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_hu.properties b/arduino-core/src/processing/app/i18n/Resources_hu.properties index bf251af020c..e646007aa7f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hu.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hu.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # benewfy , 2015 # Melinda , 2014 # Cseh Robert , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hungarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Hungarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(Arduino \u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges) @@ -28,9 +29,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=Az 'USB Eg\u00e9r' megval\u00f3s\u00edt\u00e1st csak az Arduino Leonardo t\u00e1mogatja. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(csak akkor szerkeszthet\u0151, ha az Arduino nem fut) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -214,22 +221,20 @@ Arduino\:\ =Arduino\: #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -259,12 +264,12 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -313,21 +318,12 @@ Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se in #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -412,9 +408,6 @@ Could\ not\ open\ the\ folder\n{0}=Nem nyithat\u00f3 meg a mappa\:\\n{0} #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Az alap\u00e9rtelezett be\u00e1ll\u00edt\u00e1sok nem olvashat\u00f3ak\\nAz Arduino \u00fajratelep\u00edt\u00e9se sz\u00fcks\u00e9ges. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nem t\u00f6r\u00f6lhet\u0151 a {0} r\u00e9gi verzi\u00f3ja @@ -436,9 +429,6 @@ Could\ not\ remove\ old\ version\ of\ {0}=Nem t\u00f6r\u00f6lhet\u0151 a {0} r\u #, java-format Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -457,15 +447,9 @@ Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0} #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -669,6 +653,15 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00 #: Editor.java:516 !Examples= +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -834,6 +827,10 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 !Italian= @@ -852,6 +849,9 @@ Latvian=Lett #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -862,12 +862,13 @@ Lithuaninan=Litv\u00e1n #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -880,8 +881,9 @@ Lithuaninan=Litv\u00e1n #: Base.java:2112 Message=\u00dczenet -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -905,9 +907,6 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Tov\u00e1bbi sz\u00e #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=\u00daj file neve\: @@ -941,9 +940,6 @@ Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nincs alappanel kiv\u00e1lasztva. V\u00e1lasztani az Eszk\u00f6z\u00f6k > Alappanel men\u00fcb\u0151l lehet. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -992,15 +988,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1044,6 +1034,10 @@ Persian=Perzsa #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1117,10 +1111,6 @@ Problem\ Setting\ the\ Platform=A keretrendszer konfigur\u00e1l\u00e1sa sor\u00e #: Base.java:1673 Problem\ getting\ data\ folder=Probl\u00e9ma a k\u00f6nyvt\u00e1r el\u00e9r\u00e9sekor -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: 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. @@ -1133,9 +1123,16 @@ Problem\ with\ rename=Hiba az \u00e1tnevez\u00e9s sor\u00e1n #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Kil\u00e9p\u00e9s +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1175,6 +1172,14 @@ Rename=\u00c1tnevez\u00e9s #: Preferences.java:113 Romanian=Rom\u00e1n +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Orosz @@ -1252,6 +1257,10 @@ Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1332,9 +1341,6 @@ Spanish=Spanyol #: Base.java:540 Sunshine=Napf\u00e9ny -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1453,6 +1456,10 @@ Time\ for\ a\ Break=Itt az id\u0151 sz\u00fcnetet tartani #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1463,13 +1470,17 @@ Time\ for\ a\ Break=Itt az id\u0151 sz\u00fcnetet tartani #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1504,9 +1515,6 @@ Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketch fri #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1564,6 +1572,14 @@ Verify\ code\ after\ upload=K\u00f3d ellen\u0151rz\u00e9s felt\u00f6lt\u00e9s ut #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1593,6 +1609,9 @@ Warning=Figyelmeztet\u00e9s #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1753,6 +1772,14 @@ upload=felt\u00f6lt\u00e9skor #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} eredm\u00e9nye {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.po b/arduino-core/src/processing/app/i18n/Resources_hy.po index d34914d2fe6..35ebbdbf623 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.po +++ b/arduino-core/src/processing/app/i18n/Resources_hy.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # zepyur , 2012 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Armenian (http://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "Զննել" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "{0}-ն չեղավ փոխարինել" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Դանիերեն" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "Օրինակներ" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Իտալերեն" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "Լիտվաներեն" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "Հաղորդագրություն" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "Ոչ" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Պարսկերեն" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "Ծրագրավորող" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Լքել" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Հետ շրջել" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "Ներբեռնում․․․" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_hy.properties b/arduino-core/src/processing/app/i18n/Resources_hy.properties index 41618bf0244..e3700af6c59 100644 --- a/arduino-core/src/processing/app/i18n/Resources_hy.properties +++ b/arduino-core/src/processing/app/i18n/Resources_hy.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # zepyur , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Armenian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Armenian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576 #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576 #: Preferences.java:81 Browse=\u0536\u0576\u0576\u0565\u056c -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ Catalan=\u053f\u0561\u057f\u0561\u056c\u0578\u0576\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u #, java-format Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\ #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u0534\u0561\u0576\u056b\u0565\u0580\u0565\u0576 - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Estonian=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576 #: Editor.java:516 Examples=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=\u053b\u0576\u0564\u0578\u0576\u0565\u0566\u0565\u0580\u0565\u0576 #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u053b\u057f\u0561\u056c\u0565\u0580\u0565\u0576 @@ -850,6 +847,9 @@ Latvian=\u053c\u0561\u057f\u057e\u0565\u0580\u0565\u0576 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576 #: Base.java:2112 Message=\u0540\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Moving=\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ No=\u0548\u0579 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No=\u0548\u0579 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Persian=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576 #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Previous=\u0546\u0561\u056d\u056f\u056b\u0576 #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Previous=\u0546\u0561\u056d\u056f\u056b\u0576 #: Editor.java:704 Programmer=\u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u053c\u0584\u0565\u056c +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Replace\ All=\u0532\u0578\u056c\u0578\u0580\u0568 \u0583\u0578\u056d\u0561\u0580 #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Tools=\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Tools=\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=\u0540\u0565\u057f \u0577\u0580\u057b\u0565\u056c +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Upload=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c #: Sketch.java:1622 Uploading...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u2024\u2024\u2024 -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Verify=\u054d\u057f\u0578\u0582\u0563\u0565\u056c #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=\u0548\u0582\u0577\u0561\u0564\u0580\u0578\u0582\u0569\u0575\u0578\u0582 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ Yes=\u0531\u0575\u0578 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_in.po b/arduino-core/src/processing/app/i18n/Resources_in.po index e356bf393e5..011ed60c402 100644 --- a/arduino-core/src/processing/app/i18n/Resources_in.po +++ b/arduino-core/src/processing/app/i18n/Resources_in.po @@ -6,7 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Ade Malsasa Akbar , 2013 +# Johannes Sutiktio , 2015 # Joshua Adiel Wijaya , 2015 # Rendiyono Wahyu Saputro , 2015 msgid "" @@ -14,7 +16,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Indonesian (http://www.transifex.com/mbanzi/arduino-ide-15/language/id/)\n" "MIME-Version: 1.0\n" @@ -25,7 +27,7 @@ msgstr "" #: Preferences.java:358 Preferences.java:374 msgid " (requires restart of Arduino)" -msgstr "(memerlukan Arduino untuk mulai-ulang)" +msgstr "if / else\n\nif/else allows greater control over the flow of code than the basic if statement, by allowing multiple tests to be grouped together. For example, an analog input could be tested and one action taken if the input was less than 500, and another action taken if the input was 500 or greater. The code would look like this:\n\nif (pinFiveInput < 500)\n{\n // action A\n}\nelse\n{\n // action B\n}\n\nelse can proceed another if test, so that multiple, mutually exclusive tests can be run at the same time.\n\nEach test will proceed to the next one until a true test is encountered. When a true test is found, its associated block of code is run, and the program then skips to the line following the entire if/else construction. If no test proves to be true, the default else block is executed, if one is present, and sets the default behavior.\n\nNote that an else if block may be used with or without a terminating else block and vice versa. An unlimited number of such else if branches is allowed.\n\nif (pinFiveInput < 500)\n{\n // do Thing A\n}\nelse if (pinFiveInput >= 1000)\n{\n // do Thing B\n}\nelse\n{\n // do Thing C\n}\n\nAnother way to express branching, mutually exclusive tests, is with the switch case statement.\nSee also:\n\nswitch case Reference Home\n\nCorrections, suggestions, and new documentation should be posted to the Forum.\n\nThe text of the Arduino reference is licensed under a Creative Commons Attribution-ShareAlike 3.0 License. Code samples in the reference are released into the public domain.\nShare" #: ../../../processing/app/debug/Compiler.java:529 #, java-format @@ -45,10 +47,20 @@ msgstr "'Keyboard' hanya didukung pada Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' hanya didukung pada Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(sunting hanya ketika Arduino tidak berjalan)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -310,10 +322,6 @@ msgstr "Galat baris buruk: {0}" msgid "Bad file selected" msgstr "Berkas buruk dipilih" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Berkas utama sketsa buruk atau struktur direktori sketsa buruk" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Bahasa Basque" @@ -322,15 +330,16 @@ msgstr "Bahasa Basque" msgid "Belarusian" msgstr "Bahasa Belarusia" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Papan" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +380,14 @@ msgstr "Keduanya NL & CR" msgid "Browse" msgstr "Telusuri" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Folder bangun menghilang atau tidak dapat ditulis" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opsi bangun berubah, membangun kembali semuanya" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bahasa Bulgaria" @@ -442,10 +451,6 @@ msgstr "Cek untuk pembaruan saat dijalan pertama kali" msgid "Chinese (China)" msgstr "China (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Bahasa China (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Bahasa China (Taiwan)" @@ -454,14 +459,6 @@ msgstr "Bahasa China (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Bahasa China (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Bahasa China Sederhana" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Bahasa China Tradisional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Tidak dapat membaca pengaturan baku.\nAnda harus memasang ulang Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Tidak dapat membaca berkas preferensi bangun, membangun kembali semua" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +605,6 @@ msgstr "Tidak dapat mengubah nama sketsa. (2)" msgid "Could not replace {0}" msgstr "Tidak dapat diganti {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Tidak dapat menulis berkas preferensi bangun" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Tidak dapat mengarsipkan sketsa" @@ -643,18 +632,10 @@ msgstr "Bahasa Kroasia" msgid "Cut" msgstr "Potong" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Bahasa Ceko" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Bahasa Denmark" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -926,6 +907,18 @@ msgstr "Bahasa Estonia (Estonia)" msgid "Examples" msgstr "Contoh" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1154,6 +1147,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Pustaka tidak sah ditemukan di {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Bahasa Italia" @@ -1178,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,14 +1193,15 @@ msgstr "" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Memori rendah tersedia, masalah stabilitas dapat terjadi." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1215,9 +1218,10 @@ msgstr "" msgid "Message" msgstr "Pesan" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Kehilangan * / dari akhir sebuah / * komentar * /" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1248,10 +1252,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Harus menentukan setidaknya satu berkas sketsa" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nama untuk berkas baru:" @@ -1296,10 +1296,6 @@ msgstr "Tidak" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Tidak ada papan yang dipilih; silakan pilih sebuah papan dari Alat > menu Papan." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Auto Format tidak memerlukan perubahan." @@ -1363,18 +1359,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1422,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1524,6 @@ msgstr "Masalah dalam mengakses file dalam folder" msgid "Problem getting data folder" msgstr "Masalah saat mengambil folder data" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1542,19 @@ msgstr "Prosesor" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Keluar" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1609,6 +1606,16 @@ msgstr "Ganti dengan:" msgid "Romanian" msgstr "Bahasa Romania" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Bahasa Rusia" @@ -1714,6 +1721,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1841,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1949,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2029,11 @@ msgstr "Tidak dapat tersambung: mencoba kembali" msgid "Unable to connect: wrong password?" msgstr "Tidak dapat tersambung: kata sandi salah?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Tidak dapat membuka layar serial" @@ -2040,15 +2047,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Tipe pengecualian tidak tertangkap: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2097,10 +2109,6 @@ msgstr "Mengunggah ke papan I/O..." msgid "Uploading..." msgstr "Mengunggah..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Gunakan Seleksi Untuk Cari" @@ -2175,6 +2183,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Kunjungi Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2496,16 @@ msgstr "{0} berkas ditambahkan ke dalam sketsa." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_it_IT.po b/arduino-core/src/processing/app/i18n/Resources_it_IT.po index 054462db28b..69958b86829 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.po +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013-2015 # Davide Velluto , 2012 # Federico Fissore , 2015 @@ -17,7 +18,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:39+0000\n" +"PO-Revision-Date: 2015-09-23 13:34+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Italian (Italy) (http://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\n" "MIME-Version: 1.0\n" @@ -48,10 +49,20 @@ msgstr "'Keyboard' supportata solo su Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' supportata solo su Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "La cartella 'arch' non è più supportata! Guarda http://goo.gl/gfFJzU per maggiori informazioni" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(modificabile solo quando Arduino non è in esecuzione)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "(legacy)" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir non è più supportato" @@ -294,11 +305,11 @@ msgstr "Formattazione automatica completata" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "Individua automaticamente le impostazioni proxy" +msgstr "Individua automaticamente le impostazioni del proxy" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "URL per configurazione automatica del proxy:" +msgstr "URL di configurazione automatica del proxy:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -313,10 +324,6 @@ msgstr "Errore alla linea: {0}" msgid "Bad file selected" msgstr "Selezionato file errato" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "File principale dello sketch errato oppure struttura della cartella dello sketch errata" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basco" @@ -325,15 +332,16 @@ msgstr "Basco" msgid "Belarusian" msgstr "Bielorusso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengalese (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Scheda" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "La scheda {0} (piattaforma {1}, pacchetto {2}) è sconosciuta" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -374,14 +382,14 @@ msgstr "Entrambi (NL & CR)" msgid "Browse" msgstr "Sfoglia" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "La cartella di compilazione è scomparsa o non può essere scritta" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opzioni di compilazione cambiate, ricompilo tutto" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "Esempi integrati" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaro" @@ -445,10 +453,6 @@ msgstr "Controlla aggiornamenti all'avvio" msgid "Chinese (China)" msgstr "Cinese (Cina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Cinese (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Cinese (Taiwan)" @@ -457,14 +461,6 @@ msgstr "Cinese (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Cinese (Taiwan - Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Cinese semplificato" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Cinese tradizionale" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Clicca qui per ottenere una lista di URL per schede non ufficiali" @@ -584,10 +580,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Impossibile leggere le impostazioni predefinite.\nDevi reinstallare Arduino" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Impossibile leggere il file con le preferenze di compilazione, ricompilo tutto" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +607,6 @@ msgstr "Impossibile cambiare nome allo sketch (2)" msgid "Could not replace {0}" msgstr "Impossibile sostituire {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Impossibile scrivere il file con le preferenze di compilazione" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Impossibile archiviare lo sketch" @@ -646,18 +634,10 @@ msgstr "Croato" msgid "Cut" msgstr "Taglia" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Ceco" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Ceco (Repubblica Ceca)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danese" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danese (Danimarca)" @@ -929,6 +909,18 @@ msgstr "Estone" msgid "Examples" msgstr "Esempi" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "Esempi delle librerie custom" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "Esempi delle librerie" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "Esportazione annullata, le modifiche devono prima essere salvate." + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Esporta sketch compilato" @@ -987,7 +979,7 @@ msgstr "Correggi codifica e ricarica" msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "Per maggiori informazioni sull'installazione di librerie vedi http://www.arduino.cc/en/Guide/Libraries\n" +msgstr "Per maggiori informazioni sull'installazione di librerie guarda http://www.arduino.cc/en/Guide/Libraries\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -1157,6 +1149,11 @@ msgstr "Sto installando..." msgid "Invalid library found in {0}: {1}" msgstr "Trovata libreria non valida in {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "Virgolettato non valido: carattere di chiusura [{0}] non trovato." + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1181,6 +1178,10 @@ msgstr "Gestore librerie" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Libreria aggiunta alle tue librerie. Controlla il menù \"Inclusione librerie\"" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "La libreria non può usare sia la cartella 'src' che la cartella 'utility'." + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1194,14 +1195,15 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "Sto caricando la configurazione..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "Cerco ricette simili a {0}*{1}" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Poca memoria disponibile, potrebbero presentarsi problemi di stabilità" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malese (Malesia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Gestione librerie..." @@ -1218,9 +1220,10 @@ msgstr "Marathi" msgid "Message" msgstr "Messaggio" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Manca il */ finale di un /* commento */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "Manca '{0}' nella libreria {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1251,10 +1254,6 @@ msgstr "Più di una libreria trovata per \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Devi specificare un unico file dello sketch" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome del nuovo file:" @@ -1299,10 +1298,6 @@ msgstr "No" msgid "No authorization data found" msgstr "Dati di autorizzazione non trovati" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nessuna scheda selezionata; seleziona una scheda dal menu \"Strumenti > Tipo di Arduino\"" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Nessun cambiamento effettuato con la formattazione automatica" @@ -1366,18 +1361,10 @@ msgstr "Nessuna definizione di hardware valida trovata nella cartella {0}." msgid "None" msgstr "Nessuno" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norvegese" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norvegese bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norvegese nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1437,6 +1424,11 @@ msgstr "Persiano" msgid "Persian (Iran)" msgstr "Persiano (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "La piattaforma {0} (pacchetto {1}) è sconosciuta" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Confermi la cancellazione della scheda?" @@ -1534,11 +1526,6 @@ msgstr "Problemi nell'accesso ai file nella cartella" msgid "Problem getting data folder" msgstr "Problema con la cartella dati" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problema nello spostamento di {0} nella cartella di generazione" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1544,19 @@ msgstr "Processore" msgid "Programmer" msgstr "Programmatore" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "Progressione {0}" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Esci" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "RITARATI" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Ripeti" @@ -1612,6 +1608,16 @@ msgstr "Sostituisci con:" msgid "Romanian" msgstr "Romeno" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "In esecuzione la ricetta: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "In esecuzione: {0}" + #: Preferences.java:114 msgid "Russian" msgstr "Russo" @@ -1717,6 +1723,11 @@ msgstr "Porta seriale {0} non trovata. Riprovare il caricamento con un'altra por msgid "Serial ports" msgstr "Porte seriali" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "Imposto il percorso di compilazione a {0}" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "Impostazioni" @@ -1832,10 +1843,6 @@ msgstr "Sto avviando..." msgid "Sunshine" msgstr "Sole splendente" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Svedese" @@ -1952,12 +1959,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "La cartella degli sketch indicata contiene la tua copia dell'IDE.\nScegli un'altra cartella per i tuoi sketch." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Nel file \"platform.txt\" di terze parti non è definito \"compiler.path\" Si prega di segnalare questo problema allo svilupatore" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2030,6 +2031,11 @@ msgstr "Impossibile connettersi: riprovo..." msgid "Unable to connect: wrong password?" msgstr "Impossibile connettersi: password errata?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "Impossibile trovare {0} in {1}" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Impossibile aprire il monitor seriale" @@ -2043,15 +2049,20 @@ msgstr "Impossibile aprire il plotter seriale" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Impossibile connettersi ad Arduino.cc a causa di problemi di rete" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Eccezione non intercettata di tipo: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Annulla" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "Il tipo {0} associato alla chiave di contesto {1} non è gestito" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "Estensione sconosciuta per il file dello sketch: {0}" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2100,10 +2111,6 @@ msgstr "Sto caricando sulla scheda di I/O..." msgid "Uploading..." msgstr "Sto caricando..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Trova testo selezionato" @@ -2115,7 +2122,7 @@ msgstr "Usa un editor esterno" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "Username:" +msgstr "Nome utente:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -2178,6 +2185,16 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visita Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "ATTENZIONE: La categoria '{0}' della libreria {1} non è valida. La imposto a '{2}'" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "ATTENZIONE: Cartella spuria {0} nella libreria '{1}'" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2202,17 +2219,17 @@ msgstr "Attenzione: il file {0} punta al percorso assoluto {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "Attenzione: hai forzato la fiducia per i contributi non attendibili" +msgstr "Attenzione: forzata l'attendibilità di contributi non attendibili" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "Attenzione: hai forzato l'esecuzione di uno script non attendibile ({0})" +msgstr "Attenzione: forzata l'esecuzione di uno script non attendibile ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "Attenzione: contributo non fidato, salto l'esecuzione dello script ({0})" +msgstr "Attenzione: contributo non attendibile, salto l'esecuzione dello script ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -2221,6 +2238,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Attenzione: platform.txt del core '{0}' contiene la stringa deprecata {1} convertita automaticamente in {2}. Verifica la disponibilità di un aggiornamento di questo core." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "Attenzione: in platform.txt del core '{0}' manca la proprietà '{1}', uso il valore di default '{2}'. Verifica la disponibilità di un aggiornamento per questo core." + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2419,7 +2442,7 @@ msgstr "http://www.arduino.cc/latest.txt" #: Preferences.java:625 #, java-format msgid "ignoring invalid font size {0}" -msgstr "Ignoro grandezza del font non valida {0}" +msgstr "Ignoro la dimensione del font non valida {0}" #: Editor.java:936 Editor.java:943 msgid "name is null" @@ -2475,6 +2498,16 @@ msgstr "{0} files aggiunti allo sketch" msgid "{0} libraries" msgstr "{0} librerie" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "{0} deve essere una cartella" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "Manca il pattern {0}" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties index e340e37a2f0..4b627b27335 100644 --- a/arduino-core/src/processing/app/i18n/Resources_it_IT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_it_IT.properties @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013-2015 # Davide Velluto , 2012 # Federico Fissore , 2015 # Giovanni Spadaro , 2012 # Michele Michielin , 2012 # Michele Michielin , 2013-2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:39+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:34+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(richiede il riavvio di Arduino) @@ -31,9 +32,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' supportata solo su Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=La cartella 'arch' non \u00e8 pi\u00f9 supportata\! Guarda http\://goo.gl/gfFJzU per maggiori informazioni + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(modificabile solo quando Arduino non \u00e8 in esecuzione) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +(legacy)=(legacy) + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir non \u00e8 pi\u00f9 supportato @@ -202,10 +209,10 @@ Auto\ Format=Formattazione automatica Auto\ Format\ finished.=Formattazione automatica completata #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -Auto-detect\ proxy\ settings=Individua automaticamente le impostazioni proxy +Auto-detect\ proxy\ settings=Individua automaticamente le impostazioni del proxy #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -Automatic\ proxy\ configuration\ URL\:=URL per configurazione automatica del proxy\: +Automatic\ proxy\ configuration\ URL\:=URL di configurazione automatica del proxy\: #: SerialMonitor.java:110 Autoscroll=Scorrimento automatico @@ -217,22 +224,20 @@ Bad\ error\ line\:\ {0}=Errore alla linea\: {0} #: Editor.java:2136 Bad\ file\ selected=Selezionato file errato -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=File principale dello sketch errato oppure struttura della cartella dello sketch errata - #: ../../../processing/app/Preferences.java:149 Basque=Basco #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorusso -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengalese (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Scheda +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=La scheda {0} (piattaforma {1}, pacchetto {2}) \u00e8 sconosciuta + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=La scheda {0}\:{1}\:{2} non ha la propriet\u00e0 ''build.board'' definita. La imposto automaticamente a {3} @@ -262,12 +267,12 @@ Both\ NL\ &\ CR=Entrambi (NL & CR) #: Preferences.java:81 Browse=Sfoglia -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=La cartella di compilazione \u00e8 scomparsa o non pu\u00f2 essere scritta - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opzioni di compilazione cambiate, ricompilo tutto +#: ../../../../../app/src/processing/app/Base.java:1210 +Built-in\ Examples=Esempi integrati + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaro @@ -316,21 +321,12 @@ Check\ for\ updates\ on\ startup=Controlla aggiornamenti all'avvio #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Cinese (Cina) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Cinese (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Cinese (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Cinese (Taiwan - Big5) -#: Preferences.java:88 -Chinese\ Simplified=Cinese semplificato - -#: Preferences.java:89 -Chinese\ Traditional=Cinese tradizionale - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Clicca qui per ottenere una lista di URL per schede non ufficiali @@ -415,9 +411,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossibile leggere le impostazioni predefinite.\nDevi reinstallare Arduino -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Impossibile leggere il file con le preferenze di compilazione, ricompilo tutto - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Impossibile eliminare la vecchia versione di {0} @@ -439,9 +432,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Impossibile cambiare nome allo sketch (2) #, java-format Could\ not\ replace\ {0}=Impossibile sostituire {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Impossibile scrivere il file con le preferenze di compilazione - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Impossibile archiviare lo sketch @@ -460,15 +450,9 @@ Croatian=Croato #: Editor.java:1149 Editor.java:2699 Cut=Taglia -#: ../../../processing/app/Preferences.java:83 -Czech=Ceco - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Ceco (Repubblica Ceca) -#: Preferences.java:90 -Danish=Danese - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danese (Danimarca) @@ -672,6 +656,15 @@ Estonian\ (Estonia)=Estone #: Editor.java:516 Examples=Esempi +#: ../../../../../app/src/processing/app/Base.java:1244 +Examples\ from\ Custom\ Libraries=Esempi delle librerie custom + +#: ../../../../../app/src/processing/app/Base.java:1222 +Examples\ from\ Libraries=Esempi delle librerie + +#: ../../../../../app/src/processing/app/Editor.java:753 +Export\ canceled,\ changes\ must\ first\ be\ saved.=Esportazione annullata, le modifiche devono prima essere salvate. + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Esporta sketch compilato @@ -714,7 +707,7 @@ Finnish=Finlandese Fix\ Encoding\ &\ Reload=Correggi codifica e ricarica #: ../../../processing/app/BaseNoGui.java:318 -For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=Per maggiori informazioni sull'installazione di librerie vedi http\://www.arduino.cc/en/Guide/Libraries\n +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=Per maggiori informazioni sull'installazione di librerie guarda http\://www.arduino.cc/en/Guide/Libraries\n #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -837,6 +830,10 @@ Installing...=Sto installando... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Trovata libreria non valida in {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Virgolettato non valido\: carattere di chiusura [{0}] non trovato. + #: Preferences.java:102 Italian=Italiano @@ -855,6 +852,9 @@ Library\ Manager=Gestore librerie #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Libreria aggiunta alle tue librerie. Controlla il men\u00f9 "Inclusione librerie" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=La libreria non pu\u00f2 usare sia la cartella 'src' che la cartella 'utility'. + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Libreria gi\u00e0 installata\: {0} versione {1} @@ -865,12 +865,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Sto caricando la configurazione... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +Looking\ for\ recipes\ like\ {0}*{1}=Cerco ricette simili a {0}*{1} + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Poca memoria disponibile, potrebbero presentarsi problemi di stabilit\u00e0 -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malese (Malesia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Gestione librerie... @@ -883,8 +884,9 @@ Marathi=Marathi #: Base.java:2112 Message=Messaggio -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Manca il */ finale di un /* commento */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +Missing\ '{0}'\ from\ library\ in\ {1}=Manca '{0}' nella libreria {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modalit\u00e0 non supportata @@ -908,9 +910,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Pi\u00f9 di una libreria trovata pe #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Devi specificare un unico file dello sketch -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nome del nuovo file\: @@ -944,9 +943,6 @@ No=No #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Dati di autorizzazione non trovati -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nessuna scheda selezionata; seleziona una scheda dal menu "Strumenti > Tipo di Arduino" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nessun cambiamento effettuato con la formattazione automatica @@ -995,15 +991,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nessuna definizione di #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Nessuno -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norvegese - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norvegese bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norvegese nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Memoria esaurita; guarda http\://www.arduino.cc/en/Guide/Troubleshooting\#size per consigli su come ridurne l'utilizzo. @@ -1047,6 +1037,10 @@ Persian=Persiano #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persiano (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +Platform\ {0}\ (package\ {1})\ is\ unknown=La piattaforma {0} (pacchetto {1}) \u00e8 sconosciuta + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Confermi la cancellazione della scheda? @@ -1120,10 +1114,6 @@ Problem\ accessing\ files\ in\ folder\ =Problemi nell'accesso ai file nella cart #: Base.java:1673 Problem\ getting\ data\ folder=Problema con la cartella dati -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problema nello spostamento di {0} nella cartella di generazione - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema di caricamento sulla scheda. Guarda http\://www.arduino.cc/en/Guide/Troubleshooting\#upload per suggerimenti @@ -1136,9 +1126,16 @@ Processor=Processore #: Editor.java:704 Programmer=Programmatore +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +Progress\ {0}=Progressione {0} + #: Base.java:783 Editor.java:593 Quit=Esci +#: ../../../../../app/src/processing/app/Base.java:1233 +RETIRED=RITARATI + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ripeti @@ -1178,6 +1175,14 @@ Replace\ with\:=Sostituisci con\: #: Preferences.java:113 Romanian=Romeno +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +Running\ recipe\:\ {0}=In esecuzione la ricetta\: {0} + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +Running\:\ {0}=In esecuzione\: {0} + #: Preferences.java:114 Russian=Russo @@ -1255,6 +1260,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Porte seriali +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +Setting\ build\ path\ to\ {0}=Imposto il percorso di compilazione a {0} + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Impostazioni @@ -1335,9 +1344,6 @@ Starting...=Sto avviando... #: Base.java:540 Sunshine=Sole splendente -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Svedese @@ -1402,9 +1408,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=La cartella degli sketch indicata contiene la tua copia dell'IDE.\nScegli un'altra cartella per i tuoi sketch. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Nel file "platform.txt" di terze parti non \u00e8 definito "compiler.path" Si prega di segnalare questo problema allo svilupatore - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Questo file \u00e8 gi\u00e0 stato copiato nella posizione\ndove stai cercando di aggiungerlo.\nNon far\u00f2 un bel nulla @@ -1456,6 +1459,10 @@ Unable\ to\ connect\:\ retrying=Impossibile connettersi\: riprovo... #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Impossibile connettersi\: password errata? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +Unable\ to\ find\ {0}\ in\ {1}=Impossibile trovare {0} in {1} + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Impossibile aprire il monitor seriale @@ -1466,13 +1473,17 @@ Unable\ to\ open\ serial\ plotter=Impossibile aprire il plotter seriale #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Impossibile connettersi ad Arduino.cc a causa di problemi di rete -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Eccezione non intercettata di tipo\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Annulla +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +Unhandled\ type\ {0}\ in\ context\ key\ {1}=Il tipo {0} associato alla chiave di contesto {1} non \u00e8 gestito + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +Unknown\ sketch\ file\ extension\:\ {0}=Estensione sconosciuta per il file dello sketch\: {0} + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Piattaforma non specificata, nessun esecutore disponibile.\nPer abilitare l'apertura di URL o di cartelle aggiungete una riga\n"launcher\=/path/to/app" a "preferences.txt" @@ -1507,9 +1518,6 @@ Uploading\ to\ I/O\ Board...=Sto caricando sulla scheda di I/O... #: Sketch.java:1622 Uploading...=Sto caricando... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Trova testo selezionato @@ -1518,7 +1526,7 @@ Use\ external\ editor=Usa un editor esterno #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -Username\:=Username\: +Username\:=Nome utente\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -1567,6 +1575,14 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visita Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=ATTENZIONE\: La categoria '{0}' della libreria {1} non \u00e8 valida. La imposto a '{2}' + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=ATTENZIONE\: Cartella spuria {0} nella libreria '{1}' + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=ATTENZIONE\: la libreria {0} dichiara di funzionare sulle architetture {1} e potrebbe non essere compatibile con la tua scheda che utilizza l'architettura {2} @@ -1582,20 +1598,23 @@ Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ conside Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Attenzione\: il file {0} punta al percorso assoluto {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -Warning\:\ forced\ trusting\ untrusted\ contributions=Attenzione\: hai forzato la fiducia per i contributi non attendibili +Warning\:\ forced\ trusting\ untrusted\ contributions=Attenzione\: forzata l'attendibilit\u00e0 di contributi non attendibili #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Attenzione\: hai forzato l'esecuzione di uno script non attendibile ({0}) +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Attenzione\: forzata l'esecuzione di uno script non attendibile ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Attenzione\: contributo non fidato, salto l'esecuzione dello script ({0}) +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Attenzione\: contributo non attendibile, salto l'esecuzione dello script ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Attenzione\: platform.txt del core '{0}' contiene la stringa deprecata {1} convertita automaticamente in {2}. Verifica la disponibilit\u00e0 di un aggiornamento di questo core. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Attenzione\: in platform.txt del core '{0}' manca la propriet\u00e0 '{1}', uso il valore di default '{2}'. Verifica la disponibilit\u00e0 di un aggiornamento per questo core. + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Attenzione\: in platform.txt del core '{0}' manca la propriet\u00e0 {1}, automaticamente impostata a {2}. Verifica la disponibilit\u00e0 di un aggiornamento di questo core. @@ -1712,7 +1731,7 @@ http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #: Preferences.java:625 #, java-format -ignoring\ invalid\ font\ size\ {0}=Ignoro grandezza del font non valida {0} +ignoring\ invalid\ font\ size\ {0}=Ignoro la dimensione del font non valida {0} #: Editor.java:936 Editor.java:943 name\ is\ null=name \u00e8 nullo @@ -1756,6 +1775,14 @@ version\ {0}=versione {0} #, java-format {0}\ libraries={0} librerie +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +{0}\ must\ be\ a\ folder={0} deve essere una cartella + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +{0}\ pattern\ is\ missing=Manca il pattern {0} + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} ha restituito {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_iw.po b/arduino-core/src/processing/app/i18n/Resources_iw.po index 94858c34501..a44e421785a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_iw.po +++ b/arduino-core/src/processing/app/i18n/Resources_iw.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Amit BC , 2014 # eli.ganem , 2012 # Eyal Halfon , 2013 @@ -18,7 +19,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Hebrew (http://www.transifex.com/mbanzi/arduino-ide-15/language/he/)\n" "MIME-Version: 1.0\n" @@ -49,10 +50,20 @@ msgstr "'מקלדת' נתמכת ב Arduino Leonardo בלבד." msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'עכבר' נתמך ב Arduino Leonardo בלבד." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(ערוך רק כשארדואינו אינו במצב ריצה)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir לא נתמך יותר" @@ -314,10 +325,6 @@ msgstr "שגיאה חמורה בשורה: {0}" msgid "Bad file selected" msgstr "נבחר קובץ לא תקין" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "באסקית" @@ -326,15 +333,16 @@ msgstr "באסקית" msgid "Belarusian" msgstr "בלארוסית" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "לוח" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -375,14 +383,14 @@ msgstr "תחילת שורה ומעבר לשורה חדשה" msgid "Browse" msgstr "חפש" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "ספריה ה-build נמחקה או שלא ניתן לכתוב לתוכה" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "אפשרויות בנייה השתנו, בונה מחדש" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "בולגרית" @@ -446,10 +454,6 @@ msgstr "בדוק עדכונים בהפעלה" msgid "Chinese (China)" msgstr "סינית (סין(מנדרינית))" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "סינית (הונג קונג(יְוֵה))" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "סינית (טאיוואן (מִין))" @@ -458,14 +462,6 @@ msgstr "סינית (טאיוואן (מִין))" msgid "Chinese (Taiwan) (Big5)" msgstr "סין (טיוואן) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "סינית פשוטה" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "סינית מסורתית" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -585,10 +581,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "ארעה שגיאה בקריאת הגדרות ברירת המחדל.\nאנא התקן מחדש את הארדואינו." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "לא מסוגל לקרוא אפשרויות בנייה קודמות, בונה הכול" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -616,10 +608,6 @@ msgstr "אין אפשרות לשנות את שם הסקיצה. (2)" msgid "Could not replace {0}" msgstr "לא ניתן להחליף את {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "לא מסוגל לכתוב לקובץ העדפות בנייה" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "לא ניתן להכניס את הסקיצה לארכיון" @@ -647,18 +635,10 @@ msgstr "קרואטיה" msgid "Cut" msgstr "גזור" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "קזחסטן" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "דנית" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -930,6 +910,18 @@ msgstr "אסטונית (אסטוניה)" msgid "Examples" msgstr "דוגמאות" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1158,6 +1150,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "ספרייה לא קבילה נמצאה ב{0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "איטלקית" @@ -1182,6 +1179,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1195,12 +1196,13 @@ msgstr "ליטאית" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1219,9 +1221,10 @@ msgstr "מארית" msgid "Message" msgstr "הודעה" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "חסר סימן /* מסוף /* הערה*/" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1252,10 +1255,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "עליך לציין קובץ סקיצה אחד בלבד" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "שם קובץ חדש:" @@ -1300,10 +1299,6 @@ msgstr "לא" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "לא נבחר לוח; בבקשה בחר לוח מתפריט כלים > לוחות." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "אין שינויים שמצריכים עיצוב אוטומטי." @@ -1367,18 +1362,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "נרווגית" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1438,6 +1425,11 @@ msgstr "פרסית" msgid "Persian (Iran)" msgstr "פרסית (איראן)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1535,11 +1527,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "שגיאה בקריאת ספריית המידע" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "בעיה בהזזת {0} לספריית ה-build" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1558,10 +1545,19 @@ msgstr "מעבד" msgid "Programmer" msgstr "מתכנת" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "יציאה" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "חזור על פעולה שבוטלה" @@ -1613,6 +1609,16 @@ msgstr "החלף עם:" msgid "Romanian" msgstr "רומנית" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "רוסית" @@ -1718,6 +1724,11 @@ msgstr "פורט סיריאלי {0} לא נמצא.\nלנסות להעלות עם msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1833,10 +1844,6 @@ msgstr "מתחיל..." msgid "Sunshine" msgstr "אור שמש" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "שבדית" @@ -1953,12 +1960,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2031,6 +2032,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2044,15 +2050,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "שגיאה לא ידועה: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "בטל פעולה אחרונה" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2101,10 +2112,6 @@ msgstr "מעלה ללוח I/O" msgid "Uploading..." msgstr "מעלה..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "השתמש בבחירה לצורכי חיפוש" @@ -2179,6 +2186,16 @@ msgstr "וויאטנאמית" msgid "Visit Arduino.cc" msgstr "בקר ב Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2222,6 +2239,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2476,6 +2499,16 @@ msgstr "{0} קבצים התווספו לסקיצה." msgid "{0} libraries" msgstr "{0} ספריות" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po index 8aab88be3e8..17dd8473468 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.po +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Masanori Ohgita , 2013,2015 # Shigeru Kanemoto , 2015 # Shinichi Ohki , 2015 @@ -14,7 +15,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Japanese (Japan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\n" "MIME-Version: 1.0\n" @@ -45,10 +46,20 @@ msgstr "「Keyboard」はArduino Leonardoだけで使えます。" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "「Mouse」はArduino Leonardoだけで使えます。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "編集する際には、Arduino IDEを終了させておいてください。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -310,10 +321,6 @@ msgstr "エラーの行番号「{0}」は範囲外です。" msgid "Bad file selected" msgstr "間違ったファイルを開きました。" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "バスク語" @@ -322,15 +329,16 @@ msgstr "バスク語" msgid "Belarusian" msgstr "ベラルーシ語" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "ベンガル語(インド)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "マイコンボード" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "CRおよびLF" msgid "Browse" msgstr "参照" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "ビルド用のフォルダが消えてしまったか、書き込みができません。" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "ビルドオプションが変更されました。全体をリビルドしています。" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "ブルガリア語" @@ -442,10 +450,6 @@ msgstr "起動時に最新バージョンの有無をチェックする" msgid "Chinese (China)" msgstr "中国語(中国)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "中国語(香港)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "中国語(台湾)" @@ -454,14 +458,6 @@ msgstr "中国語(台湾)" msgid "Chinese (Taiwan) (Big5)" msgstr "中国語(台湾)(Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "中国語(簡体字)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "中国語(繁体字)" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "既定の設定を読み込むことができませんでした。\nArduino IDEをもう一度インストールしてください。" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "前回のビルド設定ファイルを読み込めません。全体をリビルドします" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "スケッチの名前を変更できませんでした。(2)" msgid "Could not replace {0}" msgstr "「{0}」を置き換える事ができませんでした。" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "ビルド設定ファイルに書き込めませんでした" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "スケッチをアーカイブできませんでした。" @@ -643,18 +631,10 @@ msgstr "クロアチア語" msgid "Cut" msgstr "切り取り" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "チェコ語" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "チェコ語(チェコ共和国)" -#: Preferences.java:90 -msgid "Danish" -msgstr "デンマーク語" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "デンマーク語(デンマーク)" @@ -926,6 +906,18 @@ msgstr "エストニア語(エストニア)" msgid "Examples" msgstr "スケッチの例" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "コンパイルしたバイナリを出力" @@ -1154,6 +1146,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "「{0}」に、無効なライブラリ「{1}」があります。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "イタリア語" @@ -1178,6 +1175,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,14 +1192,15 @@ msgstr "リトアニア語" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "スケッチが使用できるメモリが少なくなっています。動作が不安定になる可能性があります。" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "マレー語(マレーシア)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1215,9 +1217,10 @@ msgstr "マラーティ語" msgid "Message" msgstr "メッセージ" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "「/* ... */」形式のコメントのうち、終わりの「*/」が有りません。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1248,10 +1251,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "ンコ語" - #: Sketch.java:282 msgid "Name for new file:" msgstr "新規ファイルの名前:" @@ -1296,10 +1295,6 @@ msgstr "いいえ" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "マイコンボードが選ばれていません。「ツール」メニューの「マイコンボード」の選択肢から、マイコンボードを選んでください。" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "整形の必要はありませんでした。" @@ -1363,18 +1358,10 @@ msgstr "フォルダ「{0}」に、有効なハードウェア定義が有りま msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "ノルウェー語" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "ノルウェー語(ブークモール)" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "ノルウェー語(ニーノシュク)" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "ペルシャ語" msgid "Persian (Iran)" msgstr "ペルシャ語(イラン)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1523,6 @@ msgstr "フォルダ内のファイルにアクセスできません。" msgid "Problem getting data folder" msgstr "データフォルダを読み込めません。" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "「{0}」をビルドフォルダに移動できませんでした。" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "プロセッサ" msgid "Programmer" msgstr "書込装置" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "終了" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "やり直し" @@ -1609,6 +1605,16 @@ msgstr "置換テキスト:" msgid "Romanian" msgstr "ルーマニア語" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "ロシア語" @@ -1714,6 +1720,11 @@ msgstr "シリアルポート「{0}」が存在しません。\nシリアルポ msgid "Serial ports" msgstr "シリアルポート" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1840,6 @@ msgstr "" msgid "Sunshine" msgstr "終わりにしましょう" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "スワヒリ語" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "スウェーデン語" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "接続できません:再試行中" msgid "Unable to connect: wrong password?" msgstr "接続できません:パスワードが間違っていませんか?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "シリアルモニタを開けません。" @@ -2040,15 +2046,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "想定外の例外「{0}」が発生しました。" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "元に戻す" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2097,10 +2108,6 @@ msgstr "マイコンボードに書き込んでいます..." msgid "Uploading..." msgstr "マイコンボードに書き込んでいます..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "ウルドゥー語(パキスタン)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "選択されている文字列を検索" @@ -2175,6 +2182,16 @@ msgstr "ベトナム語" msgid "Visit Arduino.cc" msgstr "Arduino.ccウェブサイトを開く" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "スケッチにファイルを{0}個追加しました。" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties index ab9a8a6650e..20d59900228 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ja_JP.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # Masanori Ohgita , 2013,2015 # Shigeru Kanemoto , 2015 # Shinichi Ohki , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981 @@ -28,9 +29,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u300cMouse\u300d\u306fArduino Leonardo\u3060\u3051\u3067\u4f7f\u3048\u307e\u3059\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\u7de8\u96c6\u3059\u308b\u969b\u306b\u306f\u3001Arduino IDE\u3092\u7d42\u4e86\u3055\u305b\u3066\u304a\u3044\u3066\u304f\u3060\u3055\u3044\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -214,22 +221,20 @@ Bad\ error\ line\:\ {0}=\u30a8\u30e9\u30fc\u306e\u884c\u756a\u53f7\u300c{0}\u300 #: Editor.java:2136 Bad\ file\ selected=\u9593\u9055\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304d\u307e\u3057\u305f\u3002 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u30d0\u30b9\u30af\u8a9e #: ../../../processing/app/Preferences.java:139 Belarusian=\u30d9\u30e9\u30eb\u30fc\u30b7\u8a9e -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=\u30d9\u30f3\u30ac\u30eb\u8a9e\uff08\u30a4\u30f3\u30c9\uff09 - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -259,12 +264,12 @@ Both\ NL\ &\ CR=CR\u304a\u3088\u3073LF #: Preferences.java:81 Browse=\u53c2\u7167 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u30d3\u30eb\u30c9\u7528\u306e\u30d5\u30a9\u30eb\u30c0\u304c\u6d88\u3048\u3066\u3057\u307e\u3063\u305f\u304b\u3001\u66f8\u304d\u8fbc\u307f\u304c\u3067\u304d\u307e\u305b\u3093\u3002 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u30d3\u30eb\u30c9\u30aa\u30d7\u30b7\u30e7\u30f3\u304c\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002\u5168\u4f53\u3092\u30ea\u30d3\u30eb\u30c9\u3057\u3066\u3044\u307e\u3059\u3002 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u30d6\u30eb\u30ac\u30ea\u30a2\u8a9e @@ -313,21 +318,12 @@ Check\ for\ updates\ on\ startup=\u8d77\u52d5\u6642\u306b\u6700\u65b0\u30d0\u30f #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u4e2d\u56fd\u8a9e\uff08\u4e2d\u56fd\uff09 -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u4e2d\u56fd\u8a9e\uff08\u9999\u6e2f\uff09 - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u4e2d\u56fd\u8a9e\uff08\u53f0\u6e7e\uff09 #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u4e2d\u56fd\u8a9e\uff08\u53f0\u6e7e\uff09\uff08Big5\uff09 -#: Preferences.java:88 -Chinese\ Simplified=\u4e2d\u56fd\u8a9e\uff08\u7c21\u4f53\u5b57\uff09 - -#: Preferences.java:89 -Chinese\ Traditional=\u4e2d\u56fd\u8a9e\uff08\u7e41\u4f53\u5b57\uff09 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -412,9 +408,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e2\u5b9a\u306e\u8a2d\u5b9a\u3092\u8aad\u307f\u8fbc\u3080\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002\nArduino IDE\u3092\u3082\u3046\u4e00\u5ea6\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002 -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u524d\u56de\u306e\u30d3\u30eb\u30c9\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002\u5168\u4f53\u3092\u30ea\u30d3\u30eb\u30c9\u3057\u307e\u3059 - #: Base.java:2482 #, 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 @@ -436,9 +429,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d #, java-format Could\ not\ replace\ {0}=\u300c{0}\u300d\u3092\u7f6e\u304d\u63db\u3048\u308b\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002 -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u30d3\u30eb\u30c9\u8a2d\u5b9a\u30d5\u30a1\u30a4\u30eb\u306b\u66f8\u304d\u8fbc\u3081\u307e\u305b\u3093\u3067\u3057\u305f - #: 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 @@ -457,15 +447,9 @@ Croatian=\u30af\u30ed\u30a2\u30c1\u30a2\u8a9e #: Editor.java:1149 Editor.java:2699 Cut=\u5207\u308a\u53d6\u308a -#: ../../../processing/app/Preferences.java:83 -Czech=\u30c1\u30a7\u30b3\u8a9e - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u30c1\u30a7\u30b3\u8a9e\uff08\u30c1\u30a7\u30b3\u5171\u548c\u56fd\uff09 -#: Preferences.java:90 -Danish=\u30c7\u30f3\u30de\u30fc\u30af\u8a9e - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=\u30c7\u30f3\u30de\u30fc\u30af\u8a9e\uff08\u30c7\u30f3\u30de\u30fc\u30af\uff09 @@ -669,6 +653,15 @@ Estonian\ (Estonia)=\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e\uff08\u30a8\u30b9\u30c8 #: Editor.java:516 Examples=\u30b9\u30b1\u30c3\u30c1\u306e\u4f8b +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u305f\u30d0\u30a4\u30ca\u30ea\u3092\u51fa\u529b @@ -834,6 +827,10 @@ Installation\ completed\!=\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u5b8c\u4e86\uff01 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u300c{0}\u300d\u306b\u3001\u7121\u52b9\u306a\u30e9\u30a4\u30d6\u30e9\u30ea\u300c{1}\u300d\u304c\u3042\u308a\u307e\u3059\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u30a4\u30bf\u30ea\u30a2\u8a9e @@ -852,6 +849,9 @@ Latvian=\u30e9\u30c8\u30d3\u30a2\u8a9e #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -862,12 +862,13 @@ Lithuaninan=\u30ea\u30c8\u30a2\u30cb\u30a2\u8a9e #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=\u30b9\u30b1\u30c3\u30c1\u304c\u4f7f\u7528\u3067\u304d\u308b\u30e1\u30e2\u30ea\u304c\u5c11\u306a\u304f\u306a\u3063\u3066\u3044\u307e\u3059\u3002\u52d5\u4f5c\u304c\u4e0d\u5b89\u5b9a\u306b\u306a\u308b\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002 -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=\u30de\u30ec\u30fc\u8a9e\uff08\u30de\u30ec\u30fc\u30b7\u30a2\uff09 - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -880,8 +881,9 @@ Marathi=\u30de\u30e9\u30fc\u30c6\u30a3\u8a9e #: Base.java:2112 Message=\u30e1\u30c3\u30bb\u30fc\u30b8 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u300c/* ... */\u300d\u5f62\u5f0f\u306e\u30b3\u30e1\u30f3\u30c8\u306e\u3046\u3061\u3001\u7d42\u308f\u308a\u306e\u300c*/\u300d\u304c\u6709\u308a\u307e\u305b\u3093\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\u6307\u793a\u3055\u308c\u305f\u52d5\u4f5c\u30e2\u30fc\u30c9\u306f\u5b58\u5728\u3057\u307e\u305b\u3093\u3002 @@ -905,9 +907,6 @@ Multiple\ files\ not\ supported=\u8907\u6570\u306e\u30d5\u30a1\u30a4\u30eb\u3092 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -N'Ko=\u30f3\u30b3\u8a9e - #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u898f\u30d5\u30a1\u30a4\u30eb\u306e\u540d\u524d\uff1a @@ -941,9 +940,6 @@ No=\u3044\u3044\u3048 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u304c\u9078\u3070\u308c\u3066\u3044\u307e\u305b\u3093\u3002\u300c\u30c4\u30fc\u30eb\u300d\u30e1\u30cb\u30e5\u30fc\u306e\u300c\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u300d\u306e\u9078\u629e\u80a2\u304b\u3089\u3001\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3092\u9078\u3093\u3067\u304f\u3060\u3055\u3044\u3002 - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u6574\u5f62\u306e\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002 @@ -992,15 +988,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u30d5\u30a9\u30eb\u30 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e\uff08\u30d6\u30fc\u30af\u30e2\u30fc\u30eb\uff09 -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=\u30ce\u30eb\u30a6\u30a7\u30fc\u8a9e\uff08\u30cb\u30fc\u30ce\u30b7\u30e5\u30af\uff09 - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u30b9\u30b1\u30c3\u30c1\u304c\u4f7f\u7528\u3059\u308b\u30e1\u30e2\u30ea\u304c\u8db3\u308a\u307e\u305b\u3093\u3002\u30e1\u30e2\u30ea\u3092\u7bc0\u7d04\u3059\u308b\u65b9\u6cd5\u306b\u3064\u3044\u3066\u306f\u3001\u4ee5\u4e0b\u306eURL\u306e\u30da\u30fc\u30b8\u3092\u53c2\u7167\u3057\u3066\u304f\u3060\u3055\u3044\u3002http\://www.arduino.cc/en/Guide/Troubleshooting\#size @@ -1044,6 +1034,10 @@ Persian=\u30da\u30eb\u30b7\u30e3\u8a9e #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u30da\u30eb\u30b7\u30e3\u8a9e\uff08\u30a4\u30e9\u30f3\uff09 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1117,10 +1111,6 @@ Problem\ accessing\ files\ in\ folder\ =\u30d5\u30a9\u30eb\u30c0\u5185\u306e\u30 #: Base.java:1673 Problem\ getting\ data\ folder=\u30c7\u30fc\u30bf\u30d5\u30a9\u30eb\u30c0\u3092\u8aad\u307f\u8fbc\u3081\u307e\u305b\u3093\u3002 -#: Sketch.java:1467 -#, 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 - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3082\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\n\u3053\u306e\u30da\u30fc\u30b8\u3092\u53c2\u8003\u306b\u3057\u3066\u304f\u3060\u3055\u3044\u3002\nhttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload @@ -1133,9 +1123,16 @@ Processor=\u30d7\u30ed\u30bb\u30c3\u30b5 #: Editor.java:704 Programmer=\u66f8\u8fbc\u88c5\u7f6e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u7d42\u4e86 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u3084\u308a\u76f4\u3057 @@ -1175,6 +1172,14 @@ Replace\ with\:=\u7f6e\u63db\u30c6\u30ad\u30b9\u30c8\uff1a #: Preferences.java:113 Romanian=\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u30ed\u30b7\u30a2\u8a9e @@ -1252,6 +1257,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1332,9 +1341,6 @@ Spanish=\u30b9\u30da\u30a4\u30f3\u8a9e #: Base.java:540 Sunshine=\u7d42\u308f\u308a\u306b\u3057\u307e\u3057\u3087\u3046 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=\u30b9\u30ef\u30d2\u30ea\u8a9e - #: ../../../processing/app/Preferences.java:153 Swedish=\u30b9\u30a6\u30a7\u30fc\u30c7\u30f3\u8a9e @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3059\u3067\u306b\u30b3\u30d4\u30fc\u3055\u308c\u3066\u30b9\u30b1\u30c3\u30c1\u306e\u4e2d\u306b\u3042\u308a\u307e\u3059\u3002\u307e\u3060\u3001\u4f55\u3082\u3057\u3066\u307e\u305b\u3093\u3088\uff01 @@ -1453,6 +1456,10 @@ Unable\ to\ connect\:\ retrying=\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\uff1a #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u63a5\u7d9a\u3067\u304d\u307e\u305b\u3093\uff1a\u30d1\u30b9\u30ef\u30fc\u30c9\u304c\u9593\u9055\u3063\u3066\u3044\u307e\u305b\u3093\u304b\uff1f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf\u3092\u958b\u3051\u307e\u305b\u3093\u3002 @@ -1463,13 +1470,17 @@ Unable\ to\ open\ serial\ monitor=\u30b7\u30ea\u30a2\u30eb\u30e2\u30cb\u30bf\u30 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u60f3\u5b9a\u5916\u306e\u4f8b\u5916\u300c{0}\u300d\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002 - #: Editor.java:1133 Editor.java:1355 Undo=\u5143\u306b\u623b\u3059 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\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 @@ -1504,9 +1515,6 @@ Uploading\ to\ I/O\ Board...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u6 #: Sketch.java:1622 Uploading...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=\u30a6\u30eb\u30c9\u30a5\u30fc\u8a9e\uff08\u30d1\u30ad\u30b9\u30bf\u30f3\uff09 - #: Editor.java:1269 Use\ Selection\ For\ Find=\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u6587\u5b57\u5217\u3092\u691c\u7d22 @@ -1564,6 +1572,14 @@ Vietnamese=\u30d9\u30c8\u30ca\u30e0\u8a9e #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u958b\u304f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1593,6 +1609,9 @@ Warning=\u8b66\u544a #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1753,6 +1772,14 @@ upload=\u66f8\u304d\u8fbc\u307f #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0}\u304c{1}\u3092\u8fd4\u3057\u307e\u3057\u305f\u3002 diff --git a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po index 3fa0eee83ff..16a7a43d064 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.po +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Giorgi Maghlakelidze , 2013 # Giorgi Maghlakelidze , 2012 # Giorgi Maghlakelidze , 2012-2013 @@ -17,7 +18,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Georgian (Georgia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\n" "MIME-Version: 1.0\n" @@ -48,10 +49,20 @@ msgstr "'Keyboard'-ის მხარდაჭერა აქვს მხო msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse'-ის მხარდაჭერა აქვს მხოლოდ დაფას Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(ჩაასწორეთ მხოლოდ როცა Arduino გათიშულია)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -313,10 +324,6 @@ msgstr "ცუდი შეცდომის ხაზი:{0}" msgid "Bad file selected" msgstr "არჩეულია არასწორი ფაილი" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "ბასკური" @@ -325,15 +332,16 @@ msgstr "ბასკური" msgid "Belarusian" msgstr "ბელარუსული" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "დაფა" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -374,14 +382,14 @@ msgstr "ორივე NL და CR" msgid "Browse" msgstr "ნახვა" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "ასაწყობი საქაღალდე არ მოიძებნა, ან შეუძლებელია მასში ჩაწერა" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "აწყობის მომართვა შეიცვალა; იწყობა ხელახლა" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "ბულგარული" @@ -445,10 +453,6 @@ msgstr "გაშვებისას განახლებებზე შ msgid "Chinese (China)" msgstr "ჩინური (ჩინეთი)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "ჩინური (ჰონგ კონგი)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "ჩინური (ტაივანი)" @@ -457,14 +461,6 @@ msgstr "ჩინური (ტაივანი)" msgid "Chinese (Taiwan) (Big5)" msgstr "ჩინური (ტაივანი) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "გამარტივებული ჩინური" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "ტრადიციული ჩინური" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -584,10 +580,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "შეუძლებელია ნაგულისხმები მომართვის წაკითხვა.\nგთხოვთ გადააყენოთ Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "აწყობის წინა მომართვის ფაილის წაკითხვა ვერ მოხერხდა; იწყობა ხელახლა" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +607,6 @@ msgstr "ჩანახატის გადარქმევა შეუძ msgid "Could not replace {0}" msgstr "შეუძლებელია ჩანაცვლდეს {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "აწყობის ფაილის ჩაწერა ვერ მოხერხდა" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "ვერ მოხერხდა ჩანახატის არქივში გადატანა" @@ -646,18 +634,10 @@ msgstr "ხორვატული" msgid "Cut" msgstr "ამოჭრა" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "ჩეხური" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "დანიური" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -929,6 +909,18 @@ msgstr "ესტონური (ესტონეთი)" msgid "Examples" msgstr "მაგალითები" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1157,6 +1149,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "{0}-ში ნაპოვნია უმართებულო ბიბლიოთეკა: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "იტალიური" @@ -1181,6 +1178,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1194,12 +1195,13 @@ msgstr "ლიტვური" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1218,9 +1220,10 @@ msgstr "მარათჰი" msgid "Message" msgstr "შეტყობინება" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "არ მოიძებნება */ დაბოლოება კომენტარის ბლოკიდან /* კომენტარი */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1251,10 +1254,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "უნდა მიუთითოთ ჩანახატის მხოლოდ ერთი ფაილი" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "ახალი ფაილის სახელი:" @@ -1299,10 +1298,6 @@ msgstr "არა" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "დაფა არჩეული არ არის; გთხოვთ აირჩიოთ მენიუდან 'ხელსაწყოები' -> 'დაფა'" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "ავტო-ფორმატირებისთვის ცვლილებები საჭირო არ არის." @@ -1366,18 +1361,10 @@ msgstr "საქაღალდეში {0} არ მოიძებნა msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "ნორვეგიული ბუკმოლი" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1437,6 +1424,11 @@ msgstr "სპარსული" msgid "Persian (Iran)" msgstr "სპარსული (ირანი)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1534,11 +1526,6 @@ msgstr "შეფერხდა საქაღალდის ფაილე msgid "Problem getting data folder" msgstr "შეცდომა მონაცემთა საქაღალდის წაკითხვისას" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "შეცდომა {0}-ის ასაწყობ საქაღალდეში გადატანისას" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1544,19 @@ msgstr "პროცესორი" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "გასვლა" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "გამეორება" @@ -1612,6 +1608,16 @@ msgstr "ჩანაცვლება:" msgid "Romanian" msgstr "რუმინული" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "რუსული" @@ -1717,6 +1723,11 @@ msgstr "მიმდეცრობითი პორტი {0} ვერ მ msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1832,10 +1843,6 @@ msgstr "" msgid "Sunshine" msgstr "მზიანი ამინდია" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "შვედური" @@ -1952,12 +1959,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2030,6 +2031,11 @@ msgstr "დაკავშირება ვერ მოხერხდა: msgid "Unable to connect: wrong password?" msgstr "დაკავშირება ვერ მოხერხდა: არასწორი პაროლია?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "ვერ მოხერხდა სერიული მეთვალყურის გახსნა" @@ -2043,15 +2049,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "მოულოდნელი შეცდომა, სახეობა: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "დაბრუნება" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2100,10 +2111,6 @@ msgstr "ატვირთვა I/O დაფაში..." msgid "Uploading..." msgstr "ატვირთვა..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "ძიება მონიშნულში" @@ -2178,6 +2185,16 @@ msgstr "ვიეტნამური" msgid "Visit Arduino.cc" msgstr "ეწვიეთ საიტს Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2221,6 +2238,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2475,6 +2498,16 @@ msgstr "ჩანახატს დაემატა {0} ფაილი." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties index 260d2463e0c..f4549610c46 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ka_GE.properties @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Giorgi Maghlakelidze , 2013 # Giorgi Maghlakelidze , 2012 # Giorgi Maghlakelidze , 2012-2013 # George Machitidze , 2013 # Giorgi Maghlakelidze , 2013-2014 # Zurab Japaridze , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ka_GE\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ka_GE\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(\u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d2\u10d0\u10e0\u10d4\u10db\u10dd\u10e1 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 \u10d2\u10d0\u10e8\u10d5\u10d4\u10d1\u10d0\u10e1) @@ -31,9 +32,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'-\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0 \u10d0\u10e5\u10d5\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d3\u10d0\u10e4\u10d0\u10e1 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u10e9\u10d0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d4\u10d7 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10e0\u10dd\u10ea\u10d0 Arduino \u10d2\u10d0\u10d7\u10d8\u10e8\u10e3\u10da\u10d8\u10d0) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -217,22 +224,20 @@ Bad\ error\ line\:\ {0}=\u10ea\u10e3\u10d3\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\ #: Editor.java:2136 Bad\ file\ selected=\u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8\u10d0 \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u10d1\u10d0\u10e1\u10d9\u10e3\u10e0\u10d8 #: ../../../processing/app/Preferences.java:139 Belarusian=\u10d1\u10d4\u10da\u10d0\u10e0\u10e3\u10e1\u10e3\u10da\u10d8 -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u10d3\u10d0\u10e4\u10d0 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u10d3\u10d0\u10e4\u10d0 {0}\:{1}\:{2} \u10d0\u10e0 \u10d2\u10d0\u10dc\u10e1\u10d0\u10d6\u10e6\u10d5\u10e0\u10d0\u10d5\u10e1 ''build.board'' \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10e1. \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\u10d0\u10d3 \u10d3\u10d0\u10e7\u10d4\u10dc\u10d3\u10d4\u10d1\u10d0\: {3} @@ -262,12 +267,12 @@ Both\ NL\ &\ CR=\u10dd\u10e0\u10d8\u10d5\u10d4 NL \u10d3\u10d0 CR #: Preferences.java:81 Browse=\u10dc\u10d0\u10ee\u10d5\u10d0 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u10d0\u10e1\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4 \u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0, \u10d0\u10dc \u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10db\u10d0\u10e1\u10e8\u10d8 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8\u10e1 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d0 \u10e8\u10d4\u10d8\u10ea\u10d5\u10d0\u10da\u10d0; \u10d8\u10ec\u10e7\u10dd\u10d1\u10d0 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u10d1\u10e3\u10da\u10d2\u10d0\u10e0\u10e3\u10da\u10d8 @@ -316,21 +321,12 @@ Check\ for\ updates\ on\ startup=\u10d2\u10d0\u10e8\u10d5\u10d4\u10d1\u10d8\u10e #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u10e9\u10d8\u10dc\u10e3\u10e0\u10d8 (\u10e9\u10d8\u10dc\u10d4\u10d7\u10d8) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u10e9\u10d8\u10dc\u10e3\u10e0\u10d8 (\u10f0\u10dd\u10dc\u10d2 \u10d9\u10dd\u10dc\u10d2\u10d8) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u10e9\u10d8\u10dc\u10e3\u10e0\u10d8 (\u10e2\u10d0\u10d8\u10d5\u10d0\u10dc\u10d8) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u10e9\u10d8\u10dc\u10e3\u10e0\u10d8 (\u10e2\u10d0\u10d8\u10d5\u10d0\u10dc\u10d8) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u10d2\u10d0\u10db\u10d0\u10e0\u10e2\u10d8\u10d5\u10d4\u10d1\u10e3\u10da\u10d8 \u10e9\u10d8\u10dc\u10e3\u10e0\u10d8 - -#: Preferences.java:89 -Chinese\ Traditional=\u10e2\u10e0\u10d0\u10d3\u10d8\u10ea\u10d8\u10e3\u10da\u10d8 \u10e9\u10d8\u10dc\u10e3\u10e0\u10d8 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -415,9 +411,6 @@ Could\ not\ re-save\ sketch=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\u10d8 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10ec\u10d0\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0.\n\u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d2\u10d0\u10d3\u10d0\u10d0\u10e7\u10d4\u10dc\u10dd\u10d7 Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8\u10e1 \u10ec\u10d8\u10dc\u10d0 \u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10ec\u10d0\u10d9\u10d8\u10d7\u10ee\u10d5\u10d0 \u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0; \u10d8\u10ec\u10e7\u10dd\u10d1\u10d0 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10ec\u10d0\u10d8\u10e8\u10d0\u10da\u10dd\u10e1 \u10eb\u10d5\u10d4\u10da\u10d8 \u10d5\u10d4\u10e0\u10e1\u10d8\u10d0 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 {0} @@ -439,9 +432,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2 #, java-format Could\ not\ replace\ {0}=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ea\u10d5\u10da\u10d3\u10d4\u10e1 {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u10d0\u10ec\u10e7\u10dd\u10d1\u10d8\u10e1 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e9\u10d0\u10ec\u10d4\u10e0\u10d0 \u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d0\u10e0\u10e5\u10d8\u10d5\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0 @@ -460,15 +450,9 @@ Croatian=\u10ee\u10dd\u10e0\u10d5\u10d0\u10e2\u10e3\u10da\u10d8 #: Editor.java:1149 Editor.java:2699 Cut=\u10d0\u10db\u10dd\u10ed\u10e0\u10d0 -#: ../../../processing/app/Preferences.java:83 -Czech=\u10e9\u10d4\u10ee\u10e3\u10e0\u10d8 - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u10d3\u10d0\u10dc\u10d8\u10e3\u10e0\u10d8 - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -672,6 +656,15 @@ Estonian\ (Estonia)=\u10d4\u10e1\u10e2\u10dd\u10dc\u10e3\u10e0\u10d8 (\u10d4\u10 #: Editor.java:516 Examples=\u10db\u10d0\u10d2\u10d0\u10da\u10d8\u10d7\u10d4\u10d1\u10d8 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -837,6 +830,10 @@ Indonesian=\u10d8\u10dc\u10d3\u10dd\u10dc\u10d4\u10d6\u10d8\u10e3\u10e0\u10d8 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}={0}-\u10e8\u10d8 \u10dc\u10d0\u10de\u10dd\u10d5\u10dc\u10d8\u10d0 \u10e3\u10db\u10d0\u10e0\u10d7\u10d4\u10d1\u10e3\u10da\u10dd \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u10d8\u10e2\u10d0\u10da\u10d8\u10e3\u10e0\u10d8 @@ -855,6 +852,9 @@ Latvian=\u10da\u10d0\u10e2\u10d5\u10d8\u10e3\u10e0\u10d8 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -865,12 +865,13 @@ Lithuaninan=\u10da\u10d8\u10e2\u10d5\u10e3\u10e0\u10d8 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -883,8 +884,9 @@ Marathi=\u10db\u10d0\u10e0\u10d0\u10d7\u10f0\u10d8 #: Base.java:2112 Message=\u10e8\u10d4\u10e2\u10e7\u10dd\u10d1\u10d8\u10dc\u10d4\u10d1\u10d0 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u10d0\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d4\u10d1\u10d0 */ \u10d3\u10d0\u10d1\u10dd\u10da\u10dd\u10d4\u10d1\u10d0 \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8\u10e1 \u10d1\u10da\u10dd\u10d9\u10d8\u10d3\u10d0\u10dc /* \u10d9\u10dd\u10db\u10d4\u10dc\u10e2\u10d0\u10e0\u10d8 */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -908,9 +910,6 @@ Moving=\u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d0 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u10e3\u10dc\u10d3\u10d0 \u10db\u10d8\u10e3\u10d7\u10d8\u10d7\u10dd\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d4\u10e0\u10d7\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8 -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=\u10d0\u10ee\u10d0\u10da\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\: @@ -944,9 +943,6 @@ No=\u10d0\u10e0\u10d0 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u10d3\u10d0\u10e4\u10d0 \u10d0\u10e0\u10e9\u10d4\u10e3\u10da\u10d8 \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1; \u10d2\u10d7\u10ee\u10dd\u10d5\u10d7 \u10d0\u10d8\u10e0\u10e9\u10d8\u10dd\u10d7 \u10db\u10d4\u10dc\u10d8\u10e3\u10d3\u10d0\u10dc '\u10ee\u10d4\u10da\u10e1\u10d0\u10ec\u10e7\u10dd\u10d4\u10d1\u10d8' -> '\u10d3\u10d0\u10e4\u10d0' - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u10d0\u10d5\u10e2\u10dd-\u10e4\u10dd\u10e0\u10db\u10d0\u10e2\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10d0\u10e0 \u10d0\u10e0\u10d8\u10e1. @@ -995,15 +991,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u10e1\u10d0\u10e5\u10 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u10dc\u10dd\u10e0\u10d5\u10d4\u10d2\u10d8\u10e3\u10da\u10d8 \u10d1\u10e3\u10d9\u10db\u10dd\u10da\u10d8 -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u10db\u10d4\u10ee\u10e1\u10d8\u10d4\u10e0\u10d4\u10d1\u10d0 \u10d0\u10e0\u10d0\u10e1\u10d0\u10d9\u10db\u10d0\u10e0\u10d8\u10e1\u10d8\u10d0; \u10d8\u10ee\u10d8\u10da\u10d4\u10d7 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u10d8\u10db\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10e0\u10dd\u10db \u10d2\u10d0\u10d4\u10ea\u10dc\u10dd\u10d7 \u10db\u10d8\u10d7\u10d8\u10d7\u10d4\u10d1\u10d4\u10d1\u10e1 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10db\u10d4\u10ee\u10e1\u10d8\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10db\u10ea\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e1\u10d0\u10ee\u10d4\u10d1. @@ -1047,6 +1037,10 @@ Persian=\u10e1\u10de\u10d0\u10e0\u10e1\u10e3\u10da\u10d8 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u10e1\u10de\u10d0\u10e0\u10e1\u10e3\u10da\u10d8 (\u10d8\u10e0\u10d0\u10dc\u10d8) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1120,10 +1114,6 @@ Problem\ accessing\ files\ in\ folder\ =\u10e8\u10d4\u10e4\u10d4\u10e0\u10ee\u10 #: Base.java:1673 Problem\ getting\ data\ folder=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10db\u10dd\u10dc\u10d0\u10ea\u10d4\u10db\u10d7\u10d0 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8\u10e1 \u10ec\u10d0\u10d9\u10d8\u10d7\u10ee\u10d5\u10d8\u10e1\u10d0\u10e1 -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 {0}-\u10d8\u10e1 \u10d0\u10e1\u10d0\u10ec\u10e7\u10dd\u10d1 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4\u10e8\u10d8 \u10d2\u10d0\u10d3\u10d0\u10e2\u10d0\u10dc\u10d8\u10e1\u10d0\u10e1 - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u10d3\u10d0\u10e4\u10d0\u10d6\u10d4 \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d8\u10e1 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0. \u10d8\u10ee\u10d8\u10da\u10d4\u10d7 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d8\u10d7\u10d8 \u10ea\u10dc\u10dd\u10d1\u10d4\u10d1\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1. @@ -1136,9 +1126,16 @@ Processor=\u10de\u10e0\u10dd\u10ea\u10d4\u10e1\u10dd\u10e0\u10d8 #: Editor.java:704 Programmer=Programmer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u10d2\u10d0\u10e1\u10d5\u10da\u10d0 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u10d2\u10d0\u10db\u10d4\u10dd\u10e0\u10d4\u10d1\u10d0 @@ -1178,6 +1175,14 @@ Replace\ with\:=\u10e9\u10d0\u10dc\u10d0\u10ea\u10d5\u10da\u10d4\u10d1\u10d0\: #: Preferences.java:113 Romanian=\u10e0\u10e3\u10db\u10d8\u10dc\u10e3\u10da\u10d8 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u10e0\u10e3\u10e1\u10e3\u10da\u10d8 @@ -1255,6 +1260,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1335,9 +1344,6 @@ Spanish=\u10d4\u10e1\u10de\u10d0\u10dc\u10e3\u10e0\u10d8 #: Base.java:540 Sunshine=\u10db\u10d6\u10d8\u10d0\u10dc\u10d8 \u10d0\u10db\u10d8\u10dc\u10d3\u10d8\u10d0 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u10e8\u10d5\u10d4\u10d3\u10e3\u10e0\u10d8 @@ -1402,9 +1408,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d0\u10e1\u10da\u10d8 \u10e3\u10d5\u10d4 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1 \u10d8\u10e5,\n\u10e1\u10d0\u10d3\u10d0\u10ea \u10ea\u10d3\u10d8\u10da\u10dd\u10d1\u10d7 \u10db\u10d8\u10e1 \u10e9\u10d0\u10e1\u10db\u10d0\u10e1.\n\u10d1\u10e0\u10eb\u10d0\u10dc\u10d4\u10d1\u10d0\u10e1 \u10d0\u10e0 \u10e8\u10d4\u10d2\u10d8\u10e1\u10e0\u10e3\u10da\u10d4\u10d1\u10d7. @@ -1456,6 +1459,10 @@ Unable\ to\ connect\:\ retrying=\u10d3\u10d0\u10d9\u10d0\u10d5\u10e8\u10d8\u10e0 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u10d3\u10d0\u10d9\u10d0\u10d5\u10e8\u10d8\u10e0\u10d4\u10d1\u10d0 \u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0\: \u10d0\u10e0\u10d0\u10e1\u10ec\u10dd\u10e0\u10d8 \u10de\u10d0\u10e0\u10dd\u10da\u10d8\u10d0? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 \u10e1\u10d4\u10e0\u10d8\u10e3\u10da\u10d8 \u10db\u10d4\u10d7\u10d5\u10d0\u10da\u10e7\u10e3\u10e0\u10d8\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0 @@ -1466,13 +1473,17 @@ Unable\ to\ open\ serial\ monitor=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u1 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u10db\u10dd\u10e3\u10da\u10dd\u10d3\u10dc\u10d4\u10da\u10d8 \u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0, \u10e1\u10d0\u10ee\u10d4\u10dd\u10d1\u10d0\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u10d3\u10d0\u10d1\u10e0\u10e3\u10dc\u10d4\u10d1\u10d0 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u10d0\u10db\u10dd\u10e3\u10ea\u10dc\u10dd\u10d1\u10d8 \u10de\u10da\u10d0\u10e2\u10e4\u10dd\u10e0\u10db\u10d0, \u10d2\u10d0\u10db\u10e8\u10d5\u10d4\u10d1\u10d8 \u10db\u10d8\u10e3\u10ec\u10d5\u10d3\u10dd\u10db\u10d4\u10da\u10d8\u10d0.\n\u10e0\u10d0\u10d7\u10d0 \u10e8\u10d4\u10d2\u10d4\u10eb\u10da\u10dd\u10d7 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0\u10d7 URL-\u10d4\u10d1\u10d8 \u10d0\u10dc \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d4\u10d4\u10d1\u10d8, \u10d3\u10d0\u10d0\u10db\u10d0\u10e2\u10d4\u10d7 \n"launcher\=/path/to/app" \u10ee\u10d0\u10d6\u10d8 preferences.txt-\u10e8\u10d8 @@ -1507,9 +1518,6 @@ Uploading\ to\ I/O\ Board...=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0 I/ #: Sketch.java:1622 Uploading...=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=\u10eb\u10d8\u10d4\u10d1\u10d0 \u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10e8\u10d8 @@ -1567,6 +1575,14 @@ Vietnamese=\u10d5\u10d8\u10d4\u10e2\u10dc\u10d0\u10db\u10e3\u10e0\u10d8 #: Editor.java:1105 Visit\ Arduino.cc=\u10d4\u10ec\u10d5\u10d8\u10d4\u10d7 \u10e1\u10d0\u10d8\u10e2\u10e1 Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0\: \u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d0 {0} \u10d0\u10ea\u10ee\u10d0\u10d3\u10d4\u10d1\u10e1, \u10e0\u10dd\u10db \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 {1} \u10d0\u10e0\u10e5\u10d8\u10e2\u10d4\u10e5\u10e2\u10e3\u10e0\u10d0\u10d6\u10d4 \u10d3\u10d0 \u10e8\u10d4\u10e1\u10d0\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10d0\u10e0 \u10d8\u10e7\u10dd\u10e1 \u10d7\u10d0\u10d5\u10e1\u10d4\u10d1\u10d0\u10d3\u10d8 \u10d7\u10e5\u10d5\u10d4\u10dc\u10e1 \u10d3\u10d0\u10e4\u10d0\u10e1\u10d7\u10d0\u10dc, \u10e0\u10dd\u10db\u10d4\u10da\u10d8\u10ea \u10db\u10e3\u10e8\u10d0\u10dd\u10d1\u10e1 {2} \u10d0\u10e0\u10e5\u10d8\u10e2\u10d4\u10e5\u10e2\u10e3\u10e0\u10d0\u10d6\u10d4 @@ -1596,6 +1612,9 @@ Warning=\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1756,6 +1775,14 @@ upload=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0}-\u10db \u10d3\u10d0\u10d0\u10d1\u10e0\u10e3\u10dc\u10d0 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po index 2d611efdd78..8adbe88be47 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.po +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jihoon Hyun , 2015 # Jinbuhm Kim , 2013,2015 # Ki-hyeok Park , 2015 @@ -15,8 +16,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-25 03:38+0000\n" -"Last-Translator: Jinbuhm Kim \n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" +"Last-Translator: Federico Fissore \n" "Language-Team: Korean (Korea) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ko_KR/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -46,10 +47,20 @@ msgstr "'키보드' 는 Arduino Leonardo에서만 사용가능합니다." msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'마우스' 는 Arduino Leonardo에서만 사용가능합니다." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(아두이노가 실행되지 않는 경우에만 수정 가능)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir 는 더이상 지원하지 않습니다" @@ -311,10 +322,6 @@ msgstr "잘못된 오류 라인: {0}" msgid "Bad file selected" msgstr "잘못된 파일이 선택됐습니다" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "잘못된 스케치 파일 또는 스케치 디렉토리 구조" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "바스크어" @@ -323,15 +330,16 @@ msgstr "바스크어" msgid "Belarusian" msgstr "벨로루시어" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (인도)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "보드" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -372,14 +380,14 @@ msgstr "Both NL & CR" msgid "Browse" msgstr "찾아보기" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "빌드 폴더가 사라졌거나 저장할 수 없습니다" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "빌드 선택사항 변경됨, 모두 다시 빌드합니다. " +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "불가리어" @@ -443,10 +451,6 @@ msgstr "시작시 업데이트 확인" msgid "Chinese (China)" msgstr "중국어(중국)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "중국어(홍콩)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "중국어(대만)" @@ -455,14 +459,6 @@ msgstr "중국어(대만)" msgid "Chinese (Taiwan) (Big5)" msgstr "중국어(대만)(Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "중국어 간체" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "중국어 번체" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "비공식 보드 지원 URL 목록을 보려면 클릭하세요" @@ -582,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "기본 설정을 읽을 수 없습니다.\n아두이노를 다시 설치해야 합니다." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "이전의 빌드 설정 파일을 읽을 수 없습니다. 모두 다시 빌드합니다. " - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -613,10 +605,6 @@ msgstr "스케치 이름을 바꿀 수 없습니다. (2)" msgid "Could not replace {0}" msgstr "{0}를 바꿀 수 없습니다" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "빌드 설정 파일을 쓸 수 없습니다. " - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "스케치를 보관 할 수 없습니다" @@ -644,18 +632,10 @@ msgstr "크로아티아어" msgid "Cut" msgstr "잘라내기" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "체코어" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czech (체코)" -#: Preferences.java:90 -msgid "Danish" -msgstr "덴마크어" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danish (덴마크)" @@ -927,6 +907,18 @@ msgstr "에스토니아어(에스토니아)" msgid "Examples" msgstr "예제" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "컴파일된 바이너리 내보내기" @@ -1155,6 +1147,11 @@ msgstr "설치..." msgid "Invalid library found in {0}: {1}" msgstr "잘못된 라이브러리가 {0}에서 발견: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "이탈리아어" @@ -1179,6 +1176,10 @@ msgstr "라이브러리 매니저" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "라이브러리가 추가되었습니다. \"라이브러리 포함하기\" 메뉴를 확인하세요" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1192,14 +1193,15 @@ msgstr "리투아니아어" msgid "Loading configuration..." msgstr "설정파일 로딩..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "사용 가능한 메모리 부족, 안정성에 문제가 생길 수 있습니다." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malay (말레이시아)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "라이브러리 관리..." @@ -1216,9 +1218,10 @@ msgstr "마라티어" msgid "Message" msgstr "메시지" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "*/ 가 주석의 끝에 빠졌습니다. /* 주석 */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1249,10 +1252,6 @@ msgstr "\"{0}\"를 위한 복수개의 라이브러리가 발견되었습니다" msgid "Must specify exactly one sketch file" msgstr "단 1개의 스케치 파일을 선택해야 합니다. " -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "새로운 파일을 위한 이름:" @@ -1297,10 +1296,6 @@ msgstr "아니요" msgid "No authorization data found" msgstr "권한데이터를 찾을 수 없음" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "보드가 선택되지 않았습니다; 툴>보드 메뉴에서 보드를 선택하시기 바랍니다." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "자동 포맷을 위해 변경이 필요없습니다." @@ -1364,18 +1359,10 @@ msgstr "폴더 {0}에 유효한 하드웨어 정의가 발견되지 않음." msgid "None" msgstr "None" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "노르웨이어" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "노르웨이 브크몰어" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "뉘노르스크" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1435,6 +1422,11 @@ msgstr "페르시아어" msgid "Persian (Iran)" msgstr "Persian (이란)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "보드 삭제를 확인하시기 바랍니다" @@ -1532,11 +1524,6 @@ msgstr "폴더내 파일 접근시 문제" msgid "Problem getting data folder" msgstr "데이터 폴더를 가져오는데 문제 발생" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "빌드 폴더로 {0}를 이동할때 문제 발생" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1555,10 +1542,19 @@ msgstr "프로세서" msgid "Programmer" msgstr "프로그래머" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "종료" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "다시 실행" @@ -1610,6 +1606,16 @@ msgstr "다음 내용으로 바꾸기:" msgid "Romanian" msgstr "루마니아어" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "러시아어" @@ -1715,6 +1721,11 @@ msgstr "시리얼 포트 {0} 를 찾을 수 없습니다.\n다른 시리얼 포 msgid "Serial ports" msgstr "시리얼 포트" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "설정" @@ -1830,10 +1841,6 @@ msgstr "개시..." msgid "Sunshine" msgstr "햇살" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "스와힐리어" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "스웨덴어" @@ -1950,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "지정된 스케치북 폴더는 IDE의 사본을 포함합니다.\n다른 폴더를 선택하십시오." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "써드 파티 platform.txt 파일에 컴파일러 경로가 정의되어 있지 않습니다. 써드 파티 하드웨어 메인테이너에게 보고 하십시오." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2028,6 +2029,11 @@ msgstr "연결할 수 없음: 재시도" msgid "Unable to connect: wrong password?" msgstr "연결할 수 없음: 패스워드 확인" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "시리얼 모니터를 열 수 없음" @@ -2041,15 +2047,20 @@ msgstr "시리얼 플로터를 열 수 없습니다" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "네트워트 문제때문에 Arduino.cc에 접속 할 수 없습니다." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "해결할 수 없는 예외상황 발생: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "취소" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2098,10 +2109,6 @@ msgstr "I/O 보드에 업로드…" msgid "Uploading..." msgstr "업로딩…" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (파키스탄)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "찾기를 위해 선택된 부분을 사용" @@ -2176,6 +2183,16 @@ msgstr "베트남어" msgid "Visit Arduino.cc" msgstr "Arduino.cc 방문하기" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2219,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "경고: 코어 '{0}'의 platform.txt는 오래된 {1}를 포함하며, 자동으로 {2}로 변환되었습니다. 이 코어를 업그레이드 하는 것이 좋습니다." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2473,6 +2496,16 @@ msgstr "스케치에 {0}파일이 추가되었습니다." msgid "{0} libraries" msgstr "{0} 라이브러리" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties index dda191fb140..99dfba62a33 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ko_KR.properties @@ -6,11 +6,12 @@ # Translators: # Translators: # Translators: +# Translators: # Jihoon Hyun , 2015 # Jinbuhm Kim , 2013,2015 # Ki-hyeok Park , 2015 # shibaboy , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-25 03\:38+0000\nLast-Translator\: Jinbuhm Kim \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ko_KR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ko_KR\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Korean (Korea) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ko_KR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ko_KR\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\uc544\ub450\uc774\ub178\ub97c \uc7ac\uc2dc\uc791\ud574\uc57c \ud568) @@ -29,9 +30,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='\ub9c8\uc6b0\uc2a4' \ub294 Arduino Leonardo\uc5d0\uc11c\ub9cc \uc0ac\uc6a9\uac00\ub2a5\ud569\ub2c8\ub2e4. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\uc544\ub450\uc774\ub178\uac00 \uc2e4\ud589\ub418\uc9c0 \uc54a\ub294 \uacbd\uc6b0\uc5d0\ub9cc \uc218\uc815 \uac00\ub2a5) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir \ub294 \ub354\uc774\uc0c1 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4 @@ -215,22 +222,20 @@ Bad\ error\ line\:\ {0}=\uc798\ubabb\ub41c \uc624\ub958 \ub77c\uc778\: {0} #: Editor.java:2136 Bad\ file\ selected=\uc798\ubabb\ub41c \ud30c\uc77c\uc774 \uc120\ud0dd\ub410\uc2b5\ub2c8\ub2e4 -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\uc798\ubabb\ub41c \uc2a4\ucf00\uce58 \ud30c\uc77c \ub610\ub294 \uc2a4\ucf00\uce58 \ub514\ub809\ud1a0\ub9ac \uad6c\uc870 - #: ../../../processing/app/Preferences.java:149 Basque=\ubc14\uc2a4\ud06c\uc5b4 #: ../../../processing/app/Preferences.java:139 Belarusian=\ubca8\ub85c\ub8e8\uc2dc\uc5b4 -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (\uc778\ub3c4) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\ubcf4\ub4dc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\ubcf4\ub4dc {0}\:{1}\:{2} \uc774 ''build.board'' \uc124\uc815\uc5d0\uc11c \uc815\uc758\ub418\uc9c0 \uc54a\uc74c. \uc790\ub3d9 \uc124\uc815 \: {3} @@ -260,12 +265,12 @@ Both\ NL\ &\ CR=Both NL & CR #: Preferences.java:81 Browse=\ucc3e\uc544\ubcf4\uae30 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\ube4c\ub4dc \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uac70\ub098 \uc800\uc7a5\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\ube4c\ub4dc \uc120\ud0dd\uc0ac\ud56d \ubcc0\uacbd\ub428, \ubaa8\ub450 \ub2e4\uc2dc \ube4c\ub4dc\ud569\ub2c8\ub2e4. +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\ubd88\uac00\ub9ac\uc5b4 @@ -314,21 +319,12 @@ Check\ for\ updates\ on\ startup=\uc2dc\uc791\uc2dc \uc5c5\ub370\uc774\ud2b8 \ud #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\uc911\uad6d\uc5b4(\uc911\uad6d) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\uc911\uad6d\uc5b4(\ud64d\ucf69) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\uc911\uad6d\uc5b4(\ub300\ub9cc) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\uc911\uad6d\uc5b4(\ub300\ub9cc)(Big5) -#: Preferences.java:88 -Chinese\ Simplified=\uc911\uad6d\uc5b4 \uac04\uccb4 - -#: Preferences.java:89 -Chinese\ Traditional=\uc911\uad6d\uc5b4 \ubc88\uccb4 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\ube44\uacf5\uc2dd \ubcf4\ub4dc \uc9c0\uc6d0 URL \ubaa9\ub85d\uc744 \ubcf4\ub824\uba74 \ud074\ub9ad\ud558\uc138\uc694 @@ -413,9 +409,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\uae30\ubcf8 \uc124\uc815\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\uc544\ub450\uc774\ub178\ub97c \ub2e4\uc2dc \uc124\uce58\ud574\uc57c \ud569\ub2c8\ub2e4. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\uc774\uc804\uc758 \ube4c\ub4dc \uc124\uc815 \ud30c\uc77c\uc744 \uc77d\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. \ubaa8\ub450 \ub2e4\uc2dc \ube4c\ub4dc\ud569\ub2c8\ub2e4. - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}={0}\uc758 \uc774\uc804 \ubc84\uc83c\uc744 \uc0ad\uc81c\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 @@ -437,9 +430,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\uc2a4\ucf00\uce58 \uc774\ub984\uc744 \ubc #, java-format Could\ not\ replace\ {0}={0}\ub97c \ubc14\uafc0 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\ube4c\ub4dc \uc124\uc815 \ud30c\uc77c\uc744 \uc4f8 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\uc2a4\ucf00\uce58\ub97c \ubcf4\uad00 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4 @@ -458,15 +448,9 @@ Croatian=\ud06c\ub85c\uc544\ud2f0\uc544\uc5b4 #: Editor.java:1149 Editor.java:2699 Cut=\uc798\ub77c\ub0b4\uae30 -#: ../../../processing/app/Preferences.java:83 -Czech=\uccb4\ucf54\uc5b4 - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czech (\uccb4\ucf54) -#: Preferences.java:90 -Danish=\ub374\ub9c8\ud06c\uc5b4 - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danish (\ub374\ub9c8\ud06c) @@ -670,6 +654,15 @@ Estonian\ (Estonia)=\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4(\uc5d0\uc2a4\ud1a0\ub2c #: Editor.java:516 Examples=\uc608\uc81c +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=\ucef4\ud30c\uc77c\ub41c \ubc14\uc774\ub108\ub9ac \ub0b4\ubcf4\ub0b4\uae30 @@ -835,6 +828,10 @@ Installing...=\uc124\uce58... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\uc798\ubabb\ub41c \ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 {0}\uc5d0\uc11c \ubc1c\uacac\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\uc774\ud0c8\ub9ac\uc544\uc5b4 @@ -853,6 +850,9 @@ Library\ Manager=\ub77c\uc774\ube0c\ub7ec\ub9ac \ub9e4\ub2c8\uc800 #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 \ucd94\uac00\ub418\uc5c8\uc2b5\ub2c8\ub2e4. "\ub77c\uc774\ube0c\ub7ec\ub9ac \ud3ec\ud568\ud558\uae30" \uba54\ub274\ub97c \ud655\uc778\ud558\uc138\uc694 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=\ub77c\uc774\ube0c\ub7ec\ub9ac\uac00 \uc774\ubbf8 \uc124\uce58\ub410\uc2b5\ub2c8\ub2e4\: {0} \ubc84\uc804 {1} @@ -863,12 +863,13 @@ Lithuaninan=\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4 #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=\uc124\uc815\ud30c\uc77c \ub85c\ub529... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=\uc0ac\uc6a9 \uac00\ub2a5\ud55c \uba54\ubaa8\ub9ac \ubd80\uc871, \uc548\uc815\uc131\uc5d0 \ubb38\uc81c\uac00 \uc0dd\uae38 \uc218 \uc788\uc2b5\ub2c8\ub2e4. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malay (\ub9d0\ub808\uc774\uc2dc\uc544) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=\ub77c\uc774\ube0c\ub7ec\ub9ac \uad00\ub9ac... @@ -881,8 +882,9 @@ Marathi=\ub9c8\ub77c\ud2f0\uc5b4 #: Base.java:2112 Message=\uba54\uc2dc\uc9c0 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=*/ \uac00 \uc8fc\uc11d\uc758 \ub05d\uc5d0 \ube60\uc84c\uc2b5\ub2c8\ub2e4. /* \uc8fc\uc11d */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\uc9c0\uc6d0\ud558\uc9c0 \uc54a\ub294 \ubaa8\ub4dc @@ -906,9 +908,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"="{0}"\ub97c \uc704\ud55c \ubcf5\uc2 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\ub2e8 1\uac1c\uc758 \uc2a4\ucf00\uce58 \ud30c\uc77c\uc744 \uc120\ud0dd\ud574\uc57c \ud569\ub2c8\ub2e4. -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\uc0c8\ub85c\uc6b4 \ud30c\uc77c\uc744 \uc704\ud55c \uc774\ub984\: @@ -942,9 +941,6 @@ No=\uc544\ub2c8\uc694 #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=\uad8c\ud55c\ub370\uc774\ud130\ub97c \ucc3e\uc744 \uc218 \uc5c6\uc74c -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\ubcf4\ub4dc\uac00 \uc120\ud0dd\ub418\uc9c0 \uc54a\uc558\uc2b5\ub2c8\ub2e4; \ud234>\ubcf4\ub4dc \uba54\ub274\uc5d0\uc11c \ubcf4\ub4dc\ub97c \uc120\ud0dd\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\uc790\ub3d9 \ud3ec\ub9f7\uc744 \uc704\ud574 \ubcc0\uacbd\uc774 \ud544\uc694\uc5c6\uc2b5\ub2c8\ub2e4. @@ -993,15 +989,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\ud3f4\ub354 {0}\uc5d0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=None -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=\ub178\ub974\uc6e8\uc774\uc5b4 - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\ub178\ub974\uc6e8\uc774 \ube0c\ud06c\ubab0\uc5b4 -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=\ub258\ub178\ub974\uc2a4\ud06c - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\uba54\ubaa8\ub9ac\uac00 \ucda9\ubd84\ud558\uc9c0 \uc54a\uc74c; \uba54\ubaa8\ub9ac\ub97c \uc904\uc774\uae30 \uc704\ud55c \ud301\uc744 \uc704\ud574 \ucc38\uace0 http\://www.arduino.cc/en/Guide/Troubleshooting\#size @@ -1045,6 +1035,10 @@ Persian=\ud398\ub974\uc2dc\uc544\uc5b4 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persian (\uc774\ub780) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=\ubcf4\ub4dc \uc0ad\uc81c\ub97c \ud655\uc778\ud558\uc2dc\uae30 \ubc14\ub78d\ub2c8\ub2e4 @@ -1118,10 +1112,6 @@ Problem\ accessing\ files\ in\ folder\ =\ud3f4\ub354\ub0b4 \ud30c\uc77c \uc811\u #: Base.java:1673 Problem\ getting\ data\ folder=\ub370\uc774\ud130 \ud3f4\ub354\ub97c \uac00\uc838\uc624\ub294\ub370 \ubb38\uc81c \ubc1c\uc0dd -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\ube4c\ub4dc \ud3f4\ub354\ub85c {0}\ub97c \uc774\ub3d9\ud560\ub54c \ubb38\uc81c \ubc1c\uc0dd - #: 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. \ub2e4\uc74c\uc744 \ucc38\uace0\ud558\uc138\uc694. http\://www.arduino.cc/en/Guide/Troubleshooting\#upload @@ -1134,9 +1124,16 @@ Processor=\ud504\ub85c\uc138\uc11c #: Editor.java:704 Programmer=\ud504\ub85c\uadf8\ub798\uba38 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\uc885\ub8cc +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\ub2e4\uc2dc \uc2e4\ud589 @@ -1176,6 +1173,14 @@ Replace\ with\:=\ub2e4\uc74c \ub0b4\uc6a9\uc73c\ub85c \ubc14\uafb8\uae30\: #: Preferences.java:113 Romanian=\ub8e8\ub9c8\ub2c8\uc544\uc5b4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\ub7ec\uc2dc\uc544\uc5b4 @@ -1253,6 +1258,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=\uc124\uc815 @@ -1333,9 +1342,6 @@ Starting...=\uac1c\uc2dc... #: Base.java:540 Sunshine=\ud587\uc0b4 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=\uc2a4\uc640\ud790\ub9ac\uc5b4 - #: ../../../processing/app/Preferences.java:153 Swedish=\uc2a4\uc6e8\ub374\uc5b4 @@ -1400,9 +1406,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\uc9c0\uc815\ub41c \uc2a4\ucf00\uce58\ubd81 \ud3f4\ub354\ub294 IDE\uc758 \uc0ac\ubcf8\uc744 \ud3ec\ud568\ud569\ub2c8\ub2e4.\n\ub2e4\ub978 \ud3f4\ub354\ub97c \uc120\ud0dd\ud558\uc2ed\uc2dc\uc624. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\uc368\ub4dc \ud30c\ud2f0 platform.txt \ud30c\uc77c\uc5d0 \ucef4\ud30c\uc77c\ub7ec \uacbd\ub85c\uac00 \uc815\uc758\ub418\uc5b4 \uc788\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \uc368\ub4dc \ud30c\ud2f0 \ud558\ub4dc\uc6e8\uc5b4 \uba54\uc778\ud14c\uc774\ub108\uc5d0\uac8c \ubcf4\uace0 \ud558\uc2ed\uc2dc\uc624. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\uc774 \ud30c\uc77c\uc740 \uc774\ubbf8 \ub2f9\uc2e0\uc774 \ucd94\uac00\ud558\ub824\ub294\n\uc7a5\uc18c\uc5d0 \ubcf5\uc0ac\ub418\uc5c8\uc2b5\ub2c8\ub2e4.\n\ub354 \uc774\uc0c1 \uc9c4\ud589 \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. @@ -1454,6 +1457,10 @@ Unable\ to\ connect\:\ retrying=\uc5f0\uacb0\ud560 \uc218 \uc5c6\uc74c\: \uc7ac\ #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\uc5f0\uacb0\ud560 \uc218 \uc5c6\uc74c\: \ud328\uc2a4\uc6cc\ub4dc \ud655\uc778 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\uc2dc\ub9ac\uc5bc \ubaa8\ub2c8\ud130\ub97c \uc5f4 \uc218 \uc5c6\uc74c @@ -1464,13 +1471,17 @@ Unable\ to\ open\ serial\ plotter=\uc2dc\ub9ac\uc5bc \ud50c\ub85c\ud130\ub97c \u #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=\ub124\ud2b8\uc6cc\ud2b8 \ubb38\uc81c\ub54c\ubb38\uc5d0 Arduino.cc\uc5d0 \uc811\uc18d \ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\ud574\uacb0\ud560 \uc218 \uc5c6\ub294 \uc608\uc678\uc0c1\ud669 \ubc1c\uc0dd\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\ucde8\uc18c +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\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. @@ -1505,9 +1516,6 @@ Uploading\ to\ I/O\ Board...=I/O \ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub4dc\u2026 #: Sketch.java:1622 Uploading...=\uc5c5\ub85c\ub529\u2026 -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (\ud30c\ud0a4\uc2a4\ud0c4) - #: Editor.java:1269 Use\ Selection\ For\ Find=\ucc3e\uae30\ub97c \uc704\ud574 \uc120\ud0dd\ub41c \ubd80\ubd84\uc744 \uc0ac\uc6a9 @@ -1565,6 +1573,14 @@ Vietnamese=\ubca0\ud2b8\ub0a8\uc5b4 #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \ubc29\ubb38\ud558\uae30 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\uacbd\uace0\: \ub77c\uc774\ube0c\ub7ec\ub9ac {0}\uac00 {1} \uc544\ud0a4\ud14d\ucc98\uc5d0\uc11c \uc2e4\ud589\ub418\uba70 {2}\uc544\ud0a4\ud14d\ucc98\uc5d0\uc11c \uc2e4\ud589\ub418\ub294 \ud604\uc7ac\ubcf4\ub4dc\uc5d0\uc11c\ub294 \ud638\ud658\ub418\uc9c0 \uc54a\uc744 \uc218 \uc788\uc2b5\ub2c8\ub2e4. @@ -1594,6 +1610,9 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=\uacb #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\uacbd\uace0\: \ucf54\uc5b4 '{0}'\uc758 platform.txt\ub294 \uc624\ub798\ub41c {1}\ub97c \ud3ec\ud568\ud558\uba70, \uc790\ub3d9\uc73c\ub85c {2}\ub85c \ubcc0\ud658\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc774 \ucf54\uc5b4\ub97c \uc5c5\uadf8\ub808\uc774\ub4dc \ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\uacbd\uace0\: \ucf54\uc5b4 '{0}'\uc758 platform.txt\uc5d0 \ud504\ub85c\ud37c\ud2f0 {1}\uc774 \uc5c6\uc5b4\uc11c \uc790\ub3d9\uc73c\ub85c {2}\ub85c \uc124\uc815\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc774 \ucf54\uc5b4\ub97c \uc5c5\uadf8\ub808\uc774\ub4dc \ud558\ub294 \uac83\uc774 \uc88b\uc2b5\ub2c8\ub2e4. @@ -1754,6 +1773,14 @@ version\ {0}=\ubc84\uc804 {0} #, java-format {0}\ libraries={0} \ub77c\uc774\ube0c\ub7ec\ub9ac +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \uac00 {1}\ub97c \ub9ac\ud134\ud588\uc2b5\ub2c8\ub2e4 diff --git a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po index 3396df3de37..66169251d28 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.po +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Lithuanian (Lithuania) (http://www.transifex.com/mbanzi/arduino-ide-15/language/lt_LT/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Išeiti" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Saulės šviesa" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,13 +2044,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties index 9fb5b861ade..1a156b7065f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lt_LT.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Lithuanian (Lithuania) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/lt_LT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lt_LT\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Lithuanian (Lithuania) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/lt_LT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lt_LT\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0} #: Editor.java:516 !Examples= +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 !Italian= @@ -850,6 +847,9 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: Base.java:2112 !Message= -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Na tikrai, tau laikas \u012f #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Open...=Atidaryti... #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ Opening\ URL=Problema atidarant nuorod\u0105 #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Problem\ Opening\ URL=Problema atidarant nuorod\u0105 #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=I\u0161eiti +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Quit=I\u0161eiti #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Quit=I\u0161eiti #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f #: Base.java:540 Sunshine=Saul\u0117s \u0161viesa -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ Sunshine=Saul\u0117s \u0161viesa #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Time\ for\ a\ Break=Laikas pertraukai #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Time\ for\ a\ Break=Laikas pertraukai #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Time\ for\ a\ Break=Laikas pertraukai #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Time\ for\ a\ Break=Laikas pertraukai #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Time\ for\ a\ Break=Laikas pertraukai #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po index 2f44cd59429..cb53ea36ea5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.po +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Kristofers , 2015 # Kristofers , 2012 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Latvian (Latvia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/lv_LV/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "'Klaviatūra' ir tikai atbalstīta uz Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Pele' ir tikai atbalstīta uz Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(rediģējiet tikai tad, kad Arduino nav palaists)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "Kļūdas rinda: {0}" msgid "Bad file selected" msgstr "Izvēlētais fails nav derīgs" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -321,15 +328,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Plate" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "Abi - jauna rinda un kursora atgriešanās" msgid "Browse" msgstr "Pārlūkot" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Būvējamā mape pazuda, vai nevarēja tajā ierakstīt" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Būvējuma opcijas ir izmainījušās, pārbūvē visu" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -441,10 +449,6 @@ msgstr "Pārbaudīt atjauninājumus palaišanas laikā" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -453,14 +457,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinese Traditional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nevar nolasīt noklusējuma iestatījumus.\nJums vajadzēs pārinstalēt Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "Neizdevās pārsaukt skici. (2)" msgid "Could not replace {0}" msgstr "Neizdevās aizvietot {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Neizdevās arhivēt skici" @@ -642,18 +630,10 @@ msgstr "" msgid "Cut" msgstr "Izgriezt" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "" msgid "Examples" msgstr "Piemēri" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "Instalē..." msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italian" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,14 +1191,15 @@ msgstr "Lithuaninan" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Atlicis maz atmiņas, var rasties stabilitātes problēmas." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Pārvaldīt bibliotēkas..." @@ -1214,8 +1216,9 @@ msgstr "Marathi" msgid "Message" msgstr "Ziņojums" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Jānorāda precīzi viens skices fails" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Jaunā faila nosaukums:" @@ -1295,10 +1294,6 @@ msgstr "Nē" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Lūdzu, vispirms izvēlieties platie no Rīki > Plate izvēlnes." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Izmaiņas nav nepieciešamas priekš automātiskās formatēšanas." @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "Neviens" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "Persian" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Radās problēma, iegūstot datu mapi" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Kļūda pārvietojot {0} būvējamajā mapē" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "Procesors" msgid "Programmer" msgstr "Programmators" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Iziet" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Atkārtot" @@ -1608,6 +1604,16 @@ msgstr "Aizvietot ar:" msgid "Romanian" msgstr "Romanian" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russian" @@ -1713,6 +1719,11 @@ msgstr "Seriālais ports {0} netika atrasts.\nAtkārtot augšupielādi ar citu s msgid "Serial ports" msgstr "Seriālie porti" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "Startē..." msgid "Sunshine" msgstr "Saules gaisma" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Neizdevās atvērt seriālo monitoru" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Nenoķerts izņēmuma veids: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Atsaukt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "Augšupielādē I/O platē..." msgid "Uploading..." msgstr "Augšupielādē..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Izmantot iezīmēto vietu meklēšanai" @@ -2174,6 +2181,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Apmeklēt Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "{0} faili tika pievienoti skicei." msgid "{0} libraries" msgstr "{0} bibliotēkas" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties index df73a059a9d..9c3c0543ffe 100644 --- a/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties +++ b/arduino-core/src/processing/app/i18n/Resources_lv_LV.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Kristofers , 2015 # Kristofers , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Latvian (Latvia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/lv_LV/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lv_LV\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n \!\= 0 ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Latvian (Latvia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/lv_LV/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: lv_LV\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n \!\= 0 ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (b\u016bs nepiecie\u0161ams p\u0101rstart\u0113t Arduino) @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Pele' ir tikai atbalst\u012bta uz Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redi\u0123\u0113jiet tikai tad, kad Arduino nav palaists) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=K\u013c\u016bdas rinda\: {0} #: Editor.java:2136 Bad\ file\ selected=Izv\u0113l\u0113tais fails nav der\u012bgs -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Plate +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=Abi - jauna rinda un kursora atgrie\u0161an\u0101s #: Preferences.java:81 Browse=P\u0101rl\u016bkot -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=B\u016bv\u0113jam\u0101 mape pazuda, vai nevar\u0113ja taj\u0101 ierakst\u012bt - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=B\u016bv\u0113juma opcijas ir izmain\u012bju\u0161\u0101s, p\u0101rb\u016bv\u0113 visu +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=P\u0101rbaud\u012bt atjaunin\u0101jumus palai\u #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -Chinese\ Traditional=Chinese Traditional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ re-save\ sketch=Neizdev\u0101s pa jaunam saglab\u0101t skici. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nevar nolas\u012bt noklus\u0113juma iestat\u012bjumus.\nJums vajadz\u0113s p\u0101rinstal\u0113t Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Neizdev\u0101s aizv\u0101kt {0} veco versiju @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Neizdev\u0101s p\u0101rsaukt skici. (2) #, java-format Could\ not\ replace\ {0}=Neizdev\u0101s aizvietot {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Neizdev\u0101s arhiv\u0113t skici @@ -456,15 +446,9 @@ Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ #: Editor.java:1149 Editor.java:2699 Cut=Izgriezt -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Estonian=Estonian #: Editor.java:516 Examples=Piem\u0113ri +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Installing...=Instal\u0113... #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italian @@ -851,6 +848,9 @@ Latvian=Latvie\u0161u #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=Lithuaninan #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Atlicis maz atmi\u0146as, var rasties stabilit\u0101tes probl\u0113mas. -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=P\u0101rvald\u012bt bibliot\u0113kas... @@ -879,8 +880,9 @@ Marathi=Marathi #: Base.java:2112 Message=Zi\u0146ojums -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Re\u017e\u012bms nav atblast\u012bts @@ -904,9 +906,6 @@ Moving=P\u0101rvieto #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=J\u0101nor\u0101da prec\u012bzi viens skices fails -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Jaun\u0101 faila nosaukums\: @@ -940,9 +939,6 @@ No=N\u0113 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=L\u016bdzu, vispirms izv\u0113lieties platie no R\u012bki > Plate izv\u0113lnes. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Izmai\u0146as nav nepiecie\u0161amas priek\u0161 autom\u0101tisk\u0101s format\u0113\u0161anas. @@ -991,15 +987,9 @@ No\ reference\ available\ for\ "{0}"=Nevar atrast atsauci priek\u0161 "{0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Neviens -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=Persian #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ Setting\ the\ Platform=Rad\u0101s k\u013c\u016bda iestatot platformu. #: Base.java:1673 Problem\ getting\ data\ folder=Rad\u0101s probl\u0113ma, ieg\u016bstot datu mapi -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=K\u013c\u016bda p\u0101rvietojot {0} b\u016bv\u0113jamaj\u0101 map\u0113 - #: 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. @@ -1132,9 +1122,16 @@ Processor=Procesors #: Editor.java:704 Programmer=Programmators +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Iziet +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Atk\u0101rtot @@ -1174,6 +1171,14 @@ Replace\ with\:=Aizvietot ar\: #: Preferences.java:113 Romanian=Romanian +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russian @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Seri\u0101lie porti +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Starting...=Start\u0113... #: Base.java:540 Sunshine=Saules gaisma -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Fails jau ir ticis iekop\u0113ts viet\u0101,\nno kurienes j\u016bs to cent\u0101ties pievienot.\nEs neko nedar\u012b\u0161u. @@ -1452,6 +1455,10 @@ Type=Veids #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Neizdev\u0101s atv\u0113rt seri\u0101lo monitoru @@ -1462,13 +1469,17 @@ Unable\ to\ open\ serial\ monitor=Neizdev\u0101s atv\u0113rt seri\u0101lo monito #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Neno\u0137erts iz\u0146\u0113muma veids\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Atsaukt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=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 @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=Aug\u0161upiel\u0101d\u0113 I/O plat\u0113... #: Sketch.java:1622 Uploading...=Aug\u0161upiel\u0101d\u0113... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Izmantot iez\u012bm\u0113to vietu mekl\u0113\u0161anai @@ -1563,6 +1571,14 @@ Version\ {0}=Versija {0} #: Editor.java:1105 Visit\ Arduino.cc=Apmekl\u0113t Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=Br\u012bdin\u0101jums #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ version\ {0}=versija {0} #, java-format {0}\ libraries={0} bibliot\u0113kas +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} atgrieza {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.po b/arduino-core/src/processing/app/i18n/Resources_mr.po index 9a672b5681f..5b7f0a9aa6d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.po +++ b/arduino-core/src/processing/app/i18n/Resources_mr.po @@ -6,12 +6,13 @@ # Translators: # Translators: # Translators: +# Translators: msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Marathi (http://www.transifex.com/mbanzi/arduino-ide-15/language/mr/)\n" "MIME-Version: 1.0\n" @@ -42,10 +43,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -307,10 +318,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -319,15 +326,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "बोर्ड" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -368,14 +376,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -439,10 +447,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -451,14 +455,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -578,10 +574,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -609,10 +601,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -640,18 +628,10 @@ msgstr "" msgid "Cut" msgstr "कट" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -923,6 +903,18 @@ msgstr "" msgid "Examples" msgstr "उदाहरणे" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1151,6 +1143,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "" @@ -1175,6 +1172,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1188,12 +1189,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1212,8 +1214,9 @@ msgstr "" msgid "Message" msgstr "" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1245,10 +1248,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1293,10 +1292,6 @@ msgstr "" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1360,18 +1355,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1431,6 +1418,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1528,11 +1520,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1551,10 +1538,19 @@ msgstr "" msgid "Programmer" msgstr "प्रोग्रॅमर" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "बंद" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "एक पाउल पुढे" @@ -1606,6 +1602,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1711,6 +1717,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1826,10 +1837,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1946,12 +1953,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2024,6 +2025,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2037,15 +2043,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "एक पाउल मागे" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2094,10 +2105,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "ठळक केलेल्यामध्ये शिधा" @@ -2172,6 +2179,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "arduino.cc ला भेट द्या" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2215,6 +2232,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2469,6 +2492,16 @@ msgstr "{0} फाईल्स स्केच मध्ये सामील msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_mr.properties b/arduino-core/src/processing/app/i18n/Resources_mr.properties index bf2a23d35f4..34b77a4f0ee 100644 --- a/arduino-core/src/processing/app/i18n/Resources_mr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_mr.properties @@ -6,7 +6,8 @@ # Translators: # Translators: # Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Marathi (http\://www.transifex.com/mbanzi/arduino-ide-15/language/mr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: mr\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +# Translators: +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Marathi (http\://www.transifex.com/mbanzi/arduino-ide-15/language/mr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: mr\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -25,9 +26,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -211,22 +218,20 @@ Add\ File...=\u092b\u093e\u0908\u0932 \u0938\u093e\u092e\u0940\u0932 \u0915\u093 #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u092c\u094b\u0930\u094d\u0921 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -256,12 +261,12 @@ Board=\u092c\u094b\u0930\u094d\u0921 #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -310,21 +315,12 @@ Burn\ Bootloader=\u092c\u0942\u091f\u0932\u094b\u0921\u0930 \u091f\u093e\u0915\u #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -409,9 +405,6 @@ Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\ #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -433,9 +426,6 @@ Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\ #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -454,15 +444,9 @@ Copy\ for\ Forum=\u092b\u094b\u0930\u092e \u0938\u093e\u0920\u0940 \u0915\u0949\ #: Editor.java:1149 Editor.java:2699 Cut=\u0915\u091f -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -666,6 +650,15 @@ Environment=\u092a\u0930\u093f\u0938\u0930 #: Editor.java:516 Examples=\u0909\u0926\u093e\u0939\u0930\u0923\u0947 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -831,6 +824,10 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 !Italian= @@ -849,6 +846,9 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -859,12 +859,13 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -877,8 +878,9 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #: Base.java:2112 !Message= -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -902,9 +904,6 @@ Increase\ Indent=\u0905\u0902\u0924\u0930 \u0935\u093e\u0922\u0935\u093e #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -938,9 +937,6 @@ New=\u0928\u0935\u0940\u0928 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -989,15 +985,9 @@ No\ reference\ available\ for\ "{0}"=\u0938\u093e\u0920\u0940 \u0938\u0902\u0926 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1041,6 +1031,10 @@ Paste=\u092a\u0947\u0938\u094d\u091f #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1114,10 +1108,6 @@ Print=\u091b\u093e\u092a\u093e #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1130,9 +1120,16 @@ Print=\u091b\u093e\u092a\u093e #: Editor.java:704 Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u0945\u092e\u0930 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u092c\u0902\u0926 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092a\u0941\u0922\u0947 @@ -1172,6 +1169,14 @@ Reference=\u0938\u0902\u0926\u0930\u094d\u092d #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1249,6 +1254,10 @@ Serial\ Monitor=\u0938\u093f\u0930\u0940\u092f\u0932 \u0928\u093f\u092f\u0902\u0 #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1329,9 +1338,6 @@ Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1396,9 +1402,6 @@ Sketchbook=\u0938\u094d\u0915\u0947\u091a \u092a\u0941\u0938\u094d\u0924\u093f\u #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1450,6 +1453,10 @@ Troubleshooting=\u0905\u0921\u091a\u0923\u0940 \u0938\u094b\u0921\u0935\u093f\u0 #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1460,13 +1467,17 @@ Troubleshooting=\u0905\u0921\u091a\u0923\u0940 \u0938\u094b\u0921\u0935\u093f\u0 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=\u090f\u0915 \u092a\u093e\u0909\u0932 \u092e\u093e\u0917\u0947 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1501,9 +1512,6 @@ Upload\ Using\ Programmer=\u092a\u094d\u0930\u094b\u0917\u094d\u0930\u0945\u092e #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=\u0920\u0933\u0915 \u0915\u0947\u0932\u0947\u0932\u094d\u092f\u093e\u092e\u0927\u094d\u092f\u0947 \u0936\u093f\u0927\u093e @@ -1561,6 +1569,14 @@ Use\ Selection\ For\ Find=\u0920\u0933\u0915 \u0915\u0947\u0932\u0947\u0932\u094 #: Editor.java:1105 Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\u093e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1590,6 +1606,9 @@ Visit\ Arduino.cc=arduino.cc \u0932\u093e \u092d\u0947\u091f \u0926\u094d\u092f\ #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1750,6 +1769,14 @@ serialMenu\ is\ null=\u0938\u093f\u0930\u093f\u0905\u0932 \u092e\u0947\u0928\u09 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_ms_MY.po b/arduino-core/src/processing/app/i18n/Resources_ms_MY.po deleted file mode 100644 index a89393e9613..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_ms_MY.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Malay (Malaysia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ms_MY/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ms_MY\n" -"Plural-Forms: nplurals=1; plural=0;\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ms_MY.properties b/arduino-core/src/processing/app/i18n/Resources_ms_MY.properties deleted file mode 100644 index adaa22a5705..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_ms_MY.properties +++ /dev/null @@ -1,1791 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Malay (Malaysia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ms_MY/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ms_MY\nPlural-Forms\: nplurals\=1; plural\=0;\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -!Open...= - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -!Quit= - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_my_MM.po b/arduino-core/src/processing/app/i18n/Resources_my_MM.po index 96772a244fd..9529cd649cd 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.po +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Yhal Htet Aung , 2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Burmese (Myanmar) (http://www.transifex.com/mbanzi/arduino-ide-15/language/my_MM/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "ဘတ်စ်ဘာသာ" @@ -320,15 +327,16 @@ msgstr "ဘတ်စ်ဘာသာ" msgid "Belarusian" msgstr "ဘစ်လာရုစ်ဘာသာ" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "ဘင်ဂါလီ(အိန္ဒိယ)ဘာသာ" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "အပြား" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "လျှောက်ကြည့်" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "ဘူဂေနီးယားဘာသာ" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "တရုတ်ဘာသာ (တရုတ်ပြည်)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "တရုတ်ဘာသာ (ဟောင်ကောင်)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "တရုတ်ဘာသာ (ထိုင်ဝမ်)" @@ -452,14 +456,6 @@ msgstr "တရုတ်ဘာသာ (ထိုင်ဝမ်)" msgid "Chinese (Taiwan) (Big5)" msgstr "တရုတ်ဘာသာ (ထိုင်ဝမ်) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "ရိုးရှင်းတရုတ်ဘာသာစကား" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "ရိုးရာတရုတ်ဘာသာစကား" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "ခရိုးအေးရှားဘာသာ" msgid "Cut" msgstr "ဖြတ်ယူ" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "ချက်ဘာသာ" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "ချက်(ချက်)ဘာသာ" -#: Preferences.java:90 -msgid "Danish" -msgstr "ဒိန်းမတ်ဘာသာ" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "ဒိန်းမတ်(ဒိန်းမတ်)ဘာသာ" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "ဥပမာများ" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "ဆွီဒင်ဘာသာ" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "ပြန်မလုပ်" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "ကူးတင်နေ..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "ဗီယက်နမ်ဘာသာ" msgid "Visit Arduino.cc" msgstr "Arduino.cc ကိုသွားလည်ပတ်" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties index 83fc328f10c..613b37e5543 100644 --- a/arduino-core/src/processing/app/i18n/Resources_my_MM.properties +++ b/arduino-core/src/processing/app/i18n/Resources_my_MM.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Yhal Htet Aung , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Burmese (Myanmar) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/my_MM/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: my_MM\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Burmese (Myanmar) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/my_MM/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: my_MM\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Autoscroll=\u101c\u102d\u102f\u101c\u103b\u1031\u102c\u1000\u103a\u101b\u103d\u1 #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u1018\u1010\u103a\u1005\u103a\u1018\u102c\u101e\u102c #: ../../../processing/app/Preferences.java:139 Belarusian=\u1018\u1005\u103a\u101c\u102c\u101b\u102f\u1005\u103a\u1018\u102c\u101e\u102c -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=\u1018\u1004\u103a\u1002\u102b\u101c\u102e(\u1021\u102d\u1014\u1039\u1012\u102d\u101a)\u1018\u102c\u101e\u102c - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u1021\u1015\u103c\u102c\u1038 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Bosnian=\u1018\u1031\u102c\u103a\u1005\u103a\u1014\u102e\u101a\u1019\u103a\u1018 #: Preferences.java:81 Browse=\u101c\u103b\u103e\u1031\u102c\u1000\u103a\u1000\u103c\u100a\u103a\u1037 -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u1018\u1030\u1002\u1031\u1014\u102e\u1038\u101a\u102c\u1038\u1018\u102c\u101e\u102c @@ -311,21 +316,12 @@ Catalan=\u1000\u1000\u103a\u1010\u101c\u1014\u103a\u1018\u102c\u101e\u102c #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u1010\u101b\u102f\u1010\u103a\u1018\u102c\u101e\u102c (\u1010\u101b\u102f\u1010\u103a\u1015\u103c\u100a\u103a) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u1010\u101b\u102f\u1010\u103a\u1018\u102c\u101e\u102c (\u101f\u1031\u102c\u1004\u103a\u1000\u1031\u102c\u1004\u103a) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u1010\u101b\u102f\u1010\u103a\u1018\u102c\u101e\u102c (\u1011\u102d\u102f\u1004\u103a\u101d\u1019\u103a) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u1010\u101b\u102f\u1010\u103a\u1018\u102c\u101e\u102c (\u1011\u102d\u102f\u1004\u103a\u101d\u1019\u103a) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u101b\u102d\u102f\u1038\u101b\u103e\u1004\u103a\u1038\u1010\u101b\u102f\u1010\u103a\u1018\u102c\u101e\u102c\u1005\u1000\u102c\u1038 - -#: Preferences.java:89 -Chinese\ Traditional=\u101b\u102d\u102f\u1038\u101b\u102c\u1010\u101b\u102f\u1010\u103a\u1018\u102c\u101e\u102c\u1005\u1000\u102c\u1038 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Copy=\u1000\u1030\u1038\u101a\u1030 #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ Copy=\u1000\u1030\u1038\u101a\u1030 #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Croatian=\u1001\u101b\u102d\u102f\u1038\u1021\u1031\u1038\u101b\u103e\u102c\u103 #: Editor.java:1149 Editor.java:2699 Cut=\u1016\u103c\u1010\u103a\u101a\u1030 -#: ../../../processing/app/Preferences.java:83 -Czech=\u1001\u103b\u1000\u103a\u1018\u102c\u101e\u102c - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u1001\u103b\u1000\u103a(\u1001\u103b\u1000\u103a)\u1018\u102c\u101e\u102c -#: Preferences.java:90 -Danish=\u1012\u102d\u1014\u103a\u1038\u1019\u1010\u103a\u1018\u102c\u101e\u102c - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=\u1012\u102d\u1014\u103a\u1038\u1019\u1010\u103a(\u1012\u102d\u1014\u103a\u1038\u1019\u1010\u103a)\u1018\u102c\u101e\u102c @@ -667,6 +651,15 @@ Error=\u1021\u1019\u103e\u102c\u1038 #: Editor.java:516 Examples=\u1025\u1015\u1019\u102c\u1019\u103b\u102c\u1038 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Help=\u1000\u1030\u100a\u102e #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 !Italian= @@ -850,6 +847,9 @@ Help=\u1000\u1030\u100a\u102e #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Help=\u1000\u1030\u100a\u102e #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Help=\u1000\u1030\u100a\u102e #: Base.java:2112 !Message= -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Help=\u1000\u1030\u100a\u102e #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ Help=\u1000\u1030\u100a\u102e #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ Help=\u1000\u1030\u100a\u102e #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Help=\u1000\u1030\u100a\u102e #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Help=\u1000\u1030\u100a\u102e #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Help=\u1000\u1030\u100a\u102e #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 !Quit= +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Help=\u1000\u1030\u100a\u102e #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Help=\u1000\u1030\u100a\u102e #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=\u1005\u1015\u102d\u1014\u103a\u1018\u102c\u101e\u102c #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u1006\u103d\u102e\u1012\u1004\u103a\u1018\u102c\u101e\u102c @@ -1397,9 +1403,6 @@ Tamil=\u1010\u1019\u102e\u1038\u1018\u102c\u101e\u102c #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Ukrainian=\u101a\u1030\u1000\u1031\u1014\u102e\u101a\u1019\u103a\u1018\u102c\u10 #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Ukrainian=\u101a\u1030\u1000\u1031\u1014\u102e\u101a\u1019\u103a\u1018\u102c\u10 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=\u1015\u103c\u1014\u103a\u1019\u101c\u102f\u1015\u103a +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Upload=\u1000\u1030\u1038\u1010\u1004\u103a #: Sketch.java:1622 Uploading...=\u1000\u1030\u1038\u1010\u1004\u103a\u1014\u1031... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Vietnamese=\u1017\u102e\u101a\u1000\u103a\u1014\u1019\u103a\u1018\u102c\u101e\u1 #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u1000\u102d\u102f\u101e\u103d\u102c\u1038\u101c\u100a\u103a\u1015\u1010\u103a +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=\u101e\u1010\u102d\u1015\u1031\u1038\u1001\u103b\u1000\u103a #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=\u1000\u1030\u1038\u1010\u1004\u103a #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po index 296634fbc0f..4d570829a07 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.po +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Bjørn Andreas, 2014 # lateralus, 2013 # Rune Fauske , 2013-2015 @@ -15,7 +16,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Norwegian Bokmål (Norway) (http://www.transifex.com/mbanzi/arduino-ide-15/language/nb_NO/)\n" "MIME-Version: 1.0\n" @@ -46,10 +47,20 @@ msgstr "'Tastatur' er kun støttet på Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mus' er kun støttet på Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(redigeres kun når Arduino ikke kjører)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir er ikke støttet lenger" @@ -311,10 +322,6 @@ msgstr "Stygg feil på linje: {0}" msgid "Bad file selected" msgstr "Ugyldig fil valgt" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Ugyldig fil eller ugyldig katalogstruktur for skissen" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskisk" @@ -323,15 +330,16 @@ msgstr "Baskisk" msgid "Belarusian" msgstr "Hviterussisk" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengalsk (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Kort" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -372,14 +380,14 @@ msgstr "Både NL & CR" msgid "Browse" msgstr "Bla i gjennom" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Byggemappen forsvant eller kunne ikke skrives til" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Innstillinger for bygging er endret, bygger alt på nytt" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarsk" @@ -443,10 +451,6 @@ msgstr "Se etter oppdateringer ved oppstart" msgid "Chinese (China)" msgstr "Kinesisk (Kina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Kinesisk (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Kinesisk (Taiwan)" @@ -455,14 +459,6 @@ msgstr "Kinesisk (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Kinesisk (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Kinesisk forenklet" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Kinesisk tradisjonell" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Klikk for en liste med linker til støttesider for uoffisielle kort " @@ -582,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Kunne ikke lese standard innstillinger.\nDu må installere Arduino på nytt." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Klarte ikke å lese fil med innstillinger fra forrige bygg, bygger alt på nytt." - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -613,10 +605,6 @@ msgstr "Kunne ikke omdøpe skissen. {2}" msgid "Could not replace {0}" msgstr "Kunne ikke erstatte {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Klarte ikke å skrive innstillinger for bygg til fil." - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Kunne ikke arkivere skisse" @@ -644,18 +632,10 @@ msgstr "Kroatisk" msgid "Cut" msgstr "Klipp ut" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tsjekkisk" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Tsjekkisk (Tsjekkisk Republikk)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dansk" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dansk (Danmark)" @@ -927,6 +907,18 @@ msgstr "Estlandsk (Estland)" msgid "Examples" msgstr "Eksempler" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1155,6 +1147,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Ugyldig bibliotek i {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiensk" @@ -1179,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1192,12 +1193,13 @@ msgstr "Litauisk" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1216,8 +1218,9 @@ msgstr "Marathi" msgid "Message" msgstr "Melding" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1249,10 +1252,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Navn på ny fil:" @@ -1297,10 +1296,6 @@ msgstr "Nei" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Ingen kort valgt, vennligst velg et kort fra Verktøy > Kort menyen." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Ingen endringer nødvendig for autoformatering." @@ -1364,18 +1359,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norsk bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1435,6 +1422,11 @@ msgstr "Persisk" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1532,11 +1524,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Problem ved henting av datamappe" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Feil under flytting av {0} til byggemappen" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1555,10 +1542,19 @@ msgstr "Prosessor" msgid "Programmer" msgstr "Programmerer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Avslutt" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Gjør om" @@ -1610,6 +1606,16 @@ msgstr "Erstatt med:" msgid "Romanian" msgstr "Rumensk" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russisk" @@ -1715,6 +1721,11 @@ msgstr "Fant ikke serieporten {0}.\nLast opp på nytt med en anne serieport?" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1830,10 +1841,6 @@ msgstr "" msgid "Sunshine" msgstr "Solskinn" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1950,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2028,6 +2029,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2041,15 +2047,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Ufanget unntak av typen: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Angre" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2098,10 +2109,6 @@ msgstr "Laster opp til I/O kort..." msgid "Uploading..." msgstr "Laster opp..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Finn i utvalg" @@ -2176,6 +2183,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Besøk Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2219,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2473,6 +2496,16 @@ msgstr "{0} filer ble lagt til skissen." msgid "{0} libraries" msgstr "{0} biblioteker" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties index d4d9a3992fc..741c34f71a4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nb_NO.properties @@ -6,11 +6,12 @@ # Translators: # Translators: # Translators: +# Translators: # Bj\u00f8rn Andreas, 2014 # lateralus, 2013 # Rune Fauske , 2013-2015 # Rune Fauske , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Norwegian Bokm\u00e5l (Norway) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nb_NO/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nb_NO\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Norwegian Bokm\u00e5l (Norway) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nb_NO/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nb_NO\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (krever omstart av Arduino) @@ -29,9 +30,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mus' er kun st\u00f8ttet p\u00e5 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redigeres kun n\u00e5r Arduino ikke kj\u00f8rer) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir er ikke st\u00f8ttet lenger @@ -215,22 +222,20 @@ Bad\ error\ line\:\ {0}=Stygg feil p\u00e5 linje\: {0} #: Editor.java:2136 Bad\ file\ selected=Ugyldig fil valgt -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Ugyldig fil eller ugyldig katalogstruktur for skissen - #: ../../../processing/app/Preferences.java:149 Basque=Baskisk #: ../../../processing/app/Preferences.java:139 Belarusian=Hviterussisk -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengalsk (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Kort +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Kort {0}\:{1}\:{2} definerer ikke en ''build.board'' innstilling. Automatisk satt til\: {3} @@ -260,12 +265,12 @@ Both\ NL\ &\ CR=B\u00e5de NL & CR #: Preferences.java:81 Browse=Bla i gjennom -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Byggemappen forsvant eller kunne ikke skrives til - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Innstillinger for bygging er endret, bygger alt p\u00e5 nytt +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarsk @@ -314,21 +319,12 @@ Check\ for\ updates\ on\ startup=Se etter oppdateringer ved oppstart #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Kinesisk (Kina) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Kinesisk (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Kinesisk (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Kinesisk (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Kinesisk forenklet - -#: Preferences.java:89 -Chinese\ Traditional=Kinesisk tradisjonell - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Klikk for en liste med linker til st\u00f8ttesider for uoffisielle kort @@ -413,9 +409,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunne ikke lese standard innstillinger.\nDu m\u00e5 installere Arduino p\u00e5 nytt. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Klarte ikke \u00e5 lese fil med innstillinger fra forrige bygg, bygger alt p\u00e5 nytt. - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Kunne ikke fjerne gammel versjon av {0} @@ -437,9 +430,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kunne ikke omd\u00f8pe skissen. {2} #, java-format Could\ not\ replace\ {0}=Kunne ikke erstatte {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Klarte ikke \u00e5 skrive innstillinger for bygg til fil. - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kunne ikke arkivere skisse @@ -458,15 +448,9 @@ Croatian=Kroatisk #: Editor.java:1149 Editor.java:2699 Cut=Klipp ut -#: ../../../processing/app/Preferences.java:83 -Czech=Tsjekkisk - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Tsjekkisk (Tsjekkisk Republikk) -#: Preferences.java:90 -Danish=Dansk - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Dansk (Danmark) @@ -670,6 +654,15 @@ Estonian\ (Estonia)=Estlandsk (Estland) #: Editor.java:516 Examples=Eksempler +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -835,6 +828,10 @@ Indonesian=Indonesisk #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Ugyldig bibliotek i {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiensk @@ -853,6 +850,9 @@ Latvian=Latvisk #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -863,12 +863,13 @@ Lithuaninan=Litauisk #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -881,8 +882,9 @@ Marathi=Marathi #: Base.java:2112 Message=Melding -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -906,9 +908,6 @@ Moving=Flytter #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Navn p\u00e5 ny fil\: @@ -942,9 +941,6 @@ No=Nei #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Ingen kort valgt, vennligst velg et kort fra Verkt\u00f8y > Kort menyen. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Ingen endringer n\u00f8dvendig for autoformatering. @@ -993,15 +989,9 @@ No\ reference\ available\ for\ "{0}"=Ingen referanse tilgjengelig for "{0}" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norsk bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Ikke nok minne; se\nhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips til hvordan man kan redusere st\u00f8rrelsen @@ -1045,6 +1035,10 @@ Persian=Persisk #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1118,10 +1112,6 @@ Problem\ Setting\ the\ Platform=Problemer under setting av platform #: Base.java:1673 Problem\ getting\ data\ folder=Problem ved henting av datamappe -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Feil under flytting av {0} til byggemappen - #: 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. @@ -1134,9 +1124,16 @@ Processor=Prosessor #: Editor.java:704 Programmer=Programmerer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Avslutt +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Gj\u00f8r om @@ -1176,6 +1173,14 @@ Replace\ with\:=Erstatt med\: #: Preferences.java:113 Romanian=Rumensk +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russisk @@ -1253,6 +1258,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1333,9 +1342,6 @@ Spanish=Spansk #: Base.java:540 Sunshine=Solskinn -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1400,9 +1406,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Denne filen har allerede blitt kopiert til den\nlokasjonen som du pr\u00f8ver \u00e5 legge den til.\nKan'ke gj\u00f8re ikkeno'. @@ -1454,6 +1457,10 @@ Ukrainian=Ukrainsk #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1464,13 +1471,17 @@ Ukrainian=Ukrainsk #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Ufanget unntak av typen\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Angre +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Uspesifisert platform er ikke lenger tilgjengelig.\nLegg til "launcher\=/sti/til/app" i preferences.txt for \u00e5 kunne \u00e5pne URLer og mapper. @@ -1505,9 +1516,6 @@ Uploading\ to\ I/O\ Board...=Laster opp til I/O kort... #: Sketch.java:1622 Uploading...=Laster opp... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Finn i utvalg @@ -1565,6 +1573,14 @@ Verify\ code\ after\ upload=Sjekk kode etter opplasting #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f8k Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1594,6 +1610,9 @@ Warning=Advarsel #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1754,6 +1773,14 @@ version\ {0}=versjon {0} #, java-format {0}\ libraries={0} biblioteker +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} returnerte {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.po b/arduino-core/src/processing/app/i18n/Resources_ne.po index e376ec72495..ff4519f9c97 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.po +++ b/arduino-core/src/processing/app/i18n/Resources_ne.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Paras Nath Chaudhary , 2013 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Nepali (http://www.transifex.com/mbanzi/arduino-ide-15/language/ne/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -320,15 +327,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -440,10 +448,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -452,14 +456,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -641,18 +629,10 @@ msgstr "" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "" msgid "Examples" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "इटालियन " @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,12 +1190,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1213,8 +1215,9 @@ msgstr "" msgid "Message" msgstr "सन्देश " -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1294,10 +1293,6 @@ msgstr "होइन " msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1361,18 +1356,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1607,6 +1603,16 @@ msgstr "" msgid "Romanian" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1712,6 +1718,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2038,13 +2044,18 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 +#: Editor.java:1133 Editor.java:1355 +msgid "Undo" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 #, java-format -msgid "Uncaught exception type: {0}" +msgid "Unhandled type {0} in context key {1}" msgstr "" -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" msgstr "" #: Platform.java:168 @@ -2095,10 +2106,6 @@ msgstr "" msgid "Uploading..." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2173,6 +2180,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ne.properties b/arduino-core/src/processing/app/i18n/Resources_ne.properties index 87a37d052dc..68f49fc970d 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ne.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ne.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Paras Nath Chaudhary , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Nepali (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ne/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ne\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Nepali (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ne/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ne\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Arabic=\u0905\u0930\u092c\u0940 #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -257,12 +262,12 @@ Arabic=\u0905\u0930\u092c\u0940 #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -311,21 +316,12 @@ Cancel=\u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0 #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -434,9 +427,6 @@ Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0 #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -455,15 +445,9 @@ Could\ not\ delete\ {0}={0} \u0930\u0926\u094d\u0926 \u0917\u0930\u094d\u0928\u0 #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -!Danish= - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Error=\u0924\u094d\u0930\u0941\u091f\u0940 #: Editor.java:516 !Examples= +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Hindi=\u0939\u093f\u0928\u094d\u0926\u0940 #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0907\u091f\u093e\u0932\u093f\u092f\u0928 @@ -850,6 +847,9 @@ Korean=\u0915\u094b\u0930\u093f\u092f\u0928 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Korean=\u0915\u094b\u0930\u093f\u092f\u0928 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Korean=\u0915\u094b\u0930\u093f\u092f\u0928 #: Base.java:2112 Message=\u0938\u0928\u094d\u0926\u0947\u0936 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -903,9 +905,6 @@ Message=\u0938\u0928\u094d\u0926\u0947\u0936 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -939,9 +938,6 @@ No=\u0939\u094b\u0907\u0928 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -990,15 +986,9 @@ No=\u0939\u094b\u0907\u0928 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1042,6 +1032,10 @@ Open...=\u0916\u094b\u0932\u094d\u0928\u0941\u0939\u094b\u0938 #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Previous=\u092a\u0942\u0930\u094d\u0935 #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1131,9 +1121,16 @@ Previous=\u092a\u0942\u0930\u094d\u0935 #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 !Quit= +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1173,6 +1170,14 @@ Previous=\u092a\u0942\u0930\u094d\u0935 #: Preferences.java:113 !Romanian= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1250,6 +1255,10 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: Base.java:540 !Sunshine= -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1397,9 +1403,6 @@ Save=\u092c\u091a\u0924 \u0917\u0930\u094d\u0928\u0941\u0939\u094b\u0938 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1451,6 +1454,10 @@ Time\ for\ a\ Break=\u092c\u093f\u0936\u094d\u0930\u093e\u092e \u0938\u092e\u092 #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1461,13 +1468,17 @@ Time\ for\ a\ Break=\u092c\u093f\u0936\u094d\u0930\u093e\u092e \u0938\u092e\u092 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 !Undo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1502,9 +1513,6 @@ Time\ for\ a\ Break=\u092c\u093f\u0936\u094d\u0930\u093e\u092e \u0938\u092e\u092 #: Sketch.java:1622 !Uploading...= -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1562,6 +1570,14 @@ Verify=\u092a\u094d\u0930\u092e\u093e\u0923\u093f\u0924 \u0917\u0930\u094d\u0928 #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1591,6 +1607,9 @@ Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ Yes=\u0939\u094b #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.po b/arduino-core/src/processing/app/i18n/Resources_nl.po index 7b08a91522b..f1a68f4d623 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl.po @@ -6,7 +6,8 @@ # Translators: # Translators: # Translators: -# MrWhammy , 2013 +# Translators: +# MrWhammy , 2013,2015 # MrWhammy , 2012 # devMaeb , 2014 # Jan Verheijen , 2014 @@ -17,8 +18,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" +"PO-Revision-Date: 2015-09-23 13:34+0000\n" +"Last-Translator: MrWhammy \n" "Language-Team: Dutch (http://www.transifex.com/mbanzi/arduino-ide-15/language/nl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -33,12 +34,12 @@ msgstr "(herstart van Arduino nodig)" #: ../../../processing/app/debug/Compiler.java:529 #, java-format msgid " Not used: {0}" -msgstr "" +msgstr "Niet gebruikt: {0}" #: ../../../processing/app/debug/Compiler.java:525 #, java-format msgid " Used: {0}" -msgstr "" +msgstr "Gebruikt: {0}" #: debug/Compiler.java:455 msgid "'Keyboard' only supported on the Arduino Leonardo" @@ -48,19 +49,29 @@ msgstr "'Keyboard' kan alleen met de Arduino Leonardo worden gebruikt" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' kan alleen met de Arduino Leonardo worden gebruikt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "De 'arch' map wordt niet meer ondersteund! Ga naar http://goo.gl/gfFJzU voor meer informatie" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(alleen bewerken wanneer Arduino niet wordt uitgevoerd)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "(legacy)" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" -msgstr "" +msgstr "--curdir wordt niet meer ondersteund" #: ../../../processing/app/Base.java:468 msgid "" "--verbose, --verbose-upload and --verbose-build can only be used together " "with --verify or --upload" -msgstr "" +msgstr "--verbose, --verbose-upload en --verbose-build kunnen enkel in combinatie met --verify of --upload worden gebruikt" #: Sketch.java:746 msgid ".pde -> .ino" @@ -69,18 +80,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Er is een update beschikbaar voor enkele van je {0}borden{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Er is een update beschikbaar voor enkele van je {0}borden{1} en {2}bibliotheken{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Er is een update beschikbaar voor enkele van je {0}bibliotheken{1}" #: Editor.java:2053 msgid "" @@ -114,11 +125,11 @@ msgstr "Er is een nieuwe versie van Arduino beschikbaar.\nWilt u naar de Arduino #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format msgid "A newer {0} package is available" -msgstr "" +msgstr "Er is een nieuwere {0} package beschikbaar" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "Een submap van je schetsboek is geen geldige bibliotheek" #: Editor.java:1116 msgid "About Arduino" @@ -126,7 +137,7 @@ msgstr "Over Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr ".ZIP Bibliotheek toevoegen..." #: Editor.java:650 msgid "Add File..." @@ -134,11 +145,11 @@ msgstr "Bestand toevoegen..." #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 msgid "Additional Boards Manager URLs" -msgstr "" +msgstr "Additionele Bordenbeheerder URLs" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 msgid "Additional Boards Manager URLs: " -msgstr "" +msgstr "Additionele Bordenbeheerder URLs" #: ../../../../../app/src/processing/app/Preferences.java:161 msgid "Afrikaans" @@ -152,7 +163,7 @@ msgstr "Albanees" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 msgid "All" -msgstr "" +msgstr "Alle" #: tools/FixEncoding.java:77 msgid "" @@ -163,21 +174,21 @@ msgstr "Er is een fout opgetreden bij het repareren van de bestandscodering.\nPr #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 msgid "An error occurred while updating libraries index!" -msgstr "" +msgstr "Er is een fout opgetreden bij het bijwerken van de index van de bibliotheken" #: ../../../processing/app/BaseNoGui.java:528 msgid "An error occurred while uploading the sketch" -msgstr "" +msgstr "Er is een fout opgetreden bij het uploaden van de schets" #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 msgid "An error occurred while verifying the sketch" -msgstr "" +msgstr "Er is een fout opgetreden bij het verifiëren van de schets" #: ../../../processing/app/BaseNoGui.java:521 msgid "An error occurred while verifying/uploading the sketch" -msgstr "" +msgstr "Er is een fout opgetreden bij het verifiëren/uploaden van de schets" #: Base.java:228 msgid "" @@ -223,7 +234,7 @@ msgstr "Arduino AVR-borden" msgid "" "Arduino can only open its own sketches\n" "and other files ending in .ino or .pde" -msgstr "" +msgstr "Arduino kan enkel z'n eigen schetsen en \nandere bestanden eindigend op .ino or .pde openen" #: Base.java:1682 msgid "" @@ -270,7 +281,7 @@ msgstr "Argument vereist voor --preferences-file" #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format msgid "Argument required for {0}" -msgstr "" +msgstr "Argument vereist voor {0}" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" @@ -294,11 +305,11 @@ msgstr "Automatische opmaak voltooid." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Instellingen van de proxy automatisch detecteren" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "URL voor de automatische proxy configuratie:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -313,10 +324,6 @@ msgstr "Ernstige fout regel: {0}" msgid "Bad file selected" msgstr "Foutief bestand geselecteerd" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskisch" @@ -325,15 +332,16 @@ msgstr "Baskisch" msgid "Belarusian" msgstr "Witrussisch" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengaals (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Board" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "Bord {0} (platform {1}, package {2}) ongekend" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -347,20 +355,20 @@ msgstr "Board:" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Boards Manager" -msgstr "" +msgstr "Bordenbeheerder" #: ../../../../../app/src/processing/app/Base.java:1320 msgid "Boards Manager..." -msgstr "" +msgstr "Bordenbeheerder..." #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 msgid "Boards included in this package:" -msgstr "" +msgstr "Borden in deze package:" #: ../../../processing/app/debug/Compiler.java:1273 #, java-format msgid "Bootloader file specified but missing: {0}" -msgstr "" +msgstr "Bootloader bestand gespecifieerd maar niet gevonden: {0}" #: ../../../processing/app/Preferences.java:140 msgid "Bosnian" @@ -374,14 +382,14 @@ msgstr "Zowel NL als CR" msgid "Browse" msgstr "Bladeren" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "De map met bouwpogingen is verdwenen of er kon niet naar geschreven worden" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Build-opties gewijzigd, alles wordt opnieuw gebuild" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "Ingebouwde Voorbeelden" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgaars" @@ -400,7 +408,7 @@ msgstr "Bootloader naar I/O-board branden (dit kan even duren)..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "De CRC komt niet overeen. Het bestand is corrupt." #: ../../../processing/app/Base.java:379 #, java-format @@ -410,7 +418,7 @@ msgstr "" #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 msgid "Can't find the sketch in the specified path" -msgstr "" +msgstr "Kan de schets niet vinden op de gespecifieerde locatie" #: ../../../processing/app/Preferences.java:92 msgid "Canadian French" @@ -445,10 +453,6 @@ msgstr "Tijdens het opstarten op updates controleren" msgid "Chinese (China)" msgstr "Chinees (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinees (Hongkong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinees (Taiwan)" @@ -457,17 +461,9 @@ msgstr "Chinees (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinees (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinees Vereenvoudigd" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinees Traditioneel" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" -msgstr "" +msgstr "Klik voor een lijst van niet-officiële ondersteuningsURLS" #: Editor.java:521 Editor.java:2024 msgid "Close" @@ -479,7 +475,7 @@ msgstr "Opmerking maken/opmerking wissen" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "Compiler waarschuwingen:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -576,7 +572,7 @@ msgstr "De schets kan niet opnieuw worden opgeslagen." msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Kan kleurenschema-instellingen niet lezen.\nU moet Arduino opnieuw installeren." #: Preferences.java:219 msgid "" @@ -584,10 +580,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Kan de standaard instellingen niet lezen.\nU moet Arduino opnieuw installeren." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Kan het vroegere bestand met build-voorkeuren niet lezen. Alles wordt opnieuw opgebouwd." - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +607,6 @@ msgstr "Kan schets (2) niet hernoemen." msgid "Could not replace {0}" msgstr "Kan {0} niet vervangen" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Kan het bestand met build-voorkeuren niet schrijven" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Kan de schets niet archiveren" @@ -646,18 +634,10 @@ msgstr "Kroatisch" msgid "Cut" msgstr "Knippen" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tsjechisch" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Tsjechisch (Tsjechië)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Deens" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Deens (Denemarken)" @@ -668,7 +648,7 @@ msgstr "Insprong verkleinen" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 msgid "Default" -msgstr "" +msgstr "Standaard" #: EditorHeader.java:314 Sketch.java:591 msgid "Delete" @@ -693,7 +673,7 @@ msgstr "Regelnummers weergeven" msgid "" "Do you want to remove {0}?\n" "If you do so you won't be able to use {0} any more." -msgstr "" +msgstr "Wilt u {0} verwijderen?\nU zal {0} niet meer kunnen gebruiken." #: Editor.java:2064 msgid "Don't Save" @@ -722,7 +702,7 @@ msgstr "Afdrukken voltooid." #: ../../../processing/app/BaseNoGui.java:514 msgid "Done uploading" -msgstr "" +msgstr "Uploaden voltooid" #: Editor.java:2395 Editor.java:2431 msgid "Done uploading." @@ -731,29 +711,29 @@ msgstr "Uploaden voltooid." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format msgid "Downloaded {0}kb of {1}kb." -msgstr "" +msgstr "{0}kb van {1}kb gedownload." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "Boarddefinities downloaden." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Index van bibliotheken downloaden..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Bibliotheek downloaden: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Index van platformen downloaden..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format msgid "Downloading tools ({0}/{1})." -msgstr "" +msgstr "Hulpmiddelen downloaden ({0}/{1})" #: Preferences.java:91 msgid "Dutch" @@ -765,7 +745,7 @@ msgstr "Nederlands (Nederland)" #: ../../../../../app/src/processing/app/Editor.java:1309 msgid "Edison Help" -msgstr "" +msgstr "Edison Help" #: Editor.java:1130 msgid "Edit" @@ -781,7 +761,7 @@ msgstr "Taal voor editor:" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 msgid "Enable Code Folding" -msgstr "" +msgstr "Code inklappen inschakelen" #: Preferences.java:92 msgid "English" @@ -794,11 +774,11 @@ msgstr "Engels (Verenigd Koninkrijk)" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 msgid "Enter a comma separated list of urls" -msgstr "" +msgstr "Geef een lijst van url's in, gescheiden door komma's" #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 msgid "Enter additional URLs, one for each row" -msgstr "" +msgstr "Geef additionele URL's in, één per rij" #: Editor.java:1062 msgid "Environment" @@ -821,7 +801,7 @@ msgstr "Fout bij het compileren." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format msgid "Error downloading {0}" -msgstr "" +msgstr "Fout bij het downloaden van {0}" #: Base.java:1674 msgid "Error getting the Arduino data folder." @@ -849,7 +829,7 @@ msgstr "Fout bij het openen van de seriële poort \"{0}\"" msgid "" "Error opening serial port ''{0}''. Try consulting the documentation at " "http://playground.arduino.cc/Linux/All#Permission" -msgstr "" +msgstr "Probleem bij het openen van de seriële poort ''{0}''. Bekijk de documentatie op http://playground.arduino.cc/Linux/All#Permission" #: Preferences.java:277 msgid "Error reading preferences" @@ -866,7 +846,7 @@ msgstr "Fout bij het inlezen van het voorkeurenbestand. Gelieve {0}\nte verwijde #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 msgid "Error running post install script" -msgstr "" +msgstr "Fout bij het uitvoeren van een script na installatie" #: ../../../cc/arduino/packages/DiscoveryManager.java:25 msgid "Error starting discovery method: " @@ -887,7 +867,7 @@ msgstr "Fout bij het branden van de bootloader: configuratie-parameter '{0}' ont #: ../../../../../app/src/processing/app/Editor.java:1940 msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" +msgstr "Fout bij het compileren: ontbrekende configuratieparameter '{0}'" #: SketchCode.java:83 #, java-format @@ -900,7 +880,7 @@ msgstr "Fout bij het afdrukken." #: ../../../processing/app/BaseNoGui.java:528 msgid "Error while uploading" -msgstr "" +msgstr "Fout bij het uploaden" #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -911,11 +891,11 @@ msgstr "Fout bij het uploaden: configuratie-parameter '{0}' ontbreekt" #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 msgid "Error while verifying" -msgstr "" +msgstr "Fout bij het verifiëren" #: ../../../processing/app/BaseNoGui.java:521 msgid "Error while verifying/uploading" -msgstr "" +msgstr "Fout bij het verifiëren/uploaden" #: Preferences.java:93 msgid "Estonian" @@ -929,6 +909,18 @@ msgstr "Estisch (Estland)" msgid "Examples" msgstr "Voorbeelden" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "De export werd afgebroken, de wijzigingen moeten eerst worden opgeslagen." + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -948,7 +940,7 @@ msgstr "Filipijns" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 msgid "Filter your search..." -msgstr "" +msgstr "Filter je zoekresultaten..." #: FindReplace.java:124 FindReplace.java:127 msgid "Find" @@ -981,13 +973,13 @@ msgstr "Fins" #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 msgid "Fix Encoding & Reload" -msgstr "Codering repareren en opnieuw laden" +msgstr "Codering herstellen en opnieuw laden" #: ../../../processing/app/BaseNoGui.java:318 msgid "" "For information on installing libraries, see: " "http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" +msgstr "Ga naar http://www.arduino.cc/en/Guide/Libraries voor meer informatie over het installeren van bibliotheken\n" #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -1012,7 +1004,7 @@ msgstr "Galicisch (Spanje)" #: ../../../../../app/src/processing/app/Editor.java:1288 msgid "Galileo Help" -msgstr "" +msgstr "Galileo Help" #: ../../../processing/app/Preferences.java:94 msgid "Georgian" @@ -1056,7 +1048,7 @@ msgstr "Hindi" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Hostnaam:" #: Sketch.java:295 msgid "" @@ -1097,12 +1089,12 @@ msgstr "In Arduino 1.0 is de standaard bestandsextensie veranderd van .pde naar #: ../../../../../app/src/processing/app/Editor.java:778 msgid "Include Library" -msgstr "" +msgstr "Bibliotheek gebruiken" #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 msgid "Incorrect IDE installation folder" -msgstr "" +msgstr "Foutieve IDE installatiemap" #: Editor.java:1216 Editor.java:2757 msgid "Increase Indent" @@ -1123,40 +1115,45 @@ msgstr "" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 msgid "Install" -msgstr "" +msgstr "Installeren" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 msgid "Installation completed!" -msgstr "" +msgstr "Installatie voltooid!" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 msgid "Installed" -msgstr "" +msgstr "Geïnstalleerd" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 msgid "Installing boards..." -msgstr "" +msgstr "Boards installeren..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format msgid "Installing library: {0}" -msgstr "" +msgstr "Bibliotheek installeren: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format msgid "Installing tools ({0}/{1})..." -msgstr "" +msgstr "Hulpmiddelen installeren ({0}/{1})..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 msgid "Installing..." -msgstr "" +msgstr "Installeren..." #: ../../../processing/app/Base.java:1204 #, java-format msgid "Invalid library found in {0}: {1}" msgstr "Ongeldige bibliotheek gevonden in {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "Ongeldige citatie: afsluitend karakter [{0}] niet gevonden." + #: Preferences.java:102 msgid "Italian" msgstr "Italiaans" @@ -1175,16 +1172,20 @@ msgstr "Lets" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Bibliotheekbeheerder" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" +msgstr "Bibliotheek toegevoegd aan uw bibliotheken. Controleer het menu 'Bibliotheek gebruiken'" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "De bibliotheek kan niet zowel de 'src' als 'utility' mappen gebruiken." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" -msgstr "" +msgstr "De bibliotheek is reeds geïnstalleerd: {0} versie {1}" #: Preferences.java:106 msgid "Lithuaninan" @@ -1192,23 +1193,24 @@ msgstr "Litouws" #: ../../../../../app/src/processing/app/Base.java:132 msgid "Loading configuration..." -msgstr "" +msgstr "Configuratie inladen..." + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "Op zoek naar recepten zoals {0}*{1}" #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Maleis (Maleisië)" +msgstr "Weinig geheugen beschikbaar, er kunnen zich stabiliteitsproblemen voordoen" #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." -msgstr "" +msgstr "Bibliotheken beheren..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Manuele proxy configuratie" #: Preferences.java:107 msgid "Marathi" @@ -1218,9 +1220,10 @@ msgstr "Marathi" msgid "Message" msgstr "Boodschap" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "De */ aan het einde van een /* opmerking */ ontbreekt" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "'{0}' ontbreekt in de bibliotheek in {1}" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1228,7 +1231,7 @@ msgstr "Modus wordt niet ondersteund" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 msgid "More" -msgstr "" +msgstr "Meer" #: Preferences.java:449 msgid "More preferences can be edited directly in the file" @@ -1245,16 +1248,12 @@ msgstr "Meerdere bestanden worden niet ondersteund" #: ../../../processing/app/debug/Compiler.java:520 #, java-format msgid "Multiple libraries were found for \"{0}\"" -msgstr "" +msgstr "Meerdere bibliotheken gevonden voor \"{0}\"" #: ../../../processing/app/Base.java:395 msgid "Must specify exactly one sketch file" msgstr "U moet precies één schetsbestand opgeven" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Naam voor het nieuwe bestand:" @@ -1265,7 +1264,7 @@ msgstr "Nepalees" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Netwerk" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -1297,11 +1296,7 @@ msgstr "Nee" #: ../../../processing/app/debug/Compiler.java:158 msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board" +msgstr "Geen autorisatiegegevens gevonden" #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." @@ -1309,11 +1304,11 @@ msgstr "Geen aanpassingen noodzakelijk voor automatische opmaak." #: ../../../processing/app/BaseNoGui.java:665 msgid "No command line parameters found" -msgstr "" +msgstr "Geen parameters gevonden op de commandolijn" #: ../../../processing/app/debug/Compiler.java:200 msgid "No compiled sketch found" -msgstr "" +msgstr "Geen gecompileerde schets gevonden" #: Editor.java:373 msgid "No files were added to the sketch." @@ -1333,7 +1328,7 @@ msgstr "Geen parameters" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Geen proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1364,20 +1359,12 @@ msgstr "Geen geldige hardware-definities gevonden in map {0}." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Noors" +msgstr "Geen" #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Noors Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Noors Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1403,7 +1390,7 @@ msgstr "Openen" #: ../../../../../app/src/processing/app/Editor.java:625 msgid "Open Recent" -msgstr "" +msgstr "Open Recent" #: Editor.java:2688 msgid "Open URL" @@ -1437,13 +1424,18 @@ msgstr "Perzisch" msgid "Persian (Iran)" msgstr "Perzisch (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" -msgstr "" +msgstr "Bevestig het verwijderen van de boards" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 msgid "Please confirm library deletion" -msgstr "" +msgstr "Bevestig het verwijderen van de bibliotheek" #: debug/Compiler.java:408 msgid "Please import the SPI library from the Sketch > Import Library menu." @@ -1456,7 +1448,7 @@ msgstr "Importeer de Wire-bibliotheek via het menu Schets > Bibliotheek importer #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" +msgstr "Kies een programmer in het menu Hulpmiddelen->Programmer" #: Preferences.java:110 msgid "Polish" @@ -1468,7 +1460,7 @@ msgstr "Poort" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Poortnummer:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1488,7 +1480,7 @@ msgstr "Voorkeuren" #: ../../../../../app/src/processing/app/Base.java:297 msgid "Preparing boards..." -msgstr "" +msgstr "Boards voorbereiden..." #: FindReplace.java:123 FindReplace.java:128 msgid "Previous" @@ -1534,11 +1526,6 @@ msgstr "Probleem met het openen van bestanden in de map" msgid "Problem getting data folder" msgstr "Probleem met het openen van de data-map." -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Er is een probleem opgetreden bij het verplaatsen van {0} naar de build-map" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1544,19 @@ msgstr "Processor" msgid "Programmer" msgstr "Programmer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "Voortgang: {0}" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Afsluiten" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Opnieuw doen" @@ -1571,17 +1567,17 @@ msgstr "Naslagwerk" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 msgid "Remove" -msgstr "" +msgstr "Verwijderen" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format msgid "Removing library: {0}" -msgstr "" +msgstr "Bibliotheek verwijderen: {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 msgid "Removing..." -msgstr "" +msgstr "Verwijderen..." #: EditorHeader.java:300 msgid "Rename" @@ -1612,6 +1608,16 @@ msgstr "Vervangen door:" msgid "Romanian" msgstr "Roemeens" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "Recept uitvoeren: {0}" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "Uitvoeren: {0}" + #: Preferences.java:114 msgid "Russian" msgstr "Russisch" @@ -1640,7 +1646,7 @@ msgstr "Schetsmap opslaan als..." #: ../../../../../app/src/processing/app/Preferences.java:425 msgid "Save when verifying or uploading" -msgstr "" +msgstr "Opslaan bij het verifiëren of uploaden" #: Editor.java:2270 Editor.java:2308 msgid "Saving..." @@ -1648,7 +1654,7 @@ msgstr "Opslaan..." #: ../../../processing/app/FindReplace.java:131 msgid "Search all Sketch Tabs" -msgstr "" +msgstr "Zoek in alle Schets Tabbladen" #: Base.java:1909 msgid "Select (or create new) folder for sketches..." @@ -1673,7 +1679,7 @@ msgstr "Kies een nieuwe schetsboeklocatie:" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 msgid "Select version" -msgstr "" +msgstr "Selecteer versie" #: ../../../processing/app/debug/Compiler.java:146 msgid "Selected board depends on '{0}' core (not installed)." @@ -1681,11 +1687,11 @@ msgstr "Geselecteerde board is afhankelijk van '{0}' versie (niet geïnstalleerd #: ../../../../../app/src/processing/app/Base.java:374 msgid "Selected board is not available" -msgstr "" +msgstr "Het geselecteerde board is niet beschikbaar" #: ../../../../../app/src/processing/app/Base.java:423 msgid "Selected library is not available" -msgstr "" +msgstr "De geselecteerde bibliotheek is niet beschikbaar" #: SerialMonitor.java:93 msgid "Send" @@ -1697,7 +1703,7 @@ msgstr "Seriële monitor" #: ../../../../../app/src/processing/app/Editor.java:804 msgid "Serial Plotter" -msgstr "" +msgstr "Seriële Plotter" #: Serial.java:194 #, java-format @@ -1717,9 +1723,14 @@ msgstr "Seriële poort {0} is niet gevonden.\nProbeer de upload met een andere s msgid "Serial ports" msgstr "Seriële poorten" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Instellingen" #: Base.java:1681 msgid "Settings issues" @@ -1788,7 +1799,7 @@ msgstr "Schetsboeklocatie:" #: ../../../processing/app/BaseNoGui.java:428 msgid "Sketchbook path not defined" -msgstr "" +msgstr "Geen pad gedefinieerd voor het schetsboek" #: ../../../../../app/src/processing/app/Preferences.java:185 msgid "Slovak" @@ -1822,20 +1833,16 @@ msgstr "Spaans" #: ../../../../../app/src/processing/app/Base.java:2333 msgid "Specified folder/zip file does not contain a valid library" -msgstr "" +msgstr "Zip-bestand of map bevat geen geldige bibliotheek" #: ../../../../../app/src/processing/app/Base.java:466 msgid "Starting..." -msgstr "" +msgstr "Starten..." #: Base.java:540 msgid "Sunshine" msgstr "Zonneschijn" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Zweeds" @@ -1858,7 +1865,7 @@ msgstr "De term 'BYTE' wordt niet langer ondersteund." #: ../../../processing/app/BaseNoGui.java:484 msgid "The --upload option supports only one file at a time" -msgstr "" +msgstr "De --upload optie ondersteunt slechts 1 bestand tegelijk" #: debug/Compiler.java:426 msgid "The Client class has been renamed EthernetClient." @@ -1950,13 +1957,7 @@ msgstr "De schetsboekmap bestaat niet meer.\nArduino zal overschakelen naar de s msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" +msgstr "De map voor uw schetsboek bevat uw kopie van de IDE.\nGelieve een andere map te kiezen voor uw schetsboek." #: Sketch.java:1075 msgid "" @@ -1982,7 +1983,7 @@ msgstr "Tijd voor een pauze" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format msgid "Tool {0} is not available for your operating system." -msgstr "" +msgstr "Hulpmiddel {0} is niet beschikbaar voor uw besturingssysteem." #: Editor.java:663 msgid "Tools" @@ -1990,7 +1991,7 @@ msgstr "Hulpmiddelen" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 msgid "Topic" -msgstr "" +msgstr "Onderwerp" #: Editor.java:1070 msgid "Troubleshooting" @@ -2003,7 +2004,7 @@ msgstr "Turks" #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 msgid "Type" -msgstr "" +msgstr "Type" #: ../../../processing/app/Editor.java:2507 msgid "Type board password to access its console" @@ -2030,28 +2031,38 @@ msgstr "Niet verbonden: nieuwe poging" msgid "Unable to connect: wrong password?" msgstr "Geen verbinding: verkeerde wachtwoord?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "Kan {0} niet vinden in {1}" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "De seriële monitor kan niet geopend worden" #: ../../../../../app/src/processing/app/Editor.java:2709 msgid "Unable to open serial plotter" -msgstr "" +msgstr "Kan seriële plotter niet openen" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Niet opgevangen exception type: {0}" +msgstr "Kan Arduino.cc niet bereiken, mogelijk door problemen met het netwerk." #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Ongedaan maken" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "Ongekende extensie voor schetsbestand: {0}" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2062,7 +2073,7 @@ msgstr "Onbekend platform, geen launcher beschikbaar.\nOm het openen van URLs of #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Bij te werken" #: UpdateCheck.java:111 msgid "Update" @@ -2074,7 +2085,7 @@ msgstr "Bij het opslaan de schetsbestanden aanpassen aan de nieuwe extensie (.pd #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 msgid "Updating list of installed libraries" -msgstr "" +msgstr "Lijst van geïnstalleerde bibliotheken bijwerken" #: EditorToolbar.java:41 Editor.java:545 msgid "Upload" @@ -2100,10 +2111,6 @@ msgstr "Bezig met uploaden naar I/O-board..." msgid "Uploading..." msgstr "Bezig met uploaden..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Selectie gebruiken voor zoekactie" @@ -2115,12 +2122,12 @@ msgstr "Externe editor gebruiken" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Gebruikersnaam:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" +msgstr "Bibliotheek {0} op versie {1} in map: {2} {3} wordt gebruikt" #: ../../../processing/app/debug/Compiler.java:94 #, java-format @@ -2142,33 +2149,33 @@ msgstr "Code na uploaden verifiëren" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Verifiëren/Compileren" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." -msgstr "" +msgstr "Verifiëren en uploaden..." #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 msgid "Verifying archive integrity..." -msgstr "" +msgstr "Integriteit van het archief verifiëren..." #: ../../../../../app/src/processing/app/Base.java:454 msgid "Verifying..." -msgstr "" +msgstr "Verifiëren..." #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Versie {0}" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 msgid "Version unknown" -msgstr "" +msgstr "Versie ongekend" #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format msgid "Version {0}" -msgstr "" +msgstr "Versie {0}" #: ../../../processing/app/Preferences.java:154 msgid "Vietnamese" @@ -2178,6 +2185,16 @@ msgstr "Vietnamees" msgid "Visit Arduino.cc" msgstr "Bezoek Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "WAARSCHUWING: Categorie '{0}' in bibliotheek {1} is niet geldig. Wordt gewijzigd naar '{2}'" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "WAARSCHUWING: Foutieve map {0} in bibliotheek '{1}'" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2198,21 +2215,21 @@ msgstr "" #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" +msgstr "Waarschuwing: bestand {0} verwijst naar een absoluut pad {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Waarschuwing: niet-vertrouwde bijdragen worden geforceerd vertrouwd" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Waarschuwing: uitvoering van het script ({0}) wordt geforceerd" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Waarschuwing: niet-vertrouwde bijdrage, uitvoering van het script ({0}) wordt overgeslaan" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -2221,6 +2238,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2264,7 +2287,7 @@ msgstr "U mag geen .cpp-bestand hebben met dezelfde naam als de schets." #: ../../../../../app/src/processing/app/Base.java:2312 msgid "You can't import a folder that contains your sketchbook" -msgstr "" +msgstr "Het is niet mogelijk een map te importeren die je schetsboek bevat" #: Sketch.java:421 msgid "" @@ -2303,13 +2326,13 @@ msgstr "U hebt voor vandaag de limiet bereikt voor het automatisch\nbenoemen van msgid "" "Your copy of the IDE is installed in a subfolder of your settings folder.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Uw kopie van de IDE bevindt zich in een submap van de map met instellingen.\nGelieve de IDE naar een andere map te verplaatsen." #: ../../../processing/app/BaseNoGui.java:771 msgid "" "Your copy of the IDE is installed in a subfolder of your sketchbook.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Uw kopie van de IDE bevindt zich in een submap van de map met je schetsboek.\nGelieve de IDE naar een andere map te verplaatsen." #: Base.java:2638 msgid "ZIP files or folders" @@ -2331,7 +2354,7 @@ msgid "" "older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " "to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" " bad characters to get rid of this warning." -msgstr "" +msgstr "\"{0}\" bevat niet-herkende karakters. Indien deze code met een oudere versie van Arduino is gemaakt, kan je 'Hulpmiddelen -> Codering herstellen en opnieuw laden' gebruiken om de schets bij te werken zodat hij de UTF-8 codering gebruikt. Indien niet zal je de foutieve karakters moeten verwijderen om deze waarschuwing te onderdrukken." #: debug/Compiler.java:409 msgid "" @@ -2406,7 +2429,7 @@ msgstr "ingeschakeld in Bestand > Voorkeuren." #: ../../../../../app/src/processing/app/Editor.java:1352 msgid "http://www.arduino.cc/" -msgstr "" +msgstr "http://www.arduino.cc/" #: UpdateCheck.java:118 msgid "http://www.arduino.cc/en/Main/Software" @@ -2447,23 +2470,23 @@ msgstr "uploaden" #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format msgid "version {0}" -msgstr "" +msgstr "versie {0}" #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format msgid "{0} - {1} | Arduino {2}" -msgstr "" +msgstr "{0} - {1} | Arduino {2}" #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format msgid "{0} file signature verification failed" -msgstr "" +msgstr "Verificatie van bestandshandtekening mislukt: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format msgid "{0} file signature verification failed. File ignored." -msgstr "" +msgstr "Verificatie van bestandshandtekening mislukt: {0}. Bestand genegeerd." #: Editor.java:380 #, java-format @@ -2473,7 +2496,17 @@ msgstr "{0} bestanden zijn toegevoegd aan de schets." #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format msgid "{0} libraries" -msgstr "" +msgstr "{0} bibliotheken" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "{0} moet een map zijn" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "Onbestaand patroon: {0}" #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_nl.properties b/arduino-core/src/processing/app/i18n/Resources_nl.properties index 2c806979a79..2d668f4a617 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl.properties @@ -6,24 +6,25 @@ # Translators: # Translators: # Translators: -# MrWhammy , 2013 +# Translators: +# MrWhammy , 2013,2015 # MrWhammy , 2012 # devMaeb , 2014 # Jan Verheijen , 2014 # jkf , 2012 # Robin van der Vliet , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:34+0000\nLast-Translator\: MrWhammy \nLanguage-Team\: Dutch (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(herstart van Arduino nodig) #: ../../../processing/app/debug/Compiler.java:529 #, java-format -!\ Not\ used\:\ {0}= +\ Not\ used\:\ {0}=Niet gebruikt\: {0} #: ../../../processing/app/debug/Compiler.java:525 #, java-format -!\ Used\:\ {0}= +\ Used\:\ {0}=Gebruikt\: {0} #: debug/Compiler.java:455 'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' kan alleen met de Arduino Leonardo worden gebruikt @@ -31,29 +32,35 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' kan alleen met de Arduino Leonardo worden gebruikt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=De 'arch' map wordt niet meer ondersteund\! Ga naar http\://goo.gl/gfFJzU voor meer informatie + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(alleen bewerken wanneer Arduino niet wordt uitgevoerd) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +(legacy)=(legacy) + #: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= +--curdir\ no\ longer\ supported=--curdir wordt niet meer ondersteund #: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= +--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload en --verbose-build kunnen enkel in combinatie met --verify of --upload worden gebruikt #: Sketch.java:746 .pde\ ->\ .ino=.pde -> .ino #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Er is een update beschikbaar voor enkele van je {0}borden{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Er is een update beschikbaar voor enkele van je {0}borden{1} en {2}bibliotheken{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Er is een update beschikbaar voor enkele van je {0}bibliotheken{1} #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Wilt u voor het sluiten de wijzigingen van deze schets
opslaan?

Indien u dit niet doet, gaan de wijzigingen verloren. @@ -75,25 +82,25 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ #: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 #, java-format -!A\ newer\ {0}\ package\ is\ available= +A\ newer\ {0}\ package\ is\ available=Er is een nieuwere {0} package beschikbaar #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Een submap van je schetsboek is geen geldige bibliotheek #: Editor.java:1116 About\ Arduino=Over Arduino #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=.ZIP Bibliotheek toevoegen... #: Editor.java:650 Add\ File...=Bestand toevoegen... #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= +Additional\ Boards\ Manager\ URLs=Additionele Bordenbeheerder URLs #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = +Additional\ Boards\ Manager\ URLs\:\ =Additionele Bordenbeheerder URLs #: ../../../../../app/src/processing/app/Preferences.java:161 Afrikaans=Afrikaans @@ -104,24 +111,24 @@ Albanian=Albanees #: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= +All=Alle #: tools/FixEncoding.java:77 An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Er is een fout opgetreden bij het repareren van de bestandscodering.\nProbeer deze schets niet op te slaan omdat een oudere versie\nmogelijk overschreven wordt. Gebruik Openen om de schets opnieuw te openen en probeer het nogmaals.\n #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= +An\ error\ occurred\ while\ updating\ libraries\ index\!=Er is een fout opgetreden bij het bijwerken van de index van de bibliotheken #: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= +An\ error\ occurred\ while\ uploading\ the\ sketch=Er is een fout opgetreden bij het uploaden van de schets #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= +An\ error\ occurred\ while\ verifying\ the\ sketch=Er is een fout opgetreden bij het verifi\u00ebren van de schets #: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= +An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Er is een fout opgetreden bij het verifi\u00ebren/uploaden van de schets #: Base.java:228 An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Er is een onbekende fout opgetreden bij het laden\nvan de platform-specifieke code voor uw machine. @@ -151,7 +158,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bits)-borden Arduino\ AVR\ Boards=Arduino AVR-borden #: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= +Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino kan enkel z'n eigen schetsen en \nandere bestanden eindigend op .ino or .pde openen #: Base.java:1682 Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino kan niet opstarten, omdat er geen map kan\nworden aangemaakt om de instellingen in op te slaan. @@ -184,7 +191,7 @@ Argument\ required\ for\ --preferences-file=Argument vereist voor --preferences- #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format -!Argument\ required\ for\ {0}= +Argument\ required\ for\ {0}=Argument vereist voor {0} #: ../../../processing/app/Preferences.java:137 Armenian=Armeens @@ -202,10 +209,10 @@ Auto\ Format=Automatische opmaak Auto\ Format\ finished.=Automatische opmaak voltooid. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Instellingen van de proxy automatisch detecteren #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=URL voor de automatische proxy configuratie\: #: SerialMonitor.java:110 Autoscroll=Autoscroll @@ -217,22 +224,20 @@ Bad\ error\ line\:\ {0}=Ernstige fout regel\: {0} #: Editor.java:2136 Bad\ file\ selected=Foutief bestand geselecteerd -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Baskisch #: ../../../processing/app/Preferences.java:139 Belarusian=Witrussisch -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengaals (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Board +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=Bord {0} (platform {1}, package {2}) ongekend + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Board {0}\:{1}\:{2} definieert geen ''build.board''-voorkeur. Auto-ingesteld op\: {3} @@ -241,17 +246,17 @@ Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-se Board\:\ =Board\: #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= +Boards\ Manager=Bordenbeheerder #: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= +Boards\ Manager...=Bordenbeheerder... #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= +Boards\ included\ in\ this\ package\:=Borden in deze package\: #: ../../../processing/app/debug/Compiler.java:1273 #, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= +Bootloader\ file\ specified\ but\ missing\:\ {0}=Bootloader bestand gespecifieerd maar niet gevonden\: {0} #: ../../../processing/app/Preferences.java:140 Bosnian=Bosnisch @@ -262,12 +267,12 @@ Both\ NL\ &\ CR=Zowel NL als CR #: Preferences.java:81 Browse=Bladeren -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=De map met bouwpogingen is verdwenen of er kon niet naar geschreven worden - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Build-opties gewijzigd, alles wordt opnieuw gebuild +#: ../../../../../app/src/processing/app/Base.java:1210 +Built-in\ Examples=Ingebouwde Voorbeelden + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgaars @@ -281,7 +286,7 @@ Burn\ Bootloader=Bootloader branden\n Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader naar I/O-board branden (dit kan even duren)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=De CRC komt niet overeen. Het bestand is corrupt. #: ../../../processing/app/Base.java:379 #, java-format @@ -289,7 +294,7 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader #: ../../../processing/app/BaseNoGui.java:504 #: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= +Can't\ find\ the\ sketch\ in\ the\ specified\ path=Kan de schets niet vinden op de gespecifieerde locatie #: ../../../processing/app/Preferences.java:92 Canadian\ French=Canadees Frans @@ -316,23 +321,14 @@ Check\ for\ updates\ on\ startup=Tijdens het opstarten op updates controleren #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinees (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinees (Hongkong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinees (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinees (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinees Vereenvoudigd - -#: Preferences.java:89 -Chinese\ Traditional=Chinees Traditioneel - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= +Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Klik voor een lijst van niet-offici\u00eble ondersteuningsURLS #: Editor.java:521 Editor.java:2024 Close=Sluiten @@ -341,7 +337,7 @@ Close=Sluiten Comment/Uncomment=Opmerking maken/opmerking wissen #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =Compiler waarschuwingen\: #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Bezig met het compileren van de schets... @@ -410,14 +406,11 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=De schets kan niet opnieuw worden opgeslagen. #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kan kleurenschema-instellingen niet lezen.\nU moet Arduino opnieuw installeren. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kan de standaard instellingen niet lezen.\nU moet Arduino opnieuw installeren. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Kan het vroegere bestand met build-voorkeuren niet lezen. Alles wordt opnieuw opgebouwd. - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Kan de oude versie van {0} niet verwijderen @@ -439,9 +432,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kan schets (2) niet hernoemen. #, java-format Could\ not\ replace\ {0}=Kan {0} niet vervangen -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Kan het bestand met build-voorkeuren niet schrijven - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kan de schets niet archiveren @@ -460,15 +450,9 @@ Croatian=Kroatisch #: Editor.java:1149 Editor.java:2699 Cut=Knippen -#: ../../../processing/app/Preferences.java:83 -Czech=Tsjechisch - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Tsjechisch (Tsjechi\u00eb) -#: Preferences.java:90 -Danish=Deens - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Deens (Denemarken) @@ -476,7 +460,7 @@ Danish\ (Denmark)=Deens (Denemarken) Decrease\ Indent=Insprong verkleinen #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= +Default=Standaard #: EditorHeader.java:314 Sketch.java:591 Delete=Verwijderen @@ -492,7 +476,7 @@ Display\ line\ numbers=Regelnummers weergeven #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 #, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= +Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=Wilt u {0} verwijderen?\nU zal {0} niet meer kunnen gebruiken. #: Editor.java:2064 Don't\ Save=Niet opslaan @@ -514,31 +498,31 @@ Done\ compiling.=Compileren voltooid. Done\ printing.=Afdrukken voltooid. #: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= +Done\ uploading=Uploaden voltooid #: Editor.java:2395 Editor.java:2431 Done\ uploading.=Uploaden voltooid. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 #, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= +Downloaded\ {0}kb\ of\ {1}kb.={0}kb van {1}kb gedownload. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=Boarddefinities downloaden. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=Index van bibliotheken downloaden... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=Bibliotheek downloaden\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=Index van platformen downloaden... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format -!Downloading\ tools\ ({0}/{1}).= +Downloading\ tools\ ({0}/{1}).=Hulpmiddelen downloaden ({0}/{1}) #: Preferences.java:91 Dutch=Nederlands @@ -547,7 +531,7 @@ Dutch=Nederlands Dutch\ (Netherlands)=Nederlands (Nederland) #: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= +Edison\ Help=Edison Help #: Editor.java:1130 Edit=Bewerken @@ -559,7 +543,7 @@ Editor\ font\ size\:\ =Editor lettertypegrootte\: Editor\ language\:\ =Taal voor editor\: #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= +Enable\ Code\ Folding=Code inklappen inschakelen #: Preferences.java:92 English=Engels @@ -569,10 +553,10 @@ English\ (United\ Kingdom)=Engels (Verenigd Koninkrijk) #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= +Enter\ a\ comma\ separated\ list\ of\ urls=Geef een lijst van url's in, gescheiden door komma's #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= +Enter\ additional\ URLs,\ one\ for\ each\ row=Geef additionele URL's in, \u00e9\u00e9n per rij #: Editor.java:1062 Environment=Omgeving @@ -590,7 +574,7 @@ Error\ compiling.=Fout bij het compileren. #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 #, java-format -!Error\ downloading\ {0}= +Error\ downloading\ {0}=Fout bij het downloaden van {0} #: Base.java:1674 Error\ getting\ the\ Arduino\ data\ folder.=Fout bij het openen van de Arduino datamap. @@ -611,7 +595,7 @@ Error\ opening\ serial\ port\ ''{0}''.=Fout bij het openen van de seri\u00eble p #: ../../../processing/app/Serial.java:119 #, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= +Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=Probleem bij het openen van de seri\u00eble poort ''{0}''. Bekijk de documentatie op http\://playground.arduino.cc/Linux/All\#Permission #: Preferences.java:277 Error\ reading\ preferences=Fout bij het inlezen van de voorkeuren @@ -623,7 +607,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= +Error\ running\ post\ install\ script=Fout bij het uitvoeren van een script na installatie #: ../../../cc/arduino/packages/DiscoveryManager.java:25 Error\ starting\ discovery\ method\:\ =Fout bij starten van de ontdekkingsmethode\: @@ -639,7 +623,7 @@ Error\ while\ burning\ bootloader.=Fout bij het branden van de bootloader. Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het branden van de bootloader\: configuratie-parameter '{0}' ontbreekt #: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= +Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het compileren\: ontbrekende configuratieparameter '{0}' #: SketchCode.java:83 #, java-format @@ -649,7 +633,7 @@ Error\ while\ loading\ code\ {0}=Fout bij het laden van code {0} Error\ while\ printing.=Fout bij het afdrukken. #: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= +Error\ while\ uploading=Fout bij het uploaden #: ../../../processing/app/Editor.java:2409 #: ../../../processing/app/Editor.java:2449 @@ -658,10 +642,10 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Fout bij het #: ../../../processing/app/BaseNoGui.java:506 #: ../../../processing/app/BaseNoGui.java:551 #: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= +Error\ while\ verifying=Fout bij het verifi\u00ebren #: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= +Error\ while\ verifying/uploading=Fout bij het verifi\u00ebren/uploaden #: Preferences.java:93 Estonian=Estisch @@ -672,6 +656,15 @@ Estonian\ (Estonia)=Estisch (Estland) #: Editor.java:516 Examples=Voorbeelden +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +Export\ canceled,\ changes\ must\ first\ be\ saved.=De export werd afgebroken, de wijzigingen moeten eerst worden opgeslagen. + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -686,7 +679,7 @@ File=Bestand Filipino=Filipijns #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= +Filter\ your\ search...=Filter je zoekresultaten... #: FindReplace.java:124 FindReplace.java:127 Find=Zoeken @@ -711,10 +704,10 @@ Finnish=Fins #: tools/FixEncoding.java:41 tools/FixEncoding.java:58 #: tools/FixEncoding.java:79 -Fix\ Encoding\ &\ Reload=Codering repareren en opnieuw laden +Fix\ Encoding\ &\ Reload=Codering herstellen en opnieuw laden #: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= +For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=Ga naar http\://www.arduino.cc/en/Guide/Libraries voor meer informatie over het installeren van bibliotheken\n #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 #, java-format @@ -733,7 +726,7 @@ Galician=Gallicisch Galician\ (Spain)=Galicisch (Spanje) #: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= +Galileo\ Help=Galileo Help #: ../../../processing/app/Preferences.java:94 Georgian=Georgisch @@ -765,7 +758,7 @@ Help=Help Hindi=Hindi #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Hostnaam\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=U kunt beter de schets eerst opslaan\nvoordat u deze probeert te hernoemen? @@ -789,11 +782,11 @@ Ignoring\ sketch\ with\ bad\ name=De schets met slechte naam wordt genegeerd In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=In Arduino 1.0 is de standaard bestandsextensie veranderd van .pde naar .ino. Nieuwe schetsen (inclusief die aangemaakt zijn door "Opslaan als") gebruiken de nieuwe extensie. De extensie van bestaande schetsen wordt bij opslaan aangepast. U kunt dit overigens uitschakelen in het voorkeurendialoogvenster.\n Schets opslaan en de extensie aanpassen? #: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= +Include\ Library=Bibliotheek gebruiken #: ../../../processing/app/BaseNoGui.java:768 #: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= +Incorrect\ IDE\ installation\ folder=Foutieve IDE installatiemap #: Editor.java:1216 Editor.java:2757 Increase\ Indent=Insprong vergroten @@ -810,33 +803,37 @@ Indonesian=Indonesisch #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= +Install=Installeren #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= +Installation\ completed\!=Installatie voltooid\! #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= +Installed=Ge\u00efnstalleerd #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= +Installing\ boards...=Boards installeren... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 #, java-format -!Installing\ library\:\ {0}= +Installing\ library\:\ {0}=Bibliotheek installeren\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 #, java-format -!Installing\ tools\ ({0}/{1})...= +Installing\ tools\ ({0}/{1})...=Hulpmiddelen installeren ({0}/{1})... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= +Installing...=Installeren... #: ../../../processing/app/Base.java:1204 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Ongeldige bibliotheek gevonden in {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=Ongeldige citatie\: afsluitend karakter [{0}] niet gevonden. + #: Preferences.java:102 Italian=Italiaans @@ -850,32 +847,36 @@ Korean=Koreaans Latvian=Lets #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Bibliotheekbeheerder #: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Bibliotheek toegevoegd aan uw bibliotheken. Controleer het menu 'Bibliotheek gebruiken' + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=De bibliotheek kan niet zowel de 'src' als 'utility' mappen gebruiken. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= +Library\ is\ already\ installed\:\ {0}\ version\ {1}=De bibliotheek is reeds ge\u00efnstalleerd\: {0} versie {1} #: Preferences.java:106 Lithuaninan=Litouws #: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= +Loading\ configuration...=Configuratie inladen... -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +Looking\ for\ recipes\ like\ {0}*{1}=Op zoek naar recepten zoals {0}*{1} -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Maleis (Maleisi\u00eb) +#: ../../../processing/app/Sketch.java:1684 +Low\ memory\ available,\ stability\ problems\ may\ occur.=Weinig geheugen beschikbaar, er kunnen zich stabiliteitsproblemen voordoen #: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= +Manage\ Libraries...=Bibliotheken beheren... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Manuele proxy configuratie #: Preferences.java:107 Marathi=Marathi @@ -883,14 +884,15 @@ Marathi=Marathi #: Base.java:2112 Message=Boodschap -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=De */ aan het einde van een /* opmerking */ ontbreekt +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +Missing\ '{0}'\ from\ library\ in\ {1}='{0}' ontbreekt in de bibliotheek in {1} #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modus wordt niet ondersteund #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= +More=Meer #: Preferences.java:449 More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Meer voorkeuren kunnen rechtstreeks in het bestand worden bewerkt @@ -903,14 +905,11 @@ Multiple\ files\ not\ supported=Meerdere bestanden worden niet ondersteund #: ../../../processing/app/debug/Compiler.java:520 #, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= +Multiple\ libraries\ were\ found\ for\ "{0}"=Meerdere bibliotheken gevonden voor "{0}" #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=U moet precies \u00e9\u00e9n schetsbestand opgeven -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Naam voor het nieuwe bestand\: @@ -918,7 +917,7 @@ Name\ for\ new\ file\:=Naam voor het nieuwe bestand\: Nepali=Nepalees #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Netwerk #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=Netwerkpoorten @@ -942,19 +941,16 @@ Next\ Tab=Volgende tabblad No=Nee #: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Geen board geselecteerd; kies een board in het menu Hulpmiddelen > Board +No\ authorization\ data\ found=Geen autorisatiegegevens gevonden #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Geen aanpassingen noodzakelijk voor automatische opmaak. #: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= +No\ command\ line\ parameters\ found=Geen parameters gevonden op de commandolijn #: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= +No\ compiled\ sketch\ found=Geen gecompileerde schets gevonden #: Editor.java:373 No\ files\ were\ added\ to\ the\ sketch.=Er zijn geen nieuw bestanden aan de schets toegevoegd. @@ -969,7 +965,7 @@ No\ line\ ending=Geen regeleinde No\ parameters=Geen parameters #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Geen proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee, echt, even tijd voor een beetje frisse lucht. @@ -993,17 +989,11 @@ No\ valid\ code\ files\ found=Geen geldige codes gevonden No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Geen geldige hardware-definities gevonden in map {0}. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Noors +None=Geen #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noors Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Noors Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Niet genoeg geheugen\: ga naar http\://www.arduino.cc/en/Guide/Troubleshooting\#size voor tips over het verkleinen van uw voetafdruk. @@ -1021,7 +1011,7 @@ Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Alleen --verify, --upl Open=Openen #: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= +Open\ Recent=Open Recent #: Editor.java:2688 Open\ URL=URL openen @@ -1047,11 +1037,15 @@ Persian=Perzisch #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Perzisch (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= +Please\ confirm\ boards\ deletion=Bevestig het verwijderen van de boards #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= +Please\ confirm\ library\ deletion=Bevestig het verwijderen van de bibliotheek #: debug/Compiler.java:408 Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Gelieve de SPI-bibliotheek te importeren via het menu Schets -> Bibliotheek importeren. @@ -1061,7 +1055,7 @@ Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu. #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 #: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= +Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Kies een programmer in het menu Hulpmiddelen->Programmer #: Preferences.java:110 Polish=Pools @@ -1070,7 +1064,7 @@ Polish=Pools Port=Poort #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=Poortnummer\: #: ../../../processing/app/Preferences.java:151 Portugese=Portugees @@ -1085,7 +1079,7 @@ Portuguese\ (Portugal)=Portugees (Portugal) Preferences=Voorkeuren #: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= +Preparing\ boards...=Boards voorbereiden... #: FindReplace.java:123 FindReplace.java:128 Previous=Vorige @@ -1120,10 +1114,6 @@ Problem\ accessing\ files\ in\ folder\ =Probleem met het openen van bestanden in #: Base.java:1673 Problem\ getting\ data\ folder=Probleem met het openen van de data-map. -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Er is een probleem opgetreden bij het verplaatsen van {0} naar de build-map - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleem bij het uploaden naar het board. Zie http\://www.arduino.cc/en/Guide/Troubleshooting\#upload voor suggesties. @@ -1136,9 +1126,16 @@ Processor=Processor #: Editor.java:704 Programmer=Programmer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +Progress\ {0}=Voortgang\: {0} + #: Base.java:783 Editor.java:593 Quit=Afsluiten +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Opnieuw doen @@ -1146,15 +1143,15 @@ Redo=Opnieuw doen Reference=Naslagwerk #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= +Remove=Verwijderen #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 #, java-format -!Removing\ library\:\ {0}= +Removing\ library\:\ {0}=Bibliotheek verwijderen\: {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= +Removing...=Verwijderen... #: EditorHeader.java:300 Rename=Hernoemen @@ -1178,6 +1175,14 @@ Replace\ with\:=Vervangen door\: #: Preferences.java:113 Romanian=Roemeens +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +Running\ recipe\:\ {0}=Recept uitvoeren\: {0} + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +Running\:\ {0}=Uitvoeren\: {0} + #: Preferences.java:114 Russian=Russisch @@ -1199,13 +1204,13 @@ Save\ changes\ to\ "{0}"?\ \ =Gemaakte wijzigingen in "{0}" opslaan? Save\ sketch\ folder\ as...=Schetsmap opslaan als... #: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= +Save\ when\ verifying\ or\ uploading=Opslaan bij het verifi\u00ebren of uploaden #: Editor.java:2270 Editor.java:2308 Saving...=Opslaan... #: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= +Search\ all\ Sketch\ Tabs=Zoek in alle Schets Tabbladen #: Base.java:1909 Select\ (or\ create\ new)\ folder\ for\ sketches...=Een map voor schetsen kiezen (of aanmaken)... @@ -1224,16 +1229,16 @@ Select\ new\ sketchbook\ location=Kies een nieuwe schetsboeklocatie\: #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= +Select\ version=Selecteer versie #: ../../../processing/app/debug/Compiler.java:146 Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Geselecteerde board is afhankelijk van '{0}' versie (niet ge\u00efnstalleerd). #: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= +Selected\ board\ is\ not\ available=Het geselecteerde board is niet beschikbaar #: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= +Selected\ library\ is\ not\ available=De geselecteerde bibliotheek is niet beschikbaar #: SerialMonitor.java:93 Send=Verzenden @@ -1242,7 +1247,7 @@ Send=Verzenden Serial\ Monitor=Seri\u00eble monitor #: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= +Serial\ Plotter=Seri\u00eble Plotter #: Serial.java:194 #, java-format @@ -1255,8 +1260,12 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Seri\u00eble poorten +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Instellingen #: Base.java:1681 Settings\ issues=Problemen met de instellingen @@ -1305,7 +1314,7 @@ Sketchbook\ folder\ disappeared=De map met schetsboeken is verdwenen Sketchbook\ location\:=Schetsboeklocatie\: #: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= +Sketchbook\ path\ not\ defined=Geen pad gedefinieerd voor het schetsboek #: ../../../../../app/src/processing/app/Preferences.java:185 Slovak=Slowaaks @@ -1327,17 +1336,14 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Sorry, er bestaa Spanish=Spaans #: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= +Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=Zip-bestand of map bevat geen geldige bibliotheek #: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= +Starting...=Starten... #: Base.java:540 Sunshine=Zonneschijn -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Zweeds @@ -1354,7 +1360,7 @@ Tamil=Tamil The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=De term 'BYTE' wordt niet langer ondersteund. #: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= +The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=De --upload optie ondersteunt slechts 1 bestand tegelijk #: debug/Compiler.java:426 The\ Client\ class\ has\ been\ renamed\ EthernetClient.=De Client-klasse is hernoemd naar EthernetClient @@ -1400,10 +1406,7 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=De schetsboekmap bestaat niet meer.\nArduino zal overschakelen naar de standaard schetsboeklocatie,\nen, indien nodig, een nieuwe schetsboekmap aanmaken.\nArduino zal daarna ophouden over zichzelf te\npraten in de derde persoon. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=De map voor uw schetsboek bevat uw kopie van de IDE.\nGelieve een andere map te kiezen voor uw schetsboek. #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dit bestand is al gekopieerd naar de locatie\nvanwaar u het probeert toe te voegen.\nIk doe niets onzinnigs\!. @@ -1419,13 +1422,13 @@ Time\ for\ a\ Break=Tijd voor een pauze #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 #, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= +Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=Hulpmiddel {0} is niet beschikbaar voor uw besturingssysteem. #: Editor.java:663 Tools=Hulpmiddelen #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= +Topic=Onderwerp #: Editor.java:1070 Troubleshooting=Problemen oplossen @@ -1435,7 +1438,7 @@ Turkish=Turks #: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= +Type=Type #: ../../../processing/app/Editor.java:2507 Type\ board\ password\ to\ access\ its\ console=Type het wachtwoord van het board in voor toegang tot het console @@ -1456,29 +1459,37 @@ Unable\ to\ connect\:\ retrying=Niet verbonden\: nieuwe poging #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Geen verbinding\: verkeerde wachtwoord? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +Unable\ to\ find\ {0}\ in\ {1}=Kan {0} niet vinden in {1} + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=De seri\u00eble monitor kan niet geopend worden #: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= +Unable\ to\ open\ serial\ plotter=Kan seri\u00eble plotter niet openen #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Niet opgevangen exception type\: {0} +Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Kan Arduino.cc niet bereiken, mogelijk door problemen met het netwerk. #: Editor.java:1133 Editor.java:1355 Undo=Ongedaan maken +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +Unknown\ sketch\ file\ extension\:\ {0}=Ongekende extensie voor schetsbestand\: {0} + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Onbekend platform, geen launcher beschikbaar.\nOm het openen van URLs of mappen mogelijk te maken\:\nvoeg een regel "launcher\=/pad/naar/app" toe aan preferences.txt #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=Bij te werken #: UpdateCheck.java:111 Update=Updaten @@ -1487,7 +1498,7 @@ Update=Updaten Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Bij het opslaan de schetsbestanden aanpassen aan de nieuwe extensie (.pde -> .ino) #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= +Updating\ list\ of\ installed\ libraries=Lijst van ge\u00efnstalleerde bibliotheken bijwerken #: EditorToolbar.java:41 Editor.java:545 Upload=Uploaden @@ -1507,9 +1518,6 @@ Uploading\ to\ I/O\ Board...=Bezig met uploaden naar I/O-board... #: Sketch.java:1622 Uploading...=Bezig met uploaden... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Selectie gebruiken voor zoekactie @@ -1518,11 +1526,11 @@ Use\ external\ editor=Externe editor gebruiken #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=Gebruikersnaam\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= +Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=Bibliotheek {0} op versie {1} in map\: {2} {3} wordt gebruikt #: ../../../processing/app/debug/Compiler.java:94 #, java-format @@ -1539,27 +1547,27 @@ Verify=Verifi\u00ebren Verify\ code\ after\ upload=Code na uploaden verifi\u00ebren #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Verifi\u00ebren/Compileren #: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= +Verifying\ and\ uploading...=Verifi\u00ebren en uploaden... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= +Verifying\ archive\ integrity...=Integriteit van het archief verifi\u00ebren... #: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= +Verifying...=Verifi\u00ebren... #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 #, java-format -!Version\ {0}= +Version\ {0}=Versie {0} #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= +Version\ unknown=Versie ongekend #: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 #, java-format -!Version\ {0}= +Version\ {0}=Versie {0} #: ../../../processing/app/Preferences.java:154 Vietnamese=Vietnamees @@ -1567,6 +1575,14 @@ Vietnamese=Vietnamees #: Editor.java:1105 Visit\ Arduino.cc=Bezoek Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=WAARSCHUWING\: Categorie '{0}' in bibliotheek {1} is niet geldig. Wordt gewijzigd naar '{2}' + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=WAARSCHUWING\: Foutieve map {0} in bibliotheek '{1}' + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=WAARSCHUWING\: bibliotheek {0} beweert te werken onder architectuur {1} en kan incompatible zijn met uw huidige board dat werkt onder architectuur {2}. @@ -1579,23 +1595,26 @@ Warning=Waarschuwing #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= +Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Waarschuwing\: bestand {0} verwijst naar een absoluut pad {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Waarschuwing\: niet-vertrouwde bijdragen worden geforceerd vertrouwd #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Waarschuwing\: uitvoering van het script ({0}) wordt geforceerd #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Waarschuwing\: niet-vertrouwde bijdrage, uitvoering van het script ({0}) wordt overgeslaan #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1625,7 +1644,7 @@ You\ can't\ fool\ me=Je kunt me niet belazeren You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=U mag geen .cpp-bestand hebben met dezelfde naam als de schets. #: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= +You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Het is niet mogelijk een map te importeren die je schetsboek bevat #: Sketch.java:421 You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=De schets kan niet hernoemd worden naar "{0}",\nomdat de schets al een .ccp-bestand met deze naam bevat. @@ -1646,10 +1665,10 @@ You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ en You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=U hebt voor vandaag de limiet bereikt voor het automatisch\nbenoemen van nieuwe schetsen. #: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Uw kopie van de IDE bevindt zich in een submap van de map met instellingen.\nGelieve de IDE naar een andere map te verplaatsen. #: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Uw kopie van de IDE bevindt zich in een submap van de map met je schetsboek.\nGelieve de IDE naar een andere map te verplaatsen. #: Base.java:2638 ZIP\ files\ or\ folders=ZIP-bestanden of -mappen @@ -1663,7 +1682,7 @@ Zip\ doesn't\ contain\ a\ library=Het Zip-bestand bevat geen bibliotheek #: SketchCode.java:258 #, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= +"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" bevat niet-herkende karakters. Indien deze code met een oudere versie van Arduino is gemaakt, kan je 'Hulpmiddelen -> Codering herstellen en opnieuw laden' gebruiken om de schets bij te werken zodat hij de UTF-8 codering gebruikt. Indien niet zal je de foutieve karakters moeten verwijderen om deze waarschuwing te onderdrukken. #: debug/Compiler.java:409 \nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nVanaf Arduino 0019 is de Ethernet-bibliotheek afhankelijk van de SPI-bibliotheek.\nHet lijkt alsof u deze gebruikt of een andere bibliotheek die afhankelijk is van de SPI-bibliotheek.\n\n @@ -1702,7 +1721,7 @@ createNewFile()\ returned\ false=createNewFile() heeft false geantwoord enabled\ in\ File\ >\ Preferences.=ingeschakeld in Bestand > Voorkeuren. #: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= +http\://www.arduino.cc/=http\://www.arduino.cc/ #: UpdateCheck.java:118 http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software @@ -1733,20 +1752,20 @@ upload=uploaden #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 #, java-format -!version\ {0}= +version\ {0}=versie {0} #: ../../../../../app/src/processing/app/Editor.java:2243 #, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= +{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2} #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 #: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 #, java-format -!{0}\ file\ signature\ verification\ failed= +{0}\ file\ signature\ verification\ failed=Verificatie van bestandshandtekening mislukt\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 #, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= +{0}\ file\ signature\ verification\ failed.\ File\ ignored.=Verificatie van bestandshandtekening mislukt\: {0}. Bestand genegeerd. #: Editor.java:380 #, java-format @@ -1754,7 +1773,15 @@ upload=uploaden #: ../../../../../app/src/processing/app/Base.java:1201 #, java-format -!{0}\ libraries= +{0}\ libraries={0} bibliotheken + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +{0}\ must\ be\ a\ folder={0} moet een map zijn + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +{0}\ pattern\ is\ missing=Onbestaand patroon\: {0} #: debug/Compiler.java:365 #, java-format diff --git a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po index 3c2f5d69a0e..bce1949ae79 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.po +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jeroen Doggen , 2012 # TheRevMan , 2014 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Dutch (Netherlands) (http://www.transifex.com/mbanzi/arduino-ide-15/language/nl_NL/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "'Toetsenbord' wordt enkel ondersteund door de Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Muis' wordt enkel ondersteund door de Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -321,15 +328,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "" msgid "Browse" msgstr "Bladeren" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -441,10 +449,6 @@ msgstr "" msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -453,14 +457,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinees Vereenvoudigd" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinees Traditioneel" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "Kon {0} niet vervangen" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -642,18 +630,10 @@ msgstr "" msgid "Cut" msgstr "Knippen" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Deens" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "" msgid "Examples" msgstr "Voorbeelden" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiaans" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "Litouws" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "" msgid "Message" msgstr "Bericht" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1295,10 +1294,6 @@ msgstr "Nee" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "Perzisch" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "Probleem bij het verkrijgen van de data-map" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Afsluiten" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "" @@ -1608,6 +1604,16 @@ msgstr "Vervang met:" msgid "Romanian" msgstr "Roemeens" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russisch" @@ -1713,6 +1719,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "Zonneschijn" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Ongedaan maken" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "" msgid "Uploading..." msgstr "Aan het uploaden..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2174,6 +2181,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties index c4d0c545125..bf8e73933a4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties +++ b/arduino-core/src/processing/app/i18n/Resources_nl_NL.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Jeroen Doggen , 2012 # TheRevMan , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (Netherlands) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nl_NL/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl_NL\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Dutch (Netherlands) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/nl_NL/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: nl_NL\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Muis' wordt enkel ondersteund door de Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you #: Preferences.java:81 Browse=Bladeren -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -312,21 +317,12 @@ Catalan=Catalaans #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Chinees Vereenvoudigd - -#: Preferences.java:89 -Chinese\ Traditional=Chinees Traditioneel - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ open\ the\ folder\n{0}=Kon de map niet openen\n{0} #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Kon de oude versie van {0} niet verwijderen @@ -435,9 +428,6 @@ Could\ not\ remove\ old\ version\ of\ {0}=Kon de oude versie van {0} niet verwij #, java-format Could\ not\ replace\ {0}=Kon {0} niet vervangen -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -456,15 +446,9 @@ Could\ not\ replace\ {0}=Kon {0} niet vervangen #: Editor.java:1149 Editor.java:2699 Cut=Knippen -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Deens - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Estonian=Ests #: Editor.java:516 Examples=Voorbeelden +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Indonesian=Indonesisch #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiaans @@ -851,6 +848,9 @@ Latvian=Lets #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Lithuaninan=Litouws #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Lithuaninan=Litouws #: Base.java:2112 Message=Bericht -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Message=Bericht #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -940,9 +939,6 @@ No=Nee #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -991,15 +987,9 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Nee serieus, hoogste tijd vo #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=Perzisch #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ Setting\ the\ Platform=Probleem bij het instellen van het Platform #: Base.java:1673 Problem\ getting\ data\ folder=Probleem bij het verkrijgen van de data-map -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1132,9 +1122,16 @@ Problem\ getting\ data\ folder=Probleem bij het verkrijgen van de data-map #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Afsluiten +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 !Redo= @@ -1174,6 +1171,14 @@ Replace\ with\:=Vervang met\: #: Preferences.java:113 Romanian=Roemeens +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russisch @@ -1251,6 +1256,10 @@ Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=Spaans #: Base.java:540 Sunshine=Zonneschijn -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1452,6 +1455,10 @@ Time\ for\ a\ Break=Tijd voor een pauze #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1462,13 +1469,17 @@ Time\ for\ a\ Break=Tijd voor een pauze #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=Ongedaan maken +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1503,9 +1514,6 @@ Upload=Upload #: Sketch.java:1622 Uploading...=Aan het uploaden... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1563,6 +1571,14 @@ Verify=Verifi\u00eber #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=Waarschuwing #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ Zip\ doesn't\ contain\ a\ library=Zip bevat geen bibliotheek #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_nn.po b/arduino-core/src/processing/app/i18n/Resources_nn.po deleted file mode 100644 index 0865fd9107b..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_nn.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Norwegian Nynorsk (http://www.transifex.com/mbanzi/arduino-ide-15/language/nn/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: nn\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_no.po b/arduino-core/src/processing/app/i18n/Resources_no.po deleted file mode 100644 index 60de2a6f085..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_no.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Norwegian (http://www.transifex.com/mbanzi/arduino-ide-15/language/no/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: no\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_no.properties b/arduino-core/src/processing/app/i18n/Resources_no.properties deleted file mode 100644 index 146fd5183d0..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_no.properties +++ /dev/null @@ -1,1791 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Norwegian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/no/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: no\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -!Open...= - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -!Quit= - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.po b/arduino-core/src/processing/app/i18n/Resources_pl.po index d3b77b7657e..3e769389e68 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.po +++ b/arduino-core/src/processing/app/i18n/Resources_pl.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Jan Bielak , 2013-2014 # Krzysztof Zbudniewek , 2015 # thedead4fun , 2015 @@ -17,8 +18,8 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 15:30+0000\n" -"Last-Translator: Tom Box \n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" +"Last-Translator: Federico Fissore \n" "Language-Team: Polish (http://www.transifex.com/mbanzi/arduino-ide-15/language/pl/)\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" @@ -48,10 +49,20 @@ msgstr "'Klawiatura' wspierana tylko na Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Myszka\" wspierana tylko na Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(edytuj tylko kiedy Arduino nie pracuje)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir nie jest dłużej wspierane" @@ -313,10 +324,6 @@ msgstr "Błąd w lini: {0}" msgid "Bad file selected" msgstr "Wybrano zły plik" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Zły plik główny szkicu lub zła struktura katalogów szkicu" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskijski" @@ -325,15 +332,16 @@ msgstr "Baskijski" msgid "Belarusian" msgstr "Białoruski" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengalski (Indie)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Płyta" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -374,14 +382,14 @@ msgstr "Zarówno NL i CR" msgid "Browse" msgstr "Przeglądaj" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Folder budowy zniknął lub nie może być zapisany" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opcje projektu zmienione, przeładuj całość" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bułgarski" @@ -445,10 +453,6 @@ msgstr "Sprawdź aktualizację przy starcie" msgid "Chinese (China)" msgstr "Chiński (Chiny)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chiński (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chiński (Tajwan)" @@ -457,14 +461,6 @@ msgstr "Chiński (Tajwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chiński (Tajwan)(Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chiński uproszczony" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chiński tradycyjny" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Sprawdź listę nieoficjalnych adresów URL płytek" @@ -584,10 +580,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nie można odczytać domyślnych ustawień.\nMusisz przeinstalować Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Nie można odczytać poprzednich preferencji projektu, przeładuj całość" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +607,6 @@ msgstr "Nie można zmienić nazwy szkicu. (2)" msgid "Could not replace {0}" msgstr "Nie można zastąpić {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Nie można zapisać pliku preferensji budowy" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nie można zaarchiwizować szkicu" @@ -646,18 +634,10 @@ msgstr "Chorwacki" msgid "Cut" msgstr "Wytnij" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Czeski" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czeski (Republika Czeska)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Duński" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Duński (Dania)" @@ -929,6 +909,18 @@ msgstr "Estoński (Estonia)" msgid "Examples" msgstr "Przykłady" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Eksport skompilowanego programu" @@ -1157,6 +1149,11 @@ msgstr "Instalowanie..." msgid "Invalid library found in {0}: {1}" msgstr "Błędna biblioteka znaleziona w {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Włoski" @@ -1181,6 +1178,10 @@ msgstr "Zarządca biblioteki" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Biblioteka została dodana do bibliotek. Sprawdź menu \"Załącz biblioteki\"" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1194,14 +1195,15 @@ msgstr "Litewski" msgid "Loading configuration..." msgstr "Ładowanie konfiguracji" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Niski poziom dostępnej pamięci, mogą wystąpić problemy z stabilnością." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malajski (Malezja)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Zarządzaj bibliotekami" @@ -1218,9 +1220,10 @@ msgstr "Marathi" msgid "Message" msgstr "Wiadomości" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Brak */ na końcu lini /* komentarz */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1251,10 +1254,6 @@ msgstr "Znaleziono wiele bibliotek w \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Musisz wskazać dokładnie jeden plik szkicu" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nazwa dla nowego pliku:" @@ -1299,10 +1298,6 @@ msgstr "Nie" msgid "No authorization data found" msgstr "Nie znaleziono autoryzowanych danych" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Brak wybranej płytki: proszę wybrać płytkę z Narzędzia > Menu Płytek." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Brak zmian potrzebnych do Auto Formatu." @@ -1366,18 +1361,10 @@ msgstr "Niepoprawne definicje sprzętowe wykryte w folderze {0}." msgid "None" msgstr "Brak" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norweski" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norweski Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norweski Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1437,6 +1424,11 @@ msgstr "Perski" msgid "Persian (Iran)" msgstr "Perski (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Proszę potwierdź usunięcie płytki" @@ -1534,11 +1526,6 @@ msgstr "Problem z dostępem do plików w folderze" msgid "Problem getting data folder" msgstr "Problem z dostępem do folderu danych" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problem z przesunięciem {0} do folderu projektu" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1544,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programrator" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Wyjdź" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Ponów" @@ -1612,6 +1608,16 @@ msgstr "Zastąp:" msgid "Romanian" msgstr "Rumuński" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rosyjski" @@ -1717,6 +1723,11 @@ msgstr "Port szeregowy {0} nie znaleziony.\nPonowić wgrywanie z innym portem ?" msgid "Serial ports" msgstr "Porty seryjne" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "Ustawienia" @@ -1832,10 +1843,6 @@ msgstr "Uruchamianie..." msgid "Sunshine" msgstr "Słoneczko" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Suahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Szwedzki" @@ -1950,13 +1957,7 @@ msgstr "Folder szkicownika nie istnieje.\nArduino przełączy się na domyślny msgid "" "The specified sketchbook folder contains your copy of the IDE.\n" "Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Plik platform.txt osób trzecich nie definiuje compiler.path. Proszę to zgłosić do opiekuna oprogramowania do obsługi sprzętu firmy trzeciej." +msgstr "Podany katalog na szkice zawiera twoją kopię środowiska programistycznego.\nProszę wybrać inny katalog na twoje szkice." #: Sketch.java:1075 msgid "" @@ -1969,7 +1970,7 @@ msgstr "Ten plik został już skopiowany do \nlokalizacji z której próbowałe msgid "" "This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" "Are you sure you want to delete it?" -msgstr "" +msgstr "Ta biblioteka nie figuruje w Zarządcy Bibliotek. Nie będziesz mógł jej stąd przeinstalować.\nCzy na pewno chcesz ją usunąć?" #: ../../../processing/app/EditorStatus.java:467 msgid "This report would have more information with" @@ -2030,6 +2031,11 @@ msgstr "Nie można połączyć: ponawiam" msgid "Unable to connect: wrong password?" msgstr "Nie można się połączyć: złe hasło?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Nie można otworzyć szeregowego monitora" @@ -2043,15 +2049,20 @@ msgstr "Nie można otworzyć szeregowego monitora" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Brak dostępu do Arduino.cc prawdopodobnie z powodu problemu z siecią." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Nie wyłapany wyjątek typu : {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Cofnij" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2100,10 +2111,6 @@ msgstr "Wgrywanie do I/O płytki..." msgid "Uploading..." msgstr "Wgrywanie..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Użyj zaznaczenia do szukania" @@ -2178,6 +2185,16 @@ msgstr "Wietnamski" msgid "Visit Arduino.cc" msgstr "Odwiedź Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2193,7 +2210,7 @@ msgstr "Ostrzeżenia" msgid "" "Warning: This core does not support exporting sketches. Please consider " "upgrading it or contacting its author" -msgstr "" +msgstr "Uwaga: Ten rdzeń nie obsługuje eksportowania szkiców. Proszę rozważyć jego aktualizację lub skontaktować się z autorem." #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format @@ -2202,23 +2219,29 @@ msgstr "Uwaga: plik {0} połączony jest ze ścieżką {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Uwaga: wymuszanie zaufania do niezaufanego dodatku" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Uwaga: wymuszenie wykonania niezaufanego skryptu ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Uwaga: niezaufany dodatek, pominięcie wykonania skryptu ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format msgid "" "Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" " converted to {2}. Consider upgrading this core." +msgstr "Uwaga: platform.txt z rdzenia '{0}' zawiera przestarzałe {1}, przekonwertowane automatycznie na {2}. Rozważ uaktualnienie tego rdzenia." + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." msgstr "" #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 @@ -2226,7 +2249,7 @@ msgstr "" msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "" +msgstr "Uwaga: w platform.txt z rdzenia '{0}' brakuje właściwości {1}, zostanie automatycznie ustawione na {2}. Rozważ aktualizację tego rdzenia." #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" @@ -2303,13 +2326,13 @@ msgstr "Wykorzystałeś limit automatycznego nazewnictwa nowych szkiców\nna dzi msgid "" "Your copy of the IDE is installed in a subfolder of your settings folder.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Twoja kopia środowiska programistycznego została zainstalowana w podkatalogu twojego katalogu z ustawieniami.\nProszę przenieść środowisko do innego katalogu." #: ../../../processing/app/BaseNoGui.java:771 msgid "" "Your copy of the IDE is installed in a subfolder of your sketchbook.\n" "Please move the IDE to another folder." -msgstr "" +msgstr "Twoja kopia środowiska programistycznego została zainstalowana w podkatalogu twojego katalogu ze szkicami.\nProszę przenieść środowisko do innego katalogu." #: Base.java:2638 msgid "ZIP files or folders" @@ -2475,6 +2498,16 @@ msgstr "{0} plików dodanych do szkicu." msgid "{0} libraries" msgstr "{0} bibliotek" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_pl.properties b/arduino-core/src/processing/app/i18n/Resources_pl.properties index cf560ca2a48..7ac9eca0ea7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pl.properties @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Jan Bielak , 2013-2014 # Krzysztof Zbudniewek , 2015 # thedead4fun , 2015 # Szymon Borecki , 2015 # Tom Box , 2015 # Voltinus , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 15\:30+0000\nLast-Translator\: Tom Box \nLanguage-Team\: Polish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pl\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Polish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pl\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(wymagany restart Arduino) @@ -31,9 +32,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Myszka" wspierana tylko na Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(edytuj tylko kiedy Arduino nie pracuje) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir nie jest d\u0142u\u017cej wspierane @@ -217,22 +224,20 @@ Bad\ error\ line\:\ {0}=B\u0142\u0105d w lini\: {0} #: Editor.java:2136 Bad\ file\ selected=Wybrano z\u0142y plik -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Z\u0142y plik g\u0142\u00f3wny szkicu lub z\u0142a struktura katalog\u00f3w szkicu - #: ../../../processing/app/Preferences.java:149 Basque=Baskijski #: ../../../processing/app/Preferences.java:139 Belarusian=Bia\u0142oruski -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengalski (Indie) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=P\u0142yta +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=P\u0142ytka {0}\:{1}\:{2} nie definiuje ustawienia ''build.board''. Automatyczne ustawienie\: {3} @@ -262,12 +267,12 @@ Both\ NL\ &\ CR=Zar\u00f3wno NL i CR #: Preferences.java:81 Browse=Przegl\u0105daj -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Folder budowy znikn\u0105\u0142 lub nie mo\u017ce by\u0107 zapisany - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opcje projektu zmienione, prze\u0142aduj ca\u0142o\u015b\u0107 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bu\u0142garski @@ -316,21 +321,12 @@ Check\ for\ updates\ on\ startup=Sprawd\u017a aktualizacj\u0119 przy starcie #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chi\u0144ski (Chiny) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chi\u0144ski (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chi\u0144ski (Tajwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chi\u0144ski (Tajwan)(Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chi\u0144ski uproszczony - -#: Preferences.java:89 -Chinese\ Traditional=Chi\u0144ski tradycyjny - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Sprawd\u017a list\u0119 nieoficjalnych adres\u00f3w URL p\u0142ytek @@ -415,9 +411,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nie mo\u017cna odczyta\u0107 domy\u015blnych ustawie\u0144.\nMusisz przeinstalowa\u0107 Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nie mo\u017cna odczyta\u0107 poprzednich preferencji projektu, prze\u0142aduj ca\u0142o\u015b\u0107 - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nie mo\u017cna usun\u0105c starej wersji {0} @@ -439,9 +432,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nie mo\u017cna zmieni\u0107 nazwy szkicu. #, java-format Could\ not\ replace\ {0}=Nie mo\u017cna zast\u0105pi\u0107 {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Nie mo\u017cna zapisa\u0107 pliku preferensji budowy - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nie mo\u017cna zaarchiwizowa\u0107 szkicu @@ -460,15 +450,9 @@ Croatian=Chorwacki #: Editor.java:1149 Editor.java:2699 Cut=Wytnij -#: ../../../processing/app/Preferences.java:83 -Czech=Czeski - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czeski (Republika Czeska) -#: Preferences.java:90 -Danish=Du\u0144ski - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Du\u0144ski (Dania) @@ -672,6 +656,15 @@ Estonian\ (Estonia)=Esto\u0144ski (Estonia) #: Editor.java:516 Examples=Przyk\u0142ady +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Eksport skompilowanego programu @@ -837,6 +830,10 @@ Installing...=Instalowanie... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=B\u0142\u0119dna biblioteka znaleziona w {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=W\u0142oski @@ -855,6 +852,9 @@ Library\ Manager=Zarz\u0105dca biblioteki #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Biblioteka zosta\u0142a dodana do bibliotek. Sprawd\u017a menu "Za\u0142\u0105cz biblioteki" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Biblioteka jest ju\u017c zainstalowana\: {0} wersja {1} @@ -865,12 +865,13 @@ Lithuaninan=Litewski #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=\u0141adowanie konfiguracji +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Niski poziom dost\u0119pnej pami\u0119ci, mog\u0105 wyst\u0105pi\u0107 problemy z stabilno\u015bci\u0105. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malajski (Malezja) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Zarz\u0105dzaj bibliotekami @@ -883,8 +884,9 @@ Marathi=Marathi #: Base.java:2112 Message=Wiadomo\u015bci -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Brak */ na ko\u0144cu lini /* komentarz */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Tryb nie wspierany @@ -908,9 +910,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Znaleziono wiele bibliotek w "{0}" #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Musisz wskaza\u0107 dok\u0142adnie jeden plik szkicu -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nazwa dla nowego pliku\: @@ -944,9 +943,6 @@ No=Nie #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Nie znaleziono autoryzowanych danych -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Brak wybranej p\u0142ytki\: prosz\u0119 wybra\u0107 p\u0142ytk\u0119 z Narz\u0119dzia > Menu P\u0142ytek. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Brak zmian potrzebnych do Auto Formatu. @@ -995,15 +991,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Niepoprawne definicje #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Brak -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norweski - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norweski Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norweski Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Niewystarczaj\u0105ca ilo\u015b\u0107 pami\u0119ci\: sprawd\u017a http\://www.arduino.cc/en/Guide/Troubleshooting\#size w poszukiwaniu rozwi\u0105zania problemu @@ -1047,6 +1037,10 @@ Persian=Perski #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Perski (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Prosz\u0119 potwierd\u017a usuni\u0119cie p\u0142ytki @@ -1120,10 +1114,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem z dost\u0119pem do plik\u00f3w w #: Base.java:1673 Problem\ getting\ data\ folder=Problem z dost\u0119pem do folderu danych -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problem z przesuni\u0119ciem {0} do folderu projektu - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem z wgrywaniem na p\u0142yte. Sprawd\u017a http\://www.arduino.cc/en/Guide/Troubleshooting\#upload w poszukiwaniu sugestii. @@ -1136,9 +1126,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Programrator +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Wyjd\u017a +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Pon\u00f3w @@ -1178,6 +1175,14 @@ Replace\ with\:=Zast\u0105p\: #: Preferences.java:113 Romanian=Rumu\u0144ski +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Rosyjski @@ -1255,6 +1260,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Porty seryjne +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=Ustawienia @@ -1335,9 +1344,6 @@ Starting...=Uruchamianie... #: Base.java:540 Sunshine=S\u0142oneczko -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Suahili - #: ../../../processing/app/Preferences.java:153 Swedish=Szwedzki @@ -1400,16 +1406,13 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Folder szkicownika nie istnieje.\nArduino prze\u0142\u0105czy si\u0119 na domy\u015blny szkicownik,\noraz utworzy nowy szkicownik je\u015bli potrzeba.\nPotem Arduino przestanie m\u00f3wi\u0107 o sobie \nw trzeciej osobie. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Plik platform.txt os\u00f3b trzecich nie definiuje compiler.path. Prosz\u0119 to zg\u0142osi\u0107 do opiekuna oprogramowania do obs\u0142ugi sprz\u0119tu firmy trzeciej. +The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Podany katalog na szkice zawiera twoj\u0105 kopi\u0119 \u015brodowiska programistycznego.\nProsz\u0119 wybra\u0107 inny katalog na twoje szkice. #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ten plik zosta\u0142 ju\u017c skopiowany do \nlokalizacji z kt\u00f3rej pr\u00f3bowa\u0142e\u015b go doda\u0107.\nTo nic nie zmieni. #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= +This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=Ta biblioteka nie figuruje w Zarz\u0105dcy Bibliotek. Nie b\u0119dziesz m\u00f3g\u0142 jej st\u0105d przeinstalowa\u0107.\nCzy na pewno chcesz j\u0105 usun\u0105\u0107? #: ../../../processing/app/EditorStatus.java:467 This\ report\ would\ have\ more\ information\ with=Raport ten b\u0119dzie mia\u0142 wi\u0119cej informacji z @@ -1456,6 +1459,10 @@ Unable\ to\ connect\:\ retrying=Nie mo\u017cna po\u0142\u0105czy\u0107\: ponawia #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Nie mo\u017cna si\u0119 po\u0142\u0105czy\u0107\: z\u0142e has\u0142o? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Nie mo\u017cna otworzy\u0107 szeregowego monitora @@ -1466,13 +1473,17 @@ Unable\ to\ open\ serial\ plotter=Nie mo\u017cna otworzy\u0107 szeregowego monit #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Brak dost\u0119pu do Arduino.cc prawdopodobnie z powodu problemu z sieci\u0105. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Nie wy\u0142apany wyj\u0105tek typu \: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Cofnij +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Nie okre\u015blona platforma, brak launchera dost\u0119pnego.\nBy umo\u017cliwi\u0107 otwieranie adres\u00f3w i folder\u00f3w, dodaj\n"launcher\=/path/to/app" do preferences.txt @@ -1507,9 +1518,6 @@ Uploading\ to\ I/O\ Board...=Wgrywanie do I/O p\u0142ytki... #: Sketch.java:1622 Uploading...=Wgrywanie... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=U\u017cyj zaznaczenia do szukania @@ -1567,6 +1575,14 @@ Vietnamese=Wietnamski #: Editor.java:1105 Visit\ Arduino.cc=Odwied\u017a Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=UWAGA\: biblioteka {0} dzia\u0142a na architekturze(/architekturach) {1} i mo\u017ce nie by\u0107 kompatybilna z obecn\u0105 p\u0142ytk\u0105 kt\u00f3ra dzia\u0142a na {2} architekturze(/architekturach) . @@ -1575,30 +1591,33 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be Warning=Ostrze\u017cenia #: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= +Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=Uwaga\: Ten rdze\u0144 nie obs\u0142uguje eksportowania szkic\u00f3w. Prosz\u0119 rozwa\u017cy\u0107 jego aktualizacj\u0119 lub skontaktowa\u0107 si\u0119 z autorem. #: ../../../cc/arduino/utils/ArchiveExtractor.java:197 #, java-format Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Uwaga\: plik {0} po\u0142\u0105czony jest ze \u015bcie\u017ck\u0105 {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Uwaga\: wymuszanie zaufania do niezaufanego dodatku #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Uwaga\: wymuszenie wykonania niezaufanego skryptu ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Uwaga\: niezaufany dodatek, pomini\u0119cie wykonania skryptu ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Uwaga\: platform.txt z rdzenia '{0}' zawiera przestarza\u0142e {1}, przekonwertowane automatycznie na {2}. Rozwa\u017c uaktualnienie tego rdzenia. + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Uwaga\: w platform.txt z rdzenia '{0}' brakuje w\u0142a\u015bciwo\u015bci {1}, zostanie automatycznie ustawione na {2}. Rozwa\u017c aktualizacj\u0119 tego rdzenia. #: ../../../../../app/src/processing/app/Preferences.java:190 Western\ Frisian=Wschodni fryzyjski @@ -1646,10 +1665,10 @@ You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ en You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Wykorzysta\u0142e\u015b limit automatycznego nazewnictwa nowych szkic\u00f3w\nna dzi\u015b. Mo\u017ce p\u00f3jdziesz na spacer zamiast tego ? #: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Twoja kopia \u015brodowiska programistycznego zosta\u0142a zainstalowana w podkatalogu twojego katalogu z ustawieniami.\nProsz\u0119 przenie\u015b\u0107 \u015brodowisko do innego katalogu. #: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= +Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=Twoja kopia \u015brodowiska programistycznego zosta\u0142a zainstalowana w podkatalogu twojego katalogu ze szkicami.\nProsz\u0119 przenie\u015b\u0107 \u015brodowisko do innego katalogu. #: Base.java:2638 ZIP\ files\ or\ folders=Pliki ZIP lub foldery @@ -1756,6 +1775,14 @@ version\ {0}=wersja {0} #, java-format {0}\ libraries={0} bibliotek +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} zwr\u00f3ci\u0142 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.po b/arduino-core/src/processing/app/i18n/Resources_pt.po index 53b7645550d..bf26f6513ae 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Luis Correia , 2012 # n3okill , 2014 # nelsonduvall , 2012,2014 @@ -20,7 +21,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Portuguese (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt/)\n" "MIME-Version: 1.0\n" @@ -51,10 +52,20 @@ msgstr "'Teclado' é apenas suportado no Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Rato' é apenas suportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(altere apenas quando o Arduino não estiver em execução)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -316,10 +327,6 @@ msgstr "Erro na linha: {0}" msgid "Bad file selected" msgstr "Ficheiro incorreto selecionado " -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Mau ficheiro primário do rascunho ou má estrutura do directório do rascunho" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basco" @@ -328,15 +335,16 @@ msgstr "Basco" msgid "Belarusian" msgstr "Bielorrusso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (Índia)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -377,14 +385,14 @@ msgstr "Nova linha e retorno de linha" msgid "Browse" msgstr "Procurar" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Directoria de compilação desapareceu ou é apenas de leitura" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opções de compilação alteradas, a compilar tudo" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -448,10 +456,6 @@ msgstr "Procurar por atualizações ao iniciar" msgid "Chinese (China)" msgstr "Chinês (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinês (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinês (Taiwan)" @@ -460,14 +464,6 @@ msgstr "Chinês (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinês (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinês Simplificado" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinês Tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -587,10 +583,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Não foi possível ler as configurações predefinidas.⏎ Terás de reinstalar o Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Falha ao ler as preferências de compilação anteriores, a compilar tudo" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -618,10 +610,6 @@ msgstr "Não foi possível mudar o nome do rascunho. (2)" msgid "Could not replace {0}" msgstr "Não foi possível substituir {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Falha ao escrever o ficheiro de preferências de compilação" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Não foi possível arquivar o Rascunho" @@ -649,18 +637,10 @@ msgstr "Croata" msgid "Cut" msgstr "Cortar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Checo" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Checo (República Checa)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dinamarquês" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dinamarqês (Dinamarca)" @@ -932,6 +912,18 @@ msgstr "Estónio (Estonia)" msgid "Examples" msgstr "Exemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1160,6 +1152,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Biblioteca inválida encontrada em {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1184,6 +1181,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1197,14 +1198,15 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Pouca memória disponível, podem ocorrer problemas de estabilidade." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malaio (Malásia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1221,9 +1223,10 @@ msgstr "Marata" msgid "Message" msgstr "Mensagem" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Falta o */ do final do /* comentário */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1254,10 +1257,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Deve especificar exatamente um ficheiro de rascunho" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome para o novo ficheiro:" @@ -1302,10 +1301,6 @@ msgstr "Não" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Não selecionou a placa; por favor escolha a placa no menu Ferramentas > Placa." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Não são necessárias alterações para Formatação Automática" @@ -1369,18 +1364,10 @@ msgstr "Não foram encontradas definições de hardware válidas na directoria { msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Noruegês" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norueguês Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norueguês Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1440,6 +1427,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Irão)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1537,11 +1529,6 @@ msgstr "Problema ao aceder aos ficheiros na directoria" msgid "Problem getting data folder" msgstr "Problema ao obter a directoria de dados" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Erro ao mover {0} para a directoria de compilação." - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1560,10 +1547,19 @@ msgstr "Processador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Sair" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refazer" @@ -1615,6 +1611,16 @@ msgstr "Substituir com:" msgid "Romanian" msgstr "Romeno" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russo" @@ -1720,6 +1726,11 @@ msgstr "Porta série {0} não encontrada.\nRepetir o carregamento com outra port msgid "Serial ports" msgstr "Portas série" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1835,10 +1846,6 @@ msgstr "" msgid "Sunshine" msgstr "Sol" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Suaíli" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sueco" @@ -1955,12 +1962,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "O ficheiroa de terceiros platform.txt não define compiler.path. Reporte este problema ao serviço de apoio do hardware de terceiros." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2033,6 +2034,11 @@ msgstr "Erro ao estabelecer ligação: a tentar" msgid "Unable to connect: wrong password?" msgstr "Erro ao estabelecer ligação: palavra passe errada?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Erro ao abrir o monitor série." @@ -2046,15 +2052,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Exceção não tratada de tipo: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Anular" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2103,10 +2114,6 @@ msgstr "A enviar para a placa E/S..." msgid "Uploading..." msgstr "A enviar..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Paquistão)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Usar Seleção para procurar" @@ -2181,6 +2188,16 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visitar Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2224,6 +2241,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2478,6 +2501,16 @@ msgstr "{0} ficheiros adicionados ao rascunho." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt.properties b/arduino-core/src/processing/app/i18n/Resources_pt.properties index 2fcd80794e7..f98ba4756c3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Luis Correia , 2012 # n3okill , 2014 # nelsonduvall , 2012,2014 @@ -15,7 +16,7 @@ # Paulo Monteiro , 2012 # Pedro Santos , 2012 # renatose , 2012,2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pt/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pt/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requer rein\u00edcio do Arduino) @@ -34,9 +35,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' \u00e9 apenas suportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(altere apenas quando o Arduino n\u00e3o estiver em execu\u00e7\u00e3o) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -220,22 +227,20 @@ Bad\ error\ line\:\ {0}=Erro na linha\: {0} #: Editor.java:2136 Bad\ file\ selected=Ficheiro incorreto selecionado -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Mau ficheiro prim\u00e1rio do rascunho ou m\u00e1 estrutura do direct\u00f3rio do rascunho - #: ../../../processing/app/Preferences.java:149 Basque=Basco #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorrusso -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (\u00cdndia) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=A placa {0}\:{1}\:{2} n\u00e3o define a prefer\u00eancia "build.board". Automaticamente configurado como \:{3} @@ -265,12 +270,12 @@ Both\ NL\ &\ CR=Nova linha e retorno de linha #: Preferences.java:81 Browse=Procurar -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directoria de compila\u00e7\u00e3o desapareceu ou \u00e9 apenas de leitura - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Op\u00e7\u00f5es de compila\u00e7\u00e3o alteradas, a compilar tudo +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -319,21 +324,12 @@ Check\ for\ updates\ on\ startup=Procurar por atualiza\u00e7\u00f5es ao iniciar #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chin\u00eas (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chin\u00eas (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chin\u00eas (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chin\u00eas (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chin\u00eas Simplificado - -#: Preferences.java:89 -Chinese\ Traditional=Chin\u00eas Tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -418,9 +414,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es predefinidas.\u23ce Ter\u00e1s de reinstalar o Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Falha ao ler as prefer\u00eancias de compila\u00e7\u00e3o anteriores, a compilar tudo - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel apagar a vers\u00e3o antiga de {0} @@ -442,9 +435,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel mudar o nome do #, java-format Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Falha ao escrever o ficheiro de prefer\u00eancias de compila\u00e7\u00e3o - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar o Rascunho @@ -463,15 +453,9 @@ Croatian=Croata #: Editor.java:1149 Editor.java:2699 Cut=Cortar -#: ../../../processing/app/Preferences.java:83 -Czech=Checo - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Checo (Rep\u00fablica Checa) -#: Preferences.java:90 -Danish=Dinamarqu\u00eas - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Dinamarq\u00eas (Dinamarca) @@ -675,6 +659,15 @@ Estonian\ (Estonia)=Est\u00f3nio (Estonia) #: Editor.java:516 Examples=Exemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -840,6 +833,10 @@ Indonesian=Indon\u00e9sio #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca inv\u00e1lida encontrada em {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -858,6 +855,9 @@ Latvian=Let\u00e3o #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -868,12 +868,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Pouca mem\u00f3ria dispon\u00edvel, podem ocorrer problemas de estabilidade. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaio (Mal\u00e1sia) - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -886,8 +887,9 @@ Marathi=Marata #: Base.java:2112 Message=Mensagem -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final do /* coment\u00e1rio */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modo n\u00e3o suportado @@ -911,9 +913,6 @@ Multiple\ files\ not\ supported=Ficheiros m\u00faltiplos n\u00e3o suportados #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Deve especificar exatamente um ficheiro de rascunho -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nome para o novo ficheiro\: @@ -947,9 +946,6 @@ No=N\u00e3o #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=N\u00e3o selecionou a placa; por favor escolha a placa no menu Ferramentas > Placa. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=N\u00e3o s\u00e3o necess\u00e1rias altera\u00e7\u00f5es para Formata\u00e7\u00e3o Autom\u00e1tica @@ -998,15 +994,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=N\u00e3o foram encontr #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norueg\u00eas - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruegu\u00eas Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Noruegu\u00eas Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f3ria insuficiente\: veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para sugest\u00f5es sobre como reduzir a sua pegada. @@ -1050,6 +1040,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Ir\u00e3o) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1123,10 +1117,6 @@ Problem\ accessing\ files\ in\ folder\ =Problema ao aceder aos ficheiros na dire #: Base.java:1673 Problem\ getting\ data\ folder=Problema ao obter a directoria de dados -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Erro ao mover {0} para a directoria de compila\u00e7\u00e3o. - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema a carregar para a placa. V\u00ea http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugest\u00f5es. @@ -1139,9 +1129,16 @@ Processor=Processador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Sair +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refazer @@ -1181,6 +1178,14 @@ Replace\ with\:=Substituir com\: #: Preferences.java:113 Romanian=Romeno +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russo @@ -1258,6 +1263,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Portas s\u00e9rie +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1338,9 +1347,6 @@ Spanish=Espanhol #: Base.java:540 Sunshine=Sol -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Sua\u00edli - #: ../../../processing/app/Preferences.java:153 Swedish=Sueco @@ -1405,9 +1411,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=O ficheiroa de terceiros platform.txt n\u00e3o define compiler.path. Reporte este problema ao servi\u00e7o de apoio do hardware de terceiros. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro j\u00e1 tinha sido copiado para a\u23ce localiza\u00e7\u00e3o onde est\u00e1s a tentar adicion\u00e1-lo.\u23ce N\u00e3o vou fazer nadinha. @@ -1459,6 +1462,10 @@ Unable\ to\ connect\:\ retrying=Erro ao estabelecer liga\u00e7\u00e3o\: a tentar #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Erro ao estabelecer liga\u00e7\u00e3o\: palavra passe errada? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Erro ao abrir o monitor s\u00e9rie. @@ -1469,13 +1476,17 @@ Unable\ to\ open\ serial\ monitor=Erro ao abrir o monitor s\u00e9rie. #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Exce\u00e7\u00e3o n\u00e3o tratada de tipo\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Anular +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma n\u00e3o especificada, n\u00e3o h\u00e1 iniciador dispon\u00edvel.\nPara ativar a abertura de URLs ou de directorias adicionar uma\nlinha "launcher\=/caminho/para/a-aplica\u00e7\u00e3o" ao ficheiro preferences.txt @@ -1510,9 +1521,6 @@ Uploading\ to\ I/O\ Board...=A enviar para a placa E/S... #: Sketch.java:1622 Uploading...=A enviar... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Paquist\u00e3o) - #: Editor.java:1269 Use\ Selection\ For\ Find=Usar Sele\u00e7\u00e3o para procurar @@ -1570,6 +1578,14 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visitar Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVISO\: a biblioteca {0} diz que pode ser executada em arquitectura(s) {1} e pode ser incompat\u00edvel com a sua placa actual que \u00e9 executada em arquitectura(s) {2}. @@ -1599,6 +1615,9 @@ Warning=Aviso #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1759,6 +1778,14 @@ upload=upload #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} devolveu {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po index a68db45b28f..0efb6324f69 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.po @@ -6,8 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # andre graes , 2012 # Erick Simões , 2014-2015 +# Gustavo Bertoli, 2015 # Henrique P. Machado , 2013 # Philipe Rabelo , 2013 # Rafael H L Moretti , 2014 @@ -17,7 +19,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Portuguese (Brazil) (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt_BR/)\n" "MIME-Version: 1.0\n" @@ -48,10 +50,20 @@ msgstr "'Teclado\" suportado apenas no Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' suportado apenas no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editar apenas quando o Arduino não estiver rodando)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir não é mais suportado" @@ -118,7 +130,7 @@ msgstr "Há {0} novos pacotes disponíveis" #: ../../../../../app/src/processing/app/Base.java:2307 msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" +msgstr "Um subdiretório do seu projeto não é uma biblioteca válida" #: Editor.java:1116 msgid "About Arduino" @@ -126,7 +138,7 @@ msgstr "Sobre Arduino" #: ../../../../../app/src/processing/app/Base.java:1177 msgid "Add .ZIP Library..." -msgstr "" +msgstr "Adicionar biblioteca .ZIP" #: Editor.java:650 msgid "Add File..." @@ -270,7 +282,7 @@ msgstr "Argumento requerido para --preferences-file" #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format msgid "Argument required for {0}" -msgstr "" +msgstr "Argumento requerido par {0}" #: ../../../processing/app/Preferences.java:137 msgid "Armenian" @@ -294,7 +306,7 @@ msgstr "Autoformatação concluída." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Detectar automaticamente definições de proxy" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" @@ -313,10 +325,6 @@ msgstr "Erro na linha: {0}" msgid "Bad file selected" msgstr "Arquivo inválido selecionado" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basco" @@ -325,15 +333,16 @@ msgstr "Basco" msgid "Belarusian" msgstr "Bielorrusso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (Índia)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -374,14 +383,14 @@ msgstr "Ambos, NL e CR" msgid "Browse" msgstr "Navegador" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "A pasta de compilação desapareceu ou não pode ser escrita" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opções de compilação alteradas, recompilando tudo" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -400,7 +409,7 @@ msgstr "Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 msgid "CRC doesn't match. File is corrupted." -msgstr "" +msgstr "CRC não confere. Arquivo corrompido." #: ../../../processing/app/Base.java:379 #, java-format @@ -445,10 +454,6 @@ msgstr "Checar atualizações ao iniciar" msgid "Chinese (China)" msgstr "Chinês (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinês (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinês (Taiwan)" @@ -457,14 +462,6 @@ msgstr "Chinês (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinês (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinês Simplificado" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinês Tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -479,7 +476,7 @@ msgstr "Comentar/descomentar" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 msgid "Compiler warnings: " -msgstr "" +msgstr "Avisos do compilador:" #: Sketch.java:1608 Editor.java:1890 msgid "Compiling sketch..." @@ -576,7 +573,7 @@ msgstr "Não foi possível salvar novamente o sketch" msgid "" "Could not read color theme settings.\n" "You'll need to reinstall Arduino." -msgstr "" +msgstr "Não foi possível ler as configurações do esquema de cores.\nVocê terá que reinstalar o Arduino." #: Preferences.java:219 msgid "" @@ -584,10 +581,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Não foi possível ler as configurações padrão.\nVocê terá que reinstalar o Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Não foi possível ler o arquivo de preferências de compilação, recompilando tudo" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +608,6 @@ msgstr "Não foi possível renomear o sketch. (2)" msgid "Could not replace {0}" msgstr "Não foi possível substituir {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Não foi possível escrever o arquivo de preferências de build" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Não foi possível arquivar sketch" @@ -646,18 +635,10 @@ msgstr "Croata" msgid "Cut" msgstr "Cortar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tcheco" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Czech (República Tcheca)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dinamarquês" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dinamarquês (Dinamarca)" @@ -735,20 +716,20 @@ msgstr "Baixado {0}kb de {1}kb." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 msgid "Downloading boards definitions." -msgstr "" +msgstr "Baixando definições das placas." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 msgid "Downloading libraries index..." -msgstr "" +msgstr "Baixando índice de bibliotecas..." #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format msgid "Downloading library: {0}" -msgstr "" +msgstr "Baixando biblioteca: {0}" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 msgid "Downloading platforms index..." -msgstr "" +msgstr "Carregando índices de plataformas..." #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format @@ -929,6 +910,18 @@ msgstr "Estoniano (Estônia)" msgid "Examples" msgstr "Exemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1157,6 +1150,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Biblioteca inválida encontrada em {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1181,6 +1179,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1194,14 +1196,15 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Pouca memória disponível, problemas de estabilidade podem ocorrer." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malay (Malásia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1218,9 +1221,10 @@ msgstr "Marathi" msgid "Message" msgstr "Mensagem" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Falta o */ do final de um /* comentário */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1251,10 +1255,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "É preciso especificar exatamente um arquivo de rascunho" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome para o novo arquivo:" @@ -1299,10 +1299,6 @@ msgstr "Não" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramentas > Placa" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Nenhuma alteração necessária para Autoformatação" @@ -1366,18 +1362,10 @@ msgstr "Nenhuma definição de hardware válida encontrada na pasta {0}." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norueguês" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norueguês (Bokmål)" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Novo Norueguês" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1437,6 +1425,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Irã)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1534,11 +1527,6 @@ msgstr "Problema ao acessar arquivos na pasta" msgid "Problem getting data folder" msgstr "Problema ao obter a pasta de dados" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problemas ao mover {0} para a pasta de compilação" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1545,19 @@ msgstr "Processador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Sair" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refazer" @@ -1612,6 +1609,16 @@ msgstr "Substituir com:" msgid "Romanian" msgstr "Romeno" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russo" @@ -1717,6 +1724,11 @@ msgstr "Porta serial {0} não encontrada.\nTentar carregar usando outra porta se msgid "Serial ports" msgstr "Portas seriais" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1832,10 +1844,6 @@ msgstr "" msgid "Sunshine" msgstr "Nascer-do-sol" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sueco" @@ -1952,12 +1960,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2030,6 +2032,11 @@ msgstr "Não foi possível conectar: tentando novamente" msgid "Unable to connect: wrong password?" msgstr "Não foi possível conectar: senha errada?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Não foi possível abrir o monitor da porta serial" @@ -2043,15 +2050,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Tipo de exceção não capturado: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Desfazer" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2100,10 +2112,6 @@ msgstr "Carregando para placa de E/S..." msgid "Uploading..." msgstr "Carregando..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Usar Seleção Para Localizar" @@ -2178,6 +2186,16 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visite Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2221,6 +2239,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2475,6 +2499,16 @@ msgstr "{0} arquivos adicionados ao sketch." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties index db09077a635..65284aa94fd 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_BR.properties @@ -6,13 +6,15 @@ # Translators: # Translators: # Translators: +# Translators: # andre graes , 2012 # Erick Sim\u00f5es , 2014-2015 +# Gustavo Bertoli, 2015 # Henrique P. Machado , 2013 # Philipe Rabelo , 2013 # Rafael H L Moretti , 2014 # Tiago Goto Sala, 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pt_BR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_BR\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Brazil) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pt_BR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_BR\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requer reinicializa\u00e7\u00e3o do Arduino) @@ -31,9 +33,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' suportado apenas no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editar apenas quando o Arduino n\u00e3o estiver rodando) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir n\u00e3o \u00e9 mais suportado @@ -78,13 +86,13 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ A\ newer\ {0}\ package\ is\ available=H\u00e1 {0} novos pacotes dispon\u00edveis #: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= +A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Um subdiret\u00f3rio do seu projeto n\u00e3o \u00e9 uma biblioteca v\u00e1lida #: Editor.java:1116 About\ Arduino=Sobre Arduino #: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= +Add\ .ZIP\ Library...=Adicionar biblioteca .ZIP #: Editor.java:650 Add\ File...=Adicionar Arquivo... @@ -184,7 +192,7 @@ Argument\ required\ for\ --preferences-file=Argumento requerido para --preferenc #: ../../../processing/app/helpers/CommandlineParser.java:76 #: ../../../processing/app/helpers/CommandlineParser.java:83 #, java-format -!Argument\ required\ for\ {0}= +Argument\ required\ for\ {0}=Argumento requerido par {0} #: ../../../processing/app/Preferences.java:137 Armenian=Arm\u00eanio @@ -202,7 +210,7 @@ Auto\ Format=Autoformata\u00e7\u00e3o Auto\ Format\ finished.=Autoformata\u00e7\u00e3o conclu\u00edda. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Detectar automaticamente defini\u00e7\u00f5es de proxy #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 !Automatic\ proxy\ configuration\ URL\:= @@ -217,22 +225,20 @@ Bad\ error\ line\:\ {0}=Erro na linha\: {0} #: Editor.java:2136 Bad\ file\ selected=Arquivo inv\u00e1lido selecionado -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Basco #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorrusso -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (\u00cdndia) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Placa {0}\:{1}\:{2} n\u00e3o define uma prefer\u00eancia ''build.board''. Autoconfigurada para\: {3} @@ -262,12 +268,12 @@ Both\ NL\ &\ CR=Ambos, NL e CR #: Preferences.java:81 Browse=Navegador -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=A pasta de compila\u00e7\u00e3o desapareceu ou n\u00e3o pode ser escrita - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Op\u00e7\u00f5es de compila\u00e7\u00e3o alteradas, recompilando tudo +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -281,7 +287,7 @@ Burn\ Bootloader=Gravar Bootloader Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)... #: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= +CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC n\u00e3o confere. Arquivo corrompido. #: ../../../processing/app/Base.java:379 #, java-format @@ -316,21 +322,12 @@ Check\ for\ updates\ on\ startup=Checar atualiza\u00e7\u00f5es ao iniciar #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chin\u00eas (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chin\u00eas (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chin\u00eas (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chin\u00eas (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chin\u00eas Simplificado - -#: Preferences.java:89 -Chinese\ Traditional=Chin\u00eas Tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -341,7 +338,7 @@ Close=Fechar Comment/Uncomment=Comentar/descomentar #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = +Compiler\ warnings\:\ =Avisos do compilador\: #: Sketch.java:1608 Editor.java:1890 Compiling\ sketch...=Compilando sketch... @@ -410,14 +407,11 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this Could\ not\ re-save\ sketch=N\u00e3o foi poss\u00edvel salvar novamente o sketch #: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= +Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es do esquema de cores.\nVoc\u00ea ter\u00e1 que reinstalar o Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es padr\u00e3o.\nVoc\u00ea ter\u00e1 que reinstalar o Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=N\u00e3o foi poss\u00edvel ler o arquivo de prefer\u00eancias de compila\u00e7\u00e3o, recompilando tudo - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel remover a vers\u00e3o antiga de {0} @@ -439,9 +433,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel renomear o sket #, java-format Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=N\u00e3o foi poss\u00edvel escrever o arquivo de prefer\u00eancias de build - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar sketch @@ -460,15 +451,9 @@ Croatian=Croata #: Editor.java:1149 Editor.java:2699 Cut=Cortar -#: ../../../processing/app/Preferences.java:83 -Czech=Tcheco - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Czech (Rep\u00fablica Tcheca) -#: Preferences.java:90 -Danish=Dinamarqu\u00eas - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Dinamarqu\u00eas (Dinamarca) @@ -524,17 +509,17 @@ Done\ uploading.=Carregado. Downloaded\ {0}kb\ of\ {1}kb.=Baixado {0}kb de {1}kb. #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= +Downloading\ boards\ definitions.=Baixando defini\u00e7\u00f5es das placas. #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= +Downloading\ libraries\ index...=Baixando \u00edndice de bibliotecas... #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 #, java-format -!Downloading\ library\:\ {0}= +Downloading\ library\:\ {0}=Baixando biblioteca\: {0} #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= +Downloading\ platforms\ index...=Carregando \u00edndices de plataformas... #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 #, java-format @@ -672,6 +657,15 @@ Estonian\ (Estonia)=Estoniano (Est\u00f4nia) #: Editor.java:516 Examples=Exemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -837,6 +831,10 @@ Indonesian=Indon\u00e9sio #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca inv\u00e1lida encontrada em {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -855,6 +853,9 @@ Latvian=Let\u00e3o #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -865,12 +866,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Pouca mem\u00f3ria dispon\u00edvel, problemas de estabilidade podem ocorrer. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malay (Mal\u00e1sia) - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -883,8 +885,9 @@ Marathi=Marathi #: Base.java:2112 Message=Mensagem -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final de um /* coment\u00e1rio */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modo n\u00e3o suportado @@ -908,9 +911,6 @@ Multiple\ files\ not\ supported=M\u00faltiplos arquivos n\u00e3o suportados #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u00c9 preciso especificar exatamente um arquivo de rascunho -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nome para o novo arquivo\: @@ -944,9 +944,6 @@ No=N\u00e3o #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nenhuma placa selecionada. Por favor, escolha uma placa no menu Ferramentas > Placa - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nenhuma altera\u00e7\u00e3o necess\u00e1ria para Autoformata\u00e7\u00e3o @@ -995,15 +992,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nenhuma defini\u00e7\u #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Noruegu\u00eas - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruegu\u00eas (Bokm\u00e5l) -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Novo Noruegu\u00eas - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f3ria insuficiente. Veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para dicas de como reduzir o tamanho de seu c\u00f3digo. @@ -1047,6 +1038,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Ir\u00e3) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1120,10 +1115,6 @@ Problem\ accessing\ files\ in\ folder\ =Problema ao acessar arquivos na pasta #: Base.java:1673 Problem\ getting\ data\ folder=Problema ao obter a pasta de dados -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problemas ao mover {0} para a pasta de compila\u00e7\u00e3o - #: 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. @@ -1136,9 +1127,16 @@ Processor=Processador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Sair +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refazer @@ -1178,6 +1176,14 @@ Replace\ with\:=Substituir com\: #: Preferences.java:113 Romanian=Romeno +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russo @@ -1255,6 +1261,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Portas seriais +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1335,9 +1345,6 @@ Spanish=Espanhol #: Base.java:540 Sunshine=Nascer-do-sol -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Sueco @@ -1402,9 +1409,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este arquivo j\u00e1 foi copiado para o local\nonde voc\u00ea est\u00e1 tentando adicion\u00e1-lo.\nEu ainda n\u00e3o fiz nada. @@ -1456,6 +1460,10 @@ Unable\ to\ connect\:\ retrying=N\u00e3o foi poss\u00edvel conectar\: tentando n #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=N\u00e3o foi poss\u00edvel conectar\: senha errada? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=N\u00e3o foi poss\u00edvel abrir o monitor da porta serial @@ -1466,13 +1474,17 @@ Unable\ to\ open\ serial\ monitor=N\u00e3o foi poss\u00edvel abrir o monitor da #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Tipo de exce\u00e7\u00e3o n\u00e3o capturado\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Desfazer +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma n\u00e3o especificada, nenhum lan\u00e7ador dispon\u00edvel.\nPara habilitar a abertura de URLs ou pastas, adicione uma\nlinha "launcher\=/caminho/para/aplicativo" ao arquivo preferences.txt @@ -1507,9 +1519,6 @@ Uploading\ to\ I/O\ Board...=Carregando para placa de E/S... #: Sketch.java:1622 Uploading...=Carregando... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Usar Sele\u00e7\u00e3o Para Localizar @@ -1567,6 +1576,14 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visite Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVISO\: a biblioteca {0} alega rodar em arquitetura(s) {1} e pode ser incompat\u00edvel com sua placa atual, que roda em arquitetura(s) {2}. @@ -1596,6 +1613,9 @@ Warning=Aviso #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1756,6 +1776,14 @@ upload=carregar #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} retornou {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po index 6ed16e8d414..d4d9ffcc270 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.po +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Paulo Monteiro , 2012 # Luis Correia , 2012 # n3okill , 2014 @@ -22,7 +23,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Portuguese (Portugal) (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt_PT/)\n" "MIME-Version: 1.0\n" @@ -53,10 +54,20 @@ msgstr "'Teclado' é apenas suportado no Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Rato' é apenas suportado no Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(altere apenas quando o Arduino não estiver em execução)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -318,10 +329,6 @@ msgstr "Erro na linha: {0}" msgid "Bad file selected" msgstr "Ficheiro incorreto selecionado " -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Mau ficheiro primário do rascunho ou má estrutura do directório do rascunho" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basco" @@ -330,15 +337,16 @@ msgstr "Basco" msgid "Belarusian" msgstr "Bielorrusso" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali (Índia)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placa" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -379,14 +387,14 @@ msgstr "Nova linha e retorno de linha" msgid "Browse" msgstr "Procurar" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Directoria de compilação desapareceu ou é apenas de leitura" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opções de compilação alteradas, a compilar tudo" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Búlgaro" @@ -450,10 +458,6 @@ msgstr "Procurar por atualizações ao iniciar" msgid "Chinese (China)" msgstr "Chinês (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinês (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinês (Taiwan)" @@ -462,14 +466,6 @@ msgstr "Chinês (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinês (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinês Simplificado" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinês Tradicional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -589,10 +585,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Não foi possível ler as configurações predefinidas.⏎ Terás de reinstalar o Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Falha ao ler as preferências de compilação anteriores, a compilar tudo" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -620,10 +612,6 @@ msgstr "Não foi possível mudar o nome do rascunho. (2)" msgid "Could not replace {0}" msgstr "Não foi possível substituir {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Falha ao escrever o ficheiro de preferências de compilação" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Não foi possível arquivar o Rascunho" @@ -651,18 +639,10 @@ msgstr "Croata" msgid "Cut" msgstr "Cortar" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Checo" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Checo (República Checa)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dinamarquês" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dinamarqês (Dinamarca)" @@ -934,6 +914,18 @@ msgstr "Estónio (Estonia)" msgid "Examples" msgstr "Exemplos" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1162,6 +1154,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Biblioteca inválida encontrada em {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiano" @@ -1186,6 +1183,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1199,14 +1200,15 @@ msgstr "Lituano" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Pouca memória disponível, podem ocorrer problemas de estabilidade." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malaio (Malásia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1223,9 +1225,10 @@ msgstr "Marata" msgid "Message" msgstr "Mensagem" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Falta o */ do final do /* comentário */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1256,10 +1259,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Deve especificar exatamente um ficheiro de rascunho" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Nome para o novo ficheiro:" @@ -1304,10 +1303,6 @@ msgstr "Não" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Não selecionou a placa; por favor escolha a placa no menu Ferramentas > Placa." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Não são necessárias alterações para Formatação Automática" @@ -1371,18 +1366,10 @@ msgstr "Não foram encontradas definições de hardware válidas na directoria { msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Noruegês" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norueguês Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norueguês Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1442,6 +1429,11 @@ msgstr "Persa" msgid "Persian (Iran)" msgstr "Persa (Irão)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1539,11 +1531,6 @@ msgstr "Problema ao aceder aos ficheiros na directoria" msgid "Problem getting data folder" msgstr "Problema ao obter a directoria de dados" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Erro ao mover {0} para a directoria de compilação." - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1562,10 +1549,19 @@ msgstr "Processador" msgid "Programmer" msgstr "Programador" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Sair" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refazer" @@ -1617,6 +1613,16 @@ msgstr "Substituir com:" msgid "Romanian" msgstr "Romeno" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russo" @@ -1722,6 +1728,11 @@ msgstr "Porta série {0} não encontrada.\nRepetir o carregamento com outra port msgid "Serial ports" msgstr "Portas série" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1837,10 +1848,6 @@ msgstr "" msgid "Sunshine" msgstr "Sol" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Suaíli" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Sueco" @@ -1957,12 +1964,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "O ficheiroa de terceiros platform.txt não define compiler.path. Reporte este problema ao serviço de apoio do hardware de terceiros." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2035,6 +2036,11 @@ msgstr "Erro ao estabelecer ligação: a tentar" msgid "Unable to connect: wrong password?" msgstr "Erro ao estabelecer ligação: palavra passe errada?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Erro ao abrir o monitor série." @@ -2048,15 +2054,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Exceção não tratada de tipo: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Anular" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2105,10 +2116,6 @@ msgstr "A enviar para a placa E/S..." msgid "Uploading..." msgstr "A enviar..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Paquistão)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Usar Seleção para procurar" @@ -2183,6 +2190,16 @@ msgstr "Vietnamita" msgid "Visit Arduino.cc" msgstr "Visitar Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2226,6 +2243,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2480,6 +2503,16 @@ msgstr "{0} ficheiros adicionados ao rascunho." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties index 599331dbff7..a11a2a16a61 100644 --- a/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties +++ b/arduino-core/src/processing/app/i18n/Resources_pt_PT.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Paulo Monteiro , 2012 # Luis Correia , 2012 # n3okill , 2014 @@ -17,7 +18,7 @@ # renatose , 2012 # Pedro Santos , 2012 # nuno407 , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pt_PT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_PT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Portuguese (Portugal) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/pt_PT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: pt_PT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(requer rein\u00edcio do Arduino) @@ -36,9 +37,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' \u00e9 apenas suportado no Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(altere apenas quando o Arduino n\u00e3o estiver em execu\u00e7\u00e3o) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -222,22 +229,20 @@ Bad\ error\ line\:\ {0}=Erro na linha\: {0} #: Editor.java:2136 Bad\ file\ selected=Ficheiro incorreto selecionado -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Mau ficheiro prim\u00e1rio do rascunho ou m\u00e1 estrutura do direct\u00f3rio do rascunho - #: ../../../processing/app/Preferences.java:149 Basque=Basco #: ../../../processing/app/Preferences.java:139 Belarusian=Bielorrusso -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali (\u00cdndia) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Placa +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=A placa {0}\:{1}\:{2} n\u00e3o define a prefer\u00eancia "build.board". Automaticamente configurado como \:{3} @@ -267,12 +272,12 @@ Both\ NL\ &\ CR=Nova linha e retorno de linha #: Preferences.java:81 Browse=Procurar -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directoria de compila\u00e7\u00e3o desapareceu ou \u00e9 apenas de leitura - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Op\u00e7\u00f5es de compila\u00e7\u00e3o alteradas, a compilar tudo +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=B\u00falgaro @@ -321,21 +326,12 @@ Check\ for\ updates\ on\ startup=Procurar por atualiza\u00e7\u00f5es ao iniciar #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chin\u00eas (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chin\u00eas (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chin\u00eas (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chin\u00eas (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chin\u00eas Simplificado - -#: Preferences.java:89 -Chinese\ Traditional=Chin\u00eas Tradicional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -420,9 +416,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=N\u00e3o foi poss\u00edvel ler as configura\u00e7\u00f5es predefinidas.\u23ce Ter\u00e1s de reinstalar o Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Falha ao ler as prefer\u00eancias de compila\u00e7\u00e3o anteriores, a compilar tudo - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=N\u00e3o foi poss\u00edvel apagar a vers\u00e3o antiga de {0} @@ -444,9 +437,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=N\u00e3o foi poss\u00edvel mudar o nome do #, java-format Could\ not\ replace\ {0}=N\u00e3o foi poss\u00edvel substituir {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Falha ao escrever o ficheiro de prefer\u00eancias de compila\u00e7\u00e3o - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=N\u00e3o foi poss\u00edvel arquivar o Rascunho @@ -465,15 +455,9 @@ Croatian=Croata #: Editor.java:1149 Editor.java:2699 Cut=Cortar -#: ../../../processing/app/Preferences.java:83 -Czech=Checo - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Checo (Rep\u00fablica Checa) -#: Preferences.java:90 -Danish=Dinamarqu\u00eas - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Dinamarq\u00eas (Dinamarca) @@ -677,6 +661,15 @@ Estonian\ (Estonia)=Est\u00f3nio (Estonia) #: Editor.java:516 Examples=Exemplos +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -842,6 +835,10 @@ Indonesian=Indon\u00e9sio #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Biblioteca inv\u00e1lida encontrada em {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italiano @@ -860,6 +857,9 @@ Latvian=Let\u00e3o #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -870,12 +870,13 @@ Lithuaninan=Lituano #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Pouca mem\u00f3ria dispon\u00edvel, podem ocorrer problemas de estabilidade. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaio (Mal\u00e1sia) - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -888,8 +889,9 @@ Marathi=Marata #: Base.java:2112 Message=Mensagem -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Falta o */ do final do /* coment\u00e1rio */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Modo n\u00e3o suportado @@ -913,9 +915,6 @@ Multiple\ files\ not\ supported=Ficheiros m\u00faltiplos n\u00e3o suportados #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Deve especificar exatamente um ficheiro de rascunho -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Nome para o novo ficheiro\: @@ -949,9 +948,6 @@ No=N\u00e3o #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=N\u00e3o selecionou a placa; por favor escolha a placa no menu Ferramentas > Placa. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=N\u00e3o s\u00e3o necess\u00e1rias altera\u00e7\u00f5es para Formata\u00e7\u00e3o Autom\u00e1tica @@ -1000,15 +996,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=N\u00e3o foram encontr #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norueg\u00eas - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Noruegu\u00eas Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Noruegu\u00eas Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f3ria insuficiente\: veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para sugest\u00f5es sobre como reduzir a sua pegada. @@ -1052,6 +1042,10 @@ Persian=Persa #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persa (Ir\u00e3o) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1125,10 +1119,6 @@ Problem\ accessing\ files\ in\ folder\ =Problema ao aceder aos ficheiros na dire #: Base.java:1673 Problem\ getting\ data\ folder=Problema ao obter a directoria de dados -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Erro ao mover {0} para a directoria de compila\u00e7\u00e3o. - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problema a carregar para a placa. V\u00ea http\://www.arduino.cc/en/Guide/Troubleshooting\#upload para sugest\u00f5es. @@ -1141,9 +1131,16 @@ Processor=Processador #: Editor.java:704 Programmer=Programador +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Sair +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refazer @@ -1183,6 +1180,14 @@ Replace\ with\:=Substituir com\: #: Preferences.java:113 Romanian=Romeno +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russo @@ -1260,6 +1265,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Portas s\u00e9rie +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1340,9 +1349,6 @@ Spanish=Espanhol #: Base.java:540 Sunshine=Sol -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Sua\u00edli - #: ../../../processing/app/Preferences.java:153 Swedish=Sueco @@ -1407,9 +1413,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=O ficheiroa de terceiros platform.txt n\u00e3o define compiler.path. Reporte este problema ao servi\u00e7o de apoio do hardware de terceiros. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este ficheiro j\u00e1 tinha sido copiado para a\u23ce localiza\u00e7\u00e3o onde est\u00e1s a tentar adicion\u00e1-lo.\u23ce N\u00e3o vou fazer nadinha. @@ -1461,6 +1464,10 @@ Unable\ to\ connect\:\ retrying=Erro ao estabelecer liga\u00e7\u00e3o\: a tentar #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Erro ao estabelecer liga\u00e7\u00e3o\: palavra passe errada? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Erro ao abrir o monitor s\u00e9rie. @@ -1471,13 +1478,17 @@ Unable\ to\ open\ serial\ monitor=Erro ao abrir o monitor s\u00e9rie. #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Exce\u00e7\u00e3o n\u00e3o tratada de tipo\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Anular +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plataforma n\u00e3o especificada, n\u00e3o h\u00e1 iniciador dispon\u00edvel.\nPara ativar a abertura de URLs ou de directorias adicionar uma\nlinha "launcher\=/caminho/para/a-aplica\u00e7\u00e3o" ao ficheiro preferences.txt @@ -1512,9 +1523,6 @@ Uploading\ to\ I/O\ Board...=A enviar para a placa E/S... #: Sketch.java:1622 Uploading...=A enviar... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Paquist\u00e3o) - #: Editor.java:1269 Use\ Selection\ For\ Find=Usar Sele\u00e7\u00e3o para procurar @@ -1572,6 +1580,14 @@ Vietnamese=Vietnamita #: Editor.java:1105 Visit\ Arduino.cc=Visitar Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVISO\: a biblioteca {0} diz que pode ser executada em arquitectura(s) {1} e pode ser incompat\u00edvel com a sua placa actual que \u00e9 executada em arquitectura(s) {2}. @@ -1601,6 +1617,9 @@ Warning=Aviso #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1761,6 +1780,14 @@ upload=upload #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} devolveu {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.po b/arduino-core/src/processing/app/i18n/Resources_ro.po index bcb3c7e9c1a..991d79b865e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.po +++ b/arduino-core/src/processing/app/i18n/Resources_ro.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # corneliu.e , 2013-2014 # kobalt , 2012 # Liviu Roman, 2015 @@ -18,7 +19,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Romanian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ro/)\n" "MIME-Version: 1.0\n" @@ -49,10 +50,20 @@ msgstr "''Keyboard' este compatibil doar cu Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse' este compatibil doar cu Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editează doar atunci când Arduino IDE nu funcţionează)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir nu mai este suportat" @@ -70,18 +81,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Actualizări disponibile pentru o parte din {0}plăci{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Actualizări disponibile pentru o parte din {0}plăci{1} și {2}librării{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Actualizări disponibile pentru o parte din {0}librării{1}" #: Editor.java:2053 msgid "" @@ -295,11 +306,11 @@ msgstr "Auto formatare terminată" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Auto detectare setări proxy" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "URL de configurare proxy automată:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -314,10 +325,6 @@ msgstr "Linie eronata: {0}" msgid "Bad file selected" msgstr "Fişierul selectat este invalid" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Fişierul de schiţă primară sau structura directorului schiţă sunt eronate" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Bască" @@ -326,15 +333,16 @@ msgstr "Bască" msgid "Belarusian" msgstr "Belarusă" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengaleză" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Placă" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -375,14 +383,14 @@ msgstr "NL & CR (linie noua şi enter)" msgid "Browse" msgstr "Răsfoire" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Directorul 'build' a dispărut sau nu poate fi scris" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opțiunea pentru build a fost modificată, se execută rebuild all" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgară" @@ -446,10 +454,6 @@ msgstr "Cauta actualizări la pornirea programului" msgid "Chinese (China)" msgstr "Chineză (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chineză (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chineză (Taiwan)" @@ -458,14 +462,6 @@ msgstr "Chineză (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chineză (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chineză simplificată" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chineză tradiţională" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Click pentru o listă de URL-uri neoficiale pentru placi." @@ -585,10 +581,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nu s-a putut citi setările implicite.\nVa trebui să reinstalezi Arduino IDE." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Nu se pot citi preferințele anterioare pentru build. Se executa rebuild all." - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -616,10 +608,6 @@ msgstr "Nu pot redenumi schiţa. (2)" msgid "Could not replace {0}" msgstr "Nu se poate înlocui {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Nu pot scrie în fișierul de preferințe pentru build." - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nu am putut arhiva schiţa" @@ -647,18 +635,10 @@ msgstr "Croată" msgid "Cut" msgstr "Taie" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Cehă" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Cehă (Republica Cehă)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Daneză" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Daneză (Danemarca)" @@ -930,6 +910,18 @@ msgstr "Estonă (Estonia)" msgid "Examples" msgstr "Exemple" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Exportă fișierul Binar compilat" @@ -1057,7 +1049,7 @@ msgstr "Hindusă" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Nume gazda:" #: Sketch.java:295 msgid "" @@ -1158,6 +1150,11 @@ msgstr "Instalare..." msgid "Invalid library found in {0}: {1}" msgstr "Bibliotecă invalidă în {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italiană" @@ -1176,12 +1173,16 @@ msgstr "Letonă" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Manager Librari" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Fișier adăugat în bibliotecă. Verifică meniul \"Include biblioteca\"" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1195,21 +1196,22 @@ msgstr "Lituaniană" msgid "Loading configuration..." msgstr "Încărcare configurație..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Memoria disponibilă este foarte redusă, pot apărea probleme de stabilitate" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malaeziana (Malaezia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Gestionare blibioteci..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Configurare proxy manuală" #: Preferences.java:107 msgid "Marathi" @@ -1219,9 +1221,10 @@ msgstr "Marathi" msgid "Message" msgstr "Mesaj" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Lipsă */ din sfârșitul unui /*comentariu*/" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1252,10 +1255,6 @@ msgstr "Biblioteci multiple au fost găsite pentru \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Trebuie să specificați exact un fișier schiță" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Numele noului fişier" @@ -1266,7 +1265,7 @@ msgstr "Nepaleză" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Rețea" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -1300,10 +1299,6 @@ msgstr "Nu" msgid "No authorization data found" msgstr "Nu există date de autorizare" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nu este selectată nici o placă de dezvoltare; te rog alege una din meniul Instrumente>Placă de dezvoltare" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Nu a rezultat nici o modificare în urma auto formatării." @@ -1334,7 +1329,7 @@ msgstr "Paramettrii lipsă" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Fara proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1367,18 +1362,10 @@ msgstr "Nu s-a găsit nici o definiție hardware valabilă în dosarul {0}." msgid "None" msgstr "Nici unul" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norvegiană" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norvegiană (Malabo)" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norvegiană Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1438,6 +1425,11 @@ msgstr "Persană" msgid "Persian (Iran)" msgstr "Persană (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Vă rugăm sa confirmați ștergerea de plăci" @@ -1469,7 +1461,7 @@ msgstr "Port" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Număr port:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1535,11 +1527,6 @@ msgstr "Problemă la accesarea fişierelor din folder" msgid "Problem getting data folder" msgstr "Problema la preluarea directorului de date" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problema la mutarea {0} către directorul 'build'" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1558,10 +1545,19 @@ msgstr "Preocesorul" msgid "Programmer" msgstr "Programator" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Ieşire" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refă" @@ -1613,6 +1609,16 @@ msgstr "Înlocuire cu:" msgid "Romanian" msgstr "Română" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rusă" @@ -1718,9 +1724,14 @@ msgstr "Portul serial {0} nu a fost găsit.\nDoreşti sa utilizezi un alt port s msgid "Serial ports" msgstr "Porturi seriale" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Setări" #: Base.java:1681 msgid "Settings issues" @@ -1833,10 +1844,6 @@ msgstr "Începere..." msgid "Sunshine" msgstr "Răsăritul" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Swahili" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Suedeză" @@ -1953,12 +1960,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "Directorul de schițe specificat conține o copie a IDE-ului.\nVă rugăm să alegeți un alt folder pentru schița dumneavoastră." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Fişierul platform.txt nu defineşte compiler.path. Te rog raportează această problemă responsabilului de partea hardware." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2031,6 +2032,11 @@ msgstr "Conexiune imposibilă: reâncercare" msgid "Unable to connect: wrong password?" msgstr "Imposibil de realizat conexiunea: parola greșită?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Nu pot deschide monitorizarea serială" @@ -2044,15 +2050,20 @@ msgstr "Serial plotter nu poate fi deschis" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Nu se poate accesa Arduino.cc din cauza unei posibile probleme de rețea" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Excepţie necunoscută: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Anulează" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2063,7 +2074,7 @@ msgstr "Platformă nespecificată, lansator indisponibil.\nPentru a permite desc #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 msgid "Updatable" -msgstr "" +msgstr "Actualizabil" #: UpdateCheck.java:111 msgid "Update" @@ -2101,10 +2112,6 @@ msgstr "Se încarcă în placa de dezvoltare..." msgid "Uploading..." msgstr "Încărcare..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Foloseşte selecţia pentru căutare" @@ -2116,7 +2123,7 @@ msgstr "Foloseşte un editor extern" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Nume utilizator:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -2143,7 +2150,7 @@ msgstr "Verifică codul după încarcare" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Verifica/Compilează" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." @@ -2179,6 +2186,16 @@ msgstr "Vietnameză" msgid "Visit Arduino.cc" msgstr "Vizitaţi Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2203,17 +2220,17 @@ msgstr "Avertizare: fișier {0} legat către o cale absolută {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "" +msgstr "Atenție: forțați încrederea în contribuții care nu prezintă încredere" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format msgid "Warning: forced untrusted script execution ({0})" -msgstr "" +msgstr "Atenție: forțați execuția unui script care nu prezintă încredere ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" +msgstr "Atenție: contribuție care nu prezintă încredere, scriptul nu v-a fi executat ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -2222,6 +2239,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Atenție: platform.txt din nucleul \"{0}\" conține deprecieri {1}, convertite automat la {2}. Luați în considerare modernizarea acestui nucleu." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2476,6 +2499,16 @@ msgstr "{0} fişiere au fost adăugate schiţei." msgid "{0} libraries" msgstr "{0} Biblioteci" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ro.properties b/arduino-core/src/processing/app/i18n/Resources_ro.properties index ba2d56dc153..de7adf73363 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ro.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ro.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # corneliu.e , 2013-2014 # kobalt , 2012 # Liviu Roman, 2015 @@ -13,7 +14,7 @@ # Pop Gheorghe , 2013 # Pop Gheorghe , 2013-2015 # Vl\u0103du\u0163 Ilie , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Romanian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ro/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ro\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1?0\:(((n%100>19)||((n%100\=\=0)&&(n\!\=0)))?2\:1));\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Romanian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ro/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ro\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1?0\:(((n%100>19)||((n%100\=\=0)&&(n\!\=0)))?2\:1));\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(este necesar\u0103 repornirea editorului Arduino) @@ -32,9 +33,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' este compatibil doar cu Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editeaz\u0103 doar atunci c\u00e2nd Arduino IDE nu func\u0163ioneaz\u0103) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir nu mai este suportat @@ -46,15 +53,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Actualiz\u0103ri disponibile pentru o parte din {0}pl\u0103ci{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Actualiz\u0103ri disponibile pentru o parte din {0}pl\u0103ci{1} \u0219i {2}libr\u0103rii{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Actualiz\u0103ri disponibile pentru o parte din {0}libr\u0103rii{1} #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Dore\u015fti s\u0103 salvezi modific\u0103rile aduse acestei schi\u0163e
\u00eenainte de a \u00eenchide?

Dac\u0103 nu salvezi, modific\u0103rile vor fi pierdute. @@ -203,10 +210,10 @@ Auto\ Format=Auto formatare Auto\ Format\ finished.=Auto formatare terminat\u0103 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Auto detectare set\u0103ri proxy #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=URL de configurare proxy automat\u0103\: #: SerialMonitor.java:110 Autoscroll=Parcurgere automat\u0103 @@ -218,22 +225,20 @@ Bad\ error\ line\:\ {0}=Linie eronata\: {0} #: Editor.java:2136 Bad\ file\ selected=Fi\u015fierul selectat este invalid -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Fi\u015fierul de schi\u0163\u0103 primar\u0103 sau structura directorului schi\u0163\u0103 sunt eronate - #: ../../../processing/app/Preferences.java:149 Basque=Basc\u0103 #: ../../../processing/app/Preferences.java:139 Belarusian=Belarus\u0103 -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengalez\u0103 - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Plac\u0103 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Placa {0}\:{1}\:{2} nu are definit\u0103 nici o preferin\u0163\u0103 ''build.board'' . Trec implicit pe \: {3} @@ -263,12 +268,12 @@ Both\ NL\ &\ CR=NL & CR (linie noua \u015fi enter) #: Preferences.java:81 Browse=R\u0103sfoire -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directorul 'build' a disp\u0103rut sau nu poate fi scris - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Op\u021biunea pentru build a fost modificat\u0103, se execut\u0103 rebuild all +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgar\u0103 @@ -317,21 +322,12 @@ Check\ for\ updates\ on\ startup=Cauta actualiz\u0103ri la pornirea programului #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinez\u0103 (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinez\u0103 (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinez\u0103 (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinez\u0103 (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinez\u0103 simplificat\u0103 - -#: Preferences.java:89 -Chinese\ Traditional=Chinez\u0103 tradi\u0163ional\u0103 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Click pentru o list\u0103 de URL-uri neoficiale pentru placi. @@ -416,9 +412,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nu s-a putut citi set\u0103rile implicite.\nVa trebui s\u0103 reinstalezi Arduino IDE. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nu se pot citi preferin\u021bele anterioare pentru build. Se executa rebuild all. - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nu se poate \u00eenl\u0103tura vechea versiune pentru {0} @@ -440,9 +433,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nu pot redenumi schi\u0163a. (2) #, java-format Could\ not\ replace\ {0}=Nu se poate \u00eenlocui {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Nu pot scrie \u00een fi\u0219ierul de preferin\u021be pentru build. - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nu am putut arhiva schi\u0163a @@ -461,15 +451,9 @@ Croatian=Croat\u0103 #: Editor.java:1149 Editor.java:2699 Cut=Taie -#: ../../../processing/app/Preferences.java:83 -Czech=Ceh\u0103 - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=Ceh\u0103 (Republica Ceh\u0103) -#: Preferences.java:90 -Danish=Danez\u0103 - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danez\u0103 (Danemarca) @@ -673,6 +657,15 @@ Estonian\ (Estonia)=Eston\u0103 (Estonia) #: Editor.java:516 Examples=Exemple +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Export\u0103 fi\u0219ierul Binar compilat @@ -766,7 +759,7 @@ Help=Ajutor Hindi=Hindus\u0103 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Nume gazda\: #: Sketch.java:295 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? @@ -838,6 +831,10 @@ Installing...=Instalare... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Bibliotec\u0103 invalid\u0103 \u00een {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italian\u0103 @@ -851,11 +848,14 @@ Korean=Corean\u0103 Latvian=Leton\u0103 #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Manager Librari #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Fi\u0219ier ad\u0103ugat \u00een bibliotec\u0103. Verific\u0103 meniul "Include biblioteca" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=Biblioteca este deja instalat\u0103\: {0} versiunea {1} @@ -866,17 +866,18 @@ Lithuaninan=Lituanian\u0103 #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=\u00cenc\u0103rcare configura\u021bie... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=Memoria disponibil\u0103 este foarte redus\u0103, pot ap\u0103rea probleme de stabilitate -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaeziana (Malaezia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Gestionare blibioteci... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Configurare proxy manual\u0103 #: Preferences.java:107 Marathi=Marathi @@ -884,8 +885,9 @@ Marathi=Marathi #: Base.java:2112 Message=Mesaj -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Lips\u0103 */ din sf\u00e2r\u0219itul unui /*comentariu*/ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=Mod nesuportat @@ -909,9 +911,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Biblioteci multiple au fost g\u0103 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Trebuie s\u0103 specifica\u021bi exact un fi\u0219ier schi\u021b\u0103 -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Numele noului fi\u015fier @@ -919,7 +918,7 @@ Name\ for\ new\ file\:=Numele noului fi\u015fier Nepali=Nepalez\u0103 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Re\u021bea #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=Porturi de re\u0163ea @@ -945,9 +944,6 @@ No=Nu #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Nu exist\u0103 date de autorizare -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nu este selectat\u0103 nici o plac\u0103 de dezvoltare; te rog alege una din meniul Instrumente>Plac\u0103 de dezvoltare - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Nu a rezultat nici o modificare \u00een urma auto format\u0103rii. @@ -970,7 +966,7 @@ No\ line\ ending=F\u0103r\u0103 editarea liniei No\ parameters=Paramettrii lips\u0103 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Fara proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Pe bune, e timpul sa ie\u015fi la aer. @@ -996,15 +992,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nu s-a g\u0103sit nici #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Nici unul -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norvegian\u0103 - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norvegian\u0103 (Malabo) -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norvegian\u0103 Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Schi\u0163a este prea mare; vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#size pentru ponturi \u00een reducerea acesteia. @@ -1048,6 +1038,10 @@ Persian=Persan\u0103 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persan\u0103 (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=V\u0103 rug\u0103m sa confirma\u021bi \u0219tergerea de pl\u0103ci @@ -1071,7 +1065,7 @@ Polish=Polonez\u0103 Port=Port #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=Num\u0103r port\: #: ../../../processing/app/Preferences.java:151 Portugese=Portughez\u0103 @@ -1121,10 +1115,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem\u0103 la accesarea fi\u015fierel #: Base.java:1673 Problem\ getting\ data\ folder=Problema la preluarea directorului de date -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Problema la mutarea {0} c\u0103tre directorul 'build' - #: 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. @@ -1137,9 +1127,16 @@ Processor=Preocesorul #: Editor.java:704 Programmer=Programator +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Ie\u015fire +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ref\u0103 @@ -1179,6 +1176,14 @@ Replace\ with\:=\u00cenlocuire cu\: #: Preferences.java:113 Romanian=Rom\u00e2n\u0103 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Rus\u0103 @@ -1256,8 +1261,12 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Porturi seriale +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Set\u0103ri #: Base.java:1681 Settings\ issues=Probleme la set\u0103ri @@ -1336,9 +1345,6 @@ Starting...=\u00cencepere... #: Base.java:540 Sunshine=R\u0103s\u0103ritul -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Swahili - #: ../../../processing/app/Preferences.java:153 Swedish=Suedez\u0103 @@ -1403,9 +1409,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Directorul de schi\u021be specificat con\u021bine o copie a IDE-ului.\nV\u0103 rug\u0103m s\u0103 alege\u021bi un alt folder pentru schi\u021ba dumneavoastr\u0103. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Fi\u015fierul platform.txt nu define\u015fte compiler.path. Te rog raporteaz\u0103 aceast\u0103 problem\u0103 responsabilului de partea hardware. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Acest fi\u015fier a fost deja copiat \u00een\nloca\u0163ia \u00een care \u00eencerci s\u0103-l adaugi.\nM\u0103 opresc aici. @@ -1457,6 +1460,10 @@ Unable\ to\ connect\:\ retrying=Conexiune imposibil\u0103\: re\u00e2ncercare #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Imposibil de realizat conexiunea\: parola gre\u0219it\u0103? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Nu pot deschide monitorizarea serial\u0103 @@ -1467,19 +1474,23 @@ Unable\ to\ open\ serial\ plotter=Serial plotter nu poate fi deschis #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Nu se poate accesa Arduino.cc din cauza unei posibile probleme de re\u021bea -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Excep\u0163ie necunoscut\u0103\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Anuleaz\u0103 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platform\u0103 nespecificat\u0103, lansator indisponibil.\nPentru a permite deschiderea URL-urilor sau a directoarelor, adauga\u0163i urm\u0103toarea linie\n"launcher\=/path/to/app" \u00een fi\u015fierul preferences.txt #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= +Updatable=Actualizabil #: UpdateCheck.java:111 Update=Actualizeaz\u0103 @@ -1508,9 +1519,6 @@ Uploading\ to\ I/O\ Board...=Se \u00eencarc\u0103 \u00een placa de dezvoltare... #: Sketch.java:1622 Uploading...=\u00cenc\u0103rcare... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu - #: Editor.java:1269 Use\ Selection\ For\ Find=Folose\u015fte selec\u0163ia pentru c\u0103utare @@ -1519,7 +1527,7 @@ Use\ external\ editor=Folose\u015fte un editor extern #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=Nume utilizator\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -1540,7 +1548,7 @@ Verify=Verific\u0103 Verify\ code\ after\ upload=Verific\u0103 codul dup\u0103 \u00eencarcare #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Verifica/Compileaz\u0103 #: ../../../../../app/src/processing/app/Base.java:451 Verifying\ and\ uploading...=Verificare si \u00eenc\u0103rcare... @@ -1568,6 +1576,14 @@ Vietnamese=Vietnamez\u0103 #: Editor.java:1105 Visit\ Arduino.cc=Vizita\u0163i Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=AVERTISMENT\: biblioteca {0} pretinde rularea pe arhitectura(ile) {1} \u0219i poate fi incompatibil\u0103 cu board-ul curent care ruleaz\u0103 pe arhitectura(ile) {2}. @@ -1583,20 +1599,23 @@ Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ conside Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Avertizare\: fi\u0219ier {0} legat c\u0103tre o cale absolut\u0103 {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= +Warning\:\ forced\ trusting\ untrusted\ contributions=Aten\u021bie\: for\u021ba\u021bi \u00eencrederea \u00een contribu\u021bii care nu prezint\u0103 \u00eencredere #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= +Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Aten\u021bie\: for\u021ba\u021bi execu\u021bia unui script care nu prezint\u0103 \u00eencredere ({0}) #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Aten\u021bie\: contribu\u021bie care nu prezint\u0103 \u00eencredere, scriptul nu v-a fi executat ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Aten\u021bie\: platform.txt din nucleul "{0}" con\u021bine deprecieri {1}, convertite automat la {2}. Lua\u021bi \u00een considerare modernizarea acestui nucleu. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Aten\u021bie\: platform.txt din nucleul '{0}' lips\u0103 proprietate {1}, setat automat la {2}. Lua\u021bi \u00een considerare modernizarea acestui nucleu. @@ -1757,6 +1776,14 @@ version\ {0}=versiunea {0} #, java-format {0}\ libraries={0} Biblioteci +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} a returnat {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.po b/arduino-core/src/processing/app/i18n/Resources_ru.po index 1888d0249e1..2b3d319afb3 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.po +++ b/arduino-core/src/processing/app/i18n/Resources_ru.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 # AlexL , 2015 # angry_snake , 2014 @@ -22,7 +23,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 15:06+0000\n" +"PO-Revision-Date: 2015-09-23 13:31+0000\n" "Last-Translator: AlexL \n" "Language-Team: Russian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ru/)\n" "MIME-Version: 1.0\n" @@ -53,10 +54,20 @@ msgstr "Клавиатура поддерживается только в Arduin msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "Мышь поддерживается только в Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(только когда Arduino IDE не запущена)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir больше не поддерживается" @@ -318,10 +329,6 @@ msgstr "Строка с ошибкой: {0}" msgid "Bad file selected" msgstr "Выбран неверный файл" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Неправильный основной файл скетча или неправильная структура папок скетча" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Баскский" @@ -330,15 +337,16 @@ msgstr "Баскский" msgid "Belarusian" msgstr "Белорусский" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Бенгальский (Индия)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Плата" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -379,14 +387,14 @@ msgstr "NL & CR" msgid "Browse" msgstr "Обзор" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Папка сборки удалена или не может быть перезаписана" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Изменены опции сборки, пересобираем все" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Болгарский" @@ -450,10 +458,6 @@ msgstr "Проверять обновления при запуске" msgid "Chinese (China)" msgstr "Китайский (Китай)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Китайский (Гонконг)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Китайский (Тайвань)" @@ -462,14 +466,6 @@ msgstr "Китайский (Тайвань)" msgid "Chinese (Taiwan) (Big5)" msgstr "Китайский (Тайвань) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Китайский упрощённый" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Китайский традиционный" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Нажмите для получения ресурсов для работы с неофициальными платами" @@ -589,10 +585,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Невозможно прочитать настройки по умолчанию.\nПереустановите Arduino IDE." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Не могу прочитать старый файл настроек сборки, пересобираю все" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -620,10 +612,6 @@ msgstr "Невозможно переименовать скетч. (2)" msgid "Could not replace {0}" msgstr "{0} не заменяется" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Не могу сохранить файл настроек сборки" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Скетч не архивируется" @@ -651,18 +639,10 @@ msgstr "Хорватский - Croatian" msgid "Cut" msgstr "Вырезать" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Чешский - Czech" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Чешский (Республика Чехия)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Датский - Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Датский (Дания)" @@ -934,6 +914,18 @@ msgstr "Эстонский (Эстония)" msgid "Examples" msgstr "Примеры" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "Экспорт отменен, сначала нужно сохранить изменения." + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Экспорт бинарного файла" @@ -1162,6 +1154,11 @@ msgstr "Установка..." msgid "Invalid library found in {0}: {1}" msgstr "Неверная библиотека найдена в {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Итальянский" @@ -1186,6 +1183,10 @@ msgstr "Менеджер библиотек" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Библиотека добавлена. Проверьте меню \"Подключить библиотеку\"" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1199,14 +1200,15 @@ msgstr "Литовский" msgid "Loading configuration..." msgstr "Загрузка конфигурации..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Недостаточно памяти, программа может работать нестабильно." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Малазийский (Малайзия)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Управлять библиотеками..." @@ -1223,9 +1225,10 @@ msgstr "Mаратхи" msgid "Message" msgstr "Сообщение" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Пропущено */ в конце /*комментария*/" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1256,10 +1259,6 @@ msgstr "Несколько библиотек найдено для \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Необходимо указать только один файл скетча" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Имя для нового файла:" @@ -1304,10 +1303,6 @@ msgstr "Нет" msgid "No authorization data found" msgstr "Не найдены данные авторизации" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Не выбрана плата; пожалуйста, выберите плату из меню Сервис > Плата." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Для АвтоФорматирования не нужны изменения." @@ -1371,18 +1366,10 @@ msgstr "Не найдено верных настроек для железа в msgid "None" msgstr "Ничего" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Норвежский" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Норвежский Букмол" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Норвежский Нюнорск" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1442,6 +1429,11 @@ msgstr "Персидский" msgid "Persian (Iran)" msgstr "Персидский (Иран)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Подтвердите удаление плат" @@ -1539,11 +1531,6 @@ msgstr "Проблема с доступом к файлам в папке" msgid "Problem getting data folder" msgstr "Не удалось получить папку с данными" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Проблема с перемещением {0} в папку сборки" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1562,10 +1549,19 @@ msgstr "Процессор" msgid "Programmer" msgstr "Программатор" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Выход" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Вернуть" @@ -1617,6 +1613,16 @@ msgstr "Чем:" msgid "Romanian" msgstr "Румынский" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Русский" @@ -1722,6 +1728,11 @@ msgstr "Последовательный порт {0} не обнаружен.\n msgid "Serial ports" msgstr "Последовательные порты" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "Настройки" @@ -1837,10 +1848,6 @@ msgstr "Запуск..." msgid "Sunshine" msgstr "Солнечный свет" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Суахили" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Шведский" @@ -1957,12 +1964,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "Выбранная папка для скетчей содержит IDE.\nПожалуйста выберите другую папку для вашей папки со скетчами." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "В файле platform.txt от стороннего производителя не определён compiler.path. Пожалуйста, сообщите об этом производителю hardware." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2035,6 +2036,11 @@ msgstr "Не могу подключиться: повторяю попытку" msgid "Unable to connect: wrong password?" msgstr "Не могу подключиться: неправильный пароль?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Не могу открыть монитор порта" @@ -2048,15 +2054,20 @@ msgstr "Не могу открыть плоттер по последовате msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Возникла ошибка при соединении с Arduino.cc" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Непойманный тип исключения: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Отменить" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2105,10 +2116,6 @@ msgstr "Загрузка в плату..." msgid "Uploading..." msgstr "Загрузка..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Урду (Пакистан)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Искать выделенное" @@ -2183,6 +2190,16 @@ msgstr "Вьетнамский" msgid "Visit Arduino.cc" msgstr "Перейти на Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2226,6 +2243,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Внимание: platform.txt из ядра '{0}' содержит устаревшие {1}, автоматически преобразовано в {2}. Ожидайте обновления ядра." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "Внимание: platform.txt из ядра '{0}' не содержит опции '{1}', используется значение по умолчанию '{2}'. Ожидайте обновления этого ядра." + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2480,6 +2503,16 @@ msgstr "{0} файлов добавлено в скетч" msgid "{0} libraries" msgstr "{0} библиотек" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ru.properties b/arduino-core/src/processing/app/i18n/Resources_ru.properties index 87acc4e0d43..2542c3ab81a 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ru.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ru.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Aleksandr Jadov , 2013 # AlexL , 2015 # angry_snake , 2014 @@ -17,7 +18,7 @@ # Petr Beklemishev , 2014-2015 # Petr Beklemishev , 2015 # \u0420\u0443\u0441\u043b\u0430\u043d , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 15\:06+0000\nLast-Translator\: AlexL \nLanguage-Team\: Russian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ru/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ru\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:31+0000\nLast-Translator\: AlexL \nLanguage-Team\: Russian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ru/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ru\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u043d\u0443\u0436\u0435\u043d \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0443\u0441\u043a Arduino IDE) @@ -36,9 +37,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u041c\u044b\u0448\u044c \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f \u0442\u043e\u043b\u044c\u043a\u043e \u0432 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0442\u043e\u043b\u044c\u043a\u043e \u043a\u043e\u0433\u0434\u0430 Arduino IDE \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u0430) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir \u0431\u043e\u043b\u044c\u0448\u0435 \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f @@ -222,22 +229,20 @@ Bad\ error\ line\:\ {0}=\u0421\u0442\u0440\u043e\u043a\u0430 \u0441 \u043e\u0448 #: Editor.java:2136 Bad\ file\ selected=\u0412\u044b\u0431\u0440\u0430\u043d \u043d\u0435\u0432\u0435\u0440\u043d\u044b\u0439 \u0444\u0430\u0439\u043b -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u043e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0444\u0430\u0439\u043b \u0441\u043a\u0435\u0442\u0447\u0430 \u0438\u043b\u0438 \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0430\u044f \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043f\u0430\u043f\u043e\u043a \u0441\u043a\u0435\u0442\u0447\u0430 - #: ../../../processing/app/Preferences.java:149 Basque=\u0411\u0430\u0441\u043a\u0441\u043a\u0438\u0439 #: ../../../processing/app/Preferences.java:139 Belarusian=\u0411\u0435\u043b\u043e\u0440\u0443\u0441\u0441\u043a\u0438\u0439 -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=\u0411\u0435\u043d\u0433\u0430\u043b\u044c\u0441\u043a\u0438\u0439 (\u0418\u043d\u0434\u0438\u044f) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u041f\u043b\u0430\u0442\u0430 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u041f\u043b\u0430\u0442\u0430 {0}\:{1}\:{2} \u043d\u0435 \u0443\u0441\u0442\u0430\u043d\u0430\u0432\u043b\u0438\u0432\u0430\u0435\u0442 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e ''build.board''. \u0410\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0432\u044b\u0431\u0440\u0430\u043d\u043e\: {3} @@ -267,12 +272,12 @@ Both\ NL\ &\ CR=NL & CR #: Preferences.java:81 Browse=\u041e\u0431\u0437\u043e\u0440 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u041f\u0430\u043f\u043a\u0430 \u0441\u0431\u043e\u0440\u043a\u0438 \u0443\u0434\u0430\u043b\u0435\u043d\u0430 \u0438\u043b\u0438 \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0430 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u0418\u0437\u043c\u0435\u043d\u0435\u043d\u044b \u043e\u043f\u0446\u0438\u0438 \u0441\u0431\u043e\u0440\u043a\u0438, \u043f\u0435\u0440\u0435\u0441\u043e\u0431\u0438\u0440\u0430\u0435\u043c \u0432\u0441\u0435 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0411\u043e\u043b\u0433\u0430\u0440\u0441\u043a\u0438\u0439 @@ -321,21 +326,12 @@ Check\ for\ updates\ on\ startup=\u041f\u0440\u043e\u0432\u0435\u0440\u044f\u044 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u041a\u0438\u0442\u0430\u0439) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u0413\u043e\u043d\u043a\u043e\u043d\u0433) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0443\u043f\u0440\u043e\u0449\u0451\u043d\u043d\u044b\u0439 - -#: Preferences.java:89 -Chinese\ Traditional=\u041a\u0438\u0442\u0430\u0439\u0441\u043a\u0438\u0439 \u0442\u0440\u0430\u0434\u0438\u0446\u0438\u043e\u043d\u043d\u044b\u0439 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u041d\u0430\u0436\u043c\u0438\u0442\u0435 \u0434\u043b\u044f \u043f\u043e\u043b\u0443\u0447\u0435\u043d\u0438\u044f \u0440\u0435\u0441\u0443\u0440\u0441\u043e\u0432 \u0434\u043b\u044f \u0440\u0430\u0431\u043e\u0442\u044b \u0441 \u043d\u0435\u043e\u0444\u0438\u0446\u0438\u0430\u043b\u044c\u043d\u044b\u043c\u0438 \u043f\u043b\u0430\u0442\u0430\u043c\u0438 @@ -420,9 +416,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435\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 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e.\n\u041f\u0435\u0440\u0435\u0443\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 Arduino IDE. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u044c \u0441\u0442\u0430\u0440\u044b\u0439 \u0444\u0430\u0439\u043b \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0441\u0431\u043e\u0440\u043a\u0438, \u043f\u0435\u0440\u0435\u0441\u043e\u0431\u0438\u0440\u0430\u044e \u0432\u0441\u0435 - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u0421\u0442\u0430\u0440\u0430\u044f \u0432\u0435\u0440\u0441\u0438\u044f {0} \u043d\u0435 \u0443\u0434\u0430\u043b\u044f\u0435\u0442\u0441\u044f @@ -444,9 +437,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435\u0432\u043e\u0437\u043c\u043e #, java-format Could\ not\ replace\ {0}={0} \u043d\u0435 \u0437\u0430\u043c\u0435\u043d\u044f\u0435\u0442\u0441\u044f -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u041d\u0435 \u043c\u043e\u0433\u0443 \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0444\u0430\u0439\u043b \u043d\u0430\u0441\u0442\u0440\u043e\u0435\u043a \u0441\u0431\u043e\u0440\u043a\u0438 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0421\u043a\u0435\u0442\u0447 \u043d\u0435 \u0430\u0440\u0445\u0438\u0432\u0438\u0440\u0443\u0435\u0442\u0441\u044f @@ -465,15 +455,9 @@ Croatian=\u0425\u043e\u0440\u0432\u0430\u0442\u0441\u043a\u0438\u0439 - Croatian #: Editor.java:1149 Editor.java:2699 Cut=\u0412\u044b\u0440\u0435\u0437\u0430\u0442\u044c -#: ../../../processing/app/Preferences.java:83 -Czech=\u0427\u0435\u0448\u0441\u043a\u0438\u0439 - Czech - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u0427\u0435\u0448\u0441\u043a\u0438\u0439 (\u0420\u0435\u0441\u043f\u0443\u0431\u043b\u0438\u043a\u0430 \u0427\u0435\u0445\u0438\u044f) -#: Preferences.java:90 -Danish=\u0414\u0430\u0442\u0441\u043a\u0438\u0439 - Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=\u0414\u0430\u0442\u0441\u043a\u0438\u0439 (\u0414\u0430\u043d\u0438\u044f) @@ -677,6 +661,15 @@ Estonian\ (Estonia)=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439 (\u04 #: Editor.java:516 Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u044b +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u043e\u0442\u043c\u0435\u043d\u0435\u043d, \u0441\u043d\u0430\u0447\u0430\u043b\u0430 \u043d\u0443\u0436\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=\u042d\u043a\u0441\u043f\u043e\u0440\u0442 \u0431\u0438\u043d\u0430\u0440\u043d\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430 @@ -842,6 +835,10 @@ Installing...=\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u043a\u0430... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u041d\u0435\u0432\u0435\u0440\u043d\u0430\u044f \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u043d\u0430\u0439\u0434\u0435\u043d\u0430 \u0432 {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0418\u0442\u0430\u043b\u044c\u044f\u043d\u0441\u043a\u0438\u0439 @@ -860,6 +857,9 @@ Library\ Manager=\u041c\u0435\u043d\u0435\u0434\u0436\u0435\u0440 \u0431\u0438\u #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0434\u043e\u0431\u0430\u0432\u043b\u0435\u043d\u0430. \u041f\u0440\u043e\u0432\u0435\u0440\u044c\u0442\u0435 \u043c\u0435\u043d\u044e "\u041f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0443" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 \u0443\u0436\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u0430\: {0} \u0432\u0435\u0440\u0441\u0438\u0438 {1} @@ -870,12 +870,13 @@ Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438\u0439 #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u043a\u043e\u043d\u0444\u0438\u0433\u0443\u0440\u0430\u0446\u0438\u0438... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0430\u043c\u044f\u0442\u0438, \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430 \u043c\u043e\u0436\u0435\u0442 \u0440\u0430\u0431\u043e\u0442\u0430\u0442\u044c \u043d\u0435\u0441\u0442\u0430\u0431\u0438\u043b\u044c\u043d\u043e. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=\u041c\u0430\u043b\u0430\u0437\u0438\u0439\u0441\u043a\u0438\u0439 (\u041c\u0430\u043b\u0430\u0439\u0437\u0438\u044f) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=\u0423\u043f\u0440\u0430\u0432\u043b\u044f\u0442\u044c \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u043c\u0438... @@ -888,8 +889,9 @@ Marathi=M\u0430\u0440\u0430\u0442\u0445\u0438 #: Base.java:2112 Message=\u0421\u043e\u043e\u0431\u0449\u0435\u043d\u0438\u0435 -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u041f\u0440\u043e\u043f\u0443\u0449\u0435\u043d\u043e */ \u0432 \u043a\u043e\u043d\u0446\u0435 /*\u043a\u043e\u043c\u043c\u0435\u043d\u0442\u0430\u0440\u0438\u044f*/ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\u0420\u0435\u0436\u0438\u043c \u043d\u0435 \u043f\u043e\u0434\u0434\u0435\u0440\u0436\u0438\u0432\u0430\u0435\u0442\u0441\u044f @@ -913,9 +915,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=\u041d\u0435\u0441\u043a\u043e\u043 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u041d\u0435\u043e\u0431\u0445\u043e\u0434\u0438\u043c\u043e \u0443\u043a\u0430\u0437\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u043e\u0434\u0438\u043d \u0444\u0430\u0439\u043b \u0441\u043a\u0435\u0442\u0447\u0430 -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\u0418\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0430\: @@ -949,9 +948,6 @@ No=\u041d\u0435\u0442 #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=\u041d\u0435 \u043d\u0430\u0439\u0434\u0435\u043d\u044b \u0434\u0430\u043d\u043d\u044b\u0435 \u0430\u0432\u0442\u043e\u0440\u0438\u0437\u0430\u0446\u0438\u0438 -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u0432\u044b\u0431\u0440\u0430\u043d\u0430 \u043f\u043b\u0430\u0442\u0430; \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u043f\u043b\u0430\u0442\u0443 \u0438\u0437 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0438\u0441 > \u041f\u043b\u0430\u0442\u0430. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0414\u043b\u044f \u0410\u0432\u0442\u043e\u0424\u043e\u0440\u043c\u0430\u0442\u0438\u0440\u043e\u0432\u0430\u043d\u0438\u044f \u043d\u0435 \u043d\u0443\u0436\u043d\u044b \u0438\u0437\u043c\u0435\u043d\u0435\u043d\u0438\u044f. @@ -1000,15 +996,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u041d\u0435 \u043d\u0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=\u041d\u0438\u0447\u0435\u0433\u043e -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=\u041d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u041d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 \u0411\u0443\u043a\u043c\u043e\u043b -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=\u041d\u043e\u0440\u0432\u0435\u0436\u0441\u043a\u0438\u0439 \u041d\u044e\u043d\u043e\u0440\u0441\u043a - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u0435\u0434\u043e\u0441\u0442\u0430\u0442\u043e\u0447\u043d\u043e \u043f\u0430\u043c\u044f\u0442\u0438; \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0439\u0442\u0435 http\://www.arduino.cc/en/Guide/Troubleshooting\#size @@ -1052,6 +1042,10 @@ Persian=\u041f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u041f\u0435\u0440\u0441\u0438\u0434\u0441\u043a\u0438\u0439 (\u0418\u0440\u0430\u043d) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=\u041f\u043e\u0434\u0442\u0432\u0435\u0440\u0434\u0438\u0442\u0435 \u0443\u0434\u0430\u043b\u0435\u043d\u0438\u0435 \u043f\u043b\u0430\u0442 @@ -1125,10 +1119,6 @@ Problem\ accessing\ files\ in\ folder\ =\u041f\u0440\u043e\u0431\u043b\u0435\u04 #: Base.java:1673 Problem\ getting\ data\ folder=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u043e\u043b\u0443\u0447\u0438\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0441 \u0434\u0430\u043d\u043d\u044b\u043c\u0438 -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u0441 \u043f\u0435\u0440\u0435\u043c\u0435\u0449\u0435\u043d\u0438\u0435\u043c {0} \u0432 \u043f\u0430\u043f\u043a\u0443 \u0441\u0431\u043e\u0440\u043a\u0438 - #: 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. \u041f\u043e\u043c\u043e\u0449\u044c \u043f\u043e \u0437\u0430\u0433\u0440\u0443\u0437\u043a\u0435\: http\://www.arduino.cc/en/Guide/Troubleshooting\#upload . @@ -1141,9 +1131,16 @@ Processor=\u041f\u0440\u043e\u0446\u0435\u0441\u0441\u043e\u0440 #: Editor.java:704 Programmer=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u043c\u0430\u0442\u043e\u0440 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u0412\u044b\u0445\u043e\u0434 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u0412\u0435\u0440\u043d\u0443\u0442\u044c @@ -1183,6 +1180,14 @@ Replace\ with\:=\u0427\u0435\u043c\: #: Preferences.java:113 Romanian=\u0420\u0443\u043c\u044b\u043d\u0441\u043a\u0438\u0439 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u0420\u0443\u0441\u0441\u043a\u0438\u0439 @@ -1260,6 +1265,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=\u041f\u043e\u0441\u043b\u0435\u0434\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u043d\u044b\u0435 \u043f\u043e\u0440\u0442\u044b +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438 @@ -1340,9 +1349,6 @@ Starting...=\u0417\u0430\u043f\u0443\u0441\u043a... #: Base.java:540 Sunshine=\u0421\u043e\u043b\u043d\u0435\u0447\u043d\u044b\u0439 \u0441\u0432\u0435\u0442 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=\u0421\u0443\u0430\u0445\u0438\u043b\u0438 - #: ../../../processing/app/Preferences.java:153 Swedish=\u0428\u0432\u0435\u0434\u0441\u043a\u0438\u0439 @@ -1407,9 +1413,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\u0412\u044b\u0431\u0440\u0430\u043d\u043d\u0430\u044f \u043f\u0430\u043f\u043a\u0430 \u0434\u043b\u044f \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 IDE.\n\u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430 \u0432\u044b\u0431\u0435\u0440\u0438\u0442\u0435 \u0434\u0440\u0443\u0433\u0443\u044e \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0432\u0430\u0448\u0435\u0439 \u043f\u0430\u043f\u043a\u0438 \u0441\u043e \u0441\u043a\u0435\u0442\u0447\u0430\u043c\u0438. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\u0412 \u0444\u0430\u0439\u043b\u0435 platform.txt \u043e\u0442 \u0441\u0442\u043e\u0440\u043e\u043d\u043d\u0435\u0433\u043e \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044f \u043d\u0435 \u043e\u043f\u0440\u0435\u0434\u0435\u043b\u0451\u043d compiler.path. \u041f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u0441\u043e\u043e\u0431\u0449\u0438\u0442\u0435 \u043e\u0431 \u044d\u0442\u043e\u043c \u043f\u0440\u043e\u0438\u0437\u0432\u043e\u0434\u0438\u0442\u0435\u043b\u044e hardware. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u042d\u0442\u043e\u0442 \u0444\u0430\u0439\u043b \u0443\u0436\u0435 \u0431\u044b\u043b \u0441\u043a\u043e\u043f\u0438\u0440\u043e\u0432\u0430\u043d \u0432 \u043c\u0435\u0441\u0442\u043e, \u0438\u0437 \u043a\u043e\u0442\u043e\u0440\u043e\u0433\u043e \u0432\u044b \u043f\u044b\u0442\u0430\u0435\u0442\u0435\u0441\u044c \u0434\u043e\u0431\u0430\u0432\u0438\u0442\u044c \u0435\u0433\u043e. \u041d\u0438\u0447\u0435\u0433\u043e \u043d\u0435 \u0441\u0434\u0435\u043b\u0430\u043d\u043e. @@ -1461,6 +1464,10 @@ Unable\ to\ connect\:\ retrying=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043f\u04 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043f\u043e\u0434\u043a\u043b\u044e\u0447\u0438\u0442\u044c\u0441\u044f\: \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u044b\u0439 \u043f\u0430\u0440\u043e\u043b\u044c? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043e\u0442\u043a\u0440\u044b\u0442\u044c \u043c\u043e\u043d\u0438\u0442\u043e\u0440 \u043f\u043e\u0440\u0442\u0430 @@ -1471,13 +1478,17 @@ Unable\ to\ open\ serial\ plotter=\u041d\u0435 \u043c\u043e\u0433\u0443 \u043e\u #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=\u0412\u043e\u0437\u043d\u0438\u043a\u043b\u0430 \u043e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u0441\u043e\u0435\u0434\u0438\u043d\u0435\u043d\u0438\u0438 \u0441 Arduino.cc -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u041d\u0435\u043f\u043e\u0439\u043c\u0430\u043d\u043d\u044b\u0439 \u0442\u0438\u043f \u0438\u0441\u043a\u043b\u044e\u0447\u0435\u043d\u0438\u044f\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u041e\u0442\u043c\u0435\u043d\u0438\u0442\u044c +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u041d\u0435\u0438\u0437\u0432\u0435\u0441\u0442\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, \u0437\u0430\u043f\u0443\u0441\u043a \u043d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u0435\u043d.\n\u0427\u0442\u043e\u0431\u044b \u0432\u043a\u043b\u044e\u0447\u0438\u0442\u044c \u043e\u0442\u043a\u0440\u044b\u0442\u0438\u0435 URL-\u0430\u0434\u0440\u0435\u0441\u043e\u0432 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438, \u0434\u043e\u0431\u0430\u0432\u044c\u0442\u0435 \u0441\u0442\u0440\u043e\u043a\u0443 "launcher\=/path/to/app" \u0432 \u0444\u0430\u0439\u043b preferences.txt @@ -1512,9 +1523,6 @@ Uploading\ to\ I/O\ Board...=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430 \u #: Sketch.java:1622 Uploading...=\u0417\u0430\u0433\u0440\u0443\u0437\u043a\u0430... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=\u0423\u0440\u0434\u0443 (\u041f\u0430\u043a\u0438\u0441\u0442\u0430\u043d) - #: Editor.java:1269 Use\ Selection\ For\ Find=\u0418\u0441\u043a\u0430\u0442\u044c \u0432\u044b\u0434\u0435\u043b\u0435\u043d\u043d\u043e\u0435 @@ -1572,6 +1580,14 @@ Vietnamese=\u0412\u044c\u0435\u0442\u043d\u0430\u043c\u0441\u043a\u0438\u0439 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u041f\u0420\u0415\u0414\u0423\u041f\u0420\u0415\u0416\u0414\u0415\u041d\u0418\u0415\: \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 {0} \u0434\u043e\u043b\u0436\u043d\u0430 \u0437\u0430\u043f\u0443\u0441\u043a\u0430\u0442\u044c\u0441\u044f \u043d\u0430 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0430\u0445 {1} \u0438 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u043d\u0435\u0441\u043e\u0432\u043c\u0435\u0441\u0442\u0438\u043c\u0430 \u0441 \u0432\u0430\u0448\u0435\u0439 \u043f\u043b\u0430\u0442\u043e\u0439 \u043d\u0430 \u0430\u0440\u0445\u0438\u0442\u0435\u043a\u0442\u0443\u0440\u0435 {2}. @@ -1601,6 +1617,9 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=\u041 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: platform.txt \u0438\u0437 \u044f\u0434\u0440\u0430 '{0}' \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0443\u0441\u0442\u0430\u0440\u0435\u0432\u0448\u0438\u0435 {1}, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u043f\u0440\u0435\u043e\u0431\u0440\u0430\u0437\u043e\u0432\u0430\u043d\u043e \u0432 {2}. \u041e\u0436\u0438\u0434\u0430\u0439\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u044f\u0434\u0440\u0430. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: platform.txt \u0438\u0437 \u044f\u0434\u0440\u0430 '{0}' \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043e\u043f\u0446\u0438\u0438 '{1}', \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u0443\u0435\u0442\u0441\u044f \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 \u043f\u043e \u0443\u043c\u043e\u043b\u0447\u0430\u043d\u0438\u044e '{2}'. \u041e\u0436\u0438\u0434\u0430\u0439\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u044f\u0434\u0440\u0430. + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: platform.txt \u0438\u0437 \u044f\u0434\u0440\u0430 '{0}' \u043d\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u043e\u043f\u0446\u0438\u0438 {1}, \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u0435\u0441\u043a\u0438 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e \u0437\u043d\u0430\u0447\u0435\u043d\u0438\u0435 {2}. \u041e\u0436\u0438\u0434\u0430\u0439\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u043b\u0435\u043d\u0438\u044f \u044d\u0442\u043e\u0433\u043e \u044f\u0434\u0440\u0430. @@ -1761,6 +1780,14 @@ version\ {0}=\u0432\u0435\u0440\u0441\u0438\u044f {0} #, java-format {0}\ libraries={0} \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u0432\u043e\u0437\u0432\u0440\u0430\u0442\u0438\u043b {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_sk.po b/arduino-core/src/processing/app/i18n/Resources_sk.po index d5d4c695a27..53289fd0f5e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sk.po +++ b/arduino-core/src/processing/app/i18n/Resources_sk.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Zdeno Sekerák , 2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Slovak (http://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "'Keyboard' je podporovaný iba v Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Myš' je podporovaná iba v Adruino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(editovať iba v prípade že Arduino nebeží)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir nieje ďalej podporované" @@ -64,18 +75,18 @@ msgstr ".pde -> .ino" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format msgid "
Update available for some of your {0}boards{1}" -msgstr "" +msgstr "
Dostupná aktualizácia pre niektorú z tvojích {0}dosiek{1}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format msgid "" "
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" +msgstr "
Dostupná aktualizácia pre niektorú z tvojích {0}dosiek{1} a {2}knižníc{3}" #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format msgid "
Update available for some of your {0}libraries{1}" -msgstr "" +msgstr "
Dostupná aktualizácia pre niektorú z tvojích {0}knižníc{1}" #: Editor.java:2053 msgid "" @@ -289,11 +300,11 @@ msgstr "Automatické Formátovanie ukončené." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 msgid "Auto-detect proxy settings" -msgstr "" +msgstr "Autodetekcia nastavenia proxy" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 msgid "Automatic proxy configuration URL:" -msgstr "" +msgstr "Automatická konfigurácia proxy URL:" #: SerialMonitor.java:110 msgid "Autoscroll" @@ -308,10 +319,6 @@ msgstr "Chyba na riadku: {0}" msgid "Bad file selected" msgstr "Vybraný zlý súbor" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Zlé meno primárneho súboru alebo adresárovej štruktúry." - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskičtina" @@ -320,15 +327,16 @@ msgstr "Baskičtina" msgid "Belarusian" msgstr "Bieloruština" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengálština (India)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Doska" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "Spoločne NL & CR" msgid "Browse" msgstr "Prehliadať" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Adresár pre Build zmizol alebo doň nejde zapisovať" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Voľby pre zostavenie sa zmenili, zostavujem všetko znova " +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulharština" @@ -440,10 +448,6 @@ msgstr "Pri štarte vyhľadať nové verzie" msgid "Chinese (China)" msgstr "Čínština (Čína)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Čínština (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Čínština (Taiwan)" @@ -452,14 +456,6 @@ msgstr "Čínština (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Čínština (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Čínština (zjednodušené znaky)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Čínština (tradičné znaky)" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "Kliknite na zoznam neoficiálnych dosiek ktoré sú podporované na adrese URL" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nieje možné načítať systémové nastavenia.\nBude nutné reinštalovať Adruino IDE." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Nieje možné načítať súbor nastavení predchádzajúcej kompilácie, znova kompilujem" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Nemôžem premenovať projekt. (2)" msgid "Could not replace {0}" msgstr "Nemôžem premenovať {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Nieje možné zapísať súbor nastavení" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Projekt nebolo možné archivovať" @@ -641,18 +629,10 @@ msgstr "Chorvátština" msgid "Cut" msgstr "Vystrihnúť" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Čeština" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Čeština (Česká Republika)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dánština" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Dánština (Dánsko)" @@ -924,6 +904,18 @@ msgstr "Estónština (Estónsko)" msgid "Examples" msgstr "Príklady" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Export kompilovaného Binárneho tvaru" @@ -1051,7 +1043,7 @@ msgstr "Hindština" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 msgid "Host name:" -msgstr "" +msgstr "Host name:" #: Sketch.java:295 msgid "" @@ -1152,6 +1144,11 @@ msgstr "Inštalujem..." msgid "Invalid library found in {0}: {1}" msgstr "Nájdená neplatná knižnica v {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Taliančina" @@ -1170,11 +1167,15 @@ msgstr "Lotyština" #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 msgid "Library Manager" -msgstr "" +msgstr "Správca knižníc" #: ../../../../../app/src/processing/app/Base.java:2349 msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "Knižnica pridaná do zoznamu knižníc. Skontrolujte menu \"Includnuté knižnice\"" +msgstr "Knižnica pridaná do zoznamu knižníc. Skontrolujte menu \"Pridané knižnice\"" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format @@ -1189,21 +1190,22 @@ msgstr "Litovština" msgid "Loading configuration..." msgstr "Nahrávam konfiguráciu..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Málo dostupnej pamäte, môže nastať problém so stabilitou." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malajština (Malajzia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Spravovať Knižnice..." #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 msgid "Manual proxy configuration" -msgstr "" +msgstr "Ručné nastavenie proxy" #: Preferences.java:107 msgid "Marathi" @@ -1213,9 +1215,10 @@ msgstr "Maráthština" msgid "Message" msgstr "Správa" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Chýba znak */ pre ukončenie /* komentára */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1246,10 +1249,6 @@ msgstr "Boli nájdené násobné knižnice pre \"{0}\"" msgid "Must specify exactly one sketch file" msgstr "Musíte označiť iba jeden súbor s projektom" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Názov pre nový súbor:" @@ -1260,7 +1259,7 @@ msgstr "Nepálština" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 msgid "Network" -msgstr "" +msgstr "Sieť" #: ../../../../../app/src/processing/app/Editor.java:65 msgid "Network ports" @@ -1294,10 +1293,6 @@ msgstr "Nie" msgid "No authorization data found" msgstr "Neboli nájdené autorizačné data" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nie je vybraný model dosky (boardu); vyberte model dosky v Nástroje (Tools) > Dosky (Board)" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Žiadne zmeny použiteľné pre Automatické Formátovanie." @@ -1328,7 +1323,7 @@ msgstr "Žiadne parametre" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 msgid "No proxy" -msgstr "" +msgstr "Bez proxy" #: Base.java:541 msgid "No really, time for some fresh air for you." @@ -1361,18 +1356,10 @@ msgstr "V adresáry {0} nebola nájdená žiadna definícia hardware." msgid "None" msgstr "Žiaden" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Nórština" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Nórština Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Nórština Nynorsk" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "Perština" msgid "Persian (Iran)" msgstr "Perština (Irán)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Prosím potvrďte vymazanie dosiek" @@ -1463,7 +1455,7 @@ msgstr "Port" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 msgid "Port number:" -msgstr "" +msgstr "Číslo portu:" #: ../../../processing/app/Preferences.java:151 msgid "Portugese" @@ -1529,11 +1521,6 @@ msgstr "Problém s prístupom k súborom v adresári" msgid "Problem getting data folder" msgstr "Problém s prístupom do dátového adresára" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Problém pri presune {0} do adresára pre build" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programátor" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Ukončiť" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Znova" @@ -1607,6 +1603,16 @@ msgstr "Prepísať s:" msgid "Romanian" msgstr "Rumunština" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ruština" @@ -1712,9 +1718,14 @@ msgstr "Sériový port ''{0}'' nebol nájdený. Skúste nahrávať s iným séri msgid "Serial ports" msgstr "Sériový port" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" -msgstr "" +msgstr "Nastavenia" #: Base.java:1681 msgid "Settings issues" @@ -1827,10 +1838,6 @@ msgstr "Štartujem..." msgid "Sunshine" msgstr "Slnko" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Svahiština" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Švédština" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "Vybraný adresár s projektami obsahuje kópiu tvojho IDE.\nProsím vyber iný adresár pre tvoje projekty." -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "V súbore platform.txt od poskytovateľa tretej strany nieje definované compiler.path. Oznámte to prosím správcovi hardwaru tretej strany." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "Nedarí sa pripojiť: opakujem" msgid "Unable to connect: wrong password?" msgstr "Nedarí sa pripojiť: zlé heslo?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Nedarí sa otvoriť monitor sériového portu" @@ -2038,15 +2044,20 @@ msgstr "Nemožem otvoriť sériový ploter" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "Nepodarilo sa otvoriť Arduino.cc kvôli možným problémom v sieti." -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Nezachytená výnimka typu: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Späť" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "Nahrávam do I/O Dosky..." msgid "Uploading..." msgstr "Nahrávam..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdština (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Pre Vyhľadávanie Použij Výber" @@ -2110,7 +2117,7 @@ msgstr "Použiť externý editor" #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 msgid "Username:" -msgstr "" +msgstr "Uživateľské meno:" #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -2137,7 +2144,7 @@ msgstr "Verifikovať kód po nahratí" #: ../../../../../app/src/processing/app/Editor.java:725 msgid "Verify/Compile" -msgstr "" +msgstr "Kontrola/Kompilácia" #: ../../../../../app/src/processing/app/Base.java:451 msgid "Verifying and uploading..." @@ -2173,6 +2180,16 @@ msgstr "Vietnamština" msgid "Visit Arduino.cc" msgstr "Navštíviť Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2197,7 +2214,7 @@ msgstr "Varovanie: súbor {0} odkazuje na absolútnu cestu {1}" #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 msgid "Warning: forced trusting untrusted contributions" -msgstr "Varovanie: vynútená dôvera v nedôveryhodné príspevky" +msgstr "Varovanie: vypnutá bezpečnostná kontrola" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format @@ -2207,7 +2224,7 @@ msgstr "Varovanie: vynútené spustenie neovereného skriptu ({0})" #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "Varovanie: nedôveryhodný príspevok, spustenie skriptu zastavené ({0})" +msgstr "Varovanie: neoverený skript, spustenie skriptu zastavené ({0})" #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format @@ -2216,12 +2233,18 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "Varovanie: platform.txt z jadra '{0}' obsahuje zastaralý {1}, automatické prevediem na {2}. Zvážte upgrade tohto jadra." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" "Warning: platform.txt from core '{0}' misses property {1}, automatically set" " to {2}. Consider upgrading this core." -msgstr "Varovanie: platform.txt z jadra '{0}' chýbajúce nastavenie {1}, automatický nastavujem na {2}. Zvážte aktualizáciu tohto jadra." +msgstr "Varovanie: platform.txt z jadra '{0}' chýbajúce nastavenie {1}, automaticky nastavujem na {2}. Zvážte aktualizáciu tohoto jadra." #: ../../../../../app/src/processing/app/Preferences.java:190 msgid "Western Frisian" @@ -2470,6 +2493,16 @@ msgstr "{0} súborov pridaných do projektu." msgid "{0} libraries" msgstr "{0} knižnice" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_sk.properties b/arduino-core/src/processing/app/i18n/Resources_sk.properties index f23902b2adc..1a4100167b6 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sk.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sk.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # Zdeno Seker\u00e1k , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovak (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sk\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovak (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sk\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (vy\u017eaduje restart programu Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='My\u0161' je podporovan\u00e1 iba v Adruino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(editova\u0165 iba v pr\u00edpade \u017ee Arduino nebe\u017e\u00ed) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir nieje \u010falej podporovan\u00e9 @@ -40,15 +47,15 @@ #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}=
Dostupn\u00e1 aktualiz\u00e1cia pre niektor\u00fa z tvoj\u00edch {0}dosiek{1} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= +
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
Dostupn\u00e1 aktualiz\u00e1cia pre niektor\u00fa z tvoj\u00edch {0}dosiek{1} a {2}kni\u017en\u00edc{3} #: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 #, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= +
Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
Dostupn\u00e1 aktualiz\u00e1cia pre niektor\u00fa z tvoj\u00edch {0}kni\u017en\u00edc{1} #: Editor.java:2053 \ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= Chce\u0161 ulo\u017ei\u0165 zmeny do tohoto projektu
pred zatvoren\u00edm?

Ak ich neulo\u017e\u00ed\u0161 tvoje zmeny bud\u00fa straten\u00e9. @@ -197,10 +204,10 @@ Auto\ Format=Automatick\u00e9 Form\u00e1tovanie Auto\ Format\ finished.=Automatick\u00e9 Form\u00e1tovanie ukon\u010den\u00e9. #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= +Auto-detect\ proxy\ settings=Autodetekcia nastavenia proxy #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= +Automatic\ proxy\ configuration\ URL\:=Automatick\u00e1 konfigur\u00e1cia proxy URL\: #: SerialMonitor.java:110 Autoscroll=Automatick\u00e9 rolovanie @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=Chyba na riadku\: {0} #: Editor.java:2136 Bad\ file\ selected=Vybran\u00fd zl\u00fd s\u00fabor -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Zl\u00e9 meno prim\u00e1rneho s\u00faboru alebo adres\u00e1rovej \u0161trukt\u00fary. - #: ../../../processing/app/Preferences.java:149 Basque=Baski\u010dtina #: ../../../processing/app/Preferences.java:139 Belarusian=Bieloru\u0161tina -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Beng\u00e1l\u0161tina (India) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Doska +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=V\u00fdvojov\u00e1 doska {0}\:{1}\:{2} nedefinuje vo\u013ebu ''build.board''. Automaticky nastaven\u00e9 na\: {3} @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=Spolo\u010dne NL & CR #: Preferences.java:81 Browse=Prehliada\u0165 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Adres\u00e1r pre Build zmizol alebo do\u0148 nejde zapisova\u0165 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Vo\u013eby pre zostavenie sa zmenili, zostavujem v\u0161etko znova +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulhar\u0161tina @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=Pri \u0161tarte vyh\u013eada\u0165 nov\u00e9 ve #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u010c\u00edn\u0161tina (\u010c\u00edna) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u010c\u00edn\u0161tina (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u010c\u00edn\u0161tina (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u010c\u00edn\u0161tina (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u010c\u00edn\u0161tina (zjednodu\u0161en\u00e9 znaky) - -#: Preferences.java:89 -Chinese\ Traditional=\u010c\u00edn\u0161tina (tradi\u010dn\u00e9 znaky) - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=Kliknite na zoznam neofici\u00e1lnych dosiek ktor\u00e9 s\u00fa podporovan\u00e9 na adrese URL @@ -410,9 +406,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nieje mo\u017en\u00e9 na\u010d\u00edta\u0165 syst\u00e9mov\u00e9 nastavenia.\nBude nutn\u00e9 rein\u0161talova\u0165 Adruino IDE. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nieje mo\u017en\u00e9 na\u010d\u00edta\u0165 s\u00fabor nastaven\u00ed predch\u00e1dzaj\u00facej kompil\u00e1cie, znova kompilujem - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nem\u00f4\u017eem vymaza\u0165 star\u00fa verziu {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nem\u00f4\u017eem premenova\u0165 projekt. #, java-format Could\ not\ replace\ {0}=Nem\u00f4\u017eem premenova\u0165 {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Nieje mo\u017en\u00e9 zap\u00edsa\u0165 s\u00fabor nastaven\u00ed - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Projekt nebolo mo\u017en\u00e9 archivova\u0165 @@ -455,15 +445,9 @@ Croatian=Chorv\u00e1t\u0161tina #: Editor.java:1149 Editor.java:2699 Cut=Vystrihn\u00fa\u0165 -#: ../../../processing/app/Preferences.java:83 -Czech=\u010ce\u0161tina - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u010ce\u0161tina (\u010cesk\u00e1 Republika) -#: Preferences.java:90 -Danish=D\u00e1n\u0161tina - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=D\u00e1n\u0161tina (D\u00e1nsko) @@ -667,6 +651,15 @@ Estonian\ (Estonia)=Est\u00f3n\u0161tina (Est\u00f3nsko) #: Editor.java:516 Examples=Pr\u00edklady +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Export kompilovan\u00e9ho Bin\u00e1rneho tvaru @@ -760,7 +753,7 @@ Help=Pomoc Hindi=Hind\u0161tina #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= +Host\ name\:=Host name\: #: Sketch.java:295 How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Asi by bylo vhodn\u00e9 projekt najprv ulo\u017ei\u0165\nne\u017e mu budeme meni\u0165 meno? @@ -832,6 +825,10 @@ Installing...=In\u0161talujem... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=N\u00e1jden\u00e1 neplatn\u00e1 kni\u017enica v {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Talian\u010dina @@ -845,10 +842,13 @@ Korean=Korej\u010dina Latvian=Loty\u0161tina #: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= +Library\ Manager=Spr\u00e1vca kni\u017en\u00edc #: ../../../../../app/src/processing/app/Base.java:2349 -Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Kni\u017enica pridan\u00e1 do zoznamu kni\u017en\u00edc. Skontrolujte menu "Includnut\u00e9 kni\u017enice" +Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Kni\u017enica pridan\u00e1 do zoznamu kni\u017en\u00edc. Skontrolujte menu "Pridan\u00e9 kni\u017enice" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format @@ -860,17 +860,18 @@ Lithuaninan=Litov\u0161tina #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Nahr\u00e1vam konfigur\u00e1ciu... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=M\u00e1lo dostupnej pam\u00e4te, m\u00f4\u017ee nasta\u0165 probl\u00e9m so stabilitou. -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaj\u0161tina (Malajzia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Spravova\u0165 Kni\u017enice... #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= +Manual\ proxy\ configuration=Ru\u010dn\u00e9 nastavenie proxy #: Preferences.java:107 Marathi=Mar\u00e1th\u0161tina @@ -878,8 +879,9 @@ Marathi=Mar\u00e1th\u0161tina #: Base.java:2112 Message=Spr\u00e1va -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Ch\u00fdba znak */ pre ukon\u010denie /* koment\u00e1ra */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=M\u00f3d nieje podporovan\u00fd @@ -903,9 +905,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"=Boli n\u00e1jden\u00e9 n\u00e1sobn\ #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Mus\u00edte ozna\u010di\u0165 iba jeden s\u00fabor s projektom -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=N\u00e1zov pre nov\u00fd s\u00fabor\: @@ -913,7 +912,7 @@ Name\ for\ new\ file\:=N\u00e1zov pre nov\u00fd s\u00fabor\: Nepali=Nep\u00e1l\u0161tina #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= +Network=Sie\u0165 #: ../../../../../app/src/processing/app/Editor.java:65 Network\ ports=Sie\u0165ov\u00fd port @@ -939,9 +938,6 @@ No=Nie #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Neboli n\u00e1jden\u00e9 autoriza\u010dn\u00e9 data -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nie je vybran\u00fd model dosky (boardu); vyberte model dosky v N\u00e1stroje (Tools) > Dosky (Board) - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u017diadne zmeny pou\u017eite\u013en\u00e9 pre Automatick\u00e9 Form\u00e1tovanie. @@ -964,7 +960,7 @@ No\ line\ ending=Riadok nem\u00e1 ukon\u010dovac\u00ed znak No\ parameters=\u017diadne parametre #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= +No\ proxy=Bez proxy #: Base.java:541 No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Teraz v\u00e1\u017ene, je \u010das na tro\u0161ku \u010derstv\u00e9ho vzduchu. @@ -990,15 +986,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=V adres\u00e1ry {0} ne #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=\u017diaden -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=N\u00f3r\u0161tina - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=N\u00f3r\u0161tina Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=N\u00f3r\u0161tina Nynorsk - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=M\u00e1lo p\u00e4mete; pozri http\://www.arduino.cc/en/Guide/Troubleshooting\#size pre tipy ako redukova\u0165 ve\u013ekos\u0165 k\u00f3du. @@ -1042,6 +1032,10 @@ Persian=Per\u0161tina #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Per\u0161tina (Ir\u00e1n) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=Pros\u00edm potvr\u010fte vymazanie dosiek @@ -1065,7 +1059,7 @@ Polish=Pol\u0161tina Port=Port #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= +Port\ number\:=\u010c\u00edslo portu\: #: ../../../processing/app/Preferences.java:151 Portugese=Portugal\u0161tina @@ -1115,10 +1109,6 @@ Problem\ accessing\ files\ in\ folder\ =Probl\u00e9m s pr\u00edstupom k s\u00fab #: Base.java:1673 Problem\ getting\ data\ folder=Probl\u00e9m s pr\u00edstupom do d\u00e1tov\u00e9ho adres\u00e1ra -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e9m pri presune {0} do adres\u00e1ra pre build - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probl\u00e9m s prenosom dat na v\u00fdvojov\u00fa dosku (board). Na http\://www.arduino.cc/en/Guide/Troubleshooting\#upload n\u00e1jdete n\u00e1vrhy na rie\u0161enie. @@ -1131,9 +1121,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Program\u00e1tor +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Ukon\u010di\u0165 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Znova @@ -1173,6 +1170,14 @@ Replace\ with\:=Prep\u00edsa\u0165 s\: #: Preferences.java:113 Romanian=Rumun\u0161tina +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ru\u0161tina @@ -1250,8 +1255,12 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=S\u00e9riov\u00fd port +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= +Settings=Nastavenia #: Base.java:1681 Settings\ issues=Probl\u00e9m s nastaven\u00edm @@ -1330,9 +1339,6 @@ Starting...=\u0160tartujem... #: Base.java:540 Sunshine=Slnko -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Svahi\u0161tina - #: ../../../processing/app/Preferences.java:153 Swedish=\u0160v\u00e9d\u0161tina @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=Vybran\u00fd adres\u00e1r s projektami obsahuje k\u00f3piu tvojho IDE.\nPros\u00edm vyber in\u00fd adres\u00e1r pre tvoje projekty. -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=V s\u00fabore platform.txt od poskytovate\u013ea tretej strany nieje definovan\u00e9 compiler.path. Ozn\u00e1mte to pros\u00edm spr\u00e1vcovi hardwaru tretej strany. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Tento s\u00fabor u\u017e bol nakop\u00edrovan\u00fd na miesto\nz ktor\u00e9ho si sa ho pok\u00fa\u0161al prida\u0165.\nNem\u00f4\u017eem to urobi\u0165. @@ -1451,6 +1454,10 @@ Unable\ to\ connect\:\ retrying=Nedar\u00ed sa pripoji\u0165\: opakujem #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Nedar\u00ed sa pripoji\u0165\: zl\u00e9 heslo? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Nedar\u00ed sa otvori\u0165 monitor s\u00e9riov\u00e9ho portu @@ -1461,13 +1468,17 @@ Unable\ to\ open\ serial\ plotter=Nemo\u017eem otvori\u0165 s\u00e9riov\u00fd pl #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Nepodarilo sa otvori\u0165 Arduino.cc kv\u00f4li mo\u017en\u00fdm probl\u00e9mom v sieti. -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Nezachyten\u00e1 v\u00fdnimka typu\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Sp\u00e4\u0165 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Ne\u0161pecifikovan\u00e1 platforma, nieje k dispoz\u00edcii launcher.\nAby bylo mo\u017en\u00e9 otvori\u0165 URL \u010di adres\u00e1r, pridaj "launcher\=/path/to/app" do s\u00faboru\npreferences.txt @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=Nahr\u00e1vam do I/O Dosky... #: Sketch.java:1622 Uploading...=Nahr\u00e1vam... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urd\u0161tina (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Pre Vyh\u013ead\u00e1vanie Pou\u017eij V\u00fdber @@ -1513,7 +1521,7 @@ Use\ external\ editor=Pou\u017ei\u0165 extern\u00fd editor #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= +Username\:=U\u017eivate\u013esk\u00e9 meno\: #: ../../../processing/app/debug/Compiler.java:410 #, java-format @@ -1534,7 +1542,7 @@ Verify=Verifikova\u0165 Verify\ code\ after\ upload=Verifikova\u0165 k\u00f3d po nahrat\u00ed #: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= +Verify/Compile=Kontrola/Kompil\u00e1cia #: ../../../../../app/src/processing/app/Base.java:451 Verifying\ and\ uploading...=Overovanie a nahr\u00e1vanie ... @@ -1562,6 +1570,14 @@ Vietnamese=Vietnam\u0161tina #: Editor.java:1105 Visit\ Arduino.cc=Nav\u0161t\u00edvi\u0165 Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=VAROV\u00c1NIE\: kni\u017enica {0} je ur\u010den\u00e1 pre beh na architekt\u00fare {1} a m\u00f4\u017ee by\u0165 nekompaktibiln\u00e1 s Va\u0161ou doskou, ktor\u00e1 m\u00e1 architekt\u00faru {2}. @@ -1577,7 +1593,7 @@ Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ conside Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Varovanie\: s\u00fabor {0} odkazuje na absol\u00fatnu cestu {1} #: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -Warning\:\ forced\ trusting\ untrusted\ contributions=Varovanie\: vyn\u00faten\u00e1 d\u00f4vera v ned\u00f4veryhodn\u00e9 pr\u00edspevky +Warning\:\ forced\ trusting\ untrusted\ contributions=Varovanie\: vypnut\u00e1 bezpe\u010dnostn\u00e1 kontrola #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 #, java-format @@ -1585,15 +1601,18 @@ Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Varovanie\: vyn\u00faten\ #: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 #, java-format -Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Varovanie\: ned\u00f4veryhodn\u00fd pr\u00edspevok, spustenie skriptu zastaven\u00e9 ({0}) +Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Varovanie\: neoveren\u00fd skript, spustenie skriptu zastaven\u00e9 ({0}) #: ../../../processing/app/debug/LegacyTargetPlatform.java:158 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Varovanie\: platform.txt z jadra '{0}' obsahuje zastaral\u00fd {1}, automatick\u00e9 prevediem na {2}. Zv\u00e1\u017ete upgrade tohto jadra. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format -Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Varovanie\: platform.txt z jadra '{0}' ch\u00fdbaj\u00face nastavenie {1}, automatick\u00fd nastavujem na {2}. Zv\u00e1\u017ete aktualiz\u00e1ciu tohto jadra. +Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=Varovanie\: platform.txt z jadra '{0}' ch\u00fdbaj\u00face nastavenie {1}, automaticky nastavujem na {2}. Zv\u00e1\u017ete aktualiz\u00e1ciu tohoto jadra. #: ../../../../../app/src/processing/app/Preferences.java:190 Western\ Frisian=Z\u00e1padn\u00e1 Fri\u0161tina @@ -1751,6 +1770,14 @@ version\ {0}=verzia {0} #, java-format {0}\ libraries={0} kni\u017enice +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} vr\u00e1til {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po index 9d9561a8e4e..36ece63cae5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.po +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013 # Črt Gorup , 2013 # Miha Feus , 2012 @@ -15,7 +16,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Slovenian (Slovenia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/sl_SI/)\n" "MIME-Version: 1.0\n" @@ -46,10 +47,20 @@ msgstr "Tipkovnica je podprta samo na Arduinu Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "Miška je podprta samo na Arduinu Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(urejaj samo takrat, ko se Arduino ne izvaja)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -311,10 +322,6 @@ msgstr "Napaka v vrstici: {0}" msgid "Bad file selected" msgstr "Izbrana napačna datoteka" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -323,15 +330,16 @@ msgstr "" msgid "Belarusian" msgstr "Belorusko" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Plošča" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -372,14 +380,14 @@ msgstr "Oboje: NL in CR" msgid "Browse" msgstr "Brskaj" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Mapa za graditev je izginila ali je ni bilo mogoče zapisati" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bolgarsko" @@ -443,10 +451,6 @@ msgstr "Preveri za posodobitvami ob zagonu" msgid "Chinese (China)" msgstr "Kitajsko (Kitajska)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Kitajsko (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Kitajsko (Tajvan)" @@ -455,14 +459,6 @@ msgstr "Kitajsko (Tajvan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Kitajsko (Tajvan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Kitajsko - Poenostavljeno" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Kitajsko - Tradicionalno" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -582,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Privzeti nastavitev ni bilo mogoče prebrati.⏎\nMoral/a boš ponovno naložiti Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -613,10 +605,6 @@ msgstr "Skice ni bilo mogoče preimenovati. (2)" msgid "Could not replace {0}" msgstr "Ni mogoče zamenjati {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Arhiviranje skice ni uspelo" @@ -644,18 +632,10 @@ msgstr "Hrvaško" msgid "Cut" msgstr "Izreži" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Češko" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Dansko" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -927,6 +907,18 @@ msgstr "Estonsko (Estonija)" msgid "Examples" msgstr "Primeri" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1155,6 +1147,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Neveljavna knjižnica najdena v {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italijansko" @@ -1179,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1192,12 +1193,13 @@ msgstr "Litvansko " msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1216,8 +1218,9 @@ msgstr "Marathi" msgid "Message" msgstr "Sporočilo" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1249,10 +1252,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Ime nove datoteke:" @@ -1297,10 +1296,6 @@ msgstr "Ne" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Plošča ni izbrana; prosim izberi ploščo v meniju Orodja > Plošča." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Ni potrebnih sprememb za Avtomatsko formatiranje." @@ -1364,18 +1359,10 @@ msgstr "V mapi {0} ni veljavnih definicij za strojno opremo" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norveško Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1435,6 +1422,11 @@ msgstr "Perzijsko" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1532,11 +1524,6 @@ msgstr "Težava pri dostopu do datotek v mapi" msgid "Problem getting data folder" msgstr "Težava pri pridobivanju podatkovne mape" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Težava pri prenosu {0} v mapo za graditev" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1555,10 +1542,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programator" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Zapri" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Ponovi" @@ -1610,6 +1606,16 @@ msgstr "Zamenjaj z:" msgid "Romanian" msgstr "Romunsko" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rusko" @@ -1715,6 +1721,11 @@ msgstr "Serijski vrat {0} ni bilo mogoče najti.⏎ Poskusi ponovno z drugimi se msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1830,10 +1841,6 @@ msgstr "" msgid "Sunshine" msgstr "Sonce sije" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Švedsko" @@ -1950,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2028,6 +2029,11 @@ msgstr "Povezave ni mogoče vzpostaviti: poskušam znova" msgid "Unable to connect: wrong password?" msgstr "Povezavi ni mogoče vzpostaviti: napačno geslo? " +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Serijskega vmesnika ni mogoče odpreti" @@ -2041,15 +2047,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Neujeta izjema tipa: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Razveljavi" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2098,10 +2109,6 @@ msgstr "Nalaganje na I/O Ploščo..." msgid "Uploading..." msgstr "Nalagam..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Za iskanje uporabi izbor" @@ -2176,6 +2183,16 @@ msgstr "Vietnamsko" msgid "Visit Arduino.cc" msgstr "Obišči Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2219,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2473,6 +2496,16 @@ msgstr "Datoteke {0} so bile dodane skici." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties index c9457baa9e7..c0e1fd3fcc6 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sl_SI.properties @@ -6,11 +6,12 @@ # Translators: # Translators: # Translators: +# Translators: # Cristian Maglie , 2013 # \u010crt Gorup , 2013 # Miha Feus , 2012 # Miha Feus , 2013-2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovenian (Slovenia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sl_SI/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sl_SI\nPlural-Forms\: nplurals\=4; plural\=(n%100\=\=1 ? 0 \: n%100\=\=2 ? 1 \: n%100\=\=3 || n%100\=\=4 ? 2 \: 3);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Slovenian (Slovenia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sl_SI/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sl_SI\nPlural-Forms\: nplurals\=4; plural\=(n%100\=\=1 ? 0 \: n%100\=\=2 ? 1 \: n%100\=\=3 || n%100\=\=4 ? 2 \: 3);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(potreben je ponovni zagon Arduino okolja) @@ -29,9 +30,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=Mi\u0161ka je podprta samo na Arduinu Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(urejaj samo takrat, ko se Arduino ne izvaja) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -215,22 +222,20 @@ Bad\ error\ line\:\ {0}=Napaka v vrstici\: {0} #: Editor.java:2136 Bad\ file\ selected=Izbrana napa\u010dna datoteka -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 Belarusian=Belorusko -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Plo\u0161\u010da +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Za Plo\u0161\u010do {0}\:{1}\:{2} ni opredeljena ''build.board'' nastavitev. Avtomatsko nastavljam na\: {3} @@ -260,12 +265,12 @@ Both\ NL\ &\ CR=Oboje\: NL in CR #: Preferences.java:81 Browse=Brskaj -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Mapa za graditev je izginila ali je ni bilo mogo\u010de zapisati - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bolgarsko @@ -314,21 +319,12 @@ Check\ for\ updates\ on\ startup=Preveri za posodobitvami ob zagonu #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Kitajsko (Kitajska) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Kitajsko (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Kitajsko (Tajvan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Kitajsko (Tajvan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Kitajsko - Poenostavljeno - -#: Preferences.java:89 -Chinese\ Traditional=Kitajsko - Tradicionalno - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -413,9 +409,6 @@ Could\ not\ re-save\ sketch=Skice ni bilo mogo\u010de ponovno shraniti #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Privzeti nastavitev ni bilo mogo\u010de prebrati.\u23ce\nMoral/a bo\u0161 ponovno nalo\u017eiti Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Stare razli\u010dice {0} ni mogo\u010de izbrisati @@ -437,9 +430,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Skice ni bilo mogo\u010de preimenovati. (2 #, java-format Could\ not\ replace\ {0}=Ni mogo\u010de zamenjati {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Arhiviranje skice ni uspelo @@ -458,15 +448,9 @@ Croatian=Hrva\u0161ko #: Editor.java:1149 Editor.java:2699 Cut=Izre\u017ei -#: ../../../processing/app/Preferences.java:83 -Czech=\u010ce\u0161ko - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Dansko - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -670,6 +654,15 @@ Estonian\ (Estonia)=Estonsko (Estonija) #: Editor.java:516 Examples=Primeri +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -835,6 +828,10 @@ Indonesian=Indonezijsko #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Neveljavna knji\u017enica najdena v {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italijansko @@ -853,6 +850,9 @@ Latvian=Latvijsko #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -863,12 +863,13 @@ Lithuaninan=Litvansko #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -881,8 +882,9 @@ Marathi=Marathi #: Base.java:2112 Message=Sporo\u010dilo -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -906,9 +908,6 @@ Moving=Prena\u0161am #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Ime nove datoteke\: @@ -942,9 +941,6 @@ No=Ne #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Plo\u0161\u010da ni izbrana; prosim izberi plo\u0161\u010do v meniju Orodja > Plo\u0161\u010da. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Ni potrebnih sprememb za Avtomatsko formatiranje. @@ -993,15 +989,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=V mapi {0} ni veljavni #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norve\u0161ko Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Na voljo je premalo spomina; za predloge glej http\://www.arduino.cc/en/Guide/Troubleshooting\#size @@ -1045,6 +1035,10 @@ Persian=Perzijsko #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1118,10 +1112,6 @@ Problem\ accessing\ files\ in\ folder\ =Te\u017eava pri dostopu do datotek v map #: Base.java:1673 Problem\ getting\ data\ folder=Te\u017eava pri pridobivanju podatkovne mape -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Te\u017eava pri prenosu {0} v mapo za graditev - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Te\u017eava pri nalaganju na plo\u0161\u010dico. Za predloge poglej na http\://www.arduino.cc/en/Guide/Troubleshooting\#upload @@ -1134,9 +1124,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Programator +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Zapri +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ponovi @@ -1176,6 +1173,14 @@ Replace\ with\:=Zamenjaj z\: #: Preferences.java:113 Romanian=Romunsko +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Rusko @@ -1253,6 +1258,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1333,9 +1342,6 @@ Spanish=\u0160pansko #: Base.java:540 Sunshine=Sonce sije -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u0160vedsko @@ -1400,9 +1406,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ta datoteka je \u017ee bila kopirana na lokacijo\u23ce iz katere jo posku\u0161a\u0161 dodati.\u23ce Tokrat ne bom naredil ni\u010d. @@ -1454,6 +1457,10 @@ Unable\ to\ connect\:\ retrying=Povezave ni mogo\u010de vzpostaviti\: posku\u016 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Povezavi ni mogo\u010de vzpostaviti\: napa\u010dno geslo? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Serijskega vmesnika ni mogo\u010de odpreti @@ -1464,13 +1471,17 @@ Unable\ to\ open\ serial\ monitor=Serijskega vmesnika ni mogo\u010de odpreti #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Neujeta izjema tipa\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Razveljavi +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Nepoznana platforma, zaganjalnik ni na voljo.\u23ce\nZa omogo\u010danje odpiranja URL-ov in map, dodaj\u23ce\n"launcher\=/path/to/app" vrstico v preferences.txt @@ -1505,9 +1516,6 @@ Uploading\ to\ I/O\ Board...=Nalaganje na I/O Plo\u0161\u010do... #: Sketch.java:1622 Uploading...=Nalagam... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Za iskanje uporabi izbor @@ -1565,6 +1573,14 @@ Vietnamese=Vietnamsko #: Editor.java:1105 Visit\ Arduino.cc=Obi\u0161\u010di Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1594,6 +1610,9 @@ Warning=Opozorilo #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1754,6 +1773,14 @@ upload=Nalo\u017ei #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} je vrnilo {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.po b/arduino-core/src/processing/app/i18n/Resources_sq.po index e40db17959a..7ade880907f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.po +++ b/arduino-core/src/processing/app/i18n/Resources_sq.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Besiana Bici , 2014 # Elio Qoshi , 2014 # Florian Tani , 2014 @@ -18,7 +19,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Albanian (http://www.transifex.com/mbanzi/arduino-ide-15/language/sq/)\n" "MIME-Version: 1.0\n" @@ -49,10 +50,20 @@ msgstr "\"Tastiera\" perkrahet vetem ne Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "\"Miu\" perkrahet vetem ne Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(redaktoni vetem kur Arduino nuk eshte duke ekzekutuar)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -314,10 +325,6 @@ msgstr "Gabim ne rrjesht: {0}" msgid "Bad file selected" msgstr "Zgjedhja e nje skedari te keq" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baske" @@ -326,15 +333,16 @@ msgstr "Baske" msgid "Belarusian" msgstr "Bjellorus" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Bord" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -375,14 +383,14 @@ msgstr "Te dyja NL & CR" msgid "Browse" msgstr "Shfleto" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Ndertimi i dosjes u zhduk ose nuk mund te shkruhen te dhena" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Opsionet e ndertimit ndryshuan, duke u rindertuar e gjitha" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bullgarisht" @@ -446,10 +454,6 @@ msgstr "Kontrollo per perditesime gjate nisjes" msgid "Chinese (China)" msgstr "Kinezshe (Kine)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Kinezshe (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Kinezshe (Taivan)" @@ -458,14 +462,6 @@ msgstr "Kinezshe (Taivan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Kinezshe (Taivan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Kinezce e Thjeshte" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Kineze Tradicionale" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -585,10 +581,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Nuk mund ti lexoje te dhenat e parapercaktuara .\nJu nevojitet qe te instaloni perseri Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Nuk arrin te lexoje preferencat e ndertimit te meparshme te skedarit, duke u rindertuar te gjitha" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -616,10 +608,6 @@ msgstr "Nuk mund te ri emertoj skicen. (2)" msgid "Could not replace {0}" msgstr "Nuk mund te zevendesohet {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Nuk arrin te shkruaje preferencat e ndertimit te skedarit" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Nuk mund te arkivohet skica" @@ -647,18 +635,10 @@ msgstr "Kroatisht" msgid "Cut" msgstr "Pre" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Cekisht" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danisht" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -930,6 +910,18 @@ msgstr "Estonez (Estonia)" msgid "Examples" msgstr "Shembuj" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1158,6 +1150,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Librari e pavlefshme e gjendur ne {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italisht" @@ -1182,6 +1179,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1195,12 +1196,13 @@ msgstr "Lituanisht" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1219,9 +1221,10 @@ msgstr "Gjuha Marathi" msgid "Message" msgstr "Mesazh" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Mungon */ nga fundi i /* komenti */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1252,10 +1255,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Duhet te specifikoje saktesisht nje skedar skice." -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr " N'ko " - #: Sketch.java:282 msgid "Name for new file:" msgstr "Emri per skedarin e ri" @@ -1300,10 +1299,6 @@ msgstr "Jo" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Menuja e bordit." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Jo ndryshime te nevojshme per vete formatim." @@ -1367,18 +1362,10 @@ msgstr "Nuk ka percaktime te duhura per pajisjen hard ne skede {0}." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norvegjisht" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1438,6 +1425,11 @@ msgstr "Persisht" msgid "Persian (Iran)" msgstr "Persisht" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1535,11 +1527,6 @@ msgstr "Problem ne qasjen e skedes" msgid "Problem getting data folder" msgstr "Problem gjate marrjes te dhenave nga folderi" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Gabim gjate spostimit te {0} ne skedarin e ndertimit" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1558,10 +1545,19 @@ msgstr "Procesor" msgid "Programmer" msgstr "Programues" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Dil" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Ri bej" @@ -1613,6 +1609,16 @@ msgstr "Zevendesoje me:" msgid "Romanian" msgstr "Rumanisht" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rusisht" @@ -1718,6 +1724,11 @@ msgstr "Porta seriale {0} nuk u gjet.\nProvoni serish ngarkimin me nje porte tje msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1833,10 +1844,6 @@ msgstr "" msgid "Sunshine" msgstr "Dielli shkelqen" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Suedisht" @@ -1953,12 +1960,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2031,6 +2032,11 @@ msgstr "E pamundur per tu lidhur : duke riprovuar" msgid "Unable to connect: wrong password?" msgstr "E pamundur per lidhur: fjalekalimi gabim ?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "E pa mundur per te hapur monitorin serial" @@ -2044,15 +2050,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Përjashtim i pakapur i tipit: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Kthe" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2101,10 +2112,6 @@ msgstr "Duke ngarkuar ne Bord I/O..." msgid "Uploading..." msgstr "Duke ngarkuar..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Perdor selektimin per te gjetur" @@ -2179,6 +2186,16 @@ msgstr "Vietnameze" msgid "Visit Arduino.cc" msgstr "Vizito Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2222,6 +2239,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2476,6 +2499,16 @@ msgstr "Dokumentat {0} u shtuan tek skica." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_sq.properties b/arduino-core/src/processing/app/i18n/Resources_sq.properties index 0e9093db04f..fd5a8abb17f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sq.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sq.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Besiana Bici , 2014 # Elio Qoshi , 2014 # Florian Tani , 2014 @@ -13,7 +14,7 @@ # Orven Bregu , 2014 # www.openlabs.cc , 2014 # besmirzekaj , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Albanian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sq/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sq\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Albanian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sq/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sq\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(kerkohet rinisja e Arduinos) @@ -32,9 +33,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo="Miu" perkrahet vetem ne Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(redaktoni vetem kur Arduino nuk eshte duke ekzekutuar) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -218,22 +225,20 @@ Bad\ error\ line\:\ {0}=Gabim ne rrjesht\: {0} #: Editor.java:2136 Bad\ file\ selected=Zgjedhja e nje skedari te keq -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Baske #: ../../../processing/app/Preferences.java:139 Belarusian=Bjellorus -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Bord +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Bordi {0}\:{1}\:{2} nuk percakton preferencen "build.board". Vetvendosje ne\: {3} @@ -263,12 +268,12 @@ Both\ NL\ &\ CR=Te dyja NL & CR #: Preferences.java:81 Browse=Shfleto -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Ndertimi i dosjes u zhduk ose nuk mund te shkruhen te dhena - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Opsionet e ndertimit ndryshuan, duke u rindertuar e gjitha +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bullgarisht @@ -317,21 +322,12 @@ Check\ for\ updates\ on\ startup=Kontrollo per perditesime gjate nisjes #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Kinezshe (Kine) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Kinezshe (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Kinezshe (Taivan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Kinezshe (Taivan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Kinezce e Thjeshte - -#: Preferences.java:89 -Chinese\ Traditional=Kineze Tradicionale - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -416,9 +412,6 @@ Could\ not\ re-save\ sketch=Nuk mund te ri ruaj skicen #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nuk mund ti lexoje te dhenat e parapercaktuara .\nJu nevojitet qe te instaloni perseri Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Nuk arrin te lexoje preferencat e ndertimit te meparshme te skedarit, duke u rindertuar te gjitha - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Nuk mund te fshihet versioni me i vjeter i {0} @@ -440,9 +433,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Nuk mund te ri emertoj skicen. (2) #, java-format Could\ not\ replace\ {0}=Nuk mund te zevendesohet {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Nuk arrin te shkruaje preferencat e ndertimit te skedarit - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Nuk mund te arkivohet skica @@ -461,15 +451,9 @@ Croatian=Kroatisht #: Editor.java:1149 Editor.java:2699 Cut=Pre -#: ../../../processing/app/Preferences.java:83 -Czech=Cekisht - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danisht - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -673,6 +657,15 @@ Estonian\ (Estonia)=Estonez (Estonia) #: Editor.java:516 Examples=Shembuj +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -838,6 +831,10 @@ Indonesian=Indonezisht #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Librari e pavlefshme e gjendur ne {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italisht @@ -856,6 +853,9 @@ Latvian=Letonisht #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -866,12 +866,13 @@ Lithuaninan=Lituanisht #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -884,8 +885,9 @@ Marathi=Gjuha Marathi #: Base.java:2112 Message=Mesazh -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Mungon */ nga fundi i /* komenti */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -909,9 +911,6 @@ Moving=Sposto #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Duhet te specifikoje saktesisht nje skedar skice. -#: ../../../processing/app/Preferences.java:158 -N'Ko=\ N'ko - #: Sketch.java:282 Name\ for\ new\ file\:=Emri per skedarin e ri @@ -945,9 +944,6 @@ No=Jo #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nuk eshte zgjedhur asnje bord; ju lutem zgjidhni bordin nga Veglat > Menuja e bordit. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Jo ndryshime te nevojshme per vete formatim. @@ -996,15 +992,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=Nuk ka percaktime te d #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norvegjisht -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nuk ka memorie te mjaftueshme; shiko http\://www.arduino.cc/en/Guide/Troubleshooting\#size ne reduktimin e gjurmes tuaj @@ -1048,6 +1038,10 @@ Persian=Persisht #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persisht +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1121,10 +1115,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem ne qasjen e skedes #: Base.java:1673 Problem\ getting\ data\ folder=Problem gjate marrjes te dhenave nga folderi -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Gabim gjate spostimit te {0} ne skedarin e ndertimit - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem gjate ngarkimit ne bord. Shiko http\://www.arduino.cc/en/Guide/Troubleshooting\#upload per sugjerime @@ -1137,9 +1127,16 @@ Processor=Procesor #: Editor.java:704 Programmer=Programues +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Dil +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Ri bej @@ -1179,6 +1176,14 @@ Replace\ with\:=Zevendesoje me\: #: Preferences.java:113 Romanian=Rumanisht +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Rusisht @@ -1256,6 +1261,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1336,9 +1345,6 @@ Spanish=Spanjisht #: Base.java:540 Sunshine=Dielli shkelqen -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Suedisht @@ -1403,9 +1409,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Kjo dosje \u00ebsht\u00eb kopjuar n\u00eb\nvendndodhjen nga ku po mundohesh ta shtosh.\nVeprimi nuk mund t\u00eb realizohet. @@ -1457,6 +1460,10 @@ Unable\ to\ connect\:\ retrying=E pamundur per tu lidhur \: duke riprovuar #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=E pamundur per lidhur\: fjalekalimi gabim ? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=E pa mundur per te hapur monitorin serial @@ -1467,13 +1474,17 @@ Unable\ to\ open\ serial\ monitor=E pa mundur per te hapur monitorin serial #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=P\u00ebrjashtim i pakapur i tipit\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Kthe +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platforme e paspecifikuar, nuk eshte asnje startues ne dizpozicion.\nPer te mundesuar hapjen e URL ose skedareve, shtoni nje \nrrjesht "launcher\=/path/to/app" tek preferences.txt @@ -1508,9 +1519,6 @@ Uploading\ to\ I/O\ Board...=Duke ngarkuar ne Bord I/O... #: Sketch.java:1622 Uploading...=Duke ngarkuar... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=Perdor selektimin per te gjetur @@ -1568,6 +1576,14 @@ Vietnamese=Vietnameze #: Editor.java:1105 Visit\ Arduino.cc=Vizito Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=Paralajmerim\: libraria {0} pretendon se po funksionon ne arkitekture (n) {1} dhe mund te jete i papershtatshem me bordin aktual qe po funksionon ne arkitekture (n) {2}. @@ -1597,6 +1613,9 @@ Warning=Paralajmerim #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1757,6 +1776,14 @@ upload=ngarko #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} riktheu {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.po b/arduino-core/src/processing/app/i18n/Resources_sv.po index 582ebb93f05..c7318b7db11 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.po +++ b/arduino-core/src/processing/app/i18n/Resources_sv.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anton Ryberg , 2015 # Daniel Jansson , 2012 # Dan West , 2013 @@ -19,7 +20,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Swedish (http://www.transifex.com/mbanzi/arduino-ide-15/language/sv/)\n" "MIME-Version: 1.0\n" @@ -50,10 +51,20 @@ msgstr "'Keyboard' stödjs endast av Adruino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mus' stöds endast av Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(ändra endast när Arduino inte körs)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -315,10 +326,6 @@ msgstr "" msgid "Bad file selected" msgstr "Ogiltig fil har valts" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Basque" @@ -327,15 +334,16 @@ msgstr "Basque" msgid "Belarusian" msgstr "Vitryska" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Kort" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -376,14 +384,14 @@ msgstr "Både NL & CR" msgid "Browse" msgstr "Utforska" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Byggmappen försvann eller kunde inte skrivas till" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgariska" @@ -447,10 +455,6 @@ msgstr "Kolla efter uppdateringar vid start" msgid "Chinese (China)" msgstr "Kinesiska (Kina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Kinesiska (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Kinesiska (Taiwan)" @@ -459,14 +463,6 @@ msgstr "Kinesiska (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Kinesiska (förenklad)" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Traditionell Kinesiska" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -586,10 +582,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Kunde ej läsa standardinställningarna.\nDu måste installera om Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Kunde inte läsa den förra bygg-inställningsfilen, bygger om allt." - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -617,10 +609,6 @@ msgstr "Kunde ej byta namn på sketchen. (2)" msgid "Could not replace {0}" msgstr "Kunde ej byta ut {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Kunde inte skriva bygg-inställningsfilen" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Kunde ej arkivera sketch" @@ -648,18 +636,10 @@ msgstr "Kroatiska" msgid "Cut" msgstr "Klipp ut" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tjeckisk" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danska" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danska (Danmark)" @@ -931,6 +911,18 @@ msgstr "Estniska (Estland)" msgid "Examples" msgstr "Exempel" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Exportera kompilerad binärfil" @@ -1159,6 +1151,11 @@ msgstr "Installerar..." msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italienska" @@ -1183,6 +1180,10 @@ msgstr "Bibliotekshanteraren" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1196,14 +1197,15 @@ msgstr "Lituanska" msgid "Loading configuration..." msgstr "Laddar konfiguration..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malaysiska (Malaysia)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "Hantera bibliotek..." @@ -1220,9 +1222,10 @@ msgstr "Marathi" msgid "Message" msgstr "Meddelande" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Saknar */ i slutet av en /* kommentar */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1253,10 +1256,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Namn på ny fil:" @@ -1301,10 +1300,6 @@ msgstr "Nej" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Inget kort har valts. Välj ett kort från menyn Verktyg > Kort" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Inga ändringar behövs för autoformat" @@ -1368,18 +1363,10 @@ msgstr "" msgid "None" msgstr "Inget" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norska" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norska (Bokmål)" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norska (Nynorska)" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1439,6 +1426,11 @@ msgstr "Persiska" msgid "Persian (Iran)" msgstr "Persiska (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1536,11 +1528,6 @@ msgstr "Problem med åtkomst till filer i mappen" msgid "Problem getting data folder" msgstr "Problem med att komma åt datamappen" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Fel vid flytt av {0} till byggmappen" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1559,10 +1546,19 @@ msgstr "Processor" msgid "Programmer" msgstr "Programmerare" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Avsluta" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Gör om" @@ -1614,6 +1610,16 @@ msgstr "Ersätt med:" msgid "Romanian" msgstr "Rumänska" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Ryska" @@ -1719,6 +1725,11 @@ msgstr "" msgid "Serial ports" msgstr "Serieportar" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1834,10 +1845,6 @@ msgstr "Startar..." msgid "Sunshine" msgstr "Solsken" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Svenska" @@ -1954,12 +1961,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2032,6 +2033,11 @@ msgstr "Kan inte ansluta: försöker igen" msgid "Unable to connect: wrong password?" msgstr "Kunde inte ansluta: fel lösenord?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Kunde inte öppna den seriella monitorn" @@ -2045,15 +2051,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Ångra" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2102,10 +2113,6 @@ msgstr "Laddar upp till I/O-kortet" msgid "Uploading..." msgstr "Laddar upp..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Använd markering för sök" @@ -2180,6 +2187,16 @@ msgstr "Vietnamesiska" msgid "Visit Arduino.cc" msgstr "Besök Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2223,6 +2240,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2477,6 +2500,16 @@ msgstr "{0} filer har lagts till i sketchen" msgid "{0} libraries" msgstr "{0} bibliotek" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_sv.properties b/arduino-core/src/processing/app/i18n/Resources_sv.properties index 9a7527aebf2..d8a2704082e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_sv.properties +++ b/arduino-core/src/processing/app/i18n/Resources_sv.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anton Ryberg , 2015 # Daniel Jansson , 2012 # Dan West , 2013 @@ -14,7 +15,7 @@ # GudenTorson, 2015 # Jonas Bengtsson , 2013 # Patrik Hermansson , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Swedish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sv/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sv\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Swedish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sv/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sv\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(kr\u00e4ver omstart av Arduino) @@ -33,9 +34,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mus' st\u00f6ds endast av Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e4ndra endast n\u00e4r Arduino inte k\u00f6rs) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -219,22 +226,20 @@ Autoscroll=Autoscrolla #: Editor.java:2136 Bad\ file\ selected=Ogiltig fil har valts -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Basque #: ../../../processing/app/Preferences.java:139 Belarusian=Vitryska -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Kort +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -264,12 +269,12 @@ Both\ NL\ &\ CR=B\u00e5de NL & CR #: Preferences.java:81 Browse=Utforska -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Byggmappen f\u00f6rsvann eller kunde inte skrivas till - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgariska @@ -318,21 +323,12 @@ Check\ for\ updates\ on\ startup=Kolla efter uppdateringar vid start #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Kinesiska (Kina) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Kinesiska (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Kinesiska (Taiwan) #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=Kinesiska (f\u00f6renklad) - -#: Preferences.java:89 -Chinese\ Traditional=Traditionell Kinesiska - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -417,9 +413,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kunde ej l\u00e4sa standardinst\u00e4llningarna.\nDu m\u00e5ste installera om Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Kunde inte l\u00e4sa den f\u00f6rra bygg-inst\u00e4llningsfilen, bygger om allt. - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Kunde ej ta bort gammal version av {0} @@ -441,9 +434,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kunde ej byta namn p\u00e5 sketchen. (2) #, java-format Could\ not\ replace\ {0}=Kunde ej byta ut {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Kunde inte skriva bygg-inst\u00e4llningsfilen - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kunde ej arkivera sketch @@ -462,15 +452,9 @@ Croatian=Kroatiska #: Editor.java:1149 Editor.java:2699 Cut=Klipp ut -#: ../../../processing/app/Preferences.java:83 -Czech=Tjeckisk - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danska - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danska (Danmark) @@ -674,6 +658,15 @@ Estonian\ (Estonia)=Estniska (Estland) #: Editor.java:516 Examples=Exempel +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Exportera kompilerad bin\u00e4rfil @@ -839,6 +832,10 @@ Installing...=Installerar... #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italienska @@ -857,6 +854,9 @@ Library\ Manager=Bibliotekshanteraren #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -867,12 +867,13 @@ Lithuaninan=Lituanska #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=Laddar konfiguration... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malaysiska (Malaysia) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=Hantera bibliotek... @@ -885,8 +886,9 @@ Marathi=Marathi #: Base.java:2112 Message=Meddelande -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Saknar */ i slutet av en /* kommentar */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=L\u00e4ge st\u00f6ds ej @@ -910,9 +912,6 @@ Moving=Flyttar #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=Namn p\u00e5 ny fil\: @@ -946,9 +945,6 @@ No=Nej #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Inget kort har valts. V\u00e4lj ett kort fr\u00e5n menyn Verktyg > Kort - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Inga \u00e4ndringar beh\u00f6vs f\u00f6r autoformat @@ -997,15 +993,9 @@ No\ sketchbook=Ingen sketchbok #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=Inget -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norska - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norska (Bokm\u00e5l) -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norska (Nynorska) - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Otillr\u00e4ckligt minne; se http\://www.arduino.cc/en/Guide/Troubleshooting\#size f\u00f6r tips om hur du kan minska storleken @@ -1049,6 +1039,10 @@ Persian=Persiska #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persiska (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1122,10 +1116,6 @@ Problem\ accessing\ files\ in\ folder\ =Problem med \u00e5tkomst till filer i ma #: Base.java:1673 Problem\ getting\ data\ folder=Problem med att komma \u00e5t datamappen -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=Fel vid flytt av {0} till byggmappen - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Problem vid uppladdning till br\u00e4dan. Se http\://www.arduino.cc/en/Guide/Troubleshooting\#upload f\u00f6r f\u00f6rslag. @@ -1138,9 +1128,16 @@ Processor=Processor #: Editor.java:704 Programmer=Programmerare +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Avsluta +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=G\u00f6r om @@ -1180,6 +1177,14 @@ Replace\ with\:=Ers\u00e4tt med\: #: Preferences.java:113 Romanian=Rum\u00e4nska +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ryska @@ -1257,6 +1262,10 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Serieportar +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1337,9 +1346,6 @@ Starting...=Startar... #: Base.java:540 Sunshine=Solsken -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Svenska @@ -1404,9 +1410,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1458,6 +1461,10 @@ Unable\ to\ connect\:\ retrying=Kan inte ansluta\: f\u00f6rs\u00f6ker igen #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Kunde inte ansluta\: fel l\u00f6senord? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Kunde inte \u00f6ppna den seriella monitorn @@ -1468,13 +1475,17 @@ Unable\ to\ open\ serial\ monitor=Kunde inte \u00f6ppna den seriella monitorn #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=\u00c5ngra +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1509,9 +1520,6 @@ Uploading\ to\ I/O\ Board...=Laddar upp till I/O-kortet #: Sketch.java:1622 Uploading...=Laddar upp... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Anv\u00e4nd markering f\u00f6r s\u00f6k @@ -1569,6 +1577,14 @@ Vietnamese=Vietnamesiska #: Editor.java:1105 Visit\ Arduino.cc=Bes\u00f6k Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1598,6 +1614,9 @@ Warning=Varning #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1758,6 +1777,14 @@ version\ {0}=version {0} #, java-format {0}\ libraries={0} bibliotek +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u00e5tergav {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_sw.po b/arduino-core/src/processing/app/i18n/Resources_sw.po deleted file mode 100644 index 6a8563092af..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_sw.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Swahili (http://www.transifex.com/mbanzi/arduino-ide-15/language/sw/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: sw\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_sw.properties b/arduino-core/src/processing/app/i18n/Resources_sw.properties deleted file mode 100644 index 24fcad583fa..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_sw.properties +++ /dev/null @@ -1,1791 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Swahili (http\://www.transifex.com/mbanzi/arduino-ide-15/language/sw/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: sw\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -!Open...= - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -!Quit= - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.po b/arduino-core/src/processing/app/i18n/Resources_ta.po index 381ad10fe9d..9d0d6664fa4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.po +++ b/arduino-core/src/processing/app/i18n/Resources_ta.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Shankar C , 2015 # Nadar Solomon Sunder , 2014 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Tamil (http://www.transifex.com/mbanzi/arduino-ide-15/language/ta/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(Arduino செயல்படாதபோது மாற்றம் மட்டுமே முடியும்)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "பிழையின் வரிசை: {0}" msgid "Bad file selected" msgstr "தவறான கோப்பு தேர்வுசெய்யப்பட்டுள்ளது " -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -321,15 +328,16 @@ msgstr "" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "வங்காளி (இந்தியா)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "பலகை" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "NL மற்றும் CR" msgid "Browse" msgstr "உலவு" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "கட்டுமான கோப்புறையை காணவில்லை (அ) எழுதப்பட்ட முடியவில்லை" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -441,10 +449,6 @@ msgstr "துவக்கும் போது புதுப்பிப msgid "Chinese (China)" msgstr "" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "" @@ -453,14 +457,6 @@ msgstr "" msgid "Chinese (Taiwan) (Big5)" msgstr "" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "இலகு நடை சீனம் " - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "இயல்புநிலை அமைப்புகளை படிக்க முடியவில்லை.\nநீங்கள் Arduinoவை மீண்டும் நிறுவ வேண்டும்." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "வரைவை மருபெயரிட முடியவில் msgid "Could not replace {0}" msgstr "{0}வை மாற்ற முடியவில்லை" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "வரைவை ஆவணப்படுத்த முடியவில்லை" @@ -642,18 +630,10 @@ msgstr "" msgid "Cut" msgstr "வெட்டுக" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "டானியம்" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -925,6 +905,18 @@ msgstr "" msgid "Examples" msgstr "எடுத்துக்காட்டுகள்" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "இத்தாலியன்" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "" msgid "Message" msgstr "தகவல்" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "புதிய கோப்பின் பெயர்:" @@ -1295,10 +1294,6 @@ msgstr "இல்லை" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "பலகை தேர்வு செய்யப்படவில்லை; ஒரு பலகையை கருவிகள் > பலகை பட்டியலில் தேர்வு செய்யவும்." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "சுய வடிவத்திற்கு எந்த மாற்றங்களும் தேவையில்லை." @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "பர்ஸியன்" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "தரவு கோப்புறையை பெறுவதில் பிரச்சினை" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "{0}ஐ கட்டுமான உறைக்குள் நகற்றுவதில் பிரச்சினை" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "" msgid "Programmer" msgstr "நிரலர்" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "வெளியேறுக" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "திரும்பச்செய்க" @@ -1608,6 +1604,16 @@ msgstr "இதாக மாற்று:" msgid "Romanian" msgstr "ரோமானியம்" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "" @@ -1713,6 +1719,11 @@ msgstr "தொடர்நிலை துறை {0} காணவில்லை msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "சூர்யோதயம்" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "பிடிக்கமுடியாத விதிவிலக்கு வகை: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "திரும்பப்பெறுக" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "உள்ளீட்டு/வெளியீட்டு பலகை msgid "Uploading..." msgstr "பதிவேற்றுகிறது..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "தேடுதலுக்கு தெரிவுகளை பயன்படுத்தவும்" @@ -2174,6 +2181,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "Arduino.cc செல்க" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "{0} கோப்புகள் வரைவில் சேர்கப msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_ta.properties b/arduino-core/src/processing/app/i18n/Resources_ta.properties index f1b44c07d97..e3bbdcec3ea 100644 --- a/arduino-core/src/processing/app/i18n/Resources_ta.properties +++ b/arduino-core/src/processing/app/i18n/Resources_ta.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Shankar C , 2015 # Nadar Solomon Sunder , 2014 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Tamil (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ta/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ta\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Tamil (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ta/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ta\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (Arduino \u0bae\u0bb1\u0bc1\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bae\u0bcd \u0ba4\u0bc7\u0bb5\u0bc8\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1) @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(Arduino \u0b9a\u0bc6\u0baf\u0bb2\u0bcd\u0baa\u0b9f\u0bbe\u0ba4\u0baa\u0bcb\u0ba4\u0bc1 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bae\u0bcd \u0bae\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bc7 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bc1\u0bae\u0bcd) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Bad\ error\ line\:\ {0}=\u0baa\u0bbf\u0bb4\u0bc8\u0baf\u0bbf\u0ba9\u0bcd \u0bb5\ #: Editor.java:2136 Bad\ file\ selected=\u0ba4\u0bb5\u0bb1\u0bbe\u0ba9 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1\u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb3\u0bcd\u0bb3\u0ba4\u0bc1 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=\u0bb5\u0b99\u0bcd\u0b95\u0bbe\u0bb3\u0bbf (\u0b87\u0ba8\u0bcd\u0ba4\u0bbf\u0baf\u0bbe) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u0baa\u0bb2\u0b95\u0bc8 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Both\ NL\ &\ CR=NL \u0bae\u0bb1\u0bcd\u0bb1\u0bc1\u0bae\u0bcd CR #: Preferences.java:81 Browse=\u0b89\u0bb2\u0bb5\u0bc1 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0b95\u0b9f\u0bcd\u0b9f\u0bc1\u0bae\u0bbe\u0ba9 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1\u0bb1\u0bc8\u0baf\u0bc8 \u0b95\u0bbe\u0ba3\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 (\u0b85) \u0b8e\u0bb4\u0bc1\u0ba4\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -312,21 +317,12 @@ Check\ for\ updates\ on\ startup=\u0ba4\u0bc1\u0bb5\u0b95\u0bcd\u0b95\u0bc1\u0ba #: ../../../processing/app/Preferences.java:142 !Chinese\ (China)= -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 !Chinese\ (Taiwan)= #: ../../../processing/app/Preferences.java:143 !Chinese\ (Taiwan)\ (Big5)= -#: Preferences.java:88 -Chinese\ Simplified=\u0b87\u0bb2\u0b95\u0bc1 \u0ba8\u0b9f\u0bc8 \u0b9a\u0bc0\u0ba9\u0bae\u0bcd - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Could\ not\ re-save\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb1\u0bc1\u0 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0b87\u0baf\u0bb2\u0bcd\u0baa\u0bc1\u0ba8\u0bbf\u0bb2\u0bc8 \u0b85\u0bae\u0bc8\u0baa\u0bcd\u0baa\u0bc1\u0b95\u0bb3\u0bc8 \u0baa\u0b9f\u0bbf\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8.\n\u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd Arduino\u0bb5\u0bc8 \u0bae\u0bc0\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd \u0ba8\u0bbf\u0bb1\u0bc1\u0bb5 \u0bb5\u0bc7\u0ba3\u0bcd\u0b9f\u0bc1\u0bae\u0bcd. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, 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 @@ -435,9 +428,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0bae\u0bb #, java-format Could\ not\ replace\ {0}={0}\u0bb5\u0bc8 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u0bb5\u0bb0\u0bc8\u0bb5\u0bc8 \u0b86\u0bb5\u0ba3\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4 \u0bae\u0bc1\u0b9f\u0bbf\u0baf\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8 @@ -456,15 +446,9 @@ Couldn't\ do\ it=\u0b85\u0ba4\u0bc8 \u0b9a\u0bc6\u0baf\u0bcd\u0baf \u0bae\u0bc1\ #: Editor.java:1149 Editor.java:2699 Cut=\u0bb5\u0bc6\u0b9f\u0bcd\u0b9f\u0bc1\u0b95 -#: ../../../processing/app/Preferences.java:83 -!Czech= - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u0b9f\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -668,6 +652,15 @@ Error\ while\ printing.=\u0b85\u0b9a\u0bcd\u0b9a\u0bbf\u0b9f\u0bc1\u0bae\u0bcd\u #: Editor.java:516 Examples=\u0b8e\u0b9f\u0bc1\u0ba4\u0bcd\u0ba4\u0bc1\u0b95\u0bcd\u0b95\u0bbe\u0b9f\u0bcd\u0b9f\u0bc1\u0b95\u0bb3\u0bcd +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Increase\ Indent=\u0b89\u0bb3\u0bcd\u0ba4\u0bb3\u0bcd\u0bb3\u0bb2\u0bc8 \u0b85\u #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0b87\u0ba4\u0bcd\u0ba4\u0bbe\u0bb2\u0bbf\u0baf\u0ba9\u0bcd @@ -851,6 +848,9 @@ Latvian=\u0bb2\u0bc7\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0ba9\u0bcd #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Latvian=\u0bb2\u0bc7\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0ba9\u0bcd #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Latvian=\u0bb2\u0bc7\u0b9f\u0bcd\u0bb5\u0bbf\u0baf\u0ba9\u0bcd #: Base.java:2112 Message=\u0ba4\u0b95\u0bb5\u0bb2\u0bcd -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Moving=\u0ba8\u0b95\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1 #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=\u0baa\u0bc1\u0ba4\u0bbf\u0baf \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bbf\u0ba9\u0bcd \u0baa\u0bc6\u0baf\u0bb0\u0bcd\: @@ -940,9 +939,6 @@ No=\u0b87\u0bb2\u0bcd\u0bb2\u0bc8 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u0baa\u0bb2\u0b95\u0bc8 \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0baa\u0bcd\u0baa\u0b9f\u0bb5\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8; \u0b92\u0bb0\u0bc1 \u0baa\u0bb2\u0b95\u0bc8\u0baf\u0bc8 \u0b95\u0bb0\u0bc1\u0bb5\u0bbf\u0b95\u0bb3\u0bcd > \u0baa\u0bb2\u0b95\u0bc8 \u0baa\u0b9f\u0bcd\u0b9f\u0bbf\u0baf\u0bb2\u0bbf\u0bb2\u0bcd \u0ba4\u0bc7\u0bb0\u0bcd\u0bb5\u0bc1 \u0b9a\u0bc6\u0baf\u0bcd\u0baf\u0bb5\u0bc1\u0bae\u0bcd. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u0b9a\u0bc1\u0baf \u0bb5\u0b9f\u0bbf\u0bb5\u0ba4\u0bcd\u0ba4\u0bbf\u0bb1\u0bcd\u0b95\u0bc1 \u0b8e\u0ba8\u0bcd\u0ba4 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0b99\u0bcd\u0b95\u0bb3\u0bc1\u0bae\u0bcd \u0ba4\u0bc7\u0bb5\u0bc8\u0baf\u0bbf\u0bb2\u0bcd\u0bb2\u0bc8. @@ -991,15 +987,9 @@ No\ reference\ available\ for\ "{0}"="{0}" \u0b95\u0bcd\u0b95\u0bc1 \u0b8e\u0ba8 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 !Norwegian\ Bokm\u00e5l= -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=\u0baa\u0bb0\u0bcd\u0bb8\u0bbf\u0baf\u0ba9\u0bcd #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Problem\ Setting\ the\ Platform=\u0b87\u0baf\u0b99\u0bcd\u0b95\u0bc1\u0ba4\u0bb3 #: Base.java:1673 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 -#: Sketch.java:1467 -#, 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 - #: 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. @@ -1132,9 +1122,16 @@ Problem\ with\ rename=\u0baa\u0bc6\u0baf\u0bb0\u0bcd\u0bae\u0bbe\u0bb1\u0bcd\u0b #: Editor.java:704 Programmer=\u0ba8\u0bbf\u0bb0\u0bb2\u0bb0\u0bcd +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u0bb5\u0bc6\u0bb3\u0bbf\u0baf\u0bc7\u0bb1\u0bc1\u0b95 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0b9a\u0bcd\u0b9a\u0bc6\u0baf\u0bcd\u0b95 @@ -1174,6 +1171,14 @@ Replace\ with\:=\u0b87\u0ba4\u0bbe\u0b95 \u0bae\u0bbe\u0bb1\u0bcd\u0bb1\u0bc1\: #: Preferences.java:113 Romanian=\u0bb0\u0bc7\u0bbe\u0bae\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 !Russian= @@ -1251,6 +1256,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=\u0bb8\u0bcd\u0baa\u0bbe\u0ba9\u0bbf\u0baf\u0bae\u0bcd #: Base.java:540 Sunshine=\u0b9a\u0bc2\u0bb0\u0bcd\u0baf\u0bcb\u0ba4\u0baf\u0bae\u0bcd -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1398,9 +1404,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0b87\u0ba8\u0bcd\u0ba4 \u0b95\u0bcb\u0baa\u0bcd\u0baa\u0bc1 \u0ba8\u0bc0\u0b99\u0bcd\u0b95\u0bb3\u0bcd \u0ba8\u0b95\u0bb2\u0bc6\u0b9f\u0bc1\u0b95\u0bcd\u0b95 \u0bae\u0bc1\u0baf\u0bb2\u0bc1\u0bae\u0bcd \u0b87\u0b9f\u0ba4\u0bcd\u0ba4\u0bbf\u0bb2\u0bcd \n\u0b8f\u0bb1\u0bcd\u0b95\u0ba9\u0bb5\u0bc7 \u0b9a\u0bc6\u0bb0\u0bcd\u0b95\u0baa\u0bcd\u0baa\u0b9f\u0bcd\u0b9f\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0ba4\u0bc1.\n\u0ba8\u0bbe\u0ba9\u0bcd \u0b8e\u0ba9\u0bcd\u0ba9\u0bbe\u0bb2\u0bcd \u0bae\u0bc1\u0b9f\u0bbf\u0ba8\u0bcd\u0ba4 \u0b85\u0ba9\u0bc8\u0ba4\u0bcd\u0ba4\u0bc8\u0baf\u0bc1\u0bae\u0bcd \u0b9a\u0bc6\u0baf\u0bcd\u0ba4\u0bc1\u0bb5\u0bbf\u0b9f\u0bcd\u0b9f\u0bc7\u0ba9\u0bcd. @@ -1452,6 +1455,10 @@ Troubleshooting=\u0b9a\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0b #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1462,13 +1469,17 @@ Troubleshooting=\u0b9a\u0bb0\u0bbf\u0baa\u0bcd\u0baa\u0b9f\u0bc1\u0ba4\u0bcd\u0b #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, 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} - #: Editor.java:1133 Editor.java:1355 Undo=\u0ba4\u0bbf\u0bb0\u0bc1\u0bae\u0bcd\u0baa\u0baa\u0bcd\u0baa\u0bc6\u0bb1\u0bc1\u0b95 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\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 @@ -1503,9 +1514,6 @@ Uploading\ to\ I/O\ Board...=\u0b89\u0bb3\u0bcd\u0bb3\u0bc0\u0b9f\u0bcd\u0b9f\u0 #: Sketch.java:1622 Uploading...=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1\u0b95\u0bbf\u0bb1\u0ba4\u0bc1... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 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 @@ -1563,6 +1571,14 @@ Verify\ code\ after\ upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0b #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc \u0b9a\u0bc6\u0bb2\u0bcd\u0b95 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=\u0b8e\u0b9a\u0bcd\u0b9a\u0bb0\u0bbf\u0b95\u0bcd\u0b95\u0bc8 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ upload=\u0baa\u0ba4\u0bbf\u0bb5\u0bc7\u0bb1\u0bcd\u0bb1\u0bc1 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0},{1}\u0b8e\u0ba9 \u0ba4\u0bbf\u0bb0\u0bc1\u0baa\u0bcd\u0baa\u0bbf\u0baf\u0ba4\u0bc1 diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.po b/arduino-core/src/processing/app/i18n/Resources_tr.po index 54a64a9221d..55a6ad4e700 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.po +++ b/arduino-core/src/processing/app/i18n/Resources_tr.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anıl Özbek , 2013 # Ayse Gokce Bor , 2012 # b , 2015 @@ -33,7 +34,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Turkish (http://www.transifex.com/mbanzi/arduino-ide-15/language/tr/)\n" "MIME-Version: 1.0\n" @@ -64,10 +65,20 @@ msgstr "'Klavye' sadece Arduino Leonardo tarafından desteklenmektedir" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Fare' sadece Arduino Leonardo tarafından desteklenmektedir." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(sadece Arduino çalışmıyorken düzenleyin)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir desteklenmiyor" @@ -329,10 +340,6 @@ msgstr "Hatalı satır: {0}" msgid "Bad file selected" msgstr "Seçilen dosya uygun değil" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Taslak dosyası geçersiz ya da taslak klasör yapısı geçersiz." - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Baskça" @@ -341,15 +348,16 @@ msgstr "Baskça" msgid "Belarusian" msgstr "Belarusça" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "Bengali(Hindistan)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Kart" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -390,14 +398,14 @@ msgstr "NL ve CR ile birlikte." msgid "Browse" msgstr "Gözat" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Derleme klasörü kayıp yada yazmaya karşı korumalı" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Derleme seçenekleri değiştirildi, tümü yeniden derleniyor." +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarca" @@ -461,10 +469,6 @@ msgstr "Açılışta güncellemeleri kontrol et" msgid "Chinese (China)" msgstr "Çince (Çin)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Çince (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Çince (Tayvan)" @@ -473,14 +477,6 @@ msgstr "Çince (Tayvan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Çince (Tayvan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Basitleştirilmiş Çince" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Geleneksel Çince" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -600,10 +596,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Öntanımlı ayarlar okunamadı.\\n”\nArduino'yu yeniden kurmanız gerekiyor." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Bir önceki derleme ayarları dosyası okunamadı, tümü yeniden derleniyor" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -631,10 +623,6 @@ msgstr "Çalışmanın adı değiştirilemiyor. (2)" msgid "Could not replace {0}" msgstr "{0} değiştirilemedi" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Derleme ayarları dosyasına yazılamadı" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Çalışma arşivlenemedi." @@ -662,18 +650,10 @@ msgstr "Hırvatça" msgid "Cut" msgstr "Kes" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Çekçe" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "Çekce(Çek Cumhuriyeti)" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danca" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danimarkaca(Danimarka)" @@ -945,6 +925,18 @@ msgstr "Estonyaca (Estonya)" msgid "Examples" msgstr "Örnekler" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "Derlenmiş binary'i çıkar" @@ -1173,6 +1165,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "{0} içerisinde geçersiz kütüphane bulundu: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "İtalyanca" @@ -1197,6 +1194,10 @@ msgstr "Library yöneticisi" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "Library sizin librarylerinize yüklendi. \"library ekle\" menüsünü kontrol edin" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1210,14 +1211,15 @@ msgstr "Litvanca" msgid "Loading configuration..." msgstr "ayarlar yükleniyor..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Düşük hafıza mevcut, kararlılık problemlerine sebep olabilir" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "Malayca(Malezya)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "libraryleri düzenle" @@ -1234,9 +1236,10 @@ msgstr "Marati" msgid "Message" msgstr "Mesaj" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "/* yorum */ satırlarının sonunda eksik /* etiketi" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1267,10 +1270,6 @@ msgstr "\"{0}\" için birden fazla library bulundu" msgid "Must specify exactly one sketch file" msgstr "Bir program dosyası belirtilmeli" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Yeni dosya için isim:" @@ -1315,10 +1314,6 @@ msgstr "Hayır" msgid "No authorization data found" msgstr "Yetkilendirme bilgisi bulunamadı" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Herhangi bir kart seçilmedi. Lütfen Araçlar > Kart menüsünden bir kart seçin" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Otomatik düzenleme için değişikliğe gerek yok." @@ -1382,18 +1377,10 @@ msgstr "{0} dizininde geçerli bir donanım tanımlaması bulunamadı." msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norveç" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norveççe" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norveç Norveççesi" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1453,6 +1440,11 @@ msgstr "Persce" msgid "Persian (Iran)" msgstr "İranca" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "Lütfen kartların silinmesini onaylayın" @@ -1550,11 +1542,6 @@ msgstr "Dizindeki dosyalara erişimde hata" msgid "Problem getting data folder" msgstr "Veri klasörü alınırken hata oluştu" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "{0} dosyasını inşa klasörüne taşırken sorun oluştu" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1573,10 +1560,19 @@ msgstr "İşlemci" msgid "Programmer" msgstr "Programlayıcı" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Çıkış" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Tekrarla" @@ -1628,6 +1624,16 @@ msgstr "Şununla değiştir:" msgid "Romanian" msgstr "Romanca" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rusça" @@ -1733,6 +1739,11 @@ msgstr "Seri port \"{0}\" bulunamadı.\nBaşka bir seri port ile denemek ister m msgid "Serial ports" msgstr "Seri portlar" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1848,10 +1859,6 @@ msgstr "Başlatılıyor..." msgid "Sunshine" msgstr "Gün Işığı" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Svahilice" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "İsveççe" @@ -1968,12 +1975,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Üçüncü-parti platform.txt dosyası compiler.path bilgisini tanımlamıyor. Bunu lütfen bu donanım sağlayıcısına bildirin." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2046,6 +2047,11 @@ msgstr "Bağlantı kurulamıyor: yeniden deneniyor" msgid "Unable to connect: wrong password?" msgstr "Bağlantı kurulamıyor: parola mı yanlış?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Seri port monitörü açılamıyor" @@ -2059,15 +2065,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Yakalanamayın hata türü: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Geri Al" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2116,10 +2127,6 @@ msgstr "I/O kartına yükleniyor..." msgid "Uploading..." msgstr "Yükleniyor..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urduca(Pakistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Seçimi Kullanarak Bul" @@ -2194,6 +2201,16 @@ msgstr "Vietnamca" msgid "Visit Arduino.cc" msgstr "Arduino.cc'yi Ziyaret Et" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2237,6 +2254,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2491,6 +2514,16 @@ msgstr "Sketch'e {0} tane dosya eklendi." msgid "{0} libraries" msgstr "{0} kütüphaneler" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_tr.properties b/arduino-core/src/processing/app/i18n/Resources_tr.properties index ab7f047120b..0cad3c2fd23 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tr.properties +++ b/arduino-core/src/processing/app/i18n/Resources_tr.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # An\u0131l \u00d6zbek , 2013 # Ayse Gokce Bor , 2012 # b , 2015 @@ -28,7 +29,7 @@ # selengalp , 2014 # YUSUF CAKIR, 2014 # Zubeyir OZTURK , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Turkish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/tr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Turkish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/tr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(Arduino'nun yeniden ba\u015flat\u0131lmas\u0131n\u0131 gerektiriyor) @@ -47,9 +48,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Fare' sadece Arduino Leonardo taraf\u0131ndan desteklenmektedir. +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(sadece Arduino \u00e7al\u0131\u015fm\u0131yorken d\u00fczenleyin) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir desteklenmiyor @@ -233,22 +240,20 @@ Bad\ error\ line\:\ {0}=Hatal\u0131 sat\u0131r\: {0} #: Editor.java:2136 Bad\ file\ selected=Se\u00e7ilen dosya uygun de\u011fil -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Taslak dosyas\u0131 ge\u00e7ersiz ya da taslak klas\u00f6r yap\u0131s\u0131 ge\u00e7ersiz. - #: ../../../processing/app/Preferences.java:149 Basque=Bask\u00e7a #: ../../../processing/app/Preferences.java:139 Belarusian=Belarus\u00e7a -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=Bengali(Hindistan) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Kart +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Kart {0}\: {1}\: {2} 'build.board' tercihini tan\u0131mlam\u0131yor. Otomatik olarak \: {3} ayarland\u0131. @@ -278,12 +283,12 @@ Both\ NL\ &\ CR=NL ve CR ile birlikte. #: Preferences.java:81 Browse=G\u00f6zat -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=Derleme klas\u00f6r\u00fc kay\u0131p yada yazmaya kar\u015f\u0131 korumal\u0131 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=Derleme se\u00e7enekleri de\u011fi\u015ftirildi, t\u00fcm\u00fc yeniden derleniyor. +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarca @@ -332,21 +337,12 @@ Check\ for\ updates\ on\ startup=A\u00e7\u0131l\u0131\u015fta g\u00fcncellemeler #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u00c7ince (\u00c7in) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u00c7ince (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u00c7ince (Tayvan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u00c7ince (Tayvan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Basitle\u015ftirilmi\u015f \u00c7ince - -#: Preferences.java:89 -Chinese\ Traditional=Geleneksel \u00c7ince - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -431,9 +427,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u00d6ntan\u0131ml\u0131 ayarlar okunamad\u0131.\\n\u201d\nArduino'yu yeniden kurman\u0131z gerekiyor. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Bir \u00f6nceki derleme ayarlar\u0131 dosyas\u0131 okunamad\u0131, t\u00fcm\u00fc yeniden derleniyor - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}={0}'\u0131n eski s\u00fcr\u00fcm\u00fc kald\u0131r\u0131lamad\u0131 @@ -455,9 +448,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u00c7al\u0131\u015fman\u0131n ad\u0131 de #, java-format Could\ not\ replace\ {0}={0} de\u011fi\u015ftirilemedi -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=Derleme ayarlar\u0131 dosyas\u0131na yaz\u0131lamad\u0131 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u00c7al\u0131\u015fma ar\u015fivlenemedi. @@ -476,15 +466,9 @@ Croatian=H\u0131rvat\u00e7a #: Editor.java:1149 Editor.java:2699 Cut=Kes -#: ../../../processing/app/Preferences.java:83 -Czech=\u00c7ek\u00e7e - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u00c7ekce(\u00c7ek Cumhuriyeti) -#: Preferences.java:90 -Danish=Danca - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danimarkaca(Danimarka) @@ -688,6 +672,15 @@ Estonian\ (Estonia)=Estonyaca (Estonya) #: Editor.java:516 Examples=\u00d6rnekler +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=Derlenmi\u015f binary'i \u00e7\u0131kar @@ -853,6 +846,10 @@ Installing\ library\:\ {0}=library y\u00fckleniyor\: {0} #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}={0} i\u00e7erisinde ge\u00e7ersiz k\u00fct\u00fcphane bulundu\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0130talyanca @@ -871,6 +868,9 @@ Library\ Manager=Library y\u00f6neticisi #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=Library sizin librarylerinize y\u00fcklendi. "library ekle" men\u00fcs\u00fcn\u00fc kontrol edin +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -881,12 +881,13 @@ Lithuaninan=Litvanca #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=ayarlar y\u00fckleniyor... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=D\u00fc\u015f\u00fck haf\u0131za mevcut, kararl\u0131l\u0131k problemlerine sebep olabilir -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=Malayca(Malezya) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=libraryleri d\u00fczenle @@ -899,8 +900,9 @@ Marathi=Marati #: Base.java:2112 Message=Mesaj -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=/* yorum */ sat\u0131rlar\u0131n\u0131n sonunda eksik /* etiketi +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=mod desteklenmiyor @@ -924,9 +926,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"="{0}" i\u00e7in birden fazla librar #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=Bir program dosyas\u0131 belirtilmeli -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=Yeni dosya i\u00e7in isim\: @@ -960,9 +959,6 @@ No=Hay\u0131r #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=Yetkilendirme bilgisi bulunamad\u0131 -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Herhangi bir kart se\u00e7ilmedi. L\u00fctfen Ara\u00e7lar > Kart men\u00fcs\u00fcnden bir kart se\u00e7in - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Otomatik d\u00fczenleme i\u00e7in de\u011fi\u015fikli\u011fe gerek yok. @@ -1011,15 +1007,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.={0} dizininde ge\u00e7 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norve\u00e7 - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norve\u00e7\u00e7e -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norve\u00e7 Norve\u00e7\u00e7esi - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Yeterli bellek yok; kaplanan alan\u0131 azaltma ipu\u00e7lar\u0131 i\u00e7in http\://www.arduino.cc/en/Guide/Troubleshooting\#size adresine bak\u0131n. @@ -1063,6 +1053,10 @@ Persian=Persce #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u0130ranca +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=L\u00fctfen kartlar\u0131n silinmesini onaylay\u0131n @@ -1136,10 +1130,6 @@ Problem\ accessing\ files\ in\ folder\ =Dizindeki dosyalara eri\u015fimde hata #: Base.java:1673 Problem\ getting\ data\ folder=Veri klas\u00f6r\u00fc al\u0131n\u0131rken hata olu\u015ftu -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder={0} dosyas\u0131n\u0131 in\u015fa klas\u00f6r\u00fcne ta\u015f\u0131rken sorun olu\u015ftu - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Karta y\u00fcklenirken sorun olu\u015ftu. Tavsiyeler i\u00e7in http\://www.arduino.cc/en/Guide/Troubleshooting\#upload adresine g\u00f6z atabilirsiniz. @@ -1152,9 +1142,16 @@ Processor=\u0130\u015flemci #: Editor.java:704 Programmer=Programlay\u0131c\u0131 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u00c7\u0131k\u0131\u015f +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Tekrarla @@ -1194,6 +1191,14 @@ Replace\ with\:=\u015eununla de\u011fi\u015ftir\: #: Preferences.java:113 Romanian=Romanca +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Rus\u00e7a @@ -1271,6 +1276,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=Seri portlar +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1351,9 +1360,6 @@ Starting...=Ba\u015flat\u0131l\u0131yor... #: Base.java:540 Sunshine=G\u00fcn I\u015f\u0131\u011f\u0131 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Svahilice - #: ../../../processing/app/Preferences.java:153 Swedish=\u0130sve\u00e7\u00e7e @@ -1418,9 +1424,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\u00dc\u00e7\u00fcnc\u00fc-parti platform.txt dosyas\u0131 compiler.path bilgisini tan\u0131mlam\u0131yor. Bunu l\u00fctfen bu donan\u0131m sa\u011flay\u0131c\u0131s\u0131na bildirin. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Dosya zaten eklemek istedi\u011finiz \nklas\u00f6re kopyaland\u0131.\nHi\u00e7bir \u015fey yapm\u0131yorum\! @@ -1472,6 +1475,10 @@ Unable\ to\ connect\:\ retrying=Ba\u011flant\u0131 kurulam\u0131yor\: yeniden de #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Ba\u011flant\u0131 kurulam\u0131yor\: parola m\u0131 yanl\u0131\u015f? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Seri port monit\u00f6r\u00fc a\u00e7\u0131lam\u0131yor @@ -1482,13 +1489,17 @@ Unable\ to\ open\ serial\ monitor=Seri port monit\u00f6r\u00fc a\u00e7\u0131lam\ #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Yakalanamay\u0131n hata t\u00fcr\u00fc\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=Geri Al +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Belirlenememi\u015f platform, uygun ba\u015flat\u0131c\u0131 bulunmuyor.\nURL'leri ya da klas\u00f6rleri a\u00e7may\u0131 aktifle\u015ftirmek i\u00e7in,\npreferences.txt dosyas\u0131na "launcher\=/uygulama/icin/klasor" ekleyiniz. @@ -1523,9 +1534,6 @@ Uploading\ to\ I/O\ Board...=I/O kart\u0131na y\u00fckleniyor... #: Sketch.java:1622 Uploading...=Y\u00fckleniyor... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urduca(Pakistan) - #: Editor.java:1269 Use\ Selection\ For\ Find=Se\u00e7imi Kullanarak Bul @@ -1583,6 +1591,14 @@ Vietnamese=Vietnamca #: Editor.java:1105 Visit\ Arduino.cc=Arduino.cc'yi Ziyaret Et +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=UYARI \: {0} k\u00fct\u00fcphanesi \u00e7al\u0131\u015fmak i\u00e7in {1} mimarisine ihtiya\u00e7 duyuyor ve {2} mimarisini kullanan devreniz i\u00e7in uyumsuz olabilir. @@ -1612,6 +1628,9 @@ Warning=Uyar\u0131 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1772,6 +1791,14 @@ version\ {0}=versiyon {0} #, java-format {0}\ libraries={0} k\u00fct\u00fcphaneler +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0}, {1}'i d\u00f6nd\u00fcrd\u00fc diff --git a/arduino-core/src/processing/app/i18n/Resources_tzl.po b/arduino-core/src/processing/app/i18n/Resources_tzl.po index 59d250faeb7..5e5c3a103e8 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tzl.po +++ b/arduino-core/src/processing/app/i18n/Resources_tzl.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Marcel Machado , 2015 # Robin van der Vliet , 2015 msgid "" @@ -13,7 +14,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Talossan (http://www.transifex.com/mbanzi/arduino-ide-15/language/tzl/)\n" "MIME-Version: 1.0\n" @@ -44,10 +45,20 @@ msgstr "" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -309,10 +320,6 @@ msgstr "" msgid "Bad file selected" msgstr "" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "Euscadì" @@ -321,15 +328,16 @@ msgstr "Euscadì" msgid "Belarusian" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -370,14 +378,14 @@ msgstr "" msgid "Browse" msgstr "" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "" @@ -441,10 +449,6 @@ msgstr "" msgid "Chinese (China)" msgstr "Cinesch (Cina)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Cinesch (Taivan)" @@ -453,14 +457,6 @@ msgstr "Cinesch (Taivan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Cinesch (Taivan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -580,10 +576,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -611,10 +603,6 @@ msgstr "" msgid "Could not replace {0}" msgstr "" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "" @@ -642,18 +630,10 @@ msgstr "C'horvol" msgid "Cut" msgstr "" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Tschec" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danois" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "Danois (Danmarc)" @@ -925,6 +905,18 @@ msgstr "" msgid "Examples" msgstr "Exampais" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1153,6 +1145,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Talian" @@ -1177,6 +1174,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1190,12 +1191,13 @@ msgstr "" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1214,8 +1216,9 @@ msgstr "" msgid "Message" msgstr "Mensatx" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1247,10 +1250,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "Nco" - #: Sketch.java:282 msgid "Name for new file:" msgstr "" @@ -1295,10 +1294,6 @@ msgstr "Non" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "" @@ -1362,18 +1357,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "Norvexhan" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norvexhan \"Bokmal\"" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "Norvexhan \"Nynorsk\"" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1433,6 +1420,11 @@ msgstr "Persic" msgid "Persian (Iran)" msgstr "Persic (Iran)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1530,11 +1522,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1553,10 +1540,19 @@ msgstr "" msgid "Programmer" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Ceßarh" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Refaçarh" @@ -1608,6 +1604,16 @@ msgstr "" msgid "Romanian" msgstr "Romaniesc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Rußesc" @@ -1713,6 +1719,11 @@ msgstr "" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1828,10 +1839,6 @@ msgstr "" msgid "Sunshine" msgstr "Clartà" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "Chisuaíli" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Svensc'heu" @@ -1948,12 +1955,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2026,6 +2027,11 @@ msgstr "" msgid "Unable to connect: wrong password?" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "" @@ -2039,15 +2045,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Zesfaçarh" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2096,10 +2107,6 @@ msgstr "" msgid "Uploading..." msgstr "Transzonind..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "Urdu (Pachistan)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "" @@ -2174,6 +2181,16 @@ msgstr "Vietnam" msgid "Visit Arduino.cc" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2217,6 +2234,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2471,6 +2494,16 @@ msgstr "" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_tzl.properties b/arduino-core/src/processing/app/i18n/Resources_tzl.properties index a03f5123e87..6b3f07ccc70 100644 --- a/arduino-core/src/processing/app/i18n/Resources_tzl.properties +++ b/arduino-core/src/processing/app/i18n/Resources_tzl.properties @@ -6,9 +6,10 @@ # Translators: # Translators: # Translators: +# Translators: # Marcel Machado , 2015 # Robin van der Vliet , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Talossan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/tzl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tzl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Talossan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/tzl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: tzl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n #: Preferences.java:358 Preferences.java:374 !\ \ (requires\ restart\ of\ Arduino)= @@ -27,9 +28,15 @@ #: debug/Compiler.java:450 !'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 !(edit\ only\ when\ Arduino\ is\ not\ running)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -213,22 +220,20 @@ Asturian=Asturian #: Editor.java:2136 !Bad\ file\ selected= -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=Euscad\u00ec #: ../../../processing/app/Preferences.java:139 !Belarusian= -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 !Board= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format !Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= @@ -258,12 +263,12 @@ Basque=Euscad\u00ec #: Preferences.java:81 !Browse= -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 !Bulgarian= @@ -312,21 +317,12 @@ Catalan=Catal\u00e0 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Cinesch (Cina) -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Cinesch (Taivan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Cinesch (Taivan) (Big5) -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -411,9 +407,6 @@ Chinese\ (Taiwan)\ (Big5)=Cinesch (Taivan) (Big5) #: Preferences.java:219 !Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format !Could\ not\ remove\ old\ version\ of\ {0}= @@ -435,9 +428,6 @@ Chinese\ (Taiwan)\ (Big5)=Cinesch (Taivan) (Big5) #, java-format !Could\ not\ replace\ {0}= -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 !Couldn't\ archive\ sketch= @@ -456,15 +446,9 @@ Croatian=C'horvol #: Editor.java:1149 Editor.java:2699 !Cut= -#: ../../../processing/app/Preferences.java:83 -Czech=Tschec - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danois - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=Danois (Danmarc) @@ -668,6 +652,15 @@ English\ (United\ Kingdom)=Angleasca (Regip\u00e4ts Viensi\u00e7at) #: Editor.java:516 Examples=Exampais +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -833,6 +826,10 @@ Hungarian=M\u00e1xhar #, java-format !Invalid\ library\ found\ in\ {0}\:\ {1}= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Talian @@ -851,6 +848,9 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -861,12 +861,13 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -879,8 +880,9 @@ Latvian=Latvian #: Base.java:2112 Message=Mensatx -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -904,9 +906,6 @@ Message=Mensatx #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -N'Ko=Nco - #: Sketch.java:282 !Name\ for\ new\ file\:= @@ -940,9 +939,6 @@ No=Non #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 !No\ changes\ necessary\ for\ Auto\ Format.= @@ -991,15 +987,9 @@ No\ sketch=Auc\u00fcn s\u00b7chitza #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=Norvexhan - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norvexhan "Bokmal" -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=Norvexhan "Nynorsk" - #: ../../../processing/app/Sketch.java:1656 !Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= @@ -1043,6 +1033,10 @@ Persian=Persic #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=Persic (Iran) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1116,10 +1110,6 @@ Printing...=Printind... #: Base.java:1673 !Problem\ getting\ data\ folder= -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - #: debug/Uploader.java:209 !Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= @@ -1132,9 +1122,16 @@ Printing...=Printind... #: Editor.java:704 !Programmer= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Ce\u00dfarh +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=Refa\u00e7arh @@ -1174,6 +1171,14 @@ Replace\ All=Rempla\u00e7arh toct #: Preferences.java:113 Romanian=Romaniesc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Ru\u00dfesc @@ -1251,6 +1256,10 @@ Send=Envoxhiarh #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1331,9 +1340,6 @@ Spanish=Espanol #: Base.java:540 Sunshine=Clart\u00e0 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=Chisua\u00edli - #: ../../../processing/app/Preferences.java:153 Swedish=Svensc'heu @@ -1398,9 +1404,6 @@ Tamil=Tamul #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 !This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= @@ -1452,6 +1455,10 @@ Ukrainian=Ucrain #: ../../../processing/app/Editor.java:2526 !Unable\ to\ connect\:\ wrong\ password?= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 !Unable\ to\ open\ serial\ monitor= @@ -1462,13 +1469,17 @@ Ukrainian=Ucrain #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - #: Editor.java:1133 Editor.java:1355 Undo=Zesfa\u00e7arh +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 !Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt= @@ -1503,9 +1514,6 @@ Upload=Transzonarh #: Sketch.java:1622 Uploading...=Transzonind... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=Urdu (Pachistan) - #: Editor.java:1269 !Use\ Selection\ For\ Find= @@ -1563,6 +1571,14 @@ Vietnamese=Vietnam #: Editor.java:1105 !Visit\ Arduino.cc= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1592,6 +1608,9 @@ Warning=Avi\u00df #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1752,6 +1771,14 @@ http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format !{0}\ returned\ {1}= diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.po b/arduino-core/src/processing/app/i18n/Resources_uk.po index d14ea95488b..edde1442b9e 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.po +++ b/arduino-core/src/processing/app/i18n/Resources_uk.po @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # netavek , 2015 msgid "" msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Ukrainian (http://www.transifex.com/mbanzi/arduino-ide-15/language/uk/)\n" "MIME-Version: 1.0\n" @@ -43,10 +44,20 @@ msgstr "«Keyboard» підтримується лише в Arduino Leonardo" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "«Mouse» підтримується лише в Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(редагуйте тільки якщо Arduino не запущено)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -308,10 +319,6 @@ msgstr "Рядок з помилкою: {0}" msgid "Bad file selected" msgstr "Вибрано неправильний файл" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "Неправильний файл скетчу або структура каталогів" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "баскійська" @@ -320,15 +327,16 @@ msgstr "баскійська" msgid "Belarusian" msgstr "білоруська" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Плата" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -369,14 +377,14 @@ msgstr "NL і CR разом" msgid "Browse" msgstr "Обрати" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Відсутня або не перезаписується тека збірки" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "Змінились налаштування збірки, все має бути перезібрано" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "болгарська" @@ -440,10 +448,6 @@ msgstr "Перевіряти оновлення при запуску" msgid "Chinese (China)" msgstr "китайська (Китай)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "китайська (Гонконг)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "китайська (Тайвань)" @@ -452,14 +456,6 @@ msgstr "китайська (Тайвань)" msgid "Chinese (Taiwan) (Big5)" msgstr "китайська (Тайвань) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "китайська спрощена" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "китайська традиційна" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -579,10 +575,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Не вдалось прочитати налаштування за умовчанням.\nНеобхідно перевстановити Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "Не вдалось прочитати попередній файл налаштування збірки, все має бути перезібрано" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -610,10 +602,6 @@ msgstr "Не вдалося перейменувати скетч. (2)" msgid "Could not replace {0}" msgstr "Не вдалося замінити {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "Не вдалося записати файл налаштування збірки" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Не вдалося заархівувати скетч" @@ -641,18 +629,10 @@ msgstr "хорватська" msgid "Cut" msgstr "Вирізати" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "чеська" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "данська" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -924,6 +904,18 @@ msgstr "естонська (Естонія)" msgid "Examples" msgstr "Приклади" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1152,6 +1144,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Недійсна бібліотека знаходиться в {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "італійська" @@ -1176,6 +1173,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1189,14 +1190,15 @@ msgstr "литовська" msgid "Loading configuration..." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "Низький обсяг доступної пам’яті, можливі проблеми зі стабільністю." -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "" @@ -1213,9 +1215,10 @@ msgstr "мараті" msgid "Message" msgstr "Повідомлення" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "Відсутній */ для кінця /* примітки */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1246,10 +1249,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "Необхідно вказати лише один файл скетчу" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "нко" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Ім’я для нового файлу:" @@ -1294,10 +1293,6 @@ msgstr "Ні" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Не обрано модель плати. Будь ласка, виберіть її в меню Сервіс > Плати." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Нічого форматувати." @@ -1361,18 +1356,10 @@ msgstr "Не знайдено дійсних апаратних налаштув msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "норвезька (букмол)" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1432,6 +1419,11 @@ msgstr "перська" msgid "Persian (Iran)" msgstr "перська (Іран)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1529,11 +1521,6 @@ msgstr "Проблема доступу до файлів у теці" msgid "Problem getting data folder" msgstr "Проблема при зверненні до теки з даними" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "{0} не переміщається в теку збірки" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1552,10 +1539,19 @@ msgstr "Процесор" msgid "Programmer" msgstr "Програматор" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Вихід" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Повернути" @@ -1607,6 +1603,16 @@ msgstr "Замінити:" msgid "Romanian" msgstr "румунська" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "російська" @@ -1712,6 +1718,11 @@ msgstr "Послідовний порт {0} не знайдено.\nПовтор msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1827,10 +1838,6 @@ msgstr "" msgid "Sunshine" msgstr "Сонячне світло" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "шведська" @@ -1947,12 +1954,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "Сторонній platform.txt не містить compiler.path. Будь ласка, сповістіть про це у підтримку виробника стороннього пристрою." - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2025,6 +2026,11 @@ msgstr "Не вдалося з’єднатись: повторна спроба msgid "Unable to connect: wrong password?" msgstr "Не вдалося з’єднатись: неправильний пароль?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Не вдалося відкрити монітор послідовного порту" @@ -2038,15 +2044,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Неперехоплений тип виключення: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Повернути" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2095,10 +2106,6 @@ msgstr "Вивантаження на плату введення/виведен msgid "Uploading..." msgstr "Вивантаження..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Знайти вибране" @@ -2173,6 +2180,16 @@ msgstr "в’єтнамська" msgid "Visit Arduino.cc" msgstr "Перейти на Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2216,6 +2233,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2470,6 +2493,16 @@ msgstr "До скетчу було додано файлів: {0}." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_uk.properties b/arduino-core/src/processing/app/i18n/Resources_uk.properties index eb97b4ed708..133742756b2 100644 --- a/arduino-core/src/processing/app/i18n/Resources_uk.properties +++ b/arduino-core/src/processing/app/i18n/Resources_uk.properties @@ -6,8 +6,9 @@ # Translators: # Translators: # Translators: +# Translators: # netavek , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Ukrainian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/uk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: uk\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Ukrainian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/uk/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: uk\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\ (\u0432\u0438\u043c\u0430\u0433\u0430\u0454 \u043f\u0435\u0440\u0435\u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f Arduino) @@ -26,9 +27,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abMouse\u00bb \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f \u043b\u0438\u0448\u0435 \u0432 Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(\u0440\u0435\u0434\u0430\u0433\u0443\u0439\u0442\u0435 \u0442\u0456\u043b\u044c\u043a\u0438 \u044f\u043a\u0449\u043e Arduino \u043d\u0435 \u0437\u0430\u043f\u0443\u0449\u0435\u043d\u043e) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -212,22 +219,20 @@ Bad\ error\ line\:\ {0}=\u0420\u044f\u0434\u043e\u043a \u0437 \u043f\u043e\u043c #: Editor.java:2136 Bad\ file\ selected=\u0412\u0438\u0431\u0440\u0430\u043d\u043e \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0438\u0439 \u0444\u0430\u0439\u043b -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u041d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0438\u0439 \u0444\u0430\u0439\u043b \u0441\u043a\u0435\u0442\u0447\u0443 \u0430\u0431\u043e \u0441\u0442\u0440\u0443\u043a\u0442\u0443\u0440\u0430 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\u0456\u0432 - #: ../../../processing/app/Preferences.java:149 Basque=\u0431\u0430\u0441\u043a\u0456\u0439\u0441\u044c\u043a\u0430 #: ../../../processing/app/Preferences.java:139 Belarusian=\u0431\u0456\u043b\u043e\u0440\u0443\u0441\u044c\u043a\u0430 -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u041f\u043b\u0430\u0442\u0430 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u041f\u043b\u0430\u0442\u0430 {0}\:{1}\:{2} \u043d\u0435 \u0437\u043d\u0430\u0445\u043e\u0434\u0438\u0442\u044c \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u044c \u00abbuild.board\u00bb. \u0410\u0432\u0442\u043e-\u0437\u043d\u0430\u0447\u0435\u043d\u043d\u044f\: {3} @@ -257,12 +262,12 @@ Both\ NL\ &\ CR=NL \u0456 CR \u0440\u0430\u0437\u043e\u043c #: Preferences.java:81 Browse=\u041e\u0431\u0440\u0430\u0442\u0438 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u044f \u0430\u0431\u043e \u043d\u0435 \u043f\u0435\u0440\u0435\u0437\u0430\u043f\u0438\u0441\u0443\u0454\u0442\u044c\u0441\u044f \u0442\u0435\u043a\u0430 \u0437\u0431\u0456\u0440\u043a\u0438 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u0417\u043c\u0456\u043d\u0438\u043b\u0438\u0441\u044c \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0431\u0456\u0440\u043a\u0438, \u0432\u0441\u0435 \u043c\u0430\u0454 \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u0437\u0456\u0431\u0440\u0430\u043d\u043e +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u0431\u043e\u043b\u0433\u0430\u0440\u0441\u044c\u043a\u0430 @@ -311,21 +316,12 @@ Check\ for\ updates\ on\ startup=\u041f\u0435\u0440\u0435\u0432\u0456\u0440\u044 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 (\u041a\u0438\u0442\u0430\u0439) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 (\u0413\u043e\u043d\u043a\u043e\u043d\u0433) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 (\u0422\u0430\u0439\u0432\u0430\u043d\u044c) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 \u0441\u043f\u0440\u043e\u0449\u0435\u043d\u0430 - -#: Preferences.java:89 -Chinese\ Traditional=\u043a\u0438\u0442\u0430\u0439\u0441\u044c\u043a\u0430 \u0442\u0440\u0430\u0434\u0438\u0446\u0456\u0439\u043d\u0430 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -410,9 +406,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u0438 \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0430 \u0443\u043c\u043e\u0432\u0447\u0430\u043d\u043d\u044f\u043c.\n\u041d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e \u043f\u0435\u0440\u0435\u0432\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0438 Arduino. -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044c \u043f\u0440\u043e\u0447\u0438\u0442\u0430\u0442\u0438 \u043f\u043e\u043f\u0435\u0440\u0435\u0434\u043d\u0456\u0439 \u0444\u0430\u0439\u043b \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0431\u0456\u0440\u043a\u0438, \u0432\u0441\u0435 \u043c\u0430\u0454 \u0431\u0443\u0442\u0438 \u043f\u0435\u0440\u0435\u0437\u0456\u0431\u0440\u0430\u043d\u043e - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0432\u0438\u0434\u0430\u043b\u0438\u0442\u0438 \u0441\u0442\u0430\u0440\u0443 \u0432\u0435\u0440\u0441\u0456\u044e {0} @@ -434,9 +427,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u041d\u0435 \u0432\u0434\u0430\u043b\u043 #, java-format Could\ not\ replace\ {0}=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u043c\u0456\u043d\u0438\u0442\u0438 {0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u043f\u0438\u0441\u0430\u0442\u0438 \u0444\u0430\u0439\u043b \u043d\u0430\u043b\u0430\u0448\u0442\u0443\u0432\u0430\u043d\u043d\u044f \u0437\u0431\u0456\u0440\u043a\u0438 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u0430\u0430\u0440\u0445\u0456\u0432\u0443\u0432\u0430\u0442\u0438 \u0441\u043a\u0435\u0442\u0447 @@ -455,15 +445,9 @@ Croatian=\u0445\u043e\u0440\u0432\u0430\u0442\u0441\u044c\u043a\u0430 #: Editor.java:1149 Editor.java:2699 Cut=\u0412\u0438\u0440\u0456\u0437\u0430\u0442\u0438 -#: ../../../processing/app/Preferences.java:83 -Czech=\u0447\u0435\u0441\u044c\u043a\u0430 - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u0434\u0430\u043d\u0441\u044c\u043a\u0430 - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -667,6 +651,15 @@ Estonian\ (Estonia)=\u0435\u0441\u0442\u043e\u043d\u0441\u044c\u043a\u0430 (\u04 #: Editor.java:516 Examples=\u041f\u0440\u0438\u043a\u043b\u0430\u0434\u0438 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -832,6 +825,10 @@ Indonesian=\u0456\u043d\u0434\u043e\u043d\u0435\u0437\u0456\u0439\u0441\u044c\u0 #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u041d\u0435\u0434\u0456\u0439\u0441\u043d\u0430 \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 \u0437\u043d\u0430\u0445\u043e\u0434\u0438\u0442\u044c\u0441\u044f \u0432 {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u0456\u0442\u0430\u043b\u0456\u0439\u0441\u044c\u043a\u0430 @@ -850,6 +847,9 @@ Latvian=\u043b\u0430\u0442\u0432\u0456\u0439\u0441\u044c\u043a\u0430 #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -860,12 +860,13 @@ Lithuaninan=\u043b\u0438\u0442\u043e\u0432\u0441\u044c\u043a\u0430 #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=\u041d\u0438\u0437\u044c\u043a\u0438\u0439 \u043e\u0431\u0441\u044f\u0433 \u0434\u043e\u0441\u0442\u0443\u043f\u043d\u043e\u0457 \u043f\u0430\u043c\u2019\u044f\u0442\u0456, \u043c\u043e\u0436\u043b\u0438\u0432\u0456 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438 \u0437\u0456 \u0441\u0442\u0430\u0431\u0456\u043b\u044c\u043d\u0456\u0441\u0442\u044e. -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -878,8 +879,9 @@ Marathi=\u043c\u0430\u0440\u0430\u0442\u0456 #: Base.java:2112 Message=\u041f\u043e\u0432\u0456\u0434\u043e\u043c\u043b\u0435\u043d\u043d\u044f -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u0412\u0456\u0434\u0441\u0443\u0442\u043d\u0456\u0439 */ \u0434\u043b\u044f \u043a\u0456\u043d\u0446\u044f /* \u043f\u0440\u0438\u043c\u0456\u0442\u043a\u0438 */ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\u0420\u0435\u0436\u0438\u043c \u043d\u0435 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u0443\u0454\u0442\u044c\u0441\u044f @@ -903,9 +905,6 @@ Multiple\ files\ not\ supported=\u0414\u0435\u043a\u0456\u043b\u044c\u043a\u0430 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u041d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e \u0432\u043a\u0430\u0437\u0430\u0442\u0438 \u043b\u0438\u0448\u0435 \u043e\u0434\u0438\u043d \u0444\u0430\u0439\u043b \u0441\u043a\u0435\u0442\u0447\u0443 -#: ../../../processing/app/Preferences.java:158 -N'Ko=\u043d\u043a\u043e - #: Sketch.java:282 Name\ for\ new\ file\:=\u0406\u043c\u2019\u044f \u0434\u043b\u044f \u043d\u043e\u0432\u043e\u0433\u043e \u0444\u0430\u0439\u043b\u0443\: @@ -939,9 +938,6 @@ No=\u041d\u0456 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u041d\u0435 \u043e\u0431\u0440\u0430\u043d\u043e \u043c\u043e\u0434\u0435\u043b\u044c \u043f\u043b\u0430\u0442\u0438. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0432\u0438\u0431\u0435\u0440\u0456\u0442\u044c \u0457\u0457 \u0432 \u043c\u0435\u043d\u044e \u0421\u0435\u0440\u0432\u0456\u0441 > \u041f\u043b\u0430\u0442\u0438. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u041d\u0456\u0447\u043e\u0433\u043e \u0444\u043e\u0440\u043c\u0430\u0442\u0443\u0432\u0430\u0442\u0438. @@ -990,15 +986,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u041d\u0435 \u0437\u0 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u043d\u043e\u0440\u0432\u0435\u0437\u044c\u043a\u0430 (\u0431\u0443\u043a\u043c\u043e\u043b) -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u0435 \u0432\u0438\u0441\u0442\u0430\u0447\u0430\u0454 \u043f\u0430\u043c\u2019\u044f\u0442\u0456; \u0437\u0432\u0435\u0440\u043d\u0456\u0442\u044c\u0441\u044f \u0434\u043e http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0437\u0430 \u043f\u043e\u0440\u0430\u0434\u0430\u043c\u0438 \u0449\u043e\u0434\u043e \u0437\u043c\u0435\u043d\u0448\u0435\u043d\u043d\u044f \u043d\u0435\u043e\u0431\u0445\u0456\u0434\u043d\u043e\u0433\u043e \u0440\u043e\u0437\u043c\u0456\u0440\u0443 \u043f\u0430\u043c\u2019\u044f\u0442\u0456. @@ -1042,6 +1032,10 @@ Persian=\u043f\u0435\u0440\u0441\u044c\u043a\u0430 #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u043f\u0435\u0440\u0441\u044c\u043a\u0430 (\u0406\u0440\u0430\u043d) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1115,10 +1109,6 @@ Problem\ accessing\ files\ in\ folder\ =\u041f\u0440\u043e\u0431\u043b\u0435\u04 #: Base.java:1673 Problem\ getting\ data\ folder=\u041f\u0440\u043e\u0431\u043b\u0435\u043c\u0430 \u043f\u0440\u0438 \u0437\u0432\u0435\u0440\u043d\u0435\u043d\u043d\u0456 \u0434\u043e \u0442\u0435\u043a\u0438 \u0437 \u0434\u0430\u043d\u0438\u043c\u0438 -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder={0} \u043d\u0435 \u043f\u0435\u0440\u0435\u043c\u0456\u0449\u0430\u0454\u0442\u044c\u0441\u044f \u0432 \u0442\u0435\u043a\u0443 \u0437\u0431\u0456\u0440\u043a\u0438 - #: 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 \u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f \u0432 \u043f\u043b\u0430\u0442\u0443. \u0417\u0432\u0435\u0440\u043d\u0456\u0442\u044c\u0441\u044f \u0434\u043e http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0434\u043b\u044f \u043f\u043e\u0448\u0443\u043a\u0443 \u0440\u0456\u0448\u0435\u043d\u043d\u044f. @@ -1131,9 +1121,16 @@ Processor=\u041f\u0440\u043e\u0446\u0435\u0441\u043e\u0440 #: Editor.java:704 Programmer=\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u0412\u0438\u0445\u0456\u0434 +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 @@ -1173,6 +1170,14 @@ Replace\ with\:=\u0417\u0430\u043c\u0456\u043d\u0438\u0442\u0438\: #: Preferences.java:113 Romanian=\u0440\u0443\u043c\u0443\u043d\u0441\u044c\u043a\u0430 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u0440\u043e\u0441\u0456\u0439\u0441\u044c\u043a\u0430 @@ -1250,6 +1255,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1330,9 +1339,6 @@ Spanish=\u0456\u0441\u043f\u0430\u043d\u0441\u044c\u043a\u0430 #: Base.java:540 Sunshine=\u0421\u043e\u043d\u044f\u0447\u043d\u0435 \u0441\u0432\u0456\u0442\u043b\u043e -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u0448\u0432\u0435\u0434\u0441\u044c\u043a\u0430 @@ -1397,9 +1403,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\u0421\u0442\u043e\u0440\u043e\u043d\u043d\u0456\u0439 platform.txt \u043d\u0435 \u043c\u0456\u0441\u0442\u0438\u0442\u044c compiler.path. \u0411\u0443\u0434\u044c \u043b\u0430\u0441\u043a\u0430, \u0441\u043f\u043e\u0432\u0456\u0441\u0442\u0456\u0442\u044c \u043f\u0440\u043e \u0446\u0435 \u0443 \u043f\u0456\u0434\u0442\u0440\u0438\u043c\u043a\u0443 \u0432\u0438\u0440\u043e\u0431\u043d\u0438\u043a\u0430 \u0441\u0442\u043e\u0440\u043e\u043d\u043d\u044c\u043e\u0433\u043e \u043f\u0440\u0438\u0441\u0442\u0440\u043e\u044e. - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0426\u0435\u0439 \u0444\u0430\u0439\u043b \u0432\u0436\u0435 \u0431\u0443\u0432 \u0441\u043a\u043e\u043f\u0456\u0439\u043e\u0432\u0430\u043d\u0438\u0439 \u0432 \u043c\u0456\u0441\u0446\u0435,\n\u0437 \u044f\u043a\u043e\u0433\u043e \u0432\u0438 \u043d\u0430\u043c\u0430\u0433\u0430\u0454\u0442\u0435\u0441\u044f \u0439\u043e\u0433\u043e \u0434\u043e\u0434\u0430\u0442\u0438. @@ -1451,6 +1454,10 @@ Unable\ to\ connect\:\ retrying=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u044 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0437\u2019\u0454\u0434\u043d\u0430\u0442\u0438\u0441\u044c\: \u043d\u0435\u043f\u0440\u0430\u0432\u0438\u043b\u044c\u043d\u0438\u0439 \u043f\u0430\u0440\u043e\u043b\u044c? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0441\u044f \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0438 \u043c\u043e\u043d\u0456\u0442\u043e\u0440 \u043f\u043e\u0441\u043b\u0456\u0434\u043e\u0432\u043d\u043e\u0433\u043e \u043f\u043e\u0440\u0442\u0443 @@ -1461,13 +1468,17 @@ Unable\ to\ open\ serial\ monitor=\u041d\u0435 \u0432\u0434\u0430\u043b\u043e\u0 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u041d\u0435\u043f\u0435\u0440\u0435\u0445\u043e\u043f\u043b\u0435\u043d\u0438\u0439 \u0442\u0438\u043f \u0432\u0438\u043a\u043b\u044e\u0447\u0435\u043d\u043d\u044f\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u041f\u043e\u0432\u0435\u0440\u043d\u0443\u0442\u0438 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u041d\u0435 \u0432\u043a\u0430\u0437\u0430\u043d\u0430 \u043f\u043b\u0430\u0442\u0444\u043e\u0440\u043c\u0430, \u043d\u0435\u043c\u0430\u0454 \u0437\u0430\u0432\u0430\u043d\u0442\u0430\u0436\u0443\u0432\u0430\u0447\u0430.\n\u0429\u043e\u0431 \u0434\u043e\u0437\u0432\u043e\u043b\u0438\u0442\u0438 \u0432\u0456\u0434\u043a\u0440\u0438\u0442\u0442\u044f \u043f\u043e\u0441\u0438\u043b\u0430\u043d\u044c \u0430\u0431\u043e \u0442\u0435\u043a, \u0434\u043e\u0434\u0430\u0439\u0442\u0435\n"launcher \=/path/to/app" \u0443 preferences.txt @@ -1502,9 +1513,6 @@ Uploading\ to\ I/O\ Board...=\u0412\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0 #: Sketch.java:1622 Uploading...=\u0412\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u044f... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=\u0417\u043d\u0430\u0439\u0442\u0438 \u0432\u0438\u0431\u0440\u0430\u043d\u0435 @@ -1562,6 +1570,14 @@ Vietnamese=\u0432\u2019\u0454\u0442\u043d\u0430\u043c\u0441\u044c\u043a\u0430 #: Editor.java:1105 Visit\ Arduino.cc=\u041f\u0435\u0440\u0435\u0439\u0442\u0438 \u043d\u0430 Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u0423\u0412\u0410\u0413\u0410\: \u0431\u0456\u0431\u043b\u0456\u043e\u0442\u0435\u043a\u0430 {0} \u043f\u043e\u0442\u0440\u0435\u0431\u0443\u0454 \u0434\u043b\u044f \u0440\u043e\u0431\u043e\u0442\u0438 \u0430\u0440\u0445\u0456\u0442\u0435\u043a\u0442\u0443\u0440\u0443 {1}, \u0442\u0430 \u043c\u043e\u0436\u0435 \u0431\u0443\u0442\u0438 \u043d\u0435\u0441\u0443\u043c\u0456\u0441\u043d\u043e\u044e \u0437 \u0432\u0430\u0448\u043e\u044e \u043f\u043b\u0430\u0442\u043e\u044e, \u0449\u043e \u043f\u0440\u0430\u0446\u044e\u0454 \u043d\u0430 \u0430\u0440\u0445\u0456\u0442\u0435\u043a\u0442\u0443\u0440\u0456 {2}. @@ -1591,6 +1607,9 @@ Warning=\u041f\u043e\u043f\u0435\u0440\u0435\u0434\u0436\u0435\u043d\u043d\u044f #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1751,6 +1770,14 @@ upload=\u0432\u0438\u0432\u0430\u043d\u0442\u0430\u0436\u0435\u043d\u043d\u0456 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u043f\u043e\u0432\u0435\u0440\u043d\u0443\u0432 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_ur_PK.po b/arduino-core/src/processing/app/i18n/Resources_ur_PK.po deleted file mode 100644 index 387b8f31038..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_ur_PK.po +++ /dev/null @@ -1,2522 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -msgid "" -msgstr "" -"Project-Id-Version: Arduino IDE 1.5\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" -"Last-Translator: Federico Fissore \n" -"Language-Team: Urdu (Pakistan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ur_PK/)\n" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" -"Content-Transfer-Encoding: 8bit\n" -"Language: ur_PK\n" -"Plural-Forms: nplurals=2; plural=(n != 1);\n" - -#: Preferences.java:358 Preferences.java:374 -msgid " (requires restart of Arduino)" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -msgid " Not used: {0}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -msgid " Used: {0}" -msgstr "" - -#: debug/Compiler.java:455 -msgid "'Keyboard' only supported on the Arduino Leonardo" -msgstr "" - -#: debug/Compiler.java:450 -msgid "'Mouse' only supported on the Arduino Leonardo" -msgstr "" - -#: Preferences.java:478 -msgid "(edit only when Arduino is not running)" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -msgid "--curdir no longer supported" -msgstr "" - -#: ../../../processing/app/Base.java:468 -msgid "" -"--verbose, --verbose-upload and --verbose-build can only be used together " -"with --verify or --upload" -msgstr "" - -#: Sketch.java:746 -msgid ".pde -> .ino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -msgid "
Update available for some of your {0}boards{1}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -msgid "" -"
Update available for some of your {0}boards{1} and {2}libraries{3}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -msgid "
Update available for some of your {0}libraries{1}" -msgstr "" - -#: Editor.java:2053 -msgid "" -" Do you " -"want to save changes to this sketch
before closing?

If you don't " -"save, your changes will be lost." -msgstr "" - -#: Sketch.java:398 -#, java-format -msgid "A file named \"{0}\" already exists in \"{1}\"" -msgstr "" - -#: Editor.java:2169 -#, java-format -msgid "A folder named \"{0}\" already exists. Can't open sketch." -msgstr "" - -#: Base.java:2690 -#, java-format -msgid "A library named {0} already exists" -msgstr "" - -#: UpdateCheck.java:103 -msgid "" -"A new version of Arduino is available,\n" -"would you like to visit the Arduino download page?" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "A newer {0} package is available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2307 -msgid "A subfolder of your sketchbook is not a valid library" -msgstr "" - -#: Editor.java:1116 -msgid "About Arduino" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1177 -msgid "Add .ZIP Library..." -msgstr "" - -#: Editor.java:650 -msgid "Add File..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -msgid "Additional Boards Manager URLs" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -msgid "Additional Boards Manager URLs: " -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:161 -msgid "Afrikaans" -msgstr "" - -#: ../../../processing/app/Preferences.java:96 -msgid "Albanian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -msgid "All" -msgstr "" - -#: 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 "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -msgid "An error occurred while updating libraries index!" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "An error occurred while uploading the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "An error occurred while verifying the sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "An error occurred while verifying/uploading the sketch" -msgstr "" - -#: Base.java:228 -msgid "" -"An unknown error occurred while trying to load\n" -"platform-specific code for your machine." -msgstr "" - -#: Preferences.java:85 -msgid "Arabic" -msgstr "" - -#: Preferences.java:86 -msgid "Aragonese" -msgstr "" - -#: tools/Archiver.java:48 -msgid "Archive Sketch" -msgstr "" - -#: tools/Archiver.java:109 -msgid "Archive sketch as:" -msgstr "" - -#: tools/Archiver.java:139 -msgid "Archive sketch canceled." -msgstr "" - -#: tools/Archiver.java:75 -msgid "" -"Archiving the sketch has been canceled because\n" -"the sketch couldn't save properly." -msgstr "" - -#: ../../../processing/app/I18n.java:83 -msgid "Arduino ARM (32-bits) Boards" -msgstr "" - -#: ../../../processing/app/I18n.java:82 -msgid "Arduino AVR Boards" -msgstr "" - -#: Editor.java:2137 -msgid "" -"Arduino can only open its own sketches\n" -"and other files ending in .ino or .pde" -msgstr "" - -#: Base.java:1682 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your settings." -msgstr "" - -#: Base.java:1889 -msgid "" -"Arduino cannot run because it could not\n" -"create a folder to store your sketchbook." -msgstr "" - -#: ../../../processing/app/EditorStatus.java:471 -msgid "Arduino: " -msgstr "" - -#: Sketch.java:588 -#, java-format -msgid "Are you sure you want to delete \"{0}\"?" -msgstr "" - -#: Sketch.java:587 -msgid "Are you sure you want to delete this sketch?" -msgstr "" - -#: ../../../processing/app/Base.java:356 -msgid "Argument required for --board" -msgstr "" - -#: ../../../processing/app/Base.java:363 -msgid "Argument required for --port" -msgstr "" - -#: ../../../processing/app/Base.java:377 -msgid "Argument required for --pref" -msgstr "" - -#: ../../../processing/app/Base.java:384 -msgid "Argument required for --preferences-file" -msgstr "" - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -msgid "Argument required for {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:137 -msgid "Armenian" -msgstr "" - -#: ../../../processing/app/Preferences.java:138 -msgid "Asturian" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:145 -msgid "Authorization required" -msgstr "" - -#: tools/AutoFormat.java:91 -msgid "Auto Format" -msgstr "" - -#: tools/AutoFormat.java:944 -msgid "Auto Format finished." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -msgid "Auto-detect proxy settings" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -msgid "Automatic proxy configuration URL:" -msgstr "" - -#: SerialMonitor.java:110 -msgid "Autoscroll" -msgstr "" - -#: Editor.java:2619 -#, java-format -msgid "Bad error line: {0}" -msgstr "" - -#: Editor.java:2136 -msgid "Bad file selected" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Basque" -msgstr "" - -#: ../../../processing/app/Preferences.java:139 -msgid "Belarusian" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -msgid "Board" -msgstr "" - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -msgid "" -"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:" -" {3}" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:472 -msgid "Board: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Boards Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1320 -msgid "Boards Manager..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -msgid "Boards included in this package:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -msgid "Bootloader file specified but missing: {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:140 -msgid "Bosnian" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Both NL & CR" -msgstr "" - -#: Preferences.java:81 -msgid "Browse" -msgstr "" - -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "" - -#: ../../../processing/app/Sketch.java:1530 -msgid "Build options changed, rebuilding all" -msgstr "" - -#: ../../../processing/app/Preferences.java:80 -msgid "Bulgarian" -msgstr "" - -#: ../../../processing/app/Preferences.java:141 -msgid "Burmese (Myanmar)" -msgstr "" - -#: Editor.java:708 -msgid "Burn Bootloader" -msgstr "" - -#: Editor.java:2504 -msgid "Burning bootloader to I/O Board (this may take a minute)..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -msgid "CRC doesn't match. File is corrupted." -msgstr "" - -#: ../../../processing/app/Base.java:379 -#, java-format -msgid "Can only pass one of: {0}" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "Can't find the sketch in the specified path" -msgstr "" - -#: ../../../processing/app/Preferences.java:92 -msgid "Canadian French" -msgstr "" - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -msgid "Cancel" -msgstr "" - -#: Sketch.java:455 -msgid "Cannot Rename" -msgstr "" - -#: ../../../processing/app/Base.java:465 -msgid "Cannot specify any sketch files" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Carriage return" -msgstr "" - -#: Preferences.java:87 -msgid "Catalan" -msgstr "" - -#: Preferences.java:419 -msgid "Check for updates on startup" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (China)" -msgstr "" - -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Chinese (Taiwan)" -msgstr "" - -#: ../../../processing/app/Preferences.java:143 -msgid "Chinese (Taiwan) (Big5)" -msgstr "" - -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -msgid "Click for a list of unofficial boards support URLs" -msgstr "" - -#: Editor.java:521 Editor.java:2024 -msgid "Close" -msgstr "" - -#: Editor.java:1208 Editor.java:2749 -msgid "Comment/Uncomment" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -msgid "Compiler warnings: " -msgstr "" - -#: Sketch.java:1608 Editor.java:1890 -msgid "Compiling sketch..." -msgstr "" - -#: Editor.java:1157 Editor.java:2707 -msgid "Copy" -msgstr "" - -#: Editor.java:1177 Editor.java:2723 -msgid "Copy as HTML" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:455 -msgid "Copy error messages" -msgstr "" - -#: Editor.java:1165 Editor.java:2715 -msgid "Copy for Forum" -msgstr "" - -#: Sketch.java:1089 -#, java-format -msgid "Could not add ''{0}'' to the sketch." -msgstr "" - -#: Editor.java:2188 -msgid "Could not copy to a proper location." -msgstr "" - -#: Editor.java:2179 -msgid "Could not create the sketch folder." -msgstr "" - -#: Editor.java:2206 -msgid "Could not create the sketch." -msgstr "" - -#: Sketch.java:617 -#, java-format -msgid "Could not delete \"{0}\"." -msgstr "" - -#: Sketch.java:1066 -#, java-format -msgid "Could not delete the existing ''{0}'' file." -msgstr "" - -#: Base.java:2533 Base.java:2556 -#, java-format -msgid "Could not delete {0}" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -msgid "Could not find boards.txt in {0}. Is it pre-1.5?" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -msgid "Could not find tool {0}" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -msgid "Could not find tool {0} from package {1}" -msgstr "" - -#: Base.java:1934 -#, java-format -msgid "" -"Could not open the URL\n" -"{0}" -msgstr "" - -#: Base.java:1958 -#, java-format -msgid "" -"Could not open the folder\n" -"{0}" -msgstr "" - -#: Sketch.java:1769 -msgid "" -"Could not properly re-save the sketch. You may be in trouble at this point,\n" -"and it might be time to copy and paste your code to another text editor." -msgstr "" - -#: Sketch.java:1768 -msgid "Could not re-save sketch" -msgstr "" - -#: Theme.java:52 -msgid "" -"Could not read color theme settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: Preferences.java:219 -msgid "" -"Could not read default settings.\n" -"You'll need to reinstall Arduino." -msgstr "" - -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - -#: Base.java:2482 -#, java-format -msgid "Could not remove old version of {0}" -msgstr "" - -#: Sketch.java:483 Sketch.java:528 -#, java-format -msgid "Could not rename \"{0}\" to \"{1}\"" -msgstr "" - -#: Sketch.java:475 -msgid "Could not rename the sketch. (0)" -msgstr "" - -#: Sketch.java:496 -msgid "Could not rename the sketch. (1)" -msgstr "" - -#: Sketch.java:503 -msgid "Could not rename the sketch. (2)" -msgstr "" - -#: Base.java:2492 -#, java-format -msgid "Could not replace {0}" -msgstr "" - -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - -#: tools/Archiver.java:74 -msgid "Couldn't archive sketch" -msgstr "" - -#: Sketch.java:1647 -msgid "Couldn't determine program size: {0}" -msgstr "" - -#: Sketch.java:616 -msgid "Couldn't do it" -msgstr "" - -#: debug/BasicUploader.java:209 -msgid "" -"Couldn't find a Board on the selected port. Check that you have the correct " -"port selected. If it is correct, try pressing the board's reset button " -"after initiating the upload." -msgstr "" - -#: ../../../processing/app/Preferences.java:82 -msgid "Croatian" -msgstr "" - -#: Editor.java:1149 Editor.java:2699 -msgid "Cut" -msgstr "" - -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:119 -msgid "Czech (Czech Republic)" -msgstr "" - -#: Preferences.java:90 -msgid "Danish" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:120 -msgid "Danish (Denmark)" -msgstr "" - -#: Editor.java:1224 Editor.java:2765 -msgid "Decrease Indent" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -msgid "Default" -msgstr "" - -#: EditorHeader.java:314 Sketch.java:591 -msgid "Delete" -msgstr "" - -#: debug/Uploader.java:199 -msgid "" -"Device is not responding, check the right serial port is selected or RESET " -"the board right before exporting" -msgstr "" - -#: tools/FixEncoding.java:57 -msgid "Discard all changes and reload sketch?" -msgstr "" - -#: ../../../processing/app/Preferences.java:438 -msgid "Display line numbers" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -msgid "" -"Do you want to remove {0}?\n" -"If you do so you won't be able to use {0} any more." -msgstr "" - -#: Editor.java:2064 -msgid "Don't Save" -msgstr "" - -#: Editor.java:2275 Editor.java:2311 -msgid "Done Saving." -msgstr "" - -#: Editor.java:2510 -msgid "Done burning bootloader." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -msgid "Done compiling" -msgstr "" - -#: Editor.java:1911 Editor.java:1928 -msgid "Done compiling." -msgstr "" - -#: Editor.java:2564 -msgid "Done printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:514 -msgid "Done uploading" -msgstr "" - -#: Editor.java:2395 Editor.java:2431 -msgid "Done uploading." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -msgid "Downloaded {0}kb of {1}kb." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -msgid "Downloading boards definitions." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -msgid "Downloading libraries index..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -msgid "Downloading library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -msgid "Downloading platforms index..." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -msgid "Downloading tools ({0}/{1})." -msgstr "" - -#: Preferences.java:91 -msgid "Dutch" -msgstr "" - -#: ../../../processing/app/Preferences.java:144 -msgid "Dutch (Netherlands)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1309 -msgid "Edison Help" -msgstr "" - -#: Editor.java:1130 -msgid "Edit" -msgstr "" - -#: Preferences.java:370 -msgid "Editor font size: " -msgstr "" - -#: Preferences.java:353 -msgid "Editor language: " -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -msgid "Enable Code Folding" -msgstr "" - -#: Preferences.java:92 -msgid "English" -msgstr "" - -#: ../../../processing/app/Preferences.java:145 -msgid "English (United Kingdom)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -msgid "Enter a comma separated list of urls" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -msgid "Enter additional URLs, one for each row" -msgstr "" - -#: Editor.java:1062 -msgid "Environment" -msgstr "" - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -msgid "Error" -msgstr "" - -#: Sketch.java:1065 Sketch.java:1088 -msgid "Error adding file" -msgstr "" - -#: debug/Compiler.java:369 -msgid "Error compiling." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -msgid "Error downloading {0}" -msgstr "" - -#: Base.java:1674 -msgid "Error getting the Arduino data folder." -msgstr "" - -#: Serial.java:593 -#, java-format -msgid "Error inside Serial.{0}()" -msgstr "" - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -msgid "Error loading {0}" -msgstr "" - -#: Serial.java:181 -#, java-format -msgid "Error opening serial port ''{0}''." -msgstr "" - -#: ../../../processing/app/Serial.java:119 -#, java-format -msgid "" -"Error opening serial port ''{0}''. Try consulting the documentation at " -"http://playground.arduino.cc/Linux/All#Permission" -msgstr "" - -#: Preferences.java:277 -msgid "Error reading preferences" -msgstr "" - -#: Preferences.java:279 -#, java-format -msgid "" -"Error reading the preferences file. Please delete (or move)\n" -"{0} and restart Arduino." -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -msgid "Error running post install script" -msgstr "" - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -msgid "Error starting discovery method: " -msgstr "" - -#: Serial.java:125 -#, java-format -msgid "Error touching serial port ''{0}''." -msgstr "" - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -msgid "Error while burning bootloader." -msgstr "" - -#: ../../../processing/app/Editor.java:2555 -msgid "Error while burning bootloader: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1940 -msgid "Error while compiling: missing '{0}' configuration parameter" -msgstr "" - -#: SketchCode.java:83 -#, java-format -msgid "Error while loading code {0}" -msgstr "" - -#: Editor.java:2567 -msgid "Error while printing." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:528 -msgid "Error while uploading" -msgstr "" - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -msgid "Error while uploading: missing '{0}' configuration parameter" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -msgid "Error while verifying" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:521 -msgid "Error while verifying/uploading" -msgstr "" - -#: Preferences.java:93 -msgid "Estonian" -msgstr "" - -#: ../../../processing/app/Preferences.java:146 -msgid "Estonian (Estonia)" -msgstr "" - -#: Editor.java:516 -msgid "Examples" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:750 -msgid "Export compiled Binary" -msgstr "" - -#: ../../../processing/app/Base.java:416 -#, java-format -msgid "Failed to open sketch: \"{0}\"" -msgstr "" - -#: Editor.java:491 -msgid "File" -msgstr "" - -#: Preferences.java:94 -msgid "Filipino" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -msgid "Filter your search..." -msgstr "" - -#: FindReplace.java:124 FindReplace.java:127 -msgid "Find" -msgstr "" - -#: Editor.java:1249 -msgid "Find Next" -msgstr "" - -#: Editor.java:1259 -msgid "Find Previous" -msgstr "" - -#: Editor.java:1086 Editor.java:2775 -msgid "Find in Reference" -msgstr "" - -#: Editor.java:1234 -msgid "Find..." -msgstr "" - -#: FindReplace.java:80 -msgid "Find:" -msgstr "" - -#: ../../../processing/app/Preferences.java:147 -msgid "Finnish" -msgstr "" - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -msgid "Fix Encoding & Reload" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:318 -msgid "" -"For information on installing libraries, see: " -"http://www.arduino.cc/en/Guide/Libraries\n" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -msgid "Forcing reset using 1200bps open/close on port {0}" -msgstr "" - -#: Preferences.java:95 -msgid "French" -msgstr "" - -#: Editor.java:1097 -msgid "Frequently Asked Questions" -msgstr "" - -#: Preferences.java:96 -msgid "Galician" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:176 -msgid "Galician (Spain)" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1288 -msgid "Galileo Help" -msgstr "" - -#: ../../../processing/app/Preferences.java:94 -msgid "Georgian" -msgstr "" - -#: Preferences.java:97 -msgid "German" -msgstr "" - -#: Editor.java:1054 -msgid "Getting Started" -msgstr "" - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -msgid "" -"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes " -"for local variables. Maximum is {1} bytes." -msgstr "" - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -msgid "Global variables use {0} bytes of dynamic memory." -msgstr "" - -#: Preferences.java:98 -msgid "Greek" -msgstr "" - -#: ../../../processing/app/Preferences.java:95 -msgid "Hebrew" -msgstr "" - -#: Editor.java:1015 -msgid "Help" -msgstr "" - -#: Preferences.java:99 -msgid "Hindi" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -msgid "Host name:" -msgstr "" - -#: Sketch.java:295 -msgid "" -"How about saving the sketch first \n" -"before trying to rename it?" -msgstr "" - -#: Sketch.java:882 -msgid "How very Borges of you" -msgstr "" - -#: Preferences.java:100 -msgid "Hungarian" -msgstr "" - -#: FindReplace.java:96 -msgid "Ignore Case" -msgstr "" - -#: Base.java:1058 -msgid "Ignoring bad library name" -msgstr "" - -#: Base.java:1436 -msgid "Ignoring sketch with bad name" -msgstr "" - -#: ../../../processing/app/Sketch.java:736 -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 "" - -#: ../../../../../app/src/processing/app/Editor.java:778 -msgid "Include Library" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -msgid "Incorrect IDE installation folder" -msgstr "" - -#: Editor.java:1216 Editor.java:2757 -msgid "Increase Indent" -msgstr "" - -#: Preferences.java:101 -msgid "Indonesian" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:295 -msgid "Initializing packages..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -msgid "Install" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -msgid "Installation completed!" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -msgid "Installed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -msgid "Installing boards..." -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -msgid "Installing library: {0}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -msgid "Installing tools ({0}/{1})..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -msgid "Installing..." -msgstr "" - -#: ../../../processing/app/Base.java:1204 -#, java-format -msgid "Invalid library found in {0}: {1}" -msgstr "" - -#: Preferences.java:102 -msgid "Italian" -msgstr "" - -#: Preferences.java:103 -msgid "Japanese" -msgstr "" - -#: Preferences.java:104 -msgid "Korean" -msgstr "" - -#: Preferences.java:105 -msgid "Latvian" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -msgid "Library Manager" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2349 -msgid "Library added to your libraries. Check \"Include library\" menu" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -msgid "Library is already installed: {0} version {1}" -msgstr "" - -#: Preferences.java:106 -msgid "Lithuaninan" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:132 -msgid "Loading configuration..." -msgstr "" - -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1168 -msgid "Manage Libraries..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -msgid "Manual proxy configuration" -msgstr "" - -#: Preferences.java:107 -msgid "Marathi" -msgstr "" - -#: Base.java:2112 -msgid "Message" -msgstr "" - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Mode not supported" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -msgid "More" -msgstr "" - -#: Preferences.java:449 -msgid "More preferences can be edited directly in the file" -msgstr "" - -#: Editor.java:2156 -msgid "Moving" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "Multiple files not supported" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -msgid "Multiple libraries were found for \"{0}\"" -msgstr "" - -#: ../../../processing/app/Base.java:395 -msgid "Must specify exactly one sketch file" -msgstr "" - -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - -#: Sketch.java:282 -msgid "Name for new file:" -msgstr "" - -#: ../../../processing/app/Preferences.java:149 -msgid "Nepali" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -msgid "Network" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Network ports" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -msgid "Network upload using programmer not supported" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:493 -msgid "New" -msgstr "" - -#: EditorHeader.java:292 -msgid "New Tab" -msgstr "" - -#: SerialMonitor.java:112 -msgid "Newline" -msgstr "" - -#: EditorHeader.java:340 -msgid "Next Tab" -msgstr "" - -#: Preferences.java:78 UpdateCheck.java:108 -msgid "No" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:158 -msgid "No authorization data found" -msgstr "" - -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "" - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -msgid "No changes necessary for Auto Format." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No command line parameters found" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:200 -msgid "No compiled sketch found" -msgstr "" - -#: Editor.java:373 -msgid "No files were added to the sketch." -msgstr "" - -#: Platform.java:167 -msgid "No launcher available" -msgstr "" - -#: SerialMonitor.java:112 -msgid "No line ending" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:665 -msgid "No parameters" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -msgid "No proxy" -msgstr "" - -#: Base.java:541 -msgid "No really, time for some fresh air for you." -msgstr "" - -#: Editor.java:1872 -#, java-format -msgid "No reference available for \"{0}\"" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -msgid "No sketch" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "No sketchbook" -msgstr "" - -#: ../../../processing/app/Sketch.java:204 -msgid "No valid code files found" -msgstr "" - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -msgid "No valid hardware definitions found in folder {0}." -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -msgid "None" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - -#: ../../../processing/app/Preferences.java:108 -msgid "Norwegian Bokmål" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - -#: ../../../processing/app/Sketch.java:1656 -msgid "" -"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " -"for tips on reducing your footprint." -msgstr "" - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -msgid "OK" -msgstr "" - -#: Sketch.java:992 Editor.java:376 -msgid "One file added to the sketch." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:455 -msgid "Only --verify, --upload or --get-pref are supported" -msgstr "" - -#: EditorToolbar.java:41 -msgid "Open" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:625 -msgid "Open Recent" -msgstr "" - -#: Editor.java:2688 -msgid "Open URL" -msgstr "" - -#: Base.java:636 -msgid "Open an Arduino sketch..." -msgstr "" - -#: Base.java:903 Editor.java:501 -msgid "Open..." -msgstr "" - -#: Editor.java:563 -msgid "Page Setup" -msgstr "" - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -msgid "Password:" -msgstr "" - -#: Editor.java:1189 Editor.java:2731 -msgid "Paste" -msgstr "" - -#: Preferences.java:109 -msgid "Persian" -msgstr "" - -#: ../../../processing/app/Preferences.java:161 -msgid "Persian (Iran)" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -msgid "Please confirm boards deletion" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "Please confirm library deletion" -msgstr "" - -#: debug/Compiler.java:408 -msgid "Please import the SPI library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:529 -msgid "Please import the Wire library from the Sketch > Import Library menu." -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -msgid "Please select a programmer from Tools->Programmer menu" -msgstr "" - -#: Preferences.java:110 -msgid "Polish" -msgstr "" - -#: ../../../processing/app/Editor.java:718 -msgid "Port" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -msgid "Port number:" -msgstr "" - -#: ../../../processing/app/Preferences.java:151 -msgid "Portugese" -msgstr "" - -#: ../../../processing/app/Preferences.java:127 -msgid "Portuguese (Brazil)" -msgstr "" - -#: ../../../processing/app/Preferences.java:128 -msgid "Portuguese (Portugal)" -msgstr "" - -#: Preferences.java:295 Editor.java:583 -msgid "Preferences" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:297 -msgid "Preparing boards..." -msgstr "" - -#: FindReplace.java:123 FindReplace.java:128 -msgid "Previous" -msgstr "" - -#: EditorHeader.java:326 -msgid "Previous Tab" -msgstr "" - -#: Editor.java:571 -msgid "Print" -msgstr "" - -#: Editor.java:2571 -msgid "Printing canceled." -msgstr "" - -#: Editor.java:2547 -msgid "Printing..." -msgstr "" - -#: Base.java:1957 -msgid "Problem Opening Folder" -msgstr "" - -#: Base.java:1933 -msgid "Problem Opening URL" -msgstr "" - -#: Base.java:227 -msgid "Problem Setting the Platform" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -msgid "Problem accessing board folder /www/sd" -msgstr "" - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -msgid "Problem accessing files in folder " -msgstr "" - -#: Base.java:1673 -msgid "Problem getting data folder" -msgstr "" - -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "" - -#: debug/Uploader.java:209 -msgid "" -"Problem uploading to board. See " -"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions." -msgstr "" - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -msgid "Problem with rename" -msgstr "" - -#: ../../../processing/app/I18n.java:86 -msgid "Processor" -msgstr "" - -#: Editor.java:704 -msgid "Programmer" -msgstr "" - -#: Base.java:783 Editor.java:593 -msgid "Quit" -msgstr "" - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -msgid "Redo" -msgstr "" - -#: Editor.java:1078 -msgid "Reference" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -msgid "Remove" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -msgid "Removing library: {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -msgid "Removing..." -msgstr "" - -#: EditorHeader.java:300 -msgid "Rename" -msgstr "" - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -msgid "Replace" -msgstr "" - -#: FindReplace.java:122 FindReplace.java:129 -msgid "Replace & Find" -msgstr "" - -#: FindReplace.java:120 FindReplace.java:131 -msgid "Replace All" -msgstr "" - -#: Sketch.java:1043 -#, java-format -msgid "Replace the existing version of {0}?" -msgstr "" - -#: FindReplace.java:81 -msgid "Replace with:" -msgstr "" - -#: Preferences.java:113 -msgid "Romanian" -msgstr "" - -#: Preferences.java:114 -msgid "Russian" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -msgid "Save" -msgstr "" - -#: Editor.java:537 -msgid "Save As..." -msgstr "" - -#: Editor.java:2317 -msgid "Save Canceled." -msgstr "" - -#: Editor.java:2020 -#, java-format -msgid "Save changes to \"{0}\"? " -msgstr "" - -#: Sketch.java:825 -msgid "Save sketch folder as..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:425 -msgid "Save when verifying or uploading" -msgstr "" - -#: Editor.java:2270 Editor.java:2308 -msgid "Saving..." -msgstr "" - -#: ../../../processing/app/FindReplace.java:131 -msgid "Search all Sketch Tabs" -msgstr "" - -#: Base.java:1909 -msgid "Select (or create new) folder for sketches..." -msgstr "" - -#: Editor.java:1198 Editor.java:2739 -msgid "Select All" -msgstr "" - -#: Base.java:2636 -msgid "Select a zip file or a folder containing the library you'd like to add" -msgstr "" - -#: Sketch.java:975 -msgid "Select an image or other data file to copy to your sketch" -msgstr "" - -#: Preferences.java:330 -msgid "Select new sketchbook location" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -msgid "Select version" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:146 -msgid "Selected board depends on '{0}' core (not installed)." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:374 -msgid "Selected board is not available" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:423 -msgid "Selected library is not available" -msgstr "" - -#: SerialMonitor.java:93 -msgid "Send" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -msgid "Serial Monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:804 -msgid "Serial Plotter" -msgstr "" - -#: Serial.java:194 -#, java-format -msgid "" -"Serial port ''{0}'' not found. Did you select the right one from the Tools >" -" Serial Port menu?" -msgstr "" - -#: Editor.java:2343 -#, java-format -msgid "" -"Serial port {0} not found.\n" -"Retry the upload with another serial port?" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:65 -msgid "Serial ports" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -msgid "Settings" -msgstr "" - -#: Base.java:1681 -msgid "Settings issues" -msgstr "" - -#: Editor.java:641 -msgid "Show Sketch Folder" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:468 -msgid "Show verbose output during compilation" -msgstr "" - -#: Preferences.java:387 -msgid "Show verbose output during: " -msgstr "" - -#: Editor.java:607 -msgid "Sketch" -msgstr "" - -#: Sketch.java:1754 -msgid "Sketch Disappeared" -msgstr "" - -#: Base.java:1411 -msgid "Sketch Does Not Exist" -msgstr "" - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -msgid "Sketch is Read-Only" -msgstr "" - -#: Sketch.java:294 -msgid "Sketch is Untitled" -msgstr "" - -#: Sketch.java:720 -msgid "Sketch is read-only" -msgstr "" - -#: Sketch.java:1653 -msgid "" -"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for " -"tips on reducing it." -msgstr "" - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -msgid "" -"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} " -"bytes." -msgstr "" - -#: Editor.java:510 -msgid "Sketchbook" -msgstr "" - -#: Base.java:258 -msgid "Sketchbook folder disappeared" -msgstr "" - -#: Preferences.java:315 -msgid "Sketchbook location:" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:428 -msgid "Sketchbook path not defined" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:185 -msgid "Slovak" -msgstr "" - -#: ../../../processing/app/Preferences.java:152 -msgid "Slovenian" -msgstr "" - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save the sketch in another location,\n" -"and try again." -msgstr "" - -#: Sketch.java:721 -msgid "" -"Some files are marked \"read-only\", so you'll\n" -"need to re-save this sketch to another location." -msgstr "" - -#: Sketch.java:457 -#, java-format -msgid "Sorry, a sketch (or folder) named \"{0}\" already exists." -msgstr "" - -#: Preferences.java:115 -msgid "Spanish" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2333 -msgid "Specified folder/zip file does not contain a valid library" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:466 -msgid "Starting..." -msgstr "" - -#: Base.java:540 -msgid "Sunshine" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - -#: ../../../processing/app/Preferences.java:153 -msgid "Swedish" -msgstr "" - -#: Preferences.java:84 -msgid "System Default" -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:188 -msgid "Talossan" -msgstr "" - -#: Preferences.java:116 -msgid "Tamil" -msgstr "" - -#: debug/Compiler.java:414 -msgid "The 'BYTE' keyword is no longer supported." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:484 -msgid "The --upload option supports only one file at a time" -msgstr "" - -#: debug/Compiler.java:426 -msgid "The Client class has been renamed EthernetClient." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -msgid "" -"The IDE includes an updated {0} package, but you're using an older one.\n" -"Do you want to upgrade {0}?" -msgstr "" - -#: debug/Compiler.java:420 -msgid "The Server class has been renamed EthernetServer." -msgstr "" - -#: debug/Compiler.java:432 -msgid "The Udp class has been renamed EthernetUdp." -msgstr "" - -#: Editor.java:2147 -#, 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 "" - -#: Base.java:1054 Base.java:2674 -#, 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 "" - -#: Sketch.java:374 -msgid "" -"The main file can't use an extension.\n" -"(It may be time for your to graduate to a\n" -"\"real\" programming environment)" -msgstr "" - -#: Sketch.java:356 -msgid "The name cannot start with a period." -msgstr "" - -#: Base.java:1412 -msgid "" -"The selected sketch no longer exists.\n" -"You may need to restart Arduino to update\n" -"the sketchbook menu." -msgstr "" - -#: Base.java:1430 -#, 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.java:1755 -msgid "" -"The sketch folder has disappeared.\n" -" Will attempt to re-save in the same location,\n" -"but anything besides the code will be lost." -msgstr "" - -#: ../../../processing/app/Sketch.java:2028 -msgid "" -"The sketch name had to be modified. Sketch names can only consist\n" -"of ASCII characters and numbers (but cannot start with a number).\n" -"They should also be less than 64 characters long." -msgstr "" - -#: Base.java:259 -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 "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -msgid "" -"The specified sketchbook folder contains your copy of the IDE.\n" -"Please choose a different folder for your sketchbook." -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - -#: Sketch.java:1075 -msgid "" -"This file has already been copied to the\n" -"location from which where you're trying to add it.\n" -"I ain't not doin nuthin'." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -msgid "" -"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n" -"Are you sure you want to delete it?" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:467 -msgid "This report would have more information with" -msgstr "" - -#: Base.java:535 -msgid "Time for a Break" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -msgid "Tool {0} is not available for your operating system." -msgstr "" - -#: Editor.java:663 -msgid "Tools" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -msgid "Topic" -msgstr "" - -#: Editor.java:1070 -msgid "Troubleshooting" -msgstr "" - -#: ../../../processing/app/Preferences.java:117 -msgid "Turkish" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -msgid "Type" -msgstr "" - -#: ../../../processing/app/Editor.java:2507 -msgid "Type board password to access its console" -msgstr "" - -#: ../../../processing/app/Sketch.java:1673 -msgid "Type board password to upload a new sketch" -msgstr "" - -#: ../../../processing/app/Preferences.java:118 -msgid "Ukrainian" -msgstr "" - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -msgid "Unable to connect: is the sketch using the bridge?" -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:130 -msgid "Unable to connect: retrying" -msgstr "" - -#: ../../../processing/app/Editor.java:2526 -msgid "Unable to connect: wrong password?" -msgstr "" - -#: ../../../processing/app/Editor.java:2512 -msgid "Unable to open serial monitor" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2709 -msgid "Unable to open serial plotter" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -msgid "Unable to reach Arduino.cc due to possible network issues." -msgstr "" - -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "" - -#: Editor.java:1133 Editor.java:1355 -msgid "Undo" -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 "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -msgid "Updatable" -msgstr "" - -#: UpdateCheck.java:111 -msgid "Update" -msgstr "" - -#: Preferences.java:428 -msgid "Update sketch files to new extension on save (.pde -> .ino)" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -msgid "Updating list of installed libraries" -msgstr "" - -#: EditorToolbar.java:41 Editor.java:545 -msgid "Upload" -msgstr "" - -#: EditorToolbar.java:46 Editor.java:553 -msgid "Upload Using Programmer" -msgstr "" - -#: Editor.java:2403 Editor.java:2439 -msgid "Upload canceled." -msgstr "" - -#: ../../../processing/app/Sketch.java:1678 -msgid "Upload cancelled" -msgstr "" - -#: Editor.java:2378 -msgid "Uploading to I/O Board..." -msgstr "" - -#: Sketch.java:1622 -msgid "Uploading..." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - -#: Editor.java:1269 -msgid "Use Selection For Find" -msgstr "" - -#: Preferences.java:409 -msgid "Use external editor" -msgstr "" - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -msgid "Username:" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -msgid "Using library {0} at version {1} in folder: {2} {3}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -msgid "Using library {0} in folder: {1} {2}" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -msgid "Using previously compiled file: {0}" -msgstr "" - -#: EditorToolbar.java:41 EditorToolbar.java:46 -msgid "Verify" -msgstr "" - -#: Preferences.java:400 -msgid "Verify code after upload" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:725 -msgid "Verify/Compile" -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:451 -msgid "Verifying and uploading..." -msgstr "" - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -msgid "Verifying archive integrity..." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:454 -msgid "Verifying..." -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -msgid "Version unknown" -msgstr "" - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -msgid "Version {0}" -msgstr "" - -#: ../../../processing/app/Preferences.java:154 -msgid "Vietnamese" -msgstr "" - -#: Editor.java:1105 -msgid "Visit Arduino.cc" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -msgid "" -"WARNING: library {0} claims to run on {1} architecture(s) and may be " -"incompatible with your current board which runs on {2} architecture(s)." -msgstr "" - -#: Base.java:2128 -msgid "Warning" -msgstr "" - -#: ../../../processing/app/debug/Compiler.java:1295 -msgid "" -"Warning: This core does not support exporting sketches. Please consider " -"upgrading it or contacting its author" -msgstr "" - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -msgid "Warning: file {0} links to an absolute path {1}" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -msgid "Warning: forced trusting untrusted contributions" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -msgid "Warning: forced untrusted script execution ({0})" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -msgid "Warning: non trusted contribution, skipping script execution ({0})" -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically" -" converted to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -msgid "" -"Warning: platform.txt from core '{0}' misses property {1}, automatically set" -" to {2}. Consider upgrading this core." -msgstr "" - -#: ../../../../../app/src/processing/app/Preferences.java:190 -msgid "Western Frisian" -msgstr "" - -#: debug/Compiler.java:444 -msgid "Wire.receive() has been renamed Wire.read()." -msgstr "" - -#: debug/Compiler.java:438 -msgid "Wire.send() has been renamed Wire.write()." -msgstr "" - -#: FindReplace.java:105 -msgid "Wrap Around" -msgstr "" - -#: debug/Uploader.java:213 -msgid "" -"Wrong microcontroller found. Did you select the right board from the Tools " -"> Board menu?" -msgstr "" - -#: Preferences.java:77 UpdateCheck.java:108 -msgid "Yes" -msgstr "" - -#: Sketch.java:1074 -msgid "You can't fool me" -msgstr "" - -#: Sketch.java:411 -msgid "You can't have a .cpp file with the same name as the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:2312 -msgid "You can't import a folder that contains your sketchbook" -msgstr "" - -#: Sketch.java:421 -msgid "" -"You can't rename the sketch to \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:861 -msgid "" -"You can't save the sketch as \"{0}\"\n" -"because the sketch already has a .cpp file with that name." -msgstr "" - -#: Sketch.java:883 -msgid "" -"You cannot save the sketch into a folder\n" -"inside itself. This would go on forever." -msgstr "" - -#: Base.java:1888 -msgid "You forgot your sketchbook" -msgstr "" - -#: ../../../processing/app/AbstractMonitor.java:92 -msgid "" -"You've pressed {0} but nothing was sent. Should you select a line ending?" -msgstr "" - -#: Base.java:536 -msgid "" -"You've reached the limit for auto naming of new sketches\n" -"for the day. How about going for a walk instead?" -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:768 -msgid "" -"Your copy of the IDE is installed in a subfolder of your settings folder.\n" -"Please move the IDE to another folder." -msgstr "" - -#: ../../../processing/app/BaseNoGui.java:771 -msgid "" -"Your copy of the IDE is installed in a subfolder of your sketchbook.\n" -"Please move the IDE to another folder." -msgstr "" - -#: Base.java:2638 -msgid "ZIP files or folders" -msgstr "" - -#: Base.java:2661 -msgid "Zip doesn't contain a library" -msgstr "" - -#: Sketch.java:364 -#, java-format -msgid "\".{0}\" is not a valid extension." -msgstr "" - -#: SketchCode.java:258 -#, java-format -msgid "" -"\"{0}\" contains unrecognized characters.If this code was created with an " -"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload " -"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the" -" bad characters to get rid of this warning." -msgstr "" - -#: debug/Compiler.java:409 -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:415 -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:427 -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:421 -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:433 -msgid "" -"\n" -"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:445 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: debug/Compiler.java:439 -msgid "" -"\n" -"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n" -"\n" -msgstr "" - -#: SerialMonitor.java:130 SerialMonitor.java:133 -msgid "baud" -msgstr "" - -#: Preferences.java:389 -msgid "compilation " -msgstr "" - -#: ../../../processing/app/NetworkMonitor.java:111 -msgid "connected!" -msgstr "" - -#: Sketch.java:540 -msgid "createNewFile() returned false" -msgstr "" - -#: ../../../processing/app/EditorStatus.java:469 -msgid "enabled in File > Preferences." -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:1352 -msgid "http://www.arduino.cc/" -msgstr "" - -#: UpdateCheck.java:118 -msgid "http://www.arduino.cc/en/Main/Software" -msgstr "" - -#: UpdateCheck.java:53 -msgid "http://www.arduino.cc/latest.txt" -msgstr "" - -#: Preferences.java:625 -#, java-format -msgid "ignoring invalid font size {0}" -msgstr "" - -#: Editor.java:936 Editor.java:943 -msgid "name is null" -msgstr "" - -#: Editor.java:932 -msgid "serialMenu is null" -msgstr "" - -#: debug/Uploader.java:195 -#, java-format -msgid "" -"the selected serial port {0} does not exist or your board is not connected" -msgstr "" - -#: ../../../processing/app/Base.java:389 -#, java-format -msgid "unknown option: {0}" -msgstr "" - -#: Preferences.java:391 -msgid "upload" -msgstr "" - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -msgid "version {0}" -msgstr "" - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -msgid "{0} - {1} | Arduino {2}" -msgstr "" - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -msgid "{0} file signature verification failed" -msgstr "" - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -msgid "{0} file signature verification failed. File ignored." -msgstr "" - -#: Editor.java:380 -#, java-format -msgid "{0} files added to the sketch." -msgstr "" - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -msgid "{0} libraries" -msgstr "" - -#: debug/Compiler.java:365 -#, java-format -msgid "{0} returned {1}" -msgstr "" - -#: Editor.java:2213 -#, java-format -msgid "{0} | Arduino {1}" -msgstr "" - -#: ../../../processing/app/Base.java:519 -#, java-format -msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:476 -#, java-format -msgid "" -"{0}: Invalid board name, it should be of the form \"package:arch:board\" or " -"\"package:arch:board:options\"" -msgstr "" - -#: ../../../processing/app/Base.java:509 -#, java-format -msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\"" -msgstr "" - -#: ../../../processing/app/Base.java:507 -#, java-format -msgid "{0}: Invalid option for board \"{1}\"" -msgstr "" - -#: ../../../processing/app/Base.java:502 -#, java-format -msgid "{0}: Invalid option, should be of the form \"name=value\"" -msgstr "" - -#: ../../../processing/app/Base.java:486 -#, java-format -msgid "{0}: Unknown architecture" -msgstr "" - -#: ../../../processing/app/Base.java:491 -#, java-format -msgid "{0}: Unknown board" -msgstr "" - -#: ../../../processing/app/Base.java:481 -#, java-format -msgid "{0}: Unknown package" -msgstr "" diff --git a/arduino-core/src/processing/app/i18n/Resources_ur_PK.properties b/arduino-core/src/processing/app/i18n/Resources_ur_PK.properties deleted file mode 100644 index 469a67e5676..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_ur_PK.properties +++ /dev/null @@ -1,1791 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Urdu (Pakistan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ur_PK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ur_PK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -!Open...= - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -!Quit= - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.po b/arduino-core/src/processing/app/i18n/Resources_vi.po index 7ddcc58a5ab..e9bbb163fa0 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.po +++ b/arduino-core/src/processing/app/i18n/Resources_vi.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Anh Phan , 2013 # Anh Phan , 2013 # Anh Phan , 2013 @@ -14,7 +15,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Vietnamese (http://www.transifex.com/mbanzi/arduino-ide-15/language/vi/)\n" "MIME-Version: 1.0\n" @@ -45,10 +46,20 @@ msgstr "'Bàn phím' chỉ được hỗ trợ trong phiên bản Arduino Leonar msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Chuột' chỉ được hỗ trợ trong phiên bản Arduino Leonardo" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(chỉ được chỉnh sửa khi Arduino bị tắt)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -310,10 +321,6 @@ msgstr "Lỗi nghiêm trọng ở dòng: {0}" msgid "Bad file selected" msgstr "Tập tin được chọn bị lỗi" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "" @@ -322,15 +329,16 @@ msgstr "" msgid "Belarusian" msgstr "Belarusian" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "Bo mạch" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -371,14 +379,14 @@ msgstr "Cả NL & CR" msgid "Browse" msgstr "Duyệt tìm" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "Hãy tạo một thư mục bỗng dưng biến mất hoặc chấp nhận không thể tạo được" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "Bulgarian" @@ -442,10 +450,6 @@ msgstr "Kiểm tra xem có phiên bản mới của chương trình hay không v msgid "Chinese (China)" msgstr "Chinese (China)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "Chinese (Hong Kong)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "Chinese (Taiwan)" @@ -454,14 +458,6 @@ msgstr "Chinese (Taiwan)" msgid "Chinese (Taiwan) (Big5)" msgstr "Chinese (Taiwan) (Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "Chinese Simplified" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "Chinese Traditional" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -581,10 +577,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "Không thể tải thiết lập mặc định.\nBạn cần cài đặt lại Arduino." -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -612,10 +604,6 @@ msgstr "Không thể đổi tên sketch. (2)" msgid "Could not replace {0}" msgstr "Không thể thay thay thế {0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "Không thể lưu trữ sketch" @@ -643,18 +631,10 @@ msgstr "Croatian" msgid "Cut" msgstr "Cắt" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "Czech" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "Danish" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -926,6 +906,18 @@ msgstr "Estonian (Estonia)" msgid "Examples" msgstr "Ví dụ" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1154,6 +1146,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "Thư viện không hợp lệ được tìm thấy trong {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "Italian" @@ -1178,6 +1175,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1191,12 +1192,13 @@ msgstr "Lithuaninan" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1215,8 +1217,9 @@ msgstr "Marathi" msgid "Message" msgstr "Thông báo" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1248,10 +1251,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "Tên cho tập tin mới:" @@ -1296,10 +1295,6 @@ msgstr "Không đồng ý" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "Không bảng nào được chọn; hãy chọn một bảng từ Công cụ>Bo mạch ở menu." - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "Không cần thay đổi đối với Định Dạng Tự Động." @@ -1363,18 +1358,10 @@ msgstr "Định nghĩa về phần cứng trong thư mục {0} không hợp lệ msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "Norwegian Bokmål" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1434,6 +1421,11 @@ msgstr "Persian" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1531,11 +1523,6 @@ msgstr "Xảy ra lỗi khi truy cập các tập tin trong thư mục" msgid "Problem getting data folder" msgstr "Xảy ra lỗi khi tiếp nhận thư mục dữ liệu" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "Xảy ra vấn đề khi di chuyển {0} đến thư mục xây dựng" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1554,10 +1541,19 @@ msgstr "Vi xử lý" msgid "Programmer" msgstr "Người lập trình" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "Thoát" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "Làm lại thao tác" @@ -1609,6 +1605,16 @@ msgstr "Thay thế với:" msgid "Romanian" msgstr "Romanian" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "Russian" @@ -1714,6 +1720,11 @@ msgstr "Cổng có số hiệu {0} không được tìm thấy.\nThử lại vi msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1829,10 +1840,6 @@ msgstr "" msgid "Sunshine" msgstr "Bình minh" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "Swedish" @@ -1949,12 +1956,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2027,6 +2028,11 @@ msgstr "Không thể kết nối: đang thử lại" msgid "Unable to connect: wrong password?" msgstr "Không thể kết nối: sai mật khẩu?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "Không thể mở phần giám sát mã hiệu" @@ -2040,15 +2046,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Dạng lỗi chưa rõ: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "Hủy thao tác" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2097,10 +2108,6 @@ msgstr "Đang tải vào Bo Mạch I/O..." msgid "Uploading..." msgstr "Đang tải..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "Sử dụng vùng lựa chọn cho tìm kiếm" @@ -2175,6 +2182,16 @@ msgstr "Việt Nam" msgid "Visit Arduino.cc" msgstr "Truy cập Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2218,6 +2235,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2472,6 +2495,16 @@ msgstr "{0} tập tin được thêm vào sketch." msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_vi.properties b/arduino-core/src/processing/app/i18n/Resources_vi.properties index e31a0581153..95693fdc8f4 100644 --- a/arduino-core/src/processing/app/i18n/Resources_vi.properties +++ b/arduino-core/src/processing/app/i18n/Resources_vi.properties @@ -6,10 +6,11 @@ # Translators: # Translators: # Translators: +# Translators: # Anh Phan , 2013 # Anh Phan , 2013 # Anh Phan , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Vietnamese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/vi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: vi\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Vietnamese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/vi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: vi\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=(y\u00eau c\u1ea7u kh\u1edfi \u0111\u1ed9ng l\u1ea1i Arduino) @@ -28,9 +29,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Chu\u1ed9t' ch\u1ec9 \u0111\u01b0\u1ee3c h\u1ed7 tr\u1ee3 trong phi\u00ean b\u1ea3n Arduino Leonardo +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=(ch\u1ec9 \u0111\u01b0\u1ee3c ch\u1ec9nh s\u1eeda khi Arduino b\u1ecb t\u1eaft) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -214,22 +221,20 @@ Bad\ error\ line\:\ {0}=L\u1ed7i nghi\u00eam tr\u1ecdng \u1edf d\u00f2ng\: {0} #: Editor.java:2136 Bad\ file\ selected=T\u1eadp tin \u0111\u01b0\u1ee3c ch\u1ecdn b\u1ecb l\u1ed7i -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 !Basque= #: ../../../processing/app/Preferences.java:139 Belarusian=Belarusian -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=Bo m\u1ea1ch +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=Bo m\u1ea1ch {0}\:{1}\:{2} kh\u00f4ng x\u00e1c \u0111\u1ecbnh m\u1ed9t gi\u00e1 tr\u1ecb t\u00f9y bi\u1ebfn ''build.board''. T\u1ef1 \u0111\u1ed9ng ch\u1ec9nh theo\: {3} @@ -259,12 +264,12 @@ Both\ NL\ &\ CR=C\u1ea3 NL & CR #: Preferences.java:81 Browse=Duy\u1ec7t t\u00ecm -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=H\u00e3y t\u1ea1o m\u1ed9t th\u01b0 m\u1ee5c b\u1ed7ng d\u01b0ng bi\u1ebfn m\u1ea5t ho\u1eb7c ch\u1ea5p nh\u1eadn kh\u00f4ng th\u1ec3 t\u1ea1o \u0111\u01b0\u1ee3c - #: ../../../processing/app/Sketch.java:1530 !Build\ options\ changed,\ rebuilding\ all= +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=Bulgarian @@ -313,21 +318,12 @@ Check\ for\ updates\ on\ startup=Ki\u1ec3m tra xem c\u00f3 phi\u00ean b\u1ea3n m #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=Chinese (China) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=Chinese (Hong Kong) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=Chinese (Taiwan) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5) -#: Preferences.java:88 -Chinese\ Simplified=Chinese Simplified - -#: Preferences.java:89 -Chinese\ Traditional=Chinese Traditional - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -412,9 +408,6 @@ Could\ not\ re-save\ sketch=Kh\u00f4ng th\u1ec3 l\u01b0u l\u1ea1i sketch l\u1ea7 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Kh\u00f4ng th\u1ec3 t\u1ea3i thi\u1ebft l\u1eadp m\u1eb7c \u0111\u1ecbnh.\nB\u1ea1n c\u1ea7n c\u00e0i \u0111\u1eb7t l\u1ea1i Arduino. -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=Kh\u00f4ng th\u1ec3 lo\u1ea1i b\u1ecf phi\u00ean b\u1ea3n c\u0169 c\u1ee7a {0} @@ -436,9 +429,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=Kh\u00f4ng th\u1ec3 \u0111\u1ed5i t\u00ean #, java-format Could\ not\ replace\ {0}=Kh\u00f4ng th\u1ec3 thay thay th\u1ebf {0} -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=Kh\u00f4ng th\u1ec3 l\u01b0u tr\u1eef sketch @@ -457,15 +447,9 @@ Croatian=Croatian #: Editor.java:1149 Editor.java:2699 Cut=C\u1eaft -#: ../../../processing/app/Preferences.java:83 -Czech=Czech - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=Danish - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -669,6 +653,15 @@ Estonian\ (Estonia)=Estonian (Estonia) #: Editor.java:516 Examples=V\u00ed d\u1ee5 +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -834,6 +827,10 @@ Indonesian=Indonesian #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=Th\u01b0 vi\u1ec7n kh\u00f4ng h\u1ee3p l\u1ec7 \u0111\u01b0\u1ee3c t\u00ecm th\u1ea5y trong {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=Italian @@ -852,6 +849,9 @@ Latvian=Latvian #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -862,12 +862,13 @@ Lithuaninan=Lithuaninan #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -880,8 +881,9 @@ Marathi=Marathi #: Base.java:2112 Message=Th\u00f4ng b\u00e1o -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -905,9 +907,6 @@ Moving=\u0110ang di chuy\u1ec3n #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=T\u00ean cho t\u1eadp tin m\u1edbi\: @@ -941,9 +940,6 @@ No=Kh\u00f4ng \u0111\u1ed3ng \u00fd #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Kh\u00f4ng b\u1ea3ng n\u00e0o \u0111\u01b0\u1ee3c ch\u1ecdn; h\u00e3y ch\u1ecdn m\u1ed9t b\u1ea3ng t\u1eeb C\u00f4ng c\u1ee5>Bo m\u1ea1ch \u1edf menu. - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=Kh\u00f4ng c\u1ea7n thay \u0111\u1ed5i \u0111\u1ed1i v\u1edbi \u0110\u1ecbnh D\u1ea1ng T\u1ef1 \u0110\u1ed9ng. @@ -992,15 +988,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u0110\u1ecbnh ngh\u01 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Kh\u00f4ng \u0111\u1ee7 b\u1ed9 nh\u1edb; truy c\u1eadp http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0111\u1ec3 c\u00f3 th\u00eam ki\u1ebfn th\u1ee9c v\u1ec1 ph\u1ea9n gi\u1ea3m footprint c\u1ee7a b\u1ea1n. @@ -1044,6 +1034,10 @@ Persian=Persian #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1117,10 +1111,6 @@ Problem\ accessing\ files\ in\ folder\ =X\u1ea3y ra l\u1ed7i khi truy c\u1eadp c #: Base.java:1673 Problem\ getting\ data\ folder=X\u1ea3y ra l\u1ed7i khi ti\u1ebfp nh\u1eadn th\u01b0 m\u1ee5c d\u1eef li\u1ec7u -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=X\u1ea3y ra v\u1ea5n \u0111\u1ec1 khi di chuy\u1ec3n {0} \u0111\u1ebfn th\u01b0 m\u1ee5c x\u00e2y d\u1ef1ng - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=V\u1ea5n \u0111\u1ec1 li\u00ean quan \u0111\u1ebfn bo m\u1ea1ch. Truy c\u1eadp http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u0111\u1ec3 bi\u1ebft th\u00eam chi ti\u1ebft. @@ -1133,9 +1123,16 @@ Processor=Vi x\u1eed l\u00fd #: Editor.java:704 Programmer=Ng\u01b0\u1eddi l\u1eadp tr\u00ecnh +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=Tho\u00e1t +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=L\u00e0m l\u1ea1i thao t\u00e1c @@ -1175,6 +1172,14 @@ Replace\ with\:=Thay th\u1ebf v\u1edbi\: #: Preferences.java:113 Romanian=Romanian +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=Russian @@ -1252,6 +1257,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1332,9 +1341,6 @@ Spanish=Spanish #: Base.java:540 Sunshine=B\u00ecnh minh -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=Swedish @@ -1399,9 +1405,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=T\u1eadp tin n\u00e0y \u0111\u00e3 \u0111\u01b0\u1ee3c sao ch\u00e9p v\u00e0o\n\u0111\u1ecba \u0111i\u1ec3m m\u00e0 b\u1ea1n \u0111ang c\u1ed1 th\u00eam v\u00e0o.\nN\u00e3y gi\u1edd tui h\u1ebbm c\u00f3 l\u00e0m g\u00ec \u00e0 nhoa. @@ -1453,6 +1456,10 @@ Unable\ to\ connect\:\ retrying=Kh\u00f4ng th\u1ec3 k\u1ebft n\u1ed1i\: \u0111an #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=Kh\u00f4ng th\u1ec3 k\u1ebft n\u1ed1i\: sai m\u1eadt kh\u1ea9u? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=Kh\u00f4ng th\u1ec3 m\u1edf ph\u1ea7n gi\u00e1m s\u00e1t m\u00e3 hi\u1ec7u @@ -1463,13 +1470,17 @@ Unable\ to\ open\ serial\ monitor=Kh\u00f4ng th\u1ec3 m\u1edf ph\u1ea7n gi\u00e1 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=D\u1ea1ng l\u1ed7i ch\u01b0a r\u00f5\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=H\u1ee7y thao t\u00e1c +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Kh\u00f4ng x\u00e1c \u0111\u1ecbnh \u0111\u01b0\u1ee3c n\u1ec1n t\u1ea3ng, kh\u00f4ng th\u1ec3 ch\u1ea1y ph\u1ea7n k\u00edch ho\u1ea1t.\n\u0110\u1ec3 c\u00f3 th\u1ec3 m\u1edf URL ho\u1eb7c th\u01b0 m\u1ee5c, th\u00eam\nd\u00f2ng "launcher\=/path/to/app" v\u00e0o preferences.txt @@ -1504,9 +1515,6 @@ Uploading\ to\ I/O\ Board...=\u0110ang t\u1ea3i v\u00e0o Bo M\u1ea1ch I/O... #: Sketch.java:1622 Uploading...=\u0110ang t\u1ea3i... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=S\u1eed d\u1ee5ng v\u00f9ng l\u1ef1a ch\u1ecdn cho t\u00ecm ki\u1ebfm @@ -1564,6 +1572,14 @@ Vietnamese=Vi\u1ec7t Nam #: Editor.java:1105 Visit\ Arduino.cc=Truy c\u1eadp Arduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1593,6 +1609,9 @@ Warning=C\u1ea3nh b\u00e1o #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1753,6 +1772,14 @@ upload=t\u1ea3i l\u00ean #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} tr\u1ea3 v\u1ec1 {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po index f95555a905d..d0cb15a12f5 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Wong Min , 2013 # 陈吕洲 , 2015 # dongfengweixiao , 2013-2015 @@ -21,7 +22,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:28+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Chinese (China) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_CN/)\n" "MIME-Version: 1.0\n" @@ -52,10 +53,20 @@ msgstr "只有 Arduino Leonardo 支持“键盘”选项" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "只有 Arduino Leonardo 支持“鼠标”选项" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(只能在 Arduino 未运行时进行编辑)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "--curdir 不再受支持" @@ -317,10 +328,6 @@ msgstr "错误行: {0}" msgid "Bad file selected" msgstr "选择的文件有问题" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "项目文件损坏或项目文件夹损坏" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "巴斯克语" @@ -329,15 +336,16 @@ msgstr "巴斯克语" msgid "Belarusian" msgstr "白俄罗斯语" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "孟加拉语(印度)" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "开发板" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -378,14 +386,14 @@ msgstr "NL 和 CR" msgid "Browse" msgstr "浏览" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "建立的文件夹消失了或者是它不可写" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "构建选项已变更,全部重新构建" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "保加利亚语" @@ -449,10 +457,6 @@ msgstr "启动时检查更新" msgid "Chinese (China)" msgstr "中文(中国)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "中文(香港)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "中文(台湾)" @@ -461,14 +465,6 @@ msgstr "中文(台湾)" msgid "Chinese (Taiwan) (Big5)" msgstr "中文(台湾)(Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "简体中文" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "繁体中文" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "点击查看非官方开发板支持网址列表" @@ -588,10 +584,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "无法读取预设设置。\n你必须重新安装Arduino。" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "无法读取之前的构建配置文件,全部重新构建中" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -619,10 +611,6 @@ msgstr "无法重命名这个项目。(2)" msgid "Could not replace {0}" msgstr "无法替换{0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "无法写入构建配置文件" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "无法归档项目" @@ -650,18 +638,10 @@ msgstr "克罗地亚" msgid "Cut" msgstr "剪切" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "捷克语" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "捷克语(捷克共和国)" -#: Preferences.java:90 -msgid "Danish" -msgstr "丹麦语" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "丹麦语(丹麦)" @@ -933,6 +913,18 @@ msgstr "爱沙尼亚语(爱沙尼亚)" msgid "Examples" msgstr "示例" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "导出已编译的二进制文件" @@ -1161,6 +1153,11 @@ msgstr "正在安装..." msgid "Invalid library found in {0}: {1}" msgstr "找到无效库在 {0}: {1}" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "意大利语" @@ -1185,6 +1182,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "库已经加入,请检查“导入库”菜单" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1198,14 +1199,15 @@ msgstr "立陶宛语" msgid "Loading configuration..." msgstr "正在加载配置..." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" +msgstr "" + #: ../../../processing/app/Sketch.java:1684 msgid "Low memory available, stability problems may occur." msgstr "可用内存偏低,可能出现稳定性问题" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" -msgstr "马来语(马来西亚)" - #: ../../../../../app/src/processing/app/Base.java:1168 msgid "Manage Libraries..." msgstr "管理库..." @@ -1222,9 +1224,10 @@ msgstr "马拉地语" msgid "Message" msgstr "信息" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "在/* comment */形式的注释末尾没找到*/" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1255,10 +1258,6 @@ msgstr "\"{0}\" 对应多个库" msgid "Must specify exactly one sketch file" msgstr "必须制定一个项目文件" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "新文件的名字" @@ -1303,10 +1302,6 @@ msgstr "否" msgid "No authorization data found" msgstr "找不到认证信息" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "未选择板:请点击“工具>开发板”菜单选择一个板子。" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "无需自动格式化。" @@ -1370,18 +1365,10 @@ msgstr "在文件夹{0}中没有找到有效的硬件定义" msgid "None" msgstr "无" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "挪威语" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "挪威语" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "新挪威語" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1441,6 +1428,11 @@ msgstr "波斯语" msgid "Persian (Iran)" msgstr "波斯语(伊朗)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "请确认开发板检测" @@ -1538,11 +1530,6 @@ msgstr "读取文件夹中文件时出现问题" msgid "Problem getting data folder" msgstr "取得资料文件夹时出现问题" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "移动 {0} 到建立的文件夹存在问题" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1561,10 +1548,19 @@ msgstr "处理器" msgid "Programmer" msgstr "编程器" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "关闭" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "重做" @@ -1616,6 +1612,16 @@ msgstr "替换为:" msgid "Romanian" msgstr "罗马尼亚语" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "俄语" @@ -1721,6 +1727,11 @@ msgstr "没有找到串口 {0} 。\n要尝试通过其他串口上传吗?" msgid "Serial ports" msgstr "串行端口" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1836,10 +1847,6 @@ msgstr "正在启动" msgid "Sunshine" msgstr "阳光" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "斯瓦西里语" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "瑞典语" @@ -1956,12 +1963,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "指定的项目文件夹包含你的 IDE 。\n请为项目选择另外的文件夹。" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "第三方platform.txt文件为定义compiler.path。请向第三方硬件维护者反映此问题。" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2034,6 +2035,11 @@ msgstr "无法连接:正在重试" msgid "Unable to connect: wrong password?" msgstr "无法连接:密码错误?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "无法打开串口监视器" @@ -2047,15 +2053,20 @@ msgstr "无法打开串口绘图器" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "由于网络原因,无法连接 Arduino.cc 。" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "未捕获的异常类型:{0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "复原" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2104,10 +2115,6 @@ msgstr "上传到 I/O 开发板..." msgid "Uploading..." msgstr "上传..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "乌尔都语(巴基斯坦)" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "查找选中单元" @@ -2182,6 +2189,16 @@ msgstr "越南语" msgid "Visit Arduino.cc" msgstr "访问Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2225,6 +2242,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "警告:核心 '{0}' 中的 platform.txt 文件 包含已废弃的 {1},已自动转换为 {2}。请考虑更新核心。" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2479,6 +2502,16 @@ msgstr "{0} 个文件被添加到这个项目。" msgid "{0} libraries" msgstr "{0} 库" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties index 13b365074e1..2f8579d151b 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_CN.properties @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Wong Min , 2013 # \u9648\u5415\u6d32 , 2015 # dongfengweixiao , 2013-2015 @@ -16,7 +17,7 @@ # Wong Min , 2013 # Zhuo Liu , 2015 # \u9648\u5415\u6d32 , 2015 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (China) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_CN/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_CN\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:28+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (China) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_CN/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_CN\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\uff08\u9700\u8981\u91cd\u542f Arduino\uff09 @@ -35,9 +36,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u53ea\u6709 Arduino Leonardo \u652f\u6301\u201c\u9f20\u6807\u201d\u9009\u9879 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728 Arduino \u672a\u8fd0\u884c\u65f6\u8fdb\u884c\u7f16\u8f91\uff09 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 --curdir\ no\ longer\ supported=--curdir \u4e0d\u518d\u53d7\u652f\u6301 @@ -221,22 +228,20 @@ Bad\ error\ line\:\ {0}=\u9519\u8bef\u884c\: {0} #: Editor.java:2136 Bad\ file\ selected=\u9009\u62e9\u7684\u6587\u4ef6\u6709\u95ee\u9898 -#: ../../../processing/app/debug/Compiler.java:89 -Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u9879\u76ee\u6587\u4ef6\u635f\u574f\u6216\u9879\u76ee\u6587\u4ef6\u5939\u635f\u574f - #: ../../../processing/app/Preferences.java:149 Basque=\u5df4\u65af\u514b\u8bed #: ../../../processing/app/Preferences.java:139 Belarusian=\u767d\u4fc4\u7f57\u65af\u8bed -#: ../../../../../app/src/processing/app/Preferences.java:165 -Bengali\ (India)=\u5b5f\u52a0\u62c9\u8bed(\u5370\u5ea6) - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u5f00\u53d1\u677f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}={0}\:{1}\:{2} \u5f00\u53d1\u677f\u6ca1\u6709\u5b9a\u4e49''build.board''\u504f\u597d\u3002\u81ea\u52a8\u8bbe\u7f6e\u4e3a\uff1a {3} @@ -266,12 +271,12 @@ Both\ NL\ &\ CR=NL \u548c CR #: Preferences.java:81 Browse=\u6d4f\u89c8 -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7acb\u7684\u6587\u4ef6\u5939\u6d88\u5931\u4e86\u6216\u8005\u662f\u5b83\u4e0d\u53ef\u5199 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u6784\u5efa\u9009\u9879\u5df2\u53d8\u66f4\uff0c\u5168\u90e8\u91cd\u65b0\u6784\u5efa +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9a\u8bed @@ -320,21 +325,12 @@ Check\ for\ updates\ on\ startup=\u542f\u52a8\u65f6\u68c0\u67e5\u66f4\u65b0 #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u4e2d\u6587(\u4e2d\u56fd) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u4e2d\u6587(\u9999\u6e2f) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u4e2d\u6587(\u53f0\u6e7e) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u4e2d\u6587(\u53f0\u6e7e)(Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u7b80\u4f53\u4e2d\u6587 - -#: Preferences.java:89 -Chinese\ Traditional=\u7e41\u4f53\u4e2d\u6587 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u70b9\u51fb\u67e5\u770b\u975e\u5b98\u65b9\u5f00\u53d1\u677f\u652f\u6301\u7f51\u5740\u5217\u8868 @@ -419,9 +415,6 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino. #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u65e0\u6cd5\u8bfb\u53d6\u9884\u8bbe\u8bbe\u7f6e\u3002\n\u4f60\u5fc5\u987b\u91cd\u65b0\u5b89\u88c5Arduino\u3002 -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u65e0\u6cd5\u8bfb\u53d6\u4e4b\u524d\u7684\u6784\u5efa\u914d\u7f6e\u6587\u4ef6\uff0c\u5168\u90e8\u91cd\u65b0\u6784\u5efa\u4e2d - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u65e0\u6cd5\u79fb\u9664{0}\u7684\u65e7\u7248\u672c @@ -443,9 +436,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u65e0\u6cd5\u91cd\u547d\u540d\u8fd9\u4e2a #, java-format Could\ not\ replace\ {0}=\u65e0\u6cd5\u66ff\u6362{0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u65e0\u6cd5\u5199\u5165\u6784\u5efa\u914d\u7f6e\u6587\u4ef6 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u65e0\u6cd5\u5f52\u6863\u9879\u76ee @@ -464,15 +454,9 @@ Croatian=\u514b\u7f57\u5730\u4e9a #: Editor.java:1149 Editor.java:2699 Cut=\u526a\u5207 -#: ../../../processing/app/Preferences.java:83 -Czech=\u6377\u514b\u8bed - #: ../../../../../app/src/processing/app/Preferences.java:119 Czech\ (Czech\ Republic)=\u6377\u514b\u8bed(\u6377\u514b\u5171\u548c\u56fd) -#: Preferences.java:90 -Danish=\u4e39\u9ea6\u8bed - #: ../../../../../app/src/processing/app/Preferences.java:120 Danish\ (Denmark)=\u4e39\u9ea6\u8bed(\u4e39\u9ea6) @@ -676,6 +660,15 @@ Estonian\ (Estonia)=\u7231\u6c99\u5c3c\u4e9a\u8bed(\u7231\u6c99\u5c3c\u4e9a) #: Editor.java:516 Examples=\u793a\u4f8b +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 Export\ compiled\ Binary=\u5bfc\u51fa\u5df2\u7f16\u8bd1\u7684\u4e8c\u8fdb\u5236\u6587\u4ef6 @@ -841,6 +834,10 @@ Installing...=\u6b63\u5728\u5b89\u88c5... #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u627e\u5230\u65e0\u6548\u5e93\u5728 {0}\: {1} +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u610f\u5927\u5229\u8bed @@ -859,6 +856,9 @@ Latvian=\u62c9\u8131\u7ef4\u4e9a\u8bed #: ../../../../../app/src/processing/app/Base.java:2349 Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u5e93\u5df2\u7ecf\u52a0\u5165\uff0c\u8bf7\u68c0\u67e5\u201c\u5bfc\u5165\u5e93\u201d\u83dc\u5355 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u5e93\u5b89\u88c5\u5b8c\u6bd5\: {0} \u7248\u672c {1} @@ -869,12 +869,13 @@ Lithuaninan=\u7acb\u9676\u5b9b\u8bed #: ../../../../../app/src/processing/app/Base.java:132 Loading\ configuration...=\u6b63\u5728\u52a0\u8f7d\u914d\u7f6e... +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 Low\ memory\ available,\ stability\ problems\ may\ occur.=\u53ef\u7528\u5185\u5b58\u504f\u4f4e\uff0c\u53ef\u80fd\u51fa\u73b0\u7a33\u5b9a\u6027\u95ee\u9898 -#: ../../../../../app/src/processing/app/Preferences.java:180 -Malay\ (Malaysia)=\u9a6c\u6765\u8bed(\u9a6c\u6765\u897f\u4e9a) - #: ../../../../../app/src/processing/app/Base.java:1168 Manage\ Libraries...=\u7ba1\u7406\u5e93... @@ -887,8 +888,9 @@ Marathi=\u9a6c\u62c9\u5730\u8bed #: Base.java:2112 Message=\u4fe1\u606f -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u5728/* comment */\u5f62\u5f0f\u7684\u6ce8\u91ca\u672b\u5c3e\u6ca1\u627e\u5230*/ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 Mode\ not\ supported=\u4e0d\u652f\u6301\u6b64\u6a21\u5f0f @@ -912,9 +914,6 @@ Multiple\ libraries\ were\ found\ for\ "{0}"="{0}" \u5bf9\u5e94\u591a\u4e2a\u5e9 #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u5fc5\u987b\u5236\u5b9a\u4e00\u4e2a\u9879\u76ee\u6587\u4ef6 -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u6587\u4ef6\u7684\u540d\u5b57 @@ -948,9 +947,6 @@ No=\u5426 #: ../../../processing/app/debug/Compiler.java:158 No\ authorization\ data\ found=\u627e\u4e0d\u5230\u8ba4\u8bc1\u4fe1\u606f -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u672a\u9009\u62e9\u677f\uff1a\u8bf7\u70b9\u51fb\u201c\u5de5\u5177>\u5f00\u53d1\u677f\u201d\u83dc\u5355\u9009\u62e9\u4e00\u4e2a\u677f\u5b50\u3002 - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u65e0\u9700\u81ea\u52a8\u683c\u5f0f\u5316\u3002 @@ -999,15 +995,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u5728\u6587\u4ef6\u59 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 None=\u65e0 -#: ../../../../../app/src/processing/app/Preferences.java:181 -Norwegian=\u632a\u5a01\u8bed - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u632a\u5a01\u8bed -#: ../../../../../app/src/processing/app/Preferences.java:182 -Norwegian\ Nynorsk=\u65b0\u632a\u5a01\u8a9e - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u6ca1\u6709\u8db3\u591f\u7684\u5185\u5b58\uff1b\u8bbf\u95ee\u4ee5\u4e0b\u7f51\u5740\u6839\u636e\u63d0\u793a\u51cf\u5c0f\u5185\u5b58\u7684\u7528\u91cf\u3002\nhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size @@ -1051,6 +1041,10 @@ Persian=\u6ce2\u65af\u8bed #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u6ce2\u65af\u8bed(\u4f0a\u6717) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 Please\ confirm\ boards\ deletion=\u8bf7\u786e\u8ba4\u5f00\u53d1\u677f\u68c0\u6d4b @@ -1124,10 +1118,6 @@ Problem\ accessing\ files\ in\ folder\ =\u8bfb\u53d6\u6587\u4ef6\u5939\u4e2d\u65 #: Base.java:1673 Problem\ getting\ data\ folder=\u53d6\u5f97\u8d44\u6599\u6587\u4ef6\u5939\u65f6\u51fa\u73b0\u95ee\u9898 -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u79fb\u52a8 {0} \u5230\u5efa\u7acb\u7684\u6587\u4ef6\u5939\u5b58\u5728\u95ee\u9898 - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0a\u4f20\u51fa\u9519\u3002\u67e5\u770b\u9875\u9762 http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u83b7\u53d6\u5efa\u8bae\u3002 @@ -1140,9 +1130,16 @@ Processor=\u5904\u7406\u5668 #: Editor.java:704 Programmer=\u7f16\u7a0b\u5668 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u5173\u95ed +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u91cd\u505a @@ -1182,6 +1179,14 @@ Replace\ with\:=\u66ff\u6362\u4e3a\uff1a #: Preferences.java:113 Romanian=\u7f57\u9a6c\u5c3c\u4e9a\u8bed +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u4fc4\u8bed @@ -1259,6 +1264,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 Serial\ ports=\u4e32\u884c\u7aef\u53e3 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1339,9 +1348,6 @@ Starting...=\u6b63\u5728\u542f\u52a8 #: Base.java:540 Sunshine=\u9633\u5149 -#: ../../../../../app/src/processing/app/Preferences.java:187 -Swahili=\u65af\u74e6\u897f\u91cc\u8bed - #: ../../../processing/app/Preferences.java:153 Swedish=\u745e\u5178\u8bed @@ -1406,9 +1412,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\u6307\u5b9a\u7684\u9879\u76ee\u6587\u4ef6\u5939\u5305\u542b\u4f60\u7684 IDE \u3002\n\u8bf7\u4e3a\u9879\u76ee\u9009\u62e9\u53e6\u5916\u7684\u6587\u4ef6\u5939\u3002 -#: ../../../processing/app/debug/Compiler.java:201 -Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=\u7b2c\u4e09\u65b9platform.txt\u6587\u4ef6\u4e3a\u5b9a\u4e49compiler.path\u3002\u8bf7\u5411\u7b2c\u4e09\u65b9\u786c\u4ef6\u7ef4\u62a4\u8005\u53cd\u6620\u6b64\u95ee\u9898\u3002 - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u6b64\u6587\u4ef6\u5df2\u7ecf\u590d\u5236\u5230\u4f60\u60f3\u8981\n\u590d\u5236\u5230\u7684\u5730\u65b9\u4e86\u3002\u6211\u7edd\u5bf9\u4e0d\u4f1a\n\u60f3\u8981\u505a\u4e00\u4e2a\u65e0\u6240\u4e8b\u4e8b\u7684\u4eba\u3002 @@ -1460,6 +1463,10 @@ Unable\ to\ connect\:\ retrying=\u65e0\u6cd5\u8fde\u63a5\uff1a\u6b63\u5728\u91cd #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u65e0\u6cd5\u8fde\u63a5\uff1a\u5bc6\u7801\u9519\u8bef\uff1f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u65e0\u6cd5\u6253\u5f00\u4e32\u53e3\u76d1\u89c6\u5668 @@ -1470,13 +1477,17 @@ Unable\ to\ open\ serial\ plotter=\u65e0\u6cd5\u6253\u5f00\u4e32\u53e3\u7ed8\u56 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=\u7531\u4e8e\u7f51\u7edc\u539f\u56e0\uff0c\u65e0\u6cd5\u8fde\u63a5 Arduino.cc \u3002 -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=\u672a\u6355\u83b7\u7684\u5f02\u5e38\u7c7b\u578b\uff1a{0} - #: Editor.java:1133 Editor.java:1355 Undo=\u590d\u539f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u672a\u6307\u5b9a\u7684\u5e73\u53f0\uff0c\u65e0\u53ef\u7528\u542f\u52a8\u5668\u3002\n\u8981\u542f\u7528\u6253\u5f00\u7f51\u5740\u6216\u6587\u4ef6\u5939\u529f\u80fd\uff0c\u8bf7\u6dfb\u52a0\n"launcher\=/path/to/app"\u5230preferences.txt\u6587\u4ef6\u4e2d @@ -1511,9 +1522,6 @@ Uploading\ to\ I/O\ Board...=\u4e0a\u4f20\u5230 I/O \u5f00\u53d1\u677f... #: Sketch.java:1622 Uploading...=\u4e0a\u4f20... -#: ../../../../../app/src/processing/app/Preferences.java:189 -Urdu\ (Pakistan)=\u4e4c\u5c14\u90fd\u8bed(\u5df4\u57fa\u65af\u5766) - #: Editor.java:1269 Use\ Selection\ For\ Find=\u67e5\u627e\u9009\u4e2d\u5355\u5143 @@ -1571,6 +1579,14 @@ Vietnamese=\u8d8a\u5357\u8bed #: Editor.java:1105 Visit\ Arduino.cc=\u8bbf\u95eeArduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u6ce8\u610f\uff1a {0} \u5e93\u8981\u6c42\u8fd0\u884c\u5728 {1} \u67b6\u6784()\uff0c\u53ef\u80fd\u4e0e\u4f60\u73b0\u5728\u8fd0\u884c\u5728 {2} \u67b6\u6784\u4e0a\u7684\u5f00\u53d1\u677f()\u4e0d\u517c\u5bb9\u3002 @@ -1600,6 +1616,9 @@ Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=\u8b66\u544a\uff1a\u658 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u8b66\u544a\uff1a\u6838\u5fc3 '{0}' \u4e2d\u7684 platform.txt \u6587\u4ef6 \u5305\u542b\u5df2\u5e9f\u5f03\u7684 {1}\uff0c\u5df2\u81ea\u52a8\u8f6c\u6362\u4e3a {2}\u3002\u8bf7\u8003\u8651\u66f4\u65b0\u6838\u5fc3\u3002 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u8b66\u544a\uff1a\u6838\u5fc3 '{0}' \u4e2d\u7684 platform.txt \u6587\u4ef6\u7f3a\u5c11\u5c5e\u6027 {1}\uff0c \u5df2\u81ea\u52a8\u8bbe\u7f6e\u4e3a {2}\u3002\u8bf7\u8003\u8651\u66f4\u65b0\u6838\u5fc3\u3002 @@ -1760,6 +1779,14 @@ version\ {0}=\u7248\u672c {0} #, java-format {0}\ libraries={0} \u5e93 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0} \u8fd4\u56de {1} diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties b/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties deleted file mode 100644 index 23b7a1543f8..00000000000 --- a/arduino-core/src/processing/app/i18n/Resources_zh_HK.properties +++ /dev/null @@ -1,1792 +0,0 @@ -# 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. -# -# Translators: -# Translators: -# Translators: -# Translators: -# Dicky Ho , 2012 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Hong Kong) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_HK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_HK\nPlural-Forms\: nplurals\=1; plural\=0;\n - -#: Preferences.java:358 Preferences.java:374 -!\ \ (requires\ restart\ of\ Arduino)= - -#: ../../../processing/app/debug/Compiler.java:529 -#, java-format -!\ Not\ used\:\ {0}= - -#: ../../../processing/app/debug/Compiler.java:525 -#, java-format -!\ Used\:\ {0}= - -#: debug/Compiler.java:455 -!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: debug/Compiler.java:450 -!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo= - -#: Preferences.java:478 -!(edit\ only\ when\ Arduino\ is\ not\ running)= - -#: ../../../processing/app/helpers/CommandlineParser.java:149 -!--curdir\ no\ longer\ supported= - -#: ../../../processing/app/Base.java:468 -!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload= - -#: Sketch.java:746 -!.pde\ ->\ .ino= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}= - -#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62 -#, java-format -!
Update\ available\ for\ some\ of\ your\ {0}libraries{1}= - -#: Editor.java:2053 -!\ \ b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }\ Do\ you\ want\ to\ save\ changes\ to\ this\ sketch
\ before\ closing?

If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.= - -#: Sketch.java:398 -#, java-format -!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"= - -#: Editor.java:2169 -#, java-format -!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.= - -#: Base.java:2690 -#, java-format -!A\ library\ named\ {0}\ already\ exists= - -#: UpdateCheck.java:103 -!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!A\ newer\ {0}\ package\ is\ available= - -#: ../../../../../app/src/processing/app/Base.java:2307 -!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library= - -#: Editor.java:1116 -!About\ Arduino= - -#: ../../../../../app/src/processing/app/Base.java:1177 -!Add\ .ZIP\ Library...= - -#: Editor.java:650 -!Add\ File...= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73 -!Additional\ Boards\ Manager\ URLs= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268 -!Additional\ Boards\ Manager\ URLs\:\ = - -#: ../../../../../app/src/processing/app/Preferences.java:161 -!Afrikaans= - -#: ../../../processing/app/Preferences.java:96 -!Albanian= - -#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187 -!All= - -#: tools/FixEncoding.java:77 -!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99 -!An\ error\ occurred\ while\ updating\ libraries\ index\!= - -#: ../../../processing/app/BaseNoGui.java:528 -!An\ error\ occurred\ while\ uploading\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!An\ error\ occurred\ while\ verifying\ the\ sketch= - -#: ../../../processing/app/BaseNoGui.java:521 -!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch= - -#: Base.java:228 -!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.= - -#: Preferences.java:85 -!Arabic= - -#: Preferences.java:86 -!Aragonese= - -#: tools/Archiver.java:48 -!Archive\ Sketch= - -#: tools/Archiver.java:109 -!Archive\ sketch\ as\:= - -#: tools/Archiver.java:139 -!Archive\ sketch\ canceled.= - -#: tools/Archiver.java:75 -!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.= - -#: ../../../processing/app/I18n.java:83 -!Arduino\ ARM\ (32-bits)\ Boards= - -#: ../../../processing/app/I18n.java:82 -!Arduino\ AVR\ Boards= - -#: Editor.java:2137 -!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde= - -#: Base.java:1682 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.= - -#: Base.java:1889 -!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.= - -#: ../../../processing/app/EditorStatus.java:471 -!Arduino\:\ = - -#: Sketch.java:588 -#, java-format -!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?= - -#: Sketch.java:587 -!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?= - -#: ../../../processing/app/Base.java:356 -!Argument\ required\ for\ --board= - -#: ../../../processing/app/Base.java:363 -!Argument\ required\ for\ --port= - -#: ../../../processing/app/Base.java:377 -!Argument\ required\ for\ --pref= - -#: ../../../processing/app/Base.java:384 -!Argument\ required\ for\ --preferences-file= - -#: ../../../processing/app/helpers/CommandlineParser.java:76 -#: ../../../processing/app/helpers/CommandlineParser.java:83 -#, java-format -!Argument\ required\ for\ {0}= - -#: ../../../processing/app/Preferences.java:137 -!Armenian= - -#: ../../../processing/app/Preferences.java:138 -!Asturian= - -#: ../../../processing/app/debug/Compiler.java:145 -!Authorization\ required= - -#: tools/AutoFormat.java:91 -!Auto\ Format= - -#: tools/AutoFormat.java:944 -!Auto\ Format\ finished.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457 -!Auto-detect\ proxy\ settings= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474 -!Automatic\ proxy\ configuration\ URL\:= - -#: SerialMonitor.java:110 -!Autoscroll= - -#: Editor.java:2619 -#, java-format -!Bad\ error\ line\:\ {0}= - -#: Editor.java:2136 -!Bad\ file\ selected= - -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - -#: ../../../processing/app/Preferences.java:149 -!Basque= - -#: ../../../processing/app/Preferences.java:139 -!Belarusian= - -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - -#: ../../../processing/app/Base.java:1433 -#: ../../../processing/app/Editor.java:707 -!Board= - -#: ../../../processing/app/debug/TargetBoard.java:42 -#, java-format -!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}= - -#: ../../../processing/app/EditorStatus.java:472 -!Board\:\ = - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Boards\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:1320 -!Boards\ Manager...= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328 -!Boards\ included\ in\ this\ package\:= - -#: ../../../processing/app/debug/Compiler.java:1273 -#, java-format -!Bootloader\ file\ specified\ but\ missing\:\ {0}= - -#: ../../../processing/app/Preferences.java:140 -!Bosnian= - -#: SerialMonitor.java:112 -!Both\ NL\ &\ CR= - -#: Preferences.java:81 -!Browse= - -#: Sketch.java:1392 Sketch.java:1423 -!Build\ folder\ disappeared\ or\ could\ not\ be\ written= - -#: ../../../processing/app/Sketch.java:1530 -!Build\ options\ changed,\ rebuilding\ all= - -#: ../../../processing/app/Preferences.java:80 -!Bulgarian= - -#: ../../../processing/app/Preferences.java:141 -!Burmese\ (Myanmar)= - -#: Editor.java:708 -!Burn\ Bootloader= - -#: Editor.java:2504 -!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77 -!CRC\ doesn't\ match.\ File\ is\ corrupted.= - -#: ../../../processing/app/Base.java:379 -#, java-format -!Can\ only\ pass\ one\ of\:\ {0}= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!Can't\ find\ the\ sketch\ in\ the\ specified\ path= - -#: ../../../processing/app/Preferences.java:92 -!Canadian\ French= - -#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2064 Editor.java:2145 Editor.java:2465 -!Cancel= - -#: Sketch.java:455 -!Cannot\ Rename= - -#: ../../../processing/app/Base.java:465 -!Cannot\ specify\ any\ sketch\ files= - -#: SerialMonitor.java:112 -!Carriage\ return= - -#: Preferences.java:87 -!Catalan= - -#: Preferences.java:419 -!Check\ for\ updates\ on\ startup= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (China)= - -#: ../../../processing/app/Preferences.java:142 -!Chinese\ (Hong\ Kong)= - -#: ../../../processing/app/Preferences.java:144 -!Chinese\ (Taiwan)= - -#: ../../../processing/app/Preferences.java:143 -!Chinese\ (Taiwan)\ (Big5)= - -#: Preferences.java:88 -!Chinese\ Simplified= - -#: Preferences.java:89 -!Chinese\ Traditional= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 -!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= - -#: Editor.java:521 Editor.java:2024 -!Close= - -#: Editor.java:1208 Editor.java:2749 -!Comment/Uncomment= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266 -!Compiler\ warnings\:\ = - -#: Sketch.java:1608 Editor.java:1890 -!Compiling\ sketch...= - -#: Editor.java:1157 Editor.java:2707 -!Copy= - -#: Editor.java:1177 Editor.java:2723 -!Copy\ as\ HTML= - -#: ../../../processing/app/EditorStatus.java:455 -!Copy\ error\ messages= - -#: Editor.java:1165 Editor.java:2715 -!Copy\ for\ Forum= - -#: Sketch.java:1089 -#, java-format -!Could\ not\ add\ ''{0}''\ to\ the\ sketch.= - -#: Editor.java:2188 -!Could\ not\ copy\ to\ a\ proper\ location.= - -#: Editor.java:2179 -!Could\ not\ create\ the\ sketch\ folder.= - -#: Editor.java:2206 -!Could\ not\ create\ the\ sketch.= - -#: Sketch.java:617 -#, java-format -!Could\ not\ delete\ "{0}".= - -#: Sketch.java:1066 -#, java-format -!Could\ not\ delete\ the\ existing\ ''{0}''\ file.= - -#: Base.java:2533 Base.java:2556 -#, java-format -!Could\ not\ delete\ {0}= - -#: ../../../processing/app/debug/TargetPlatform.java:74 -#, java-format -!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282 -#, java-format -!Could\ not\ find\ tool\ {0}= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278 -#, java-format -!Could\ not\ find\ tool\ {0}\ from\ package\ {1}= - -#: Base.java:1934 -#, java-format -!Could\ not\ open\ the\ URL\n{0}= - -#: Base.java:1958 -#, java-format -!Could\ not\ open\ the\ folder\n{0}= - -#: Sketch.java:1769 -!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.= - -#: Sketch.java:1768 -!Could\ not\ re-save\ sketch= - -#: Theme.java:52 -!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: Preferences.java:219 -!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.= - -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - -#: Base.java:2482 -#, java-format -!Could\ not\ remove\ old\ version\ of\ {0}= - -#: Sketch.java:483 Sketch.java:528 -#, java-format -!Could\ not\ rename\ "{0}"\ to\ "{1}"= - -#: Sketch.java:475 -!Could\ not\ rename\ the\ sketch.\ (0)= - -#: Sketch.java:496 -!Could\ not\ rename\ the\ sketch.\ (1)= - -#: Sketch.java:503 -!Could\ not\ rename\ the\ sketch.\ (2)= - -#: Base.java:2492 -#, java-format -!Could\ not\ replace\ {0}= - -#: ../../../processing/app/Sketch.java:1579 -!Could\ not\ write\ build\ preferences\ file= - -#: tools/Archiver.java:74 -!Couldn't\ archive\ sketch= - -#: Sketch.java:1647 -!Couldn't\ determine\ program\ size\:\ {0}= - -#: Sketch.java:616 -!Couldn't\ do\ it= - -#: debug/BasicUploader.java:209 -!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.= - -#: ../../../processing/app/Preferences.java:82 -!Croatian= - -#: Editor.java:1149 Editor.java:2699 -!Cut= - -#: ../../../processing/app/Preferences.java:83 -!Czech= - -#: ../../../../../app/src/processing/app/Preferences.java:119 -!Czech\ (Czech\ Republic)= - -#: Preferences.java:90 -!Danish= - -#: ../../../../../app/src/processing/app/Preferences.java:120 -!Danish\ (Denmark)= - -#: Editor.java:1224 Editor.java:2765 -!Decrease\ Indent= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185 -!Default= - -#: EditorHeader.java:314 Sketch.java:591 -!Delete= - -#: debug/Uploader.java:199 -!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting= - -#: tools/FixEncoding.java:57 -!Discard\ all\ changes\ and\ reload\ sketch?= - -#: ../../../processing/app/Preferences.java:438 -!Display\ line\ numbers= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -#, java-format -!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.= - -#: Editor.java:2064 -!Don't\ Save= - -#: Editor.java:2275 Editor.java:2311 -!Done\ Saving.= - -#: Editor.java:2510 -!Done\ burning\ bootloader.= - -#: ../../../processing/app/BaseNoGui.java:507 -#: ../../../processing/app/BaseNoGui.java:552 -!Done\ compiling= - -#: Editor.java:1911 Editor.java:1928 -!Done\ compiling.= - -#: Editor.java:2564 -!Done\ printing.= - -#: ../../../processing/app/BaseNoGui.java:514 -!Done\ uploading= - -#: Editor.java:2395 Editor.java:2431 -!Done\ uploading.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105 -#, java-format -!Downloaded\ {0}kb\ of\ {1}kb.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107 -!Downloading\ boards\ definitions.= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86 -!Downloading\ libraries\ index...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115 -#, java-format -!Downloading\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318 -!Downloading\ platforms\ index...= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113 -#, java-format -!Downloading\ tools\ ({0}/{1}).= - -#: Preferences.java:91 -!Dutch= - -#: ../../../processing/app/Preferences.java:144 -!Dutch\ (Netherlands)= - -#: ../../../../../app/src/processing/app/Editor.java:1309 -!Edison\ Help= - -#: Editor.java:1130 -!Edit= - -#: Preferences.java:370 -!Editor\ font\ size\:\ = - -#: Preferences.java:353 -!Editor\ language\:\ = - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322 -!Enable\ Code\ Folding= - -#: Preferences.java:92 -!English= - -#: ../../../processing/app/Preferences.java:145 -!English\ (United\ Kingdom)= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271 -!Enter\ a\ comma\ separated\ list\ of\ urls= - -#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96 -!Enter\ additional\ URLs,\ one\ for\ each\ row= - -#: Editor.java:1062 -!Environment= - -#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481 -#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543 -#: Editor.java:2167 Editor.java:2178 Editor.java:2188 Editor.java:2206 -!Error= - -#: Sketch.java:1065 Sketch.java:1088 -!Error\ adding\ file= - -#: debug/Compiler.java:369 -!Error\ compiling.= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113 -#, java-format -!Error\ downloading\ {0}= - -#: Base.java:1674 -!Error\ getting\ the\ Arduino\ data\ folder.= - -#: Serial.java:593 -#, java-format -!Error\ inside\ Serial.{0}()= - -#: ../../../processing/app/debug/TargetPlatform.java:95 -#: ../../../processing/app/debug/TargetPlatform.java:106 -#: ../../../processing/app/debug/TargetPlatform.java:117 -#, java-format -!Error\ loading\ {0}= - -#: Serial.java:181 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.= - -#: ../../../processing/app/Serial.java:119 -#, java-format -!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission= - -#: Preferences.java:277 -!Error\ reading\ preferences= - -#: Preferences.java:279 -#, java-format -!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166 -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245 -!Error\ running\ post\ install\ script= - -#: ../../../cc/arduino/packages/DiscoveryManager.java:25 -!Error\ starting\ discovery\ method\:\ = - -#: Serial.java:125 -#, java-format -!Error\ touching\ serial\ port\ ''{0}''.= - -#: Editor.java:2512 Editor.java:2516 Editor.java:2520 -!Error\ while\ burning\ bootloader.= - -#: ../../../processing/app/Editor.java:2555 -!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../../../app/src/processing/app/Editor.java:1940 -!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter= - -#: SketchCode.java:83 -#, java-format -!Error\ while\ loading\ code\ {0}= - -#: Editor.java:2567 -!Error\ while\ printing.= - -#: ../../../processing/app/BaseNoGui.java:528 -!Error\ while\ uploading= - -#: ../../../processing/app/Editor.java:2409 -#: ../../../processing/app/Editor.java:2449 -!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter= - -#: ../../../processing/app/BaseNoGui.java:506 -#: ../../../processing/app/BaseNoGui.java:551 -#: ../../../processing/app/BaseNoGui.java:554 -!Error\ while\ verifying= - -#: ../../../processing/app/BaseNoGui.java:521 -!Error\ while\ verifying/uploading= - -#: Preferences.java:93 -!Estonian= - -#: ../../../processing/app/Preferences.java:146 -!Estonian\ (Estonia)= - -#: Editor.java:516 -!Examples= - -#: ../../../../../app/src/processing/app/Editor.java:750 -!Export\ compiled\ Binary= - -#: ../../../processing/app/Base.java:416 -#, java-format -!Failed\ to\ open\ sketch\:\ "{0}"= - -#: Editor.java:491 -!File= - -#: Preferences.java:94 -!Filipino= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95 -!Filter\ your\ search...= - -#: FindReplace.java:124 FindReplace.java:127 -!Find= - -#: Editor.java:1249 -!Find\ Next= - -#: Editor.java:1259 -!Find\ Previous= - -#: Editor.java:1086 Editor.java:2775 -!Find\ in\ Reference= - -#: Editor.java:1234 -!Find...= - -#: FindReplace.java:80 -!Find\:= - -#: ../../../processing/app/Preferences.java:147 -!Finnish= - -#: tools/FixEncoding.java:41 tools/FixEncoding.java:58 -#: tools/FixEncoding.java:79 -!Fix\ Encoding\ &\ Reload= - -#: ../../../processing/app/BaseNoGui.java:318 -!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118 -#, java-format -!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}= - -#: Preferences.java:95 -!French= - -#: Editor.java:1097 -!Frequently\ Asked\ Questions= - -#: Preferences.java:96 -!Galician= - -#: ../../../../../app/src/processing/app/Preferences.java:176 -!Galician\ (Spain)= - -#: ../../../../../app/src/processing/app/Editor.java:1288 -!Galileo\ Help= - -#: ../../../processing/app/Preferences.java:94 -!Georgian= - -#: Preferences.java:97 -!German= - -#: Editor.java:1054 -!Getting\ Started= - -#: ../../../processing/app/Sketch.java:1646 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.= - -#: ../../../processing/app/Sketch.java:1651 -#, java-format -!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.= - -#: Preferences.java:98 -!Greek= - -#: ../../../processing/app/Preferences.java:95 -!Hebrew= - -#: Editor.java:1015 -!Help= - -#: Preferences.java:99 -!Hindi= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489 -!Host\ name\:= - -#: Sketch.java:295 -!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?= - -#: Sketch.java:882 -!How\ very\ Borges\ of\ you= - -#: Preferences.java:100 -!Hungarian= - -#: FindReplace.java:96 -!Ignore\ Case= - -#: Base.java:1058 -!Ignoring\ bad\ library\ name= - -#: Base.java:1436 -!Ignoring\ sketch\ with\ bad\ name= - -#: ../../../processing/app/Sketch.java:736 -!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?= - -#: ../../../../../app/src/processing/app/Editor.java:778 -!Include\ Library= - -#: ../../../processing/app/BaseNoGui.java:768 -#: ../../../processing/app/BaseNoGui.java:771 -!Incorrect\ IDE\ installation\ folder= - -#: Editor.java:1216 Editor.java:2757 -!Increase\ Indent= - -#: Preferences.java:101 -!Indonesian= - -#: ../../../../../app/src/processing/app/Base.java:295 -!Initializing\ packages...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:289 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303 -!Install= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170 -!Installation\ completed\!= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50 -!Installed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154 -!Installing\ boards...= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126 -#, java-format -!Installing\ library\:\ {0}= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134 -#, java-format -!Installing\ tools\ ({0}/{1})...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172 -!Installing...= - -#: ../../../processing/app/Base.java:1204 -#, java-format -!Invalid\ library\ found\ in\ {0}\:\ {1}= - -#: Preferences.java:102 -!Italian= - -#: Preferences.java:103 -!Japanese= - -#: Preferences.java:104 -!Korean= - -#: Preferences.java:105 -!Latvian= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93 -!Library\ Manager= - -#: ../../../../../app/src/processing/app/Base.java:2349 -!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 -#, java-format -!Library\ is\ already\ installed\:\ {0}\ version\ {1}= - -#: Preferences.java:106 -!Lithuaninan= - -#: ../../../../../app/src/processing/app/Base.java:132 -!Loading\ configuration...= - -#: ../../../processing/app/Sketch.java:1684 -!Low\ memory\ available,\ stability\ problems\ may\ occur.= - -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - -#: ../../../../../app/src/processing/app/Base.java:1168 -!Manage\ Libraries...= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466 -!Manual\ proxy\ configuration= - -#: Preferences.java:107 -!Marathi= - -#: Base.java:2112 -!Message= - -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= - -#: ../../../processing/app/BaseNoGui.java:455 -!Mode\ not\ supported= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186 -!More= - -#: Preferences.java:449 -!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file= - -#: Editor.java:2156 -!Moving= - -#: ../../../processing/app/BaseNoGui.java:484 -!Multiple\ files\ not\ supported= - -#: ../../../processing/app/debug/Compiler.java:520 -#, java-format -!Multiple\ libraries\ were\ found\ for\ "{0}"= - -#: ../../../processing/app/Base.java:395 -!Must\ specify\ exactly\ one\ sketch\ file= - -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - -#: Sketch.java:282 -!Name\ for\ new\ file\:= - -#: ../../../processing/app/Preferences.java:149 -!Nepali= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601 -!Network= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Network\ ports= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51 -!Network\ upload\ using\ programmer\ not\ supported= - -#: EditorToolbar.java:41 Editor.java:493 -!New= - -#: EditorHeader.java:292 -!New\ Tab= - -#: SerialMonitor.java:112 -!Newline= - -#: EditorHeader.java:340 -!Next\ Tab= - -#: Preferences.java:78 UpdateCheck.java:108 -!No= - -#: ../../../processing/app/debug/Compiler.java:158 -!No\ authorization\ data\ found= - -#: debug/Compiler.java:126 -!No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.= - -#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 -!No\ changes\ necessary\ for\ Auto\ Format.= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ command\ line\ parameters\ found= - -#: ../../../processing/app/debug/Compiler.java:200 -!No\ compiled\ sketch\ found= - -#: Editor.java:373 -!No\ files\ were\ added\ to\ the\ sketch.= - -#: Platform.java:167 -!No\ launcher\ available= - -#: SerialMonitor.java:112 -!No\ line\ ending= - -#: ../../../processing/app/BaseNoGui.java:665 -!No\ parameters= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453 -!No\ proxy= - -#: Base.java:541 -!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.= - -#: Editor.java:1872 -#, java-format -!No\ reference\ available\ for\ "{0}"= - -#: ../../../processing/app/BaseNoGui.java:504 -#: ../../../processing/app/BaseNoGui.java:549 -!No\ sketch= - -#: ../../../processing/app/BaseNoGui.java:428 -!No\ sketchbook= - -#: ../../../processing/app/Sketch.java:204 -!No\ valid\ code\ files\ found= - -#: ../../../processing/app/debug/TargetPackage.java:63 -#, java-format -!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 -!None= - -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - -#: ../../../processing/app/Preferences.java:108 -!Norwegian\ Bokm\u00e5l= - -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - -#: ../../../processing/app/Sketch.java:1656 -!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.= - -#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042 -#: Editor.java:2145 Editor.java:2465 -!OK= - -#: Sketch.java:992 Editor.java:376 -!One\ file\ added\ to\ the\ sketch.= - -#: ../../../processing/app/BaseNoGui.java:455 -!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported= - -#: EditorToolbar.java:41 -!Open= - -#: ../../../../../app/src/processing/app/Editor.java:625 -!Open\ Recent= - -#: Editor.java:2688 -!Open\ URL= - -#: Base.java:636 -!Open\ an\ Arduino\ sketch...= - -#: Base.java:903 Editor.java:501 -Open...=\u958b\u555f... - -#: Editor.java:563 -!Page\ Setup= - -#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44 -!Password\:= - -#: Editor.java:1189 Editor.java:2731 -!Paste= - -#: Preferences.java:109 -!Persian= - -#: ../../../processing/app/Preferences.java:161 -!Persian\ (Iran)= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 -!Please\ confirm\ boards\ deletion= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!Please\ confirm\ library\ deletion= - -#: debug/Compiler.java:408 -!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../processing/app/debug/Compiler.java:529 -!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.= - -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217 -#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262 -!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu= - -#: Preferences.java:110 -!Polish= - -#: ../../../processing/app/Editor.java:718 -!Port= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491 -!Port\ number\:= - -#: ../../../processing/app/Preferences.java:151 -!Portugese= - -#: ../../../processing/app/Preferences.java:127 -!Portuguese\ (Brazil)= - -#: ../../../processing/app/Preferences.java:128 -!Portuguese\ (Portugal)= - -#: Preferences.java:295 Editor.java:583 -!Preferences= - -#: ../../../../../app/src/processing/app/Base.java:297 -!Preparing\ boards...= - -#: FindReplace.java:123 FindReplace.java:128 -!Previous= - -#: EditorHeader.java:326 -!Previous\ Tab= - -#: Editor.java:571 -!Print= - -#: Editor.java:2571 -!Printing\ canceled.= - -#: Editor.java:2547 -!Printing...= - -#: Base.java:1957 -!Problem\ Opening\ Folder= - -#: Base.java:1933 -!Problem\ Opening\ URL= - -#: Base.java:227 -!Problem\ Setting\ the\ Platform= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136 -!Problem\ accessing\ board\ folder\ /www/sd= - -#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132 -!Problem\ accessing\ files\ in\ folder\ = - -#: Base.java:1673 -!Problem\ getting\ data\ folder= - -#: Sketch.java:1467 -#, java-format -!Problem\ moving\ {0}\ to\ the\ build\ folder= - -#: debug/Uploader.java:209 -!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.= - -#: Sketch.java:355 Sketch.java:362 Sketch.java:373 -!Problem\ with\ rename= - -#: ../../../processing/app/I18n.java:86 -!Processor= - -#: Editor.java:704 -!Programmer= - -#: Base.java:783 Editor.java:593 -Quit=\u95dc\u9589 - -#: Editor.java:1138 Editor.java:1140 Editor.java:1390 -!Redo= - -#: Editor.java:1078 -!Reference= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85 -!Remove= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157 -#, java-format -!Removing\ library\:\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203 -!Removing...= - -#: EditorHeader.java:300 -!Rename= - -#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046 -!Replace= - -#: FindReplace.java:122 FindReplace.java:129 -!Replace\ &\ Find= - -#: FindReplace.java:120 FindReplace.java:131 -!Replace\ All= - -#: Sketch.java:1043 -#, java-format -!Replace\ the\ existing\ version\ of\ {0}?= - -#: FindReplace.java:81 -!Replace\ with\:= - -#: Preferences.java:113 -!Romanian= - -#: Preferences.java:114 -!Russian= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529 -#: Editor.java:2064 Editor.java:2468 -!Save= - -#: Editor.java:537 -!Save\ As...= - -#: Editor.java:2317 -!Save\ Canceled.= - -#: Editor.java:2020 -#, java-format -!Save\ changes\ to\ "{0}"?\ \ = - -#: Sketch.java:825 -!Save\ sketch\ folder\ as...= - -#: ../../../../../app/src/processing/app/Preferences.java:425 -!Save\ when\ verifying\ or\ uploading= - -#: Editor.java:2270 Editor.java:2308 -!Saving...= - -#: ../../../processing/app/FindReplace.java:131 -!Search\ all\ Sketch\ Tabs= - -#: Base.java:1909 -!Select\ (or\ create\ new)\ folder\ for\ sketches...= - -#: Editor.java:1198 Editor.java:2739 -!Select\ All= - -#: Base.java:2636 -!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add= - -#: Sketch.java:975 -!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch= - -#: Preferences.java:330 -!Select\ new\ sketchbook\ location= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249 -!Select\ version= - -#: ../../../processing/app/debug/Compiler.java:146 -!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).= - -#: ../../../../../app/src/processing/app/Base.java:374 -!Selected\ board\ is\ not\ available= - -#: ../../../../../app/src/processing/app/Base.java:423 -!Selected\ library\ is\ not\ available= - -#: SerialMonitor.java:93 -!Send= - -#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669 -!Serial\ Monitor= - -#: ../../../../../app/src/processing/app/Editor.java:804 -!Serial\ Plotter= - -#: Serial.java:194 -#, java-format -!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?= - -#: Editor.java:2343 -#, java-format -!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?= - -#: ../../../../../app/src/processing/app/Editor.java:65 -!Serial\ ports= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 -!Settings= - -#: Base.java:1681 -!Settings\ issues= - -#: Editor.java:641 -!Show\ Sketch\ Folder= - -#: ../../../processing/app/EditorStatus.java:468 -!Show\ verbose\ output\ during\ compilation= - -#: Preferences.java:387 -!Show\ verbose\ output\ during\:\ = - -#: Editor.java:607 -!Sketch= - -#: Sketch.java:1754 -!Sketch\ Disappeared= - -#: Base.java:1411 -!Sketch\ Does\ Not\ Exist= - -#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966 -!Sketch\ is\ Read-Only= - -#: Sketch.java:294 -!Sketch\ is\ Untitled= - -#: Sketch.java:720 -!Sketch\ is\ read-only= - -#: Sketch.java:1653 -!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.= - -#: ../../../processing/app/Sketch.java:1639 -#, java-format -!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.= - -#: Editor.java:510 -!Sketchbook= - -#: Base.java:258 -!Sketchbook\ folder\ disappeared= - -#: Preferences.java:315 -!Sketchbook\ location\:= - -#: ../../../processing/app/BaseNoGui.java:428 -!Sketchbook\ path\ not\ defined= - -#: ../../../../../app/src/processing/app/Preferences.java:185 -!Slovak= - -#: ../../../processing/app/Preferences.java:152 -!Slovenian= - -#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.= - -#: Sketch.java:721 -!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.= - -#: Sketch.java:457 -#, java-format -!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.= - -#: Preferences.java:115 -!Spanish= - -#: ../../../../../app/src/processing/app/Base.java:2333 -!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library= - -#: ../../../../../app/src/processing/app/Base.java:466 -!Starting...= - -#: Base.java:540 -!Sunshine= - -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - -#: ../../../processing/app/Preferences.java:153 -!Swedish= - -#: Preferences.java:84 -!System\ Default= - -#: ../../../../../app/src/processing/app/Preferences.java:188 -!Talossan= - -#: Preferences.java:116 -!Tamil= - -#: debug/Compiler.java:414 -!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.= - -#: ../../../processing/app/BaseNoGui.java:484 -!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time= - -#: debug/Compiler.java:426 -!The\ Client\ class\ has\ been\ renamed\ EthernetClient.= - -#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96 -#, java-format -!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?= - -#: debug/Compiler.java:420 -!The\ Server\ class\ has\ been\ renamed\ EthernetServer.= - -#: debug/Compiler.java:432 -!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.= - -#: Editor.java:2147 -#, java-format -!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?= - -#: Base.java:1054 Base.java:2674 -#, java-format -!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)= - -#: Sketch.java:374 -!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)= - -#: Sketch.java:356 -!The\ name\ cannot\ start\ with\ a\ period.= - -#: Base.java:1412 -!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.= - -#: Base.java:1430 -#, java-format -!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}= - -#: Sketch.java:1755 -!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.= - -#: ../../../processing/app/Sketch.java:2028 -!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.= - -#: Base.java:259 -!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 -!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= - -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - -#: Sketch.java:1075 -!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257 -!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?= - -#: ../../../processing/app/EditorStatus.java:467 -!This\ report\ would\ have\ more\ information\ with= - -#: Base.java:535 -!Time\ for\ a\ Break= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94 -#, java-format -!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.= - -#: Editor.java:663 -!Tools= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97 -!Topic= - -#: Editor.java:1070 -!Troubleshooting= - -#: ../../../processing/app/Preferences.java:117 -!Turkish= - -#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109 -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105 -!Type= - -#: ../../../processing/app/Editor.java:2507 -!Type\ board\ password\ to\ access\ its\ console= - -#: ../../../processing/app/Sketch.java:1673 -!Type\ board\ password\ to\ upload\ a\ new\ sketch= - -#: ../../../processing/app/Preferences.java:118 -!Ukrainian= - -#: ../../../processing/app/Editor.java:2524 -#: ../../../processing/app/NetworkMonitor.java:145 -!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?= - -#: ../../../processing/app/NetworkMonitor.java:130 -!Unable\ to\ connect\:\ retrying= - -#: ../../../processing/app/Editor.java:2526 -!Unable\ to\ connect\:\ wrong\ password?= - -#: ../../../processing/app/Editor.java:2512 -!Unable\ to\ open\ serial\ monitor= - -#: ../../../../../app/src/processing/app/Editor.java:2709 -!Unable\ to\ open\ serial\ plotter= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 -!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= - -#: Sketch.java:1432 -#, java-format -!Uncaught\ exception\ type\:\ {0}= - -#: Editor.java:1133 Editor.java:1355 -!Undo= - -#: 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= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27 -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27 -!Updatable= - -#: UpdateCheck.java:111 -!Update= - -#: Preferences.java:428 -!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)= - -#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167 -!Updating\ list\ of\ installed\ libraries= - -#: EditorToolbar.java:41 Editor.java:545 -!Upload= - -#: EditorToolbar.java:46 Editor.java:553 -!Upload\ Using\ Programmer= - -#: Editor.java:2403 Editor.java:2439 -!Upload\ canceled.= - -#: ../../../processing/app/Sketch.java:1678 -!Upload\ cancelled= - -#: Editor.java:2378 -!Uploading\ to\ I/O\ Board...= - -#: Sketch.java:1622 -!Uploading...= - -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - -#: Editor.java:1269 -!Use\ Selection\ For\ Find= - -#: Preferences.java:409 -!Use\ external\ editor= - -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493 -#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499 -!Username\:= - -#: ../../../processing/app/debug/Compiler.java:410 -#, java-format -!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}= - -#: ../../../processing/app/debug/Compiler.java:94 -#, java-format -!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}= - -#: ../../../processing/app/debug/Compiler.java:320 -#, java-format -!Using\ previously\ compiled\ file\:\ {0}= - -#: EditorToolbar.java:41 EditorToolbar.java:46 -!Verify= - -#: Preferences.java:400 -!Verify\ code\ after\ upload= - -#: ../../../../../app/src/processing/app/Editor.java:725 -!Verify/Compile= - -#: ../../../../../app/src/processing/app/Base.java:451 -!Verifying\ and\ uploading...= - -#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71 -!Verifying\ archive\ integrity...= - -#: ../../../../../app/src/processing/app/Base.java:454 -!Verifying...= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328 -#, java-format -!Version\ {0}= - -#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326 -!Version\ unknown= - -#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97 -#, java-format -!Version\ {0}= - -#: ../../../processing/app/Preferences.java:154 -!Vietnamese= - -#: Editor.java:1105 -!Visit\ Arduino.cc= - -#: ../../../processing/app/debug/Compiler.java:115 -#, java-format -!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= - -#: Base.java:2128 -!Warning= - -#: ../../../processing/app/debug/Compiler.java:1295 -!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author= - -#: ../../../cc/arduino/utils/ArchiveExtractor.java:197 -#, java-format -!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}= - -#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133 -!Warning\:\ forced\ trusting\ untrusted\ contributions= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217 -#, java-format -!Warning\:\ forced\ untrusted\ script\ execution\ ({0})= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212 -#, java-format -!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:158 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../processing/app/debug/LegacyTargetPlatform.java:170 -#, java-format -!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= - -#: ../../../../../app/src/processing/app/Preferences.java:190 -!Western\ Frisian= - -#: debug/Compiler.java:444 -!Wire.receive()\ has\ been\ renamed\ Wire.read().= - -#: debug/Compiler.java:438 -!Wire.send()\ has\ been\ renamed\ Wire.write().= - -#: FindReplace.java:105 -!Wrap\ Around= - -#: debug/Uploader.java:213 -!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?= - -#: Preferences.java:77 UpdateCheck.java:108 -!Yes= - -#: Sketch.java:1074 -!You\ can't\ fool\ me= - -#: Sketch.java:411 -!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:2312 -!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook= - -#: Sketch.java:421 -!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:861 -!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.= - -#: Sketch.java:883 -!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.= - -#: Base.java:1888 -!You\ forgot\ your\ sketchbook= - -#: ../../../processing/app/AbstractMonitor.java:92 -!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?= - -#: Base.java:536 -!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?= - -#: ../../../processing/app/BaseNoGui.java:768 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: ../../../processing/app/BaseNoGui.java:771 -!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.= - -#: Base.java:2638 -!ZIP\ files\ or\ folders= - -#: Base.java:2661 -!Zip\ doesn't\ contain\ a\ library= - -#: Sketch.java:364 -#, java-format -!".{0}"\ is\ not\ a\ valid\ extension.= - -#: SketchCode.java:258 -#, java-format -!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.= - -#: debug/Compiler.java:409 -!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n= - -#: debug/Compiler.java:415 -!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n= - -#: debug/Compiler.java:427 -!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n= - -#: debug/Compiler.java:421 -!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n= - -#: debug/Compiler.java:433 -!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n= - -#: debug/Compiler.java:445 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: debug/Compiler.java:439 -!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n= - -#: SerialMonitor.java:130 SerialMonitor.java:133 -!baud= - -#: Preferences.java:389 -!compilation\ = - -#: ../../../processing/app/NetworkMonitor.java:111 -!connected\!= - -#: Sketch.java:540 -!createNewFile()\ returned\ false= - -#: ../../../processing/app/EditorStatus.java:469 -!enabled\ in\ File\ >\ Preferences.= - -#: ../../../../../app/src/processing/app/Editor.java:1352 -!http\://www.arduino.cc/= - -#: UpdateCheck.java:118 -!http\://www.arduino.cc/en/Main/Software= - -#: UpdateCheck.java:53 -!http\://www.arduino.cc/latest.txt= - -#: Preferences.java:625 -#, java-format -!ignoring\ invalid\ font\ size\ {0}= - -#: Editor.java:936 Editor.java:943 -!name\ is\ null= - -#: Editor.java:932 -!serialMenu\ is\ null= - -#: debug/Uploader.java:195 -#, java-format -!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected= - -#: ../../../processing/app/Base.java:389 -#, java-format -!unknown\ option\:\ {0}= - -#: Preferences.java:391 -!upload= - -#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324 -#, java-format -!version\ {0}= - -#: ../../../../../app/src/processing/app/Editor.java:2243 -#, java-format -!{0}\ -\ {1}\ |\ Arduino\ {2}= - -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39 -#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43 -#, java-format -!{0}\ file\ signature\ verification\ failed= - -#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310 -#, java-format -!{0}\ file\ signature\ verification\ failed.\ File\ ignored.= - -#: Editor.java:380 -#, java-format -!{0}\ files\ added\ to\ the\ sketch.= - -#: ../../../../../app/src/processing/app/Base.java:1201 -#, java-format -!{0}\ libraries= - -#: debug/Compiler.java:365 -#, java-format -!{0}\ returned\ {1}= - -#: Editor.java:2213 -#, java-format -!{0}\ |\ Arduino\ {1}= - -#: ../../../processing/app/Base.java:519 -#, java-format -!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"= - -#: ../../../processing/app/Base.java:476 -#, java-format -!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"= - -#: ../../../processing/app/Base.java:509 -#, java-format -!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"= - -#: ../../../processing/app/Base.java:507 -#, java-format -!{0}\:\ Invalid\ option\ for\ board\ "{1}"= - -#: ../../../processing/app/Base.java:502 -#, java-format -!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"= - -#: ../../../processing/app/Base.java:486 -#, java-format -!{0}\:\ Unknown\ architecture= - -#: ../../../processing/app/Base.java:491 -#, java-format -!{0}\:\ Unknown\ board= - -#: ../../../processing/app/Base.java:481 -#, java-format -!{0}\:\ Unknown\ package= diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po index c3ec94bf3c4..84b11f3d0c7 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # james58899 , 2014 # Jordan_Fung , 2014 @@ -15,7 +16,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Chinese (Taiwan) (Big5) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW.Big5/)\n" "MIME-Version: 1.0\n" @@ -46,10 +47,20 @@ msgstr "'Keyboard'只被Arduino Leonardo所支援" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse'只被Arduino Leonardo所支援" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(只能在未執行Arduino時進行編輯)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -311,10 +322,6 @@ msgstr "錯誤行號:{0}" msgid "Bad file selected" msgstr "選擇了不好的檔案" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "巴斯克語" @@ -323,15 +330,16 @@ msgstr "巴斯克語" msgid "Belarusian" msgstr "白俄羅斯語" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "板子" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -372,14 +380,14 @@ msgstr "NL & CR" msgid "Browse" msgstr "瀏覽" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "建置資料夾消失了、或無法被寫入" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "建置選項已變更,重建所有" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "保加利亞語" @@ -443,10 +451,6 @@ msgstr "啟動時檢查有無更新" msgid "Chinese (China)" msgstr "中文(中國)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "中文(香港)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "中文(台灣)" @@ -455,14 +459,6 @@ msgstr "中文(台灣)" msgid "Chinese (Taiwan) (Big5)" msgstr "中文(台灣)(Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "簡體中文" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "正體中文" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -582,10 +578,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "無法讀取預設設定。\n你必須重新安裝Arduino。" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -613,10 +605,6 @@ msgstr "無法重新命名草稿碼。(2)" msgid "Could not replace {0}" msgstr "無法取代{0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "無法寫入建置的偏好設定檔案" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "無法封存草稿碼" @@ -644,18 +632,10 @@ msgstr "克羅地亞語" msgid "Cut" msgstr "剪下" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "捷克語" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "丹麥語" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -927,6 +907,18 @@ msgstr "愛沙尼亞語(愛沙尼亞)" msgid "Examples" msgstr "範例" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1155,6 +1147,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "在{0}: {1}裡找到無效的程式庫" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "意大利語" @@ -1179,6 +1176,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1192,12 +1193,13 @@ msgstr "立陶宛語" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1216,8 +1218,9 @@ msgstr "馬拉地語" msgid "Message" msgstr "訊息" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" msgstr "" #: ../../../processing/app/BaseNoGui.java:455 @@ -1249,10 +1252,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "" - #: Sketch.java:282 msgid "Name for new file:" msgstr "新檔案的名字:" @@ -1297,10 +1296,6 @@ msgstr "否" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "自動格式化並不需要做出更動" @@ -1364,18 +1359,10 @@ msgstr "" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "巴克摩挪威語" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1435,6 +1422,11 @@ msgstr "波斯語" msgid "Persian (Iran)" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1532,11 +1524,6 @@ msgstr "" msgid "Problem getting data folder" msgstr "取得資料目錄時發生問題" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "搬移{0}到建置資料夾時發生錯誤" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1555,10 +1542,19 @@ msgstr "處理器" msgid "Programmer" msgstr "燒錄器" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "離開" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "重做" @@ -1610,6 +1606,16 @@ msgstr "置換為:" msgid "Romanian" msgstr "羅馬尼亞語" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "俄語" @@ -1715,6 +1721,11 @@ msgstr "沒找到序列埠{0}。\n以另一個序列埠再試著上傳嗎?" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1830,10 +1841,6 @@ msgstr "" msgid "Sunshine" msgstr "陽光" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "" @@ -1950,12 +1957,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2028,6 +2029,11 @@ msgstr "連接不成功: 正在重試" msgid "Unable to connect: wrong password?" msgstr "無法連接; 錯誤的密碼?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "無法開啟序列監視器" @@ -2041,15 +2047,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Uncaught exception type: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "復原" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2098,10 +2109,6 @@ msgstr "上傳到板子中..." msgid "Uploading..." msgstr "上傳中..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "以選取字串進行尋找" @@ -2176,6 +2183,16 @@ msgstr "" msgid "Visit Arduino.cc" msgstr "拜訪Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2219,6 +2236,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2473,6 +2496,16 @@ msgstr "{0}支檔案被加入到草稿碼中。" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties index 085298888c7..12abe3fe178 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.Big5.properties @@ -6,11 +6,12 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # james58899 , 2014 # Jordan_Fung , 2014 # yehnan , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (Big5) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW.Big5/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW.Big5\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (Big5) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW.Big5/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW.Big5\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\uff08\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff09 @@ -29,9 +30,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u672a\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -215,22 +222,20 @@ Bad\ error\ line\:\ {0}=\u932f\u8aa4\u884c\u865f\uff1a{0} #: Editor.java:2136 Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u597d\u7684\u6a94\u6848 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u5df4\u65af\u514b\u8a9e #: ../../../processing/app/Preferences.java:139 Belarusian=\u767d\u4fc4\u7f85\u65af\u8a9e -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u677f\u5b50 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u677f\u5b50{0}\:{1}\:{2}\u4e26\u6c92\u6709\u5b9a\u7fa9''build.board"\u504f\u597d\u8a2d\u5b9a\u503c\uff0c\u81ea\u52d5\u8a2d\u70ba\uff1a{3} @@ -260,12 +265,12 @@ Both\ NL\ &\ CR=NL & CR #: Preferences.java:81 Browse=\u700f\u89bd -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3001\u6216\u7121\u6cd5\u88ab\u5beb\u5165 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u5efa\u7f6e\u9078\u9805\u5df2\u8b8a\u66f4\uff0c\u91cd\u5efa\u6240\u6709 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e @@ -314,21 +319,12 @@ Check\ for\ updates\ on\ startup=\u555f\u52d5\u6642\u6aa2\u67e5\u6709\u7121\u66f #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u4e2d\u6587(\u4e2d\u570b) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u4e2d\u6587(\u9999\u6e2f) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u4e2d\u6587(\u53f0\u7063) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u4e2d\u6587(\u53f0\u7063)(Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u7c21\u9ad4\u4e2d\u6587 - -#: Preferences.java:89 -Chinese\ Traditional=\u6b63\u9ad4\u4e2d\u6587 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -413,9 +409,6 @@ Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\u3002\n\u4f60\u5fc5\u9808\u91cd\u65b0\u5b89\u88ddArduino\u3002 -#: ../../../processing/app/Sketch.java:1525 -!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all= - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u7121\u6cd5\u79fb\u9664{0}\u7684\u820a\u7248\u672c @@ -437,9 +430,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349 #, java-format Could\ not\ replace\ {0}=\u7121\u6cd5\u53d6\u4ee3{0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u7121\u6cd5\u5beb\u5165\u5efa\u7f6e\u7684\u504f\u597d\u8a2d\u5b9a\u6a94\u6848 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u7121\u6cd5\u5c01\u5b58\u8349\u7a3f\u78bc @@ -458,15 +448,9 @@ Croatian=\u514b\u7f85\u5730\u4e9e\u8a9e #: Editor.java:1149 Editor.java:2699 Cut=\u526a\u4e0b -#: ../../../processing/app/Preferences.java:83 -Czech=\u6377\u514b\u8a9e - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u4e39\u9ea5\u8a9e - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -670,6 +654,15 @@ Estonian\ (Estonia)=\u611b\u6c99\u5c3c\u4e9e\u8a9e(\u611b\u6c99\u5c3c\u4e9e) #: Editor.java:516 Examples=\u7bc4\u4f8b +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -835,6 +828,10 @@ Indonesian=\u5370\u5c3c\u8a9e #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u5728{0}\: {1}\u88e1\u627e\u5230\u7121\u6548\u7684\u7a0b\u5f0f\u5eab +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u610f\u5927\u5229\u8a9e @@ -853,6 +850,9 @@ Latvian=\u62c9\u812b\u7dad\u4e9e\u8a9e #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -863,12 +863,13 @@ Lithuaninan=\u7acb\u9676\u5b9b\u8a9e #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -881,8 +882,9 @@ Marathi=\u99ac\u62c9\u5730\u8a9e #: Base.java:2112 Message=\u8a0a\u606f -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -!Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -906,9 +908,6 @@ Moving=\u79fb\u52d5\u4e2d #: ../../../processing/app/Base.java:395 !Must\ specify\ exactly\ one\ sketch\ file= -#: ../../../processing/app/Preferences.java:158 -!N'Ko= - #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u7684\u540d\u5b57\uff1a @@ -942,9 +941,6 @@ No=\u5426 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6c92\u6709\u9078\u64c7\u677f\u5b50\uff1b\u8acb\u5f9e\u300c\u5de5\u5177>\u677f\u5b50\u300d\u9078\u55ae\u88e1\u9078\u64c7\u677f\u5b50 - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u81ea\u52d5\u683c\u5f0f\u5316\u4e26\u4e0d\u9700\u8981\u505a\u51fa\u66f4\u52d5 @@ -993,15 +989,9 @@ No\ reference\ available\ for\ "{0}"=\u95dc\u65bc"{0}"\u4e26\u7121\u53c3\u8003\u #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u5df4\u514b\u6469\u632a\u5a01\u8a9e -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u8a18\u61b6\u9ad4\u4e0d\u8db3\uff1b\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size\u5f97\u77e5\u5982\u4f55\u964d\u4f4e\u7528\u91cf\u7684\u6280\u5de7\uff1f @@ -1045,6 +1035,10 @@ Persian=\u6ce2\u65af\u8a9e #: ../../../processing/app/Preferences.java:161 !Persian\ (Iran)= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1118,10 +1112,6 @@ Problem\ Setting\ the\ Platform=\u8a2d\u5b9a\u5e73\u53f0\u6642\u767c\u751f\u554f #: Base.java:1673 Problem\ getting\ data\ folder=\u53d6\u5f97\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u554f\u984c -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u642c\u79fb{0}\u5230\u5efa\u7f6e\u8cc7\u6599\u593e\u6642\u767c\u751f\u932f\u8aa4 - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0a\u50b3\u5230\u677f\u5b50\u6642\u767c\u751f\u554f\u984c\u3002\u53ef\u884c\u5efa\u8b70\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload\u3002 @@ -1134,9 +1124,16 @@ Processor=\u8655\u7406\u5668 #: Editor.java:704 Programmer=\u71d2\u9304\u5668 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u96e2\u958b +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u91cd\u505a @@ -1176,6 +1173,14 @@ Replace\ with\:=\u7f6e\u63db\u70ba\: #: Preferences.java:113 Romanian=\u7f85\u99ac\u5c3c\u4e9e\u8a9e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u4fc4\u8a9e @@ -1253,6 +1258,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1333,9 +1342,6 @@ Spanish=\u897f\u73ed\u7259\u8a9e #: Base.java:540 Sunshine=\u967d\u5149 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 !Swedish= @@ -1400,9 +1406,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u9019\u652f\u6a94\u6848\u5df2\u7d93\u8907\u88fd\u5230\n\u4f60\u60f3\u8981\u52a0\u5165\u7684\u4f4d\u7f6e\u5167\uff0c\n\u6211\u7d55\u5c0d\u4e0d\u6703\u4e0d\u60f3\u8981\u7121\u6240\u4e8b\u4e8b\u3002 @@ -1454,6 +1457,10 @@ Unable\ to\ connect\:\ retrying=\u9023\u63a5\u4e0d\u6210\u529f\: \u6b63\u5728\u9 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u7121\u6cd5\u9023\u63a5; \u932f\u8aa4\u7684\u5bc6\u78bc? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u8996\u5668 @@ -1464,13 +1471,17 @@ Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u89 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u5fa9\u539f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u5e73\u53f0\u672a\u6307\u5b9a\uff0c\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002\n\u82e5\u60f3\u555f\u7528\u521d\u59cb\u7db2\u5740\u6216\u8cc7\u6599\u593e\uff0c\n\u8acb\u5728preferences.txt\u88e1\u52a0\u5165\u4e00\u884c"launcher\=/path/to/app" @@ -1505,9 +1516,6 @@ Uploading\ to\ I/O\ Board...=\u4e0a\u50b3\u5230\u677f\u5b50\u4e2d... #: Sketch.java:1622 Uploading...=\u4e0a\u50b3\u4e2d... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=\u4ee5\u9078\u53d6\u5b57\u4e32\u9032\u884c\u5c0b\u627e @@ -1565,6 +1573,14 @@ Verify\ code\ after\ upload=\u4e0a\u50b3\u5f8c\u9a57\u8b49\u7a0b\u5f0f\u78bc #: Editor.java:1105 Visit\ Arduino.cc=\u62dc\u8a2aArduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1594,6 +1610,9 @@ Warning=\u8b66\u544a #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1754,6 +1773,14 @@ upload=\u4e0a\u50b3 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0}\u56de\u50b3{1} diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po index cba8a18c58c..0b506bfa62c 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.po +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.po @@ -6,6 +6,7 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # Hank Lu , 2013 # james58899 , 2014 @@ -17,7 +18,7 @@ msgstr "" "Project-Id-Version: Arduino IDE 1.5\n" "Report-Msgid-Bugs-To: \n" "POT-Creation-Date: 2012-03-29 10:24-0400\n" -"PO-Revision-Date: 2015-08-24 14:35+0000\n" +"PO-Revision-Date: 2015-09-23 13:27+0000\n" "Last-Translator: Federico Fissore \n" "Language-Team: Chinese (Taiwan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW/)\n" "MIME-Version: 1.0\n" @@ -48,10 +49,20 @@ msgstr "'Keyboard'只被Arduino Leonardo所支援" msgid "'Mouse' only supported on the Arduino Leonardo" msgstr "'Mouse'只被Arduino Leonardo所支援" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +msgid "" +"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more " +"information" +msgstr "" + #: Preferences.java:478 msgid "(edit only when Arduino is not running)" msgstr "(只能在未執行Arduino時進行編輯)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +msgid "(legacy)" +msgstr "" + #: ../../../processing/app/helpers/CommandlineParser.java:149 msgid "--curdir no longer supported" msgstr "" @@ -313,10 +324,6 @@ msgstr "錯誤行號:{0}" msgid "Bad file selected" msgstr "選擇了不好的檔案" -#: ../../../processing/app/debug/Compiler.java:89 -msgid "Bad sketch primary file or bad sketch directory structure" -msgstr "" - #: ../../../processing/app/Preferences.java:149 msgid "Basque" msgstr "巴斯克語" @@ -325,15 +332,16 @@ msgstr "巴斯克語" msgid "Belarusian" msgstr "白俄羅斯語" -#: ../../../../../app/src/processing/app/Preferences.java:165 -msgid "Bengali (India)" -msgstr "" - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 msgid "Board" msgstr "板子" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +msgid "Board {0} (platform {1}, package {2}) is unknown" +msgstr "" + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format msgid "" @@ -374,14 +382,14 @@ msgstr "NL & CR" msgid "Browse" msgstr "瀏覽" -#: Sketch.java:1392 Sketch.java:1423 -msgid "Build folder disappeared or could not be written" -msgstr "建置資料夾消失了、或無法被寫入" - #: ../../../processing/app/Sketch.java:1530 msgid "Build options changed, rebuilding all" msgstr "建置選項已變更,重建所有" +#: ../../../../../app/src/processing/app/Base.java:1210 +msgid "Built-in Examples" +msgstr "" + #: ../../../processing/app/Preferences.java:80 msgid "Bulgarian" msgstr "保加利亞語" @@ -445,10 +453,6 @@ msgstr "啟動時檢查有無更新" msgid "Chinese (China)" msgstr "中文(中國)" -#: ../../../processing/app/Preferences.java:142 -msgid "Chinese (Hong Kong)" -msgstr "中文(香港)" - #: ../../../processing/app/Preferences.java:144 msgid "Chinese (Taiwan)" msgstr "中文(台灣)" @@ -457,14 +461,6 @@ msgstr "中文(台灣)" msgid "Chinese (Taiwan) (Big5)" msgstr "中文(台灣)(Big5)" -#: Preferences.java:88 -msgid "Chinese Simplified" -msgstr "簡體中文" - -#: Preferences.java:89 -msgid "Chinese Traditional" -msgstr "正體中文" - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 msgid "Click for a list of unofficial boards support URLs" msgstr "" @@ -584,10 +580,6 @@ msgid "" "You'll need to reinstall Arduino." msgstr "無法讀取預設設定。\n你必須重新安裝Arduino。" -#: ../../../processing/app/Sketch.java:1525 -msgid "Could not read prevous build preferences file, rebuilding all" -msgstr "無法讀取以前的偏好設置文件,重建所有" - #: Base.java:2482 #, java-format msgid "Could not remove old version of {0}" @@ -615,10 +607,6 @@ msgstr "無法重新命名草稿碼。(2)" msgid "Could not replace {0}" msgstr "無法取代{0}" -#: ../../../processing/app/Sketch.java:1579 -msgid "Could not write build preferences file" -msgstr "無法寫入建置的偏好設定檔案" - #: tools/Archiver.java:74 msgid "Couldn't archive sketch" msgstr "無法封存草稿碼" @@ -646,18 +634,10 @@ msgstr "克羅地亞語" msgid "Cut" msgstr "剪下" -#: ../../../processing/app/Preferences.java:83 -msgid "Czech" -msgstr "捷克語" - #: ../../../../../app/src/processing/app/Preferences.java:119 msgid "Czech (Czech Republic)" msgstr "" -#: Preferences.java:90 -msgid "Danish" -msgstr "丹麥語" - #: ../../../../../app/src/processing/app/Preferences.java:120 msgid "Danish (Denmark)" msgstr "" @@ -929,6 +909,18 @@ msgstr "愛沙尼亞語(愛沙尼亞)" msgid "Examples" msgstr "範例" +#: ../../../../../app/src/processing/app/Base.java:1244 +msgid "Examples from Custom Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Base.java:1222 +msgid "Examples from Libraries" +msgstr "" + +#: ../../../../../app/src/processing/app/Editor.java:753 +msgid "Export canceled, changes must first be saved." +msgstr "" + #: ../../../../../app/src/processing/app/Editor.java:750 msgid "Export compiled Binary" msgstr "" @@ -1157,6 +1149,11 @@ msgstr "" msgid "Invalid library found in {0}: {1}" msgstr "在{0}: {1}裡找到無效的程式庫" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +msgid "Invalid quoting: no closing [{0}] char found." +msgstr "" + #: Preferences.java:102 msgid "Italian" msgstr "意大利語" @@ -1181,6 +1178,10 @@ msgstr "" msgid "Library added to your libraries. Check \"Include library\" menu" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +msgid "Library can't use both 'src' and 'utility' folders." +msgstr "" + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format msgid "Library is already installed: {0} version {1}" @@ -1194,12 +1195,13 @@ msgstr "立陶宛語" msgid "Loading configuration..." msgstr "" -#: ../../../processing/app/Sketch.java:1684 -msgid "Low memory available, stability problems may occur." +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +msgid "Looking for recipes like {0}*{1}" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:180 -msgid "Malay (Malaysia)" +#: ../../../processing/app/Sketch.java:1684 +msgid "Low memory available, stability problems may occur." msgstr "" #: ../../../../../app/src/processing/app/Base.java:1168 @@ -1218,9 +1220,10 @@ msgstr "馬拉地語" msgid "Message" msgstr "訊息" -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -msgid "Missing the */ from the end of a /* comment */" -msgstr "註釋結尾缺少*/ " +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +msgid "Missing '{0}' from library in {1}" +msgstr "" #: ../../../processing/app/BaseNoGui.java:455 msgid "Mode not supported" @@ -1251,10 +1254,6 @@ msgstr "" msgid "Must specify exactly one sketch file" msgstr "必須指定一個草稿碼文件" -#: ../../../processing/app/Preferences.java:158 -msgid "N'Ko" -msgstr "N'Ko" - #: Sketch.java:282 msgid "Name for new file:" msgstr "新檔案的名字:" @@ -1299,10 +1298,6 @@ msgstr "否" msgid "No authorization data found" msgstr "" -#: debug/Compiler.java:126 -msgid "No board selected; please choose a board from the Tools > Board menu." -msgstr "沒有選擇板子;請從「工具>板子」選單裡選擇板子" - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 msgid "No changes necessary for Auto Format." msgstr "自動格式化並不需要做出更動" @@ -1366,18 +1361,10 @@ msgstr "在文件夾中找不到任何有效的硬體定義{0}。" msgid "None" msgstr "" -#: ../../../../../app/src/processing/app/Preferences.java:181 -msgid "Norwegian" -msgstr "" - #: ../../../processing/app/Preferences.java:108 msgid "Norwegian Bokmål" msgstr "巴克摩挪威語" -#: ../../../../../app/src/processing/app/Preferences.java:182 -msgid "Norwegian Nynorsk" -msgstr "" - #: ../../../processing/app/Sketch.java:1656 msgid "" "Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size " @@ -1437,6 +1424,11 @@ msgstr "波斯語" msgid "Persian (Iran)" msgstr "波斯語(伊朗)" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +msgid "Platform {0} (package {1}) is unknown" +msgstr "" + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 msgid "Please confirm boards deletion" msgstr "" @@ -1534,11 +1526,6 @@ msgstr "存取資料夾中的文件時發生問題" msgid "Problem getting data folder" msgstr "取得資料目錄時發生問題" -#: Sketch.java:1467 -#, java-format -msgid "Problem moving {0} to the build folder" -msgstr "搬移{0}到建置資料夾時發生錯誤" - #: debug/Uploader.java:209 msgid "" "Problem uploading to board. See " @@ -1557,10 +1544,19 @@ msgstr "處理器" msgid "Programmer" msgstr "燒錄器" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +msgid "Progress {0}" +msgstr "" + #: Base.java:783 Editor.java:593 msgid "Quit" msgstr "離開" +#: ../../../../../app/src/processing/app/Base.java:1233 +msgid "RETIRED" +msgstr "" + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 msgid "Redo" msgstr "重做" @@ -1612,6 +1608,16 @@ msgstr "置換為:" msgid "Romanian" msgstr "羅馬尼亞語" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +msgid "Running recipe: {0}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +msgid "Running: {0}" +msgstr "" + #: Preferences.java:114 msgid "Russian" msgstr "俄語" @@ -1717,6 +1723,11 @@ msgstr "沒找到序列埠{0}。\n以另一個序列埠再試著上傳嗎?" msgid "Serial ports" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +msgid "Setting build path to {0}" +msgstr "" + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 msgid "Settings" msgstr "" @@ -1832,10 +1843,6 @@ msgstr "" msgid "Sunshine" msgstr "陽光" -#: ../../../../../app/src/processing/app/Preferences.java:187 -msgid "Swahili" -msgstr "" - #: ../../../processing/app/Preferences.java:153 msgid "Swedish" msgstr "瑞典語" @@ -1952,12 +1959,6 @@ msgid "" "Please choose a different folder for your sketchbook." msgstr "" -#: ../../../processing/app/debug/Compiler.java:201 -msgid "" -"Third-party platform.txt does not define compiler.path. Please report this " -"to the third-party hardware maintainer." -msgstr "" - #: Sketch.java:1075 msgid "" "This file has already been copied to the\n" @@ -2030,6 +2031,11 @@ msgstr "連接不成功: 正在重試" msgid "Unable to connect: wrong password?" msgstr "無法連接; 錯誤的密碼?" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +msgid "Unable to find {0} in {1}" +msgstr "" + #: ../../../processing/app/Editor.java:2512 msgid "Unable to open serial monitor" msgstr "無法開啟序列監視器" @@ -2043,15 +2049,20 @@ msgstr "" msgid "Unable to reach Arduino.cc due to possible network issues." msgstr "" -#: Sketch.java:1432 -#, java-format -msgid "Uncaught exception type: {0}" -msgstr "Uncaught exception type: {0}" - #: Editor.java:1133 Editor.java:1355 msgid "Undo" msgstr "復原" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +msgid "Unhandled type {0} in context key {1}" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +msgid "Unknown sketch file extension: {0}" +msgstr "" + #: Platform.java:168 msgid "" "Unspecified platform, no launcher available.\n" @@ -2100,10 +2111,6 @@ msgstr "上傳到板子中..." msgid "Uploading..." msgstr "上傳中..." -#: ../../../../../app/src/processing/app/Preferences.java:189 -msgid "Urdu (Pakistan)" -msgstr "" - #: Editor.java:1269 msgid "Use Selection For Find" msgstr "以選取字串進行尋找" @@ -2178,6 +2185,16 @@ msgstr "越南語" msgid "Visit Arduino.cc" msgstr "拜訪Arduino.cc" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +msgid "WARNING: Spurious {0} folder in '{1}' library" +msgstr "" + #: ../../../processing/app/debug/Compiler.java:115 #, java-format msgid "" @@ -2221,6 +2238,12 @@ msgid "" " converted to {2}. Consider upgrading this core." msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +msgid "" +"Warning: platform.txt from core '{0}' misses property '{1}', using default " +"value '{2}'. Consider upgrading this core." +msgstr "" + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format msgid "" @@ -2475,6 +2498,16 @@ msgstr "{0}支檔案被加入到草稿碼中。" msgid "{0} libraries" msgstr "" +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +msgid "{0} must be a folder" +msgstr "" + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +msgid "{0} pattern is missing" +msgstr "" + #: debug/Compiler.java:365 #, java-format msgid "{0} returned {1}" diff --git a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties index ec287a9c105..98866b3585f 100644 --- a/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties +++ b/arduino-core/src/processing/app/i18n/Resources_zh_TW.properties @@ -6,13 +6,14 @@ # Translators: # Translators: # Translators: +# Translators: # Ethan , 2014 # Hank Lu , 2013 # james58899 , 2014 # james58899 , 2014 # Jordan_Fung , 2014 # yehnan , 2013 -!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-08-24 14\:35+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW\nPlural-Forms\: nplurals\=1; plural\=0;\n +!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-23 13\:27+0000\nLast-Translator\: Federico Fissore \nLanguage-Team\: Chinese (Taiwan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/zh_TW/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: zh_TW\nPlural-Forms\: nplurals\=1; plural\=0;\n #: Preferences.java:358 Preferences.java:374 \ \ (requires\ restart\ of\ Arduino)=\uff08\u9700\u8981\u91cd\u65b0\u555f\u52d5Arduino\uff09 @@ -31,9 +32,15 @@ #: debug/Compiler.java:450 'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'\u53ea\u88abArduino Leonardo\u6240\u652f\u63f4 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61 +!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information= + #: Preferences.java:478 (edit\ only\ when\ Arduino\ is\ not\ running)=\uff08\u53ea\u80fd\u5728\u672a\u57f7\u884cArduino\u6642\u9032\u884c\u7de8\u8f2f\uff09 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67 +!(legacy)= + #: ../../../processing/app/helpers/CommandlineParser.java:149 !--curdir\ no\ longer\ supported= @@ -217,22 +224,20 @@ Bad\ error\ line\:\ {0}=\u932f\u8aa4\u884c\u865f\uff1a{0} #: Editor.java:2136 Bad\ file\ selected=\u9078\u64c7\u4e86\u4e0d\u597d\u7684\u6a94\u6848 -#: ../../../processing/app/debug/Compiler.java:89 -!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure= - #: ../../../processing/app/Preferences.java:149 Basque=\u5df4\u65af\u514b\u8a9e #: ../../../processing/app/Preferences.java:139 Belarusian=\u767d\u4fc4\u7f85\u65af\u8a9e -#: ../../../../../app/src/processing/app/Preferences.java:165 -!Bengali\ (India)= - #: ../../../processing/app/Base.java:1433 #: ../../../processing/app/Editor.java:707 Board=\u677f\u5b50 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62 +#, java-format +!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown= + #: ../../../processing/app/debug/TargetBoard.java:42 #, java-format Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u677f\u5b50{0}\:{1}\:{2}\u4e26\u6c92\u6709\u5b9a\u7fa9''build.board"\u504f\u597d\u8a2d\u5b9a\u503c\uff0c\u81ea\u52d5\u8a2d\u70ba\uff1a{3} @@ -262,12 +267,12 @@ Both\ NL\ &\ CR=NL & CR #: Preferences.java:81 Browse=\u700f\u89bd -#: Sketch.java:1392 Sketch.java:1423 -Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u5efa\u7f6e\u8cc7\u6599\u593e\u6d88\u5931\u4e86\u3001\u6216\u7121\u6cd5\u88ab\u5beb\u5165 - #: ../../../processing/app/Sketch.java:1530 Build\ options\ changed,\ rebuilding\ all=\u5efa\u7f6e\u9078\u9805\u5df2\u8b8a\u66f4\uff0c\u91cd\u5efa\u6240\u6709 +#: ../../../../../app/src/processing/app/Base.java:1210 +!Built-in\ Examples= + #: ../../../processing/app/Preferences.java:80 Bulgarian=\u4fdd\u52a0\u5229\u4e9e\u8a9e @@ -316,21 +321,12 @@ Check\ for\ updates\ on\ startup=\u555f\u52d5\u6642\u6aa2\u67e5\u6709\u7121\u66f #: ../../../processing/app/Preferences.java:142 Chinese\ (China)=\u4e2d\u6587(\u4e2d\u570b) -#: ../../../processing/app/Preferences.java:142 -Chinese\ (Hong\ Kong)=\u4e2d\u6587(\u9999\u6e2f) - #: ../../../processing/app/Preferences.java:144 Chinese\ (Taiwan)=\u4e2d\u6587(\u53f0\u7063) #: ../../../processing/app/Preferences.java:143 Chinese\ (Taiwan)\ (Big5)=\u4e2d\u6587(\u53f0\u7063)(Big5) -#: Preferences.java:88 -Chinese\ Simplified=\u7c21\u9ad4\u4e2d\u6587 - -#: Preferences.java:89 -Chinese\ Traditional=\u6b63\u9ad4\u4e2d\u6587 - #: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98 !Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs= @@ -415,9 +411,6 @@ Could\ not\ re-save\ sketch=\u7121\u6cd5\u91cd\u65b0\u5132\u5b58\u8349\u7a3f\u78 #: Preferences.java:219 Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u7121\u6cd5\u8b80\u53d6\u9810\u8a2d\u8a2d\u5b9a\u3002\n\u4f60\u5fc5\u9808\u91cd\u65b0\u5b89\u88ddArduino\u3002 -#: ../../../processing/app/Sketch.java:1525 -Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u7121\u6cd5\u8b80\u53d6\u4ee5\u524d\u7684\u504f\u597d\u8a2d\u7f6e\u6587\u4ef6\uff0c\u91cd\u5efa\u6240\u6709 - #: Base.java:2482 #, java-format Could\ not\ remove\ old\ version\ of\ {0}=\u7121\u6cd5\u79fb\u9664{0}\u7684\u820a\u7248\u672c @@ -439,9 +432,6 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u7121\u6cd5\u91cd\u65b0\u547d\u540d\u8349 #, java-format Could\ not\ replace\ {0}=\u7121\u6cd5\u53d6\u4ee3{0} -#: ../../../processing/app/Sketch.java:1579 -Could\ not\ write\ build\ preferences\ file=\u7121\u6cd5\u5beb\u5165\u5efa\u7f6e\u7684\u504f\u597d\u8a2d\u5b9a\u6a94\u6848 - #: tools/Archiver.java:74 Couldn't\ archive\ sketch=\u7121\u6cd5\u5c01\u5b58\u8349\u7a3f\u78bc @@ -460,15 +450,9 @@ Croatian=\u514b\u7f85\u5730\u4e9e\u8a9e #: Editor.java:1149 Editor.java:2699 Cut=\u526a\u4e0b -#: ../../../processing/app/Preferences.java:83 -Czech=\u6377\u514b\u8a9e - #: ../../../../../app/src/processing/app/Preferences.java:119 !Czech\ (Czech\ Republic)= -#: Preferences.java:90 -Danish=\u4e39\u9ea5\u8a9e - #: ../../../../../app/src/processing/app/Preferences.java:120 !Danish\ (Denmark)= @@ -672,6 +656,15 @@ Estonian\ (Estonia)=\u611b\u6c99\u5c3c\u4e9e\u8a9e(\u611b\u6c99\u5c3c\u4e9e) #: Editor.java:516 Examples=\u7bc4\u4f8b +#: ../../../../../app/src/processing/app/Base.java:1244 +!Examples\ from\ Custom\ Libraries= + +#: ../../../../../app/src/processing/app/Base.java:1222 +!Examples\ from\ Libraries= + +#: ../../../../../app/src/processing/app/Editor.java:753 +!Export\ canceled,\ changes\ must\ first\ be\ saved.= + #: ../../../../../app/src/processing/app/Editor.java:750 !Export\ compiled\ Binary= @@ -837,6 +830,10 @@ Indonesian=\u5370\u5c3c\u8a9e #, java-format Invalid\ library\ found\ in\ {0}\:\ {1}=\u5728{0}\: {1}\u88e1\u627e\u5230\u7121\u6548\u7684\u7a0b\u5f0f\u5eab +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66 +#, java-format +!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.= + #: Preferences.java:102 Italian=\u610f\u5927\u5229\u8a9e @@ -855,6 +852,9 @@ Latvian=\u62c9\u812b\u7dad\u4e9e\u8a9e #: ../../../../../app/src/processing/app/Base.java:2349 !Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71 +!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.= + #: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107 #, java-format !Library\ is\ already\ installed\:\ {0}\ version\ {1}= @@ -865,12 +865,13 @@ Lithuaninan=\u7acb\u9676\u5b9b\u8a9e #: ../../../../../app/src/processing/app/Base.java:132 !Loading\ configuration...= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73 +#, java-format +!Looking\ for\ recipes\ like\ {0}*{1}= + #: ../../../processing/app/Sketch.java:1684 !Low\ memory\ available,\ stability\ problems\ may\ occur.= -#: ../../../../../app/src/processing/app/Preferences.java:180 -!Malay\ (Malaysia)= - #: ../../../../../app/src/processing/app/Base.java:1168 !Manage\ Libraries...= @@ -883,8 +884,9 @@ Marathi=\u99ac\u62c9\u5730\u8a9e #: Base.java:2112 Message=\u8a0a\u606f -#: ../../../processing/app/preproc/PdePreprocessor.java:412 -Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=\u8a3b\u91cb\u7d50\u5c3e\u7f3a\u5c11*/ +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81 +#, java-format +!Missing\ '{0}'\ from\ library\ in\ {1}= #: ../../../processing/app/BaseNoGui.java:455 !Mode\ not\ supported= @@ -908,9 +910,6 @@ Moving=\u79fb\u52d5\u4e2d #: ../../../processing/app/Base.java:395 Must\ specify\ exactly\ one\ sketch\ file=\u5fc5\u9808\u6307\u5b9a\u4e00\u500b\u8349\u7a3f\u78bc\u6587\u4ef6 -#: ../../../processing/app/Preferences.java:158 -N'Ko=N'Ko - #: Sketch.java:282 Name\ for\ new\ file\:=\u65b0\u6a94\u6848\u7684\u540d\u5b57\uff1a @@ -944,9 +943,6 @@ No=\u5426 #: ../../../processing/app/debug/Compiler.java:158 !No\ authorization\ data\ found= -#: debug/Compiler.java:126 -No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=\u6c92\u6709\u9078\u64c7\u677f\u5b50\uff1b\u8acb\u5f9e\u300c\u5de5\u5177>\u677f\u5b50\u300d\u9078\u55ae\u88e1\u9078\u64c7\u677f\u5b50 - #: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916 No\ changes\ necessary\ for\ Auto\ Format.=\u81ea\u52d5\u683c\u5f0f\u5316\u4e26\u4e0d\u9700\u8981\u505a\u51fa\u66f4\u52d5 @@ -995,15 +991,9 @@ No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u5728\u6587\u4ef6\u59 #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184 !None= -#: ../../../../../app/src/processing/app/Preferences.java:181 -!Norwegian= - #: ../../../processing/app/Preferences.java:108 Norwegian\ Bokm\u00e5l=\u5df4\u514b\u6469\u632a\u5a01\u8a9e -#: ../../../../../app/src/processing/app/Preferences.java:182 -!Norwegian\ Nynorsk= - #: ../../../processing/app/Sketch.java:1656 Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u8a18\u61b6\u9ad4\u4e0d\u8db3\uff1b\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size\u5f97\u77e5\u5982\u4f55\u964d\u4f4e\u7528\u91cf\u7684\u6280\u5de7\uff1f @@ -1047,6 +1037,10 @@ Persian=\u6ce2\u65af\u8a9e #: ../../../processing/app/Preferences.java:161 Persian\ (Iran)=\u6ce2\u65af\u8a9e(\u4f0a\u6717) +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79 +#, java-format +!Platform\ {0}\ (package\ {1})\ is\ unknown= + #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195 !Please\ confirm\ boards\ deletion= @@ -1120,10 +1114,6 @@ Problem\ accessing\ files\ in\ folder\ =\u5b58\u53d6\u8cc7\u6599\u593e\u4e2d\u76 #: Base.java:1673 Problem\ getting\ data\ folder=\u53d6\u5f97\u8cc7\u6599\u76ee\u9304\u6642\u767c\u751f\u554f\u984c -#: Sketch.java:1467 -#, java-format -Problem\ moving\ {0}\ to\ the\ build\ folder=\u642c\u79fb{0}\u5230\u5efa\u7f6e\u8cc7\u6599\u593e\u6642\u767c\u751f\u932f\u8aa4 - #: debug/Uploader.java:209 Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u4e0a\u50b3\u5230\u677f\u5b50\u6642\u767c\u751f\u554f\u984c\u3002\u53ef\u884c\u5efa\u8b70\u8acb\u898bhttp\://www.arduino.cc/en/Guide/Troubleshooting\#upload\u3002 @@ -1136,9 +1126,16 @@ Processor=\u8655\u7406\u5668 #: Editor.java:704 Programmer=\u71d2\u9304\u5668 +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80 +#, java-format +!Progress\ {0}= + #: Base.java:783 Editor.java:593 Quit=\u96e2\u958b +#: ../../../../../app/src/processing/app/Base.java:1233 +!RETIRED= + #: Editor.java:1138 Editor.java:1140 Editor.java:1390 Redo=\u91cd\u505a @@ -1178,6 +1175,14 @@ Replace\ with\:=\u7f6e\u63db\u70ba\: #: Preferences.java:113 Romanian=\u7f85\u99ac\u5c3c\u4e9e\u8a9e +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83 +#, java-format +!Running\ recipe\:\ {0}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82 +#, java-format +!Running\:\ {0}= + #: Preferences.java:114 Russian=\u4fc4\u8a9e @@ -1255,6 +1260,10 @@ Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port? #: ../../../../../app/src/processing/app/Editor.java:65 !Serial\ ports= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84 +#, java-format +!Setting\ build\ path\ to\ {0}= + #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450 !Settings= @@ -1335,9 +1344,6 @@ Spanish=\u897f\u73ed\u7259\u8a9e #: Base.java:540 Sunshine=\u967d\u5149 -#: ../../../../../app/src/processing/app/Preferences.java:187 -!Swahili= - #: ../../../processing/app/Preferences.java:153 Swedish=\u745e\u5178\u8a9e @@ -1402,9 +1408,6 @@ The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ de #: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514 !The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.= -#: ../../../processing/app/debug/Compiler.java:201 -!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.= - #: Sketch.java:1075 This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u9019\u652f\u6a94\u6848\u5df2\u7d93\u8907\u88fd\u5230\n\u4f60\u60f3\u8981\u52a0\u5165\u7684\u4f4d\u7f6e\u5167\uff0c\n\u6211\u7d55\u5c0d\u4e0d\u6703\u4e0d\u60f3\u8981\u7121\u6240\u4e8b\u4e8b\u3002 @@ -1456,6 +1459,10 @@ Unable\ to\ connect\:\ retrying=\u9023\u63a5\u4e0d\u6210\u529f\: \u6b63\u5728\u9 #: ../../../processing/app/Editor.java:2526 Unable\ to\ connect\:\ wrong\ password?=\u7121\u6cd5\u9023\u63a5; \u932f\u8aa4\u7684\u5bc6\u78bc? +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65 +#, java-format +!Unable\ to\ find\ {0}\ in\ {1}= + #: ../../../processing/app/Editor.java:2512 Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u8996\u5668 @@ -1466,13 +1473,17 @@ Unable\ to\ open\ serial\ monitor=\u7121\u6cd5\u958b\u555f\u5e8f\u5217\u76e3\u89 #: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89 !Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.= -#: Sketch.java:1432 -#, java-format -Uncaught\ exception\ type\:\ {0}=Uncaught exception type\: {0} - #: Editor.java:1133 Editor.java:1355 Undo=\u5fa9\u539f +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85 +#, java-format +!Unhandled\ type\ {0}\ in\ context\ key\ {1}= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86 +#, java-format +!Unknown\ sketch\ file\ extension\:\ {0}= + #: Platform.java:168 Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u5e73\u53f0\u672a\u6307\u5b9a\uff0c\u7121\u53ef\u7528\u7684\u555f\u52d5\u8005\u3002\n\u82e5\u60f3\u555f\u7528\u521d\u59cb\u7db2\u5740\u6216\u8cc7\u6599\u593e\uff0c\n\u8acb\u5728preferences.txt\u88e1\u52a0\u5165\u4e00\u884c"launcher\=/path/to/app" @@ -1507,9 +1518,6 @@ Uploading\ to\ I/O\ Board...=\u4e0a\u50b3\u5230\u677f\u5b50\u4e2d... #: Sketch.java:1622 Uploading...=\u4e0a\u50b3\u4e2d... -#: ../../../../../app/src/processing/app/Preferences.java:189 -!Urdu\ (Pakistan)= - #: Editor.java:1269 Use\ Selection\ For\ Find=\u4ee5\u9078\u53d6\u5b57\u4e32\u9032\u884c\u5c0b\u627e @@ -1567,6 +1575,14 @@ Vietnamese=\u8d8a\u5357\u8a9e #: Editor.java:1105 Visit\ Arduino.cc=\u62dc\u8a2aArduino.cc +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90 +#, java-format +!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93 +#, java-format +!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library= + #: ../../../processing/app/debug/Compiler.java:115 #, java-format !WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).= @@ -1596,6 +1612,9 @@ Warning=\u8b66\u544a #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91 +!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.= + #: ../../../processing/app/debug/LegacyTargetPlatform.java:170 #, java-format !Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.= @@ -1756,6 +1775,14 @@ upload=\u4e0a\u50b3 #, java-format !{0}\ libraries= +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76 +#, java-format +!{0}\ must\ be\ a\ folder= + +#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78 +#, java-format +!{0}\ pattern\ is\ missing= + #: debug/Compiler.java:365 #, java-format {0}\ returned\ {1}={0}\u56de\u50b3{1} diff --git a/arduino-core/src/processing/app/packages/UserLibrary.java b/arduino-core/src/processing/app/packages/UserLibrary.java index d8bfce03a13..10d5d64e6f3 100644 --- a/arduino-core/src/processing/app/packages/UserLibrary.java +++ b/arduino-core/src/processing/app/packages/UserLibrary.java @@ -39,7 +39,6 @@ import java.nio.file.Files; import java.nio.file.Paths; import java.util.ArrayList; -import java.util.Arrays; import java.util.LinkedList; import java.util.List; @@ -59,15 +58,6 @@ public class UserLibrary extends ContributedLibrary { private List declaredTypes; private boolean onGoingDevelopment; - private static final List MANDATORY_PROPERTIES = Arrays - .asList("name", "version", "author", "maintainer", - "sentence", "paragraph", "url"); - - private static final List CATEGORIES = Arrays.asList( - "Display", "Communication", "Signal Input/Output", "Sensors", - "Device Control", "Timing", "Data Storage", "Data Processing", "Other", - "Uncategorized"); - public static UserLibrary create(File libFolder) throws IOException { // Parse metadata File propertiesFile = new File(libFolder, "library.properties"); @@ -90,7 +80,7 @@ public static UserLibrary create(File libFolder) throws IOException { throw new IOException("'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more information"); // Check mandatory properties - for (String p : MANDATORY_PROPERTIES) + for (String p : Constants.LIBRARY_MANDATORY_PROPERTIES) if (!properties.containsKey(p)) throw new IOException("Missing '" + p + "' from library"); @@ -135,7 +125,7 @@ public static UserLibrary create(File libFolder) throws IOException { String category = properties.get("category"); if (category == null) category = "Uncategorized"; - if (!CATEGORIES.contains(category)) { + if (!Constants.LIBRARY_CATEGORIES.contains(category)) { System.out.println("WARNING: Category '" + category + "' in library " + properties.get("name") + " is not valid. Setting to 'Uncategorized'"); category = "Uncategorized"; } @@ -222,10 +212,6 @@ public String getLicense() { return license; } - public static List getCategories() { - return CATEGORIES; - } - @Override public void setCategory(String category) { this.category = category; diff --git a/arduino-core/src/processing/app/preproc/.cvsignore b/arduino-core/src/processing/app/preproc/.cvsignore deleted file mode 100644 index b010c249c44..00000000000 --- a/arduino-core/src/processing/app/preproc/.cvsignore +++ /dev/null @@ -1,9 +0,0 @@ -*Lexer.java -*Recognizer.java -*TokenTypes.java -*TokenTypes.txt -*TreeParser.java -*TreeParserTokenTypes.java -*TreeParserTokenTypes.txt -expanded*.g - diff --git a/arduino-core/src/processing/app/preproc/PdePreprocessor.java b/arduino-core/src/processing/app/preproc/PdePreprocessor.java deleted file mode 100644 index e3ac5dd61fd..00000000000 --- a/arduino-core/src/processing/app/preproc/PdePreprocessor.java +++ /dev/null @@ -1,435 +0,0 @@ -/* -*- mode: jde; c-basic-offset: 2; indent-tabs-mode: nil -*- */ - -/* - PdePreprocessor - wrapper for default ANTLR-generated parser - Part of the Wiring project - http://wiring.org.co - - Copyright (c) 2004-05 Hernando Barragan - - Processing version Copyright (c) 2004-05 Ben Fry and Casey Reas - Copyright (c) 2001-04 Massachusetts Institute of Technology - - ANTLR-generated parser and several supporting classes written - by Dan Mosedale via funding from the Interaction Institute IVREA. - - This program is free software; you can redistribute it and/or modify - it under the terms of the GNU General Public License as published by - the Free Software Foundation; either version 2 of the License, or - (at your option) any later version. - - This program is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the - GNU General Public License for more details. - - You should have received a copy of the GNU General Public License - along with this program; if not, write to the Free Software Foundation, - Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA -*/ - -package processing.app.preproc; - -import static processing.app.I18n.tr; -import processing.app.*; -import processing.app.legacy.PApplet; - -import java.io.*; -import java.util.*; -import java.util.regex.*; - - -/** - * Class that orchestrates preprocessing p5 syntax into straight Java. - */ -public class PdePreprocessor { - - private static final String IMPORT_REGEX = "^\\s*#include\\s*[<\"](\\S+)[\">]"; - - // stores number of built user-defined function prototypes - public int prototypeCount = 0; - - // stores number of included library headers written - // we always write one header: Arduino.h - public int headerCount = 1; - - // the prototypes that are generated by the preprocessor - List prototypes; - - // these ones have the .* at the end, since a class name might be at the end - // instead of .* which would make trouble other classes using this can lop - // off the . and anything after it to produce a package name consistently. - List programImports; - - // imports just from the code folder, treated differently - // than the others, since the imports are auto-generated. - List codeFolderImports; - - String program; - - - /** - * Setup a new preprocessor. - */ - public PdePreprocessor() { - } - - /** - * Writes out the head of the c++ code generated for a sketch. - * Called from processing.app.Sketch. - * @param program the concatenated code from all tabs containing pde-files - */ - public int writePrefix(String program) - throws FileNotFoundException { - // if the program ends with no CR or LF an OutOfMemoryError will happen. - // not gonna track down the bug now, so here's a hack for it: - // http://dev.processing.org/bugs/show_bug.cgi?id=5 - program += "\n"; - - // if the program ends with an unterminated multi-line comment, - // an OutOfMemoryError or NullPointerException will happen. - // again, not gonna bother tracking this down, but here's a hack. - // http://dev.processing.org/bugs/show_bug.cgi?id=16 - program = scrubComments(program); - // If there are errors, an exception is thrown and this fxn exits. - - if (PreferencesData.getBoolean("preproc.substitute_unicode")) { - program = substituteUnicode(program); - } - - //String importRegexp = "(?:^|\\s|;)(import\\s+)(\\S+)(\\s*;)"; - programImports = new ArrayList(); - - String[][] pieces = PApplet.matchAll(program, IMPORT_REGEX); - - if (pieces != null) - for (int i = 0; i < pieces.length; i++) - programImports.add(pieces[i][1]); // the package name - - codeFolderImports = new ArrayList(); -// if (codeFolderPackages != null) { -// for (String item : codeFolderPackages) { -// codeFolderImports.add(item + ".*"); -// } -// } - - prototypes = prototypes(program); - - // store # of prototypes so that line number reporting can be adjusted - prototypeCount = prototypes.size(); - - // do this after the program gets re-combobulated - this.program = program; - - return headerCount + prototypeCount; - } - - public static List findIncludes(String code){ - - String[][] pieces = PApplet.matchAll(code, IMPORT_REGEX); - - ArrayList programImports = new ArrayList(); - - if (pieces != null) - for (int i = 0; i < pieces.length; i++) - programImports.add(pieces[i][1]); // the package name - - return programImports; - } - - - static String substituteUnicode(String program) { - // check for non-ascii chars (these will be/must be in unicode format) - char p[] = program.toCharArray(); - int unicodeCount = 0; - for (int i = 0; i < p.length; i++) { - if (p[i] > 127) unicodeCount++; - } - // if non-ascii chars are in there, convert to unicode escapes - if (unicodeCount != 0) { - // add unicodeCount * 5.. replacing each unicode char - // with six digit uXXXX sequence (xxxx is in hex) - // (except for nbsp chars which will be a replaced with a space) - int index = 0; - char p2[] = new char[p.length + unicodeCount*5]; - for (int i = 0; i < p.length; i++) { - if (p[i] < 128) { - p2[index++] = p[i]; - - } else if (p[i] == 160) { // unicode for non-breaking space - p2[index++] = ' '; - - } else { - int c = p[i]; - p2[index++] = '\\'; - p2[index++] = 'u'; - char str[] = Integer.toHexString(c).toCharArray(); - // add leading zeros, so that the length is 4 - //for (int i = 0; i < 4 - str.length; i++) p2[index++] = '0'; - for (int m = 0; m < 4 - str.length; m++) p2[index++] = '0'; - System.arraycopy(str, 0, p2, index, str.length); - index += str.length; - } - } - program = new String(p2, 0, index); - } - return program; - } - - /** - * preprocesses a pde file and writes out a cpp file into the specified - * OutputStream - * - * @param output - * @throws Exception - */ - public void write(OutputStream output) throws Exception { - PrintStream stream = new PrintStream(output); - writeProgram(stream, program, prototypes); - writeFooter(stream); - } - - // Write the pde program to the cpp file - protected void writeProgram(PrintStream out, String program, List prototypes) { - int prototypeInsertionPoint = firstStatement(program); - - out.print(program.substring(0, prototypeInsertionPoint)); - out.print("#include \"Arduino.h\"\n"); - - // print user defined prototypes - for (int i = 0; i < prototypes.size(); i++) { - out.print(prototypes.get(i) + "\n"); - } - String[] lines = program.substring(0, prototypeInsertionPoint).split("\n", -1); - out.println("#line " + (lines.length - 1)); - out.print(program.substring(prototypeInsertionPoint)); - } - - - /** - * Write any necessary closing text. - * - * @param out PrintStream to write it to. - */ - protected void writeFooter(PrintStream out) throws java.lang.Exception {} - - - public List getExtraImports() { - return programImports; - } - - - - - - /** - * Returns the index of the first character that's not whitespace, a comment - * or a pre-processor directive. - */ - public int firstStatement(String in) { - // whitespace - String p = "\\s+"; - - // multi-line and single-line comment - //p += "|" + "(//\\s*?$)|(/\\*\\s*?\\*/)"; - p += "|(/\\*[^*]*(?:\\*(?!/)[^*]*)*\\*/)|(//.*?$)"; - - // pre-processor directive - p += "|(#(?:\\\\\\n|.)*)"; - Pattern pattern = Pattern.compile(p, Pattern.MULTILINE); - - Matcher matcher = pattern.matcher(in); - int i = 0; - while (matcher.find()) { - if (matcher.start()!=i) - break; - i = matcher.end(); - } - - return i; - } - - /** - * Strips comments, pre-processor directives, single- and double-quoted - * strings from a string. - * @param in the String to strip - * @return the stripped String - */ - public String strip(String in) { - // XXX: doesn't properly handle special single-quoted characters - // single-quoted character - String p = "('.')"; - - p += "|('\\\\\"')"; - - // double-quoted string - p += "|(\"(?:[^\"\\\\]|\\\\.)*\")"; - - // single and multi-line comment - //p += "|" + "(//\\s*?$)|(/\\*\\s*?\\*/)"; - p += "|(//.*?$)|(/\\*[^*]*(?:\\*(?!/)[^*]*)*\\*/)"; - - // pre-processor directive - p += "|" + "(^\\s*#.*?$)"; - - StringBuilder sb = new StringBuilder(in); - Pattern pattern = Pattern.compile(p, Pattern.MULTILINE | Pattern.DOTALL); - Matcher matcher = pattern.matcher(sb); - while (matcher.find()) { - String replacement = composeReplacementString(new StringBuilder(sb.subSequence(matcher.start(), matcher.end()))); - sb.replace(matcher.start(), matcher.end(), replacement); - } - return sb.toString(); - } - - private String composeReplacementString(StringBuilder sb) { - for (int i = 0; i < sb.length(); i++) { - if (sb.charAt(i) != '\n') { - sb.setCharAt(i, ' '); - } - } - return sb.toString(); - } - - /** - * Removes the contents of all top-level curly brace pairs {}. - * @param in the String to collapse - * @return the collapsed String - */ - private String collapseBraces(String in) { - StringBuffer buffer = new StringBuffer(); - int nesting = 0; - int start = 0; - - // XXX: need to keep newlines inside braces so we can determine the line - // number of a prototype - for (int i = 0; i < in.length(); i++) { - if (in.charAt(i) == '{') { - if (nesting == 0) { - buffer.append(in.substring(start, i + 1)); // include the '{' - } - nesting++; - } - if (in.charAt(i) == '}') { - nesting--; - if (nesting == 0) { - start = i; // include the '}' - } - } - } - - buffer.append(in.substring(start)); - - return buffer.toString(); - } - - public ArrayList prototypes(String in) { - in = collapseBraces(strip(in)); - - // XXX: doesn't handle ... varargs - // XXX: doesn't handle function pointers - Pattern prototypePattern = Pattern.compile("[\\w\\[\\]\\*]+\\s+[&\\[\\]\\*\\w\\s]+\\([&,\\[\\]\\*\\w\\s]*\\)(?=\\s*;)"); - Pattern functionPattern = Pattern.compile("[\\w\\[\\]\\*]+\\s+[&\\[\\]\\*\\w\\s]+\\([&,\\[\\]\\*\\w\\s]*\\)(?=\\s*\\{)"); - - // Find already declared prototypes - ArrayList prototypeMatches = new ArrayList(); - Matcher prototypeMatcher = prototypePattern.matcher(in); - while (prototypeMatcher.find()) - prototypeMatches.add(prototypeMatcher.group(0) + ";"); - - // Find all functions and generate prototypes for them - ArrayList functionMatches = new ArrayList(); - Matcher functionMatcher = functionPattern.matcher(in); - while (functionMatcher.find()) - functionMatches.add(functionMatcher.group(0) + ";"); - - // Remove generated prototypes that exactly match ones found in the source file - for (int functionIndex=functionMatches.size() - 1; functionIndex >= 0; functionIndex--) { - for (int prototypeIndex=0; prototypeIndex < prototypeMatches.size(); prototypeIndex++) { - if ((functionMatches.get(functionIndex)).equals(prototypeMatches.get(prototypeIndex))) { - functionMatches.remove(functionIndex); - break; - } - } - } - - return functionMatches; - } - - private boolean isStartOrEndOfString(char p[], int index) { - if (p[index] != '\"') { - return false; - } - - if (index == 0) { - return true; - } - - if (p[index - 1] == '\\') { - return false; - } - - if (index - 2 >= 0 && p[index - 2] == '\\') { - return true; - } - - return true; - } - - /** - * Replace all commented portions of a given String as spaces. - * Utility function used here and in the preprocessor. - */ - public String scrubComments(String what) { - char p[] = what.toCharArray(); - - int index = 0; - boolean insideString = false; - while (index < p.length) { - if (isStartOrEndOfString(p, index)) { - insideString = !insideString; - } - // for any double slash comments, ignore until the end of the line - if (!insideString && (p[index] == '/') && - (index < p.length - 1) && - (p[index+1] == '/')) { - p[index++] = ' '; - p[index++] = ' '; - while ((index < p.length) && - (p[index] != '\n')) { - p[index++] = ' '; - } - - // check to see if this is the start of a new multiline comment. - // if it is, then make sure it's actually terminated somewhere. - } else if (!insideString && (p[index] == '/') && - (index < p.length - 1) && - (p[index+1] == '*')) { - p[index++] = ' '; - p[index++] = ' '; - boolean endOfRainbow = false; - while (index < p.length - 1) { - if ((p[index] == '*') && (p[index+1] == '/')) { - p[index++] = ' '; - p[index++] = ' '; - endOfRainbow = true; - break; - - } else { - // continue blanking this area - if (p[index] != '\n') { - p[index] = ' '; - } - index++; - } - } - if (!endOfRainbow) { - throw new RuntimeException(tr("Missing the */ from the end of a " + - "/* comment */")); - } - } else { // any old character, move along - index++; - } - } - return new String(p); - } -} diff --git a/build/Bridge-1.0.7.zip.sha b/build/Bridge-1.0.7.zip.sha new file mode 100644 index 00000000000..e830ce9c546 --- /dev/null +++ b/build/Bridge-1.0.7.zip.sha @@ -0,0 +1 @@ +bd9f9ddb27f14acd9d300bfe7e3bf9c33b81ae22 diff --git a/build/Esplora-1.0.4.zip.sha b/build/Esplora-1.0.4.zip.sha new file mode 100644 index 00000000000..831259a658e --- /dev/null +++ b/build/Esplora-1.0.4.zip.sha @@ -0,0 +1 @@ +9b2ab86d0c7d0436febfe2026c7a42607d29c721 diff --git a/build/RobotIRremote-1.0.2.zip.sha b/build/RobotIRremote-1.0.2.zip.sha new file mode 100644 index 00000000000..88566e65642 --- /dev/null +++ b/build/RobotIRremote-1.0.2.zip.sha @@ -0,0 +1 @@ +a2f6a74e4a4f2fffca30c3b5d1e8193451c30f98 diff --git a/build/Robot_Control-1.0.2.zip.sha b/build/Robot_Control-1.0.2.zip.sha new file mode 100644 index 00000000000..1b05d8e1c27 --- /dev/null +++ b/build/Robot_Control-1.0.2.zip.sha @@ -0,0 +1 @@ +825700e8d7cf5a44908f835bb0c029dec267cd3d diff --git a/build/Robot_Motor-1.0.2.zip.sha b/build/Robot_Motor-1.0.2.zip.sha new file mode 100644 index 00000000000..eecb4605cb3 --- /dev/null +++ b/build/Robot_Motor-1.0.2.zip.sha @@ -0,0 +1 @@ +7f887a2f9e3a61b4be73c97a2c7b46d92bf8589b diff --git a/build/SpacebrewYun-1.0.0.zip.sha b/build/SpacebrewYun-1.0.0.zip.sha new file mode 100644 index 00000000000..52b013a5929 --- /dev/null +++ b/build/SpacebrewYun-1.0.0.zip.sha @@ -0,0 +1 @@ +d8ac7d0c158e27eca50549721a97196ed8eb1f93 diff --git a/build/Temboo-1.1.2.zip.sha b/build/Temboo-1.1.2.zip.sha deleted file mode 100644 index c8e58c81cf3..00000000000 --- a/build/Temboo-1.1.2.zip.sha +++ /dev/null @@ -1 +0,0 @@ -3765428c8af45e7ef085b53f6408bbb1c0133f6d diff --git a/build/Temboo-1.1.3.zip.sha b/build/Temboo-1.1.3.zip.sha new file mode 100644 index 00000000000..c339d6a27c2 --- /dev/null +++ b/build/Temboo-1.1.3.zip.sha @@ -0,0 +1 @@ +4af55b713e318f534f524b8ad239c1ca2419deaa diff --git a/build/arduino-builder-linux32-1.0.0-beta17.tar.bz2.sha b/build/arduino-builder-linux32-1.0.0-beta17.tar.bz2.sha new file mode 100644 index 00000000000..71247b21506 --- /dev/null +++ b/build/arduino-builder-linux32-1.0.0-beta17.tar.bz2.sha @@ -0,0 +1 @@ +e56c87a94e7a4b600619a76c1e1b687f62631170 diff --git a/build/arduino-builder-linux64-1.0.0-beta17.tar.bz2.sha b/build/arduino-builder-linux64-1.0.0-beta17.tar.bz2.sha new file mode 100644 index 00000000000..6e75e1cd4db --- /dev/null +++ b/build/arduino-builder-linux64-1.0.0-beta17.tar.bz2.sha @@ -0,0 +1 @@ +61a5daee1329eef6284e17293f04a1d964f8d46b diff --git a/build/arduino-builder-macosx-1.0.0-beta17.tar.bz2.sha b/build/arduino-builder-macosx-1.0.0-beta17.tar.bz2.sha new file mode 100644 index 00000000000..d7cabb3fe84 --- /dev/null +++ b/build/arduino-builder-macosx-1.0.0-beta17.tar.bz2.sha @@ -0,0 +1 @@ +777ca0bafd9ae195c5ce16326eabf3a8e413cec9 diff --git a/build/arduino-builder-windows-1.0.0-beta17.zip.sha b/build/arduino-builder-windows-1.0.0-beta17.zip.sha new file mode 100644 index 00000000000..4f7aa1fc586 --- /dev/null +++ b/build/arduino-builder-windows-1.0.0-beta17.zip.sha @@ -0,0 +1 @@ +1f3cf4bd48c3a812b83f8621a86dcbea80c05b25 diff --git a/build/build.xml b/build/build.xml index e9d8995d1e4..b9233e6ce9c 100644 --- a/build/build.xml +++ b/build/build.xml @@ -71,6 +71,8 @@ + + @@ -140,8 +142,6 @@ - - @@ -185,21 +185,32 @@ - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + @@ -372,6 +383,21 @@ + + + + + + + + + + + + + + + @@ -483,6 +509,9 @@ + + + @@ -541,6 +570,21 @@ + + + + + + + + + + + + + + + @@ -557,6 +601,21 @@ + + + + + + + + + + + + + + + @@ -762,6 +821,22 @@ + + + + + + + + + + + + + + + + diff --git a/build/compile_everything.bash b/build/compile_everything.bash new file mode 100755 index 00000000000..846ccc28403 --- /dev/null +++ b/build/compile_everything.bash @@ -0,0 +1,47 @@ +#!/bin/bash -e + +cd linux/work + +./arduino --board arduino:avr:uno --verify examples/01.Basics/Blink/Blink.ino + +for s in `find examples/0{1,2,3,4,5,6,7,8}* -name '*.ino' -not -name '*MultiSerial*'` +do + echo arduino:avr:uno $s + ./arduino-builder -hardware ./hardware -tools ./hardware/tools/avr -tools ./tools-builder -libraries ./libraries -fqbn arduino:avr:uno $s + echo +done + +for s in `find libraries/{Ethernet,Firmata,GSM,LiquidCrystal,SD,Servo,SpacebrewYun,Stepper,Temboo,TFT,WiFi} -name '*.ino' -not -name 'StandardFirmataEthernet.ino' -not -name 'StandardFirmataYun.ino' -not -name 'StandardFirmataChipKIT.ino' -not -name 'firmata_test.ino' -not -wholename 'libraries/Bridge/examples/Temboo*'` +do + echo arduino:avr:uno $s + ./arduino-builder -hardware ./hardware -tools ./hardware/tools/avr -tools ./tools-builder -libraries ./libraries -fqbn arduino:avr:uno $s + echo +done + +for s in `find examples/0{1,2,3,4,5,6,7,8,9}* -name '*.ino'` +do + echo arduino:avr:leonardo $s + ./arduino-builder -hardware ./hardware -tools ./hardware/tools/avr -tools ./tools-builder -libraries ./libraries -fqbn arduino:avr:leonardo $s + echo +done + +for s in `find libraries/{Bridge,Esplora,Ethernet,Firmata,GSM,Keyboard,LiquidCrystal,Mouse,Robot_Control,RobotIRremote,Robot_Motor,SD,Servo,SpacebrewYun,Stepper,Temboo,TFT,WiFi} -name '*.ino' -not -name 'StandardFirmataEthernet.ino' -not -name 'StandardFirmataChipKIT.ino' -not -name 'firmata_test.ino' -not -wholename 'libraries/Bridge/examples/Temboo*'` +do + echo arduino:avr:leonardo $s + ./arduino-builder -hardware ./hardware -tools ./hardware/tools/avr -tools ./tools-builder -libraries ./libraries -fqbn arduino:avr:leonardo $s + echo +done + +for s in `find examples/0{1,2,3,4,5,6,7,8}* -name '*.ino'` +do + echo arduino:avr:mega:cpu=atmega2560 $s + ./arduino-builder -hardware ./hardware -tools ./hardware/tools/avr -tools ./tools-builder -libraries ./libraries -fqbn arduino:avr:mega:cpu=atmega2560 $s + echo +done + +for s in `find libraries/{Bridge,Esplora,Ethernet,Firmata,GSM,Keyboard,LiquidCrystal,Mouse,Robot_Control,RobotIRremote,Robot_Motor,SD,Servo,SpacebrewYun,Stepper,Temboo,TFT,WiFi} -name '*.ino' -not -name 'StandardFirmataEthernet.ino' -not -name 'StandardFirmataChipKIT.ino' -not -name 'firmata_test.ino' -not -wholename 'libraries/Bridge/examples/Temboo*'` +do + echo arduino:avr:mega:cpu=atmega2560 $s + ./arduino-builder -hardware ./hardware -tools ./hardware/tools/avr -tools ./tools-builder -libraries ./libraries -fqbn arduino:avr:mega:cpu=atmega2560 $s + echo +done diff --git a/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino b/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino index d49a6f5a359..7e41645ed60 100644 --- a/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino +++ b/build/shared/examples/04.Communication/ASCIITable/ASCIITable.ino @@ -23,7 +23,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // prints title with ending line break diff --git a/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino index 6f154c3ff6e..23d74c3ec18 100644 --- a/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino +++ b/build/shared/examples/04.Communication/SerialCallResponse/SerialCallResponse.ino @@ -33,7 +33,7 @@ void setup() { // start serial port at 9600 bps: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } pinMode(2, INPUT); // digital sensor is on digital pin 2 diff --git a/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino index 837600788f5..551c4921b61 100644 --- a/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino +++ b/build/shared/examples/04.Communication/SerialCallResponseASCII/SerialCallResponseASCII.ino @@ -37,7 +37,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino b/build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino index d78a5ad21f6..19b5be6ec97 100644 --- a/build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino +++ b/build/shared/examples/08.Strings/CharacterAnalysis/CharacterAnalysis.ino @@ -15,7 +15,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino index ad731de5151..9b7088d2246 100644 --- a/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino +++ b/build/shared/examples/08.Strings/StringAdditionOperator/StringAdditionOperator.ino @@ -20,7 +20,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } stringOne = String("stringThree = "); diff --git a/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino b/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino index 854280d274d..97e81741b56 100644 --- a/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino +++ b/build/shared/examples/08.Strings/StringAppendOperator/StringAppendOperator.ino @@ -18,7 +18,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } stringOne = String("Sensor "); diff --git a/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino index fba798064b1..c9c8fc87507 100644 --- a/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino +++ b/build/shared/examples/08.Strings/StringCaseChanges/StringCaseChanges.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino index b0cf0274fea..dbb1f0a08e2 100644 --- a/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino +++ b/build/shared/examples/08.Strings/StringCharacters/StringCharacters.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } Serial.println("\n\nString charAt() and setCharAt():"); diff --git a/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino index d11c202fa6e..1417a8b7aba 100644 --- a/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino +++ b/build/shared/examples/08.Strings/StringComparisonOperators/StringComparisonOperators.ino @@ -18,7 +18,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino index 30ac20cddc3..1fef29c4258 100644 --- a/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino +++ b/build/shared/examples/08.Strings/StringConstructors/StringConstructors.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino index c7daddf9a32..ce29a57572e 100644 --- a/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino +++ b/build/shared/examples/08.Strings/StringIndexOf/StringIndexOf.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringLength/StringLength.ino b/build/shared/examples/08.Strings/StringLength/StringLength.ino index 9aa92101136..7d9cbb92cdb 100644 --- a/build/shared/examples/08.Strings/StringLength/StringLength.ino +++ b/build/shared/examples/08.Strings/StringLength/StringLength.ino @@ -19,7 +19,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino b/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino index 5d1dfda1db9..805ac0ed548 100644 --- a/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino +++ b/build/shared/examples/08.Strings/StringLengthTrim/StringLengthTrim.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringReplace/StringReplace.ino b/build/shared/examples/08.Strings/StringReplace/StringReplace.ino index 1825b73804f..960aa6af7a8 100644 --- a/build/shared/examples/08.Strings/StringReplace/StringReplace.ino +++ b/build/shared/examples/08.Strings/StringReplace/StringReplace.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino b/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino index 3a5fb924dd5..be0e56ac8d2 100644 --- a/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino +++ b/build/shared/examples/08.Strings/StringStartsWithEndsWith/StringStartsWithEndsWith.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino b/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino index 6b1036f8431..6fdfb002c69 100644 --- a/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino +++ b/build/shared/examples/08.Strings/StringSubstring/StringSubstring.ino @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringToInt/StringToInt.ino b/build/shared/examples/08.Strings/StringToInt/StringToInt.ino index 89f7e8b1ed5..f05c5632513 100644 --- a/build/shared/examples/08.Strings/StringToInt/StringToInt.ino +++ b/build/shared/examples/08.Strings/StringToInt/StringToInt.ino @@ -19,7 +19,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // send an intro: diff --git a/build/shared/examples/08.Strings/StringToIntRGB/StringToIntRGB.ino b/build/shared/examples/08.Strings/StringToIntRGB/StringToIntRGB.ino deleted file mode 100644 index f79b9528309..00000000000 --- a/build/shared/examples/08.Strings/StringToIntRGB/StringToIntRGB.ino +++ /dev/null @@ -1,235 +0,0 @@ -/* - Serial RGB controller - - Reads a serial input string looking for three comma-separated - integers with a newline at the end. Values should be between - 0 and 255. The sketch uses those values to set the color - of an RGB LED attached to pins 9 - 11. - - The circuit: - * Common-anode RGB LED cathodes attached to pins 9 - 11 - * LED anode connected to pin 13 - - To turn on any given channel, set the pin LOW. - To turn off, set the pin HIGH. The higher the analogWrite level, - the lower the brightness. - - created 29 Nov 2010 - by Tom Igoe - - This example code is in the public domain. - */ - -String inString = ""; // string to hold input -int currentColor = 0; -int red, green, blue = 0; - -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 toInt() RGB:"); - Serial.println(); - // set LED cathode pins as outputs: - pinMode(9, OUTPUT); - pinMode(10, OUTPUT); - pinMode(11, OUTPUT); - // turn on pin 13 to power the LEDs: - pinMode(13, OUTPUT); - digitalWrite(13, HIGH); -} - -void loop() { - int inChar; - - // Read serial input: - if (Serial.available() > 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/lib/keywords.txt b/build/shared/lib/keywords.txt index fc190f18322..637f9a07698 100644 --- a/build/shared/lib/keywords.txt +++ b/build/shared/lib/keywords.txt @@ -126,6 +126,7 @@ noInterrupts KEYWORD2 NoInterrupts noTone KEYWORD2 NoTone pinMode KEYWORD2 PinMode pulseIn KEYWORD2 PulseIn +pulseInLong KEYWORD2 PulseInLong shiftIn KEYWORD2 ShiftIn shiftOut KEYWORD2 ShiftOut tone KEYWORD2 Tone diff --git a/build/shared/revisions.txt b/build/shared/revisions.txt index 43696029379..7a4838e966a 100644 --- a/build/shared/revisions.txt +++ b/build/shared/revisions.txt @@ -18,12 +18,27 @@ ARDUINO 1.6.6 * Windows: IDE startup feels faster * Examples of libraries with a .development flag file in their root folder won't get marked as read-only. See #2619 * Update notifications: when updates are available from either Library or Boards Managers, a popup will be shown +* Introducing arduino-builder, a command line tool that properly calls gcc. Fixes lots of issues about buggy preprocessing. +* Each open sketch gets built in its own folder, allowing the IDE to recycle previous compilations and being much faster +* "Go to line": CTRL+L or Edit > Go to line... will open a dialog where you can type the line number where you want the editor to jump to [libraries] - * Bridge: YunClient.connected() returns true if there are bytes available for read. Thanks @RobAtticus * Bridge: YunClient.stop() now empties all buffers. Thanks @RobAtticus +[core] +AVR: fixed wrong turnOffPWM() for TIMER0B. Thanks @gonzoveliki + +ARDUINO 1.6.5-r5 - 2015.08.28 + +[ide] +* Fixed a but preventing upload on boards that do not supply VID/PID. See #3738 + +ARDUINO 1.6.5-r4 - 2015.08.27 + +[ide] +* Added support to Genuino boards + ARDUINO 1.6.5-r3 - 2015.07.20 [ide] diff --git a/build/windows/dist/drivers/genuino.cat b/build/windows/dist/drivers/genuino.cat new file mode 100755 index 00000000000..2c250449bc0 Binary files /dev/null and b/build/windows/dist/drivers/genuino.cat differ diff --git a/build/windows/dist/drivers/genuino.inf b/build/windows/dist/drivers/genuino.inf new file mode 100755 index 00000000000..25197a722f1 --- /dev/null +++ b/build/windows/dist/drivers/genuino.inf @@ -0,0 +1,97 @@ +; +; Copyright 2015 Arduino LLC (http://www.arduino.cc/) +; +; Developed by Zach Eveland, Blacklabel Development, Inc. +; +; Arduino is free software; you can redistribute it and/or modify +; it under the terms of the GNU General Public License as published by +; the Free Software Foundation; either version 2 of the License, or +; (at your option) any later version. +; +; This program is distributed in the hope that it will be useful, +; but WITHOUT ANY WARRANTY; without even the implied warranty of +; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +; GNU General Public License for more details. +; +; You should have received a copy of the GNU General Public License +; along with this program; if not, write to the Free Software +; Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA +; +; As a special exception, you may use this file as part of a free software +; library without restriction. Specifically, if other files instantiate +; templates or use macros or inline functions from this file, or you compile +; this file and link it with other files to produce an executable, this +; file does not by itself cause the resulting executable to be covered by +; the GNU General Public License. This exception does not however +; invalidate any other reasons why the executable file might be covered by +; the GNU General Public License. +; + +[Strings] +DriverPackageDisplayName="Genuino USB Driver" +ManufacturerName="Arduino LLC (www.arduino.cc)" +ServiceName="USB RS-232 Emulation Driver" +unoR3.name="Genuino Uno" +mega2560rev3.name="Genuino Mega 2560" +micro.bootloader.name="Genuino Micro bootloader" +micro.sketch.name="Genuino Micro" + +[DefaultInstall] +CopyINF=genuino.inf + +[Version] +Class=Ports +ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318} +Signature="$Windows NT$" +Provider=%ManufacturerName% +DriverPackageDisplayName=%DriverPackageDisplayName% +CatalogFile=genuino.cat +DriverVer=08/25/2015,1.0.1.0 + +[Manufacturer] +%ManufacturerName%=DeviceList, NTamd64, NTia64 + +[DestinationDirs] +FakeModemCopyFileSection=12 +DefaultDestDir=12 + +[DeviceList] +%mega2560rev3.name%=DriverInstall, USB\VID_2341&PID_0242 +%micro.bootloader.name%=DriverInstall, USB\VID_2341&PID_0237 +%micro.sketch.name%=DriverInstall, USB\VID_2341&PID_8237&MI_00 +%unoR3.name%=DriverInstall, USB\VID_2341&PID_0243 + +[DeviceList.NTamd64] +%mega2560rev3.name%=DriverInstall, USB\VID_2341&PID_0242 +%micro.bootloader.name%=DriverInstall, USB\VID_2341&PID_0237 +%micro.sketch.name%=DriverInstall, USB\VID_2341&PID_8237&MI_00 +%unoR3.name%=DriverInstall, USB\VID_2341&PID_0243 + +[DeviceList.NTia64] +%mega2560rev3.name%=DriverInstall, USB\VID_2341&PID_0242 +%micro.bootloader.name%=DriverInstall, USB\VID_2341&PID_0237 +%micro.sketch.name%=DriverInstall, USB\VID_2341&PID_8237&MI_00 +%unoR3.name%=DriverInstall, USB\VID_2341&PID_0243 + +[DriverInstall] +include=mdmcpq.inf,usb.inf +CopyFiles = FakeModemCopyFileSection +AddReg=DriverAddReg + +[DriverAddReg] +HKR,,DevLoader,,*ntkern +HKR,,NTMPDriver,,usbser.sys +HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider" + +[DriverInstall.Services] +include=mdmcpq.inf +AddService=usbser, 0x00000002, DriverService + +[DriverService] +DisplayName=%ServiceName% +ServiceType=1 +StartType=3 +ErrorControl=1 +ServiceBinary=%12%\usbser.sys +LoadOrderGroup=Base + diff --git a/build/windows/launcher/config.xml b/build/windows/launcher/config.xml index 25561c08c6d..6c0c20865a9 100644 --- a/build/windows/launcher/config.xml +++ b/build/windows/launcher/config.xml @@ -30,7 +30,7 @@ %EXEDIR%/lib/jsch-0.1.50.jar %EXEDIR%/lib/jssc-2.8.0.jar %EXEDIR%/lib/pde.jar - %EXEDIR%/lib/rsyntaxtextarea-2.5.7.1+arduino.jar + %EXEDIR%/lib/rsyntaxtextarea-2.5.8.1+arduino.jar java diff --git a/build/windows/launcher/config_debug.xml b/build/windows/launcher/config_debug.xml index 365d4c283fa..dc4caac4718 100644 --- a/build/windows/launcher/config_debug.xml +++ b/build/windows/launcher/config_debug.xml @@ -30,7 +30,7 @@ %EXEDIR%/lib/jsch-0.1.50.jar %EXEDIR%/lib/jssc-2.8.0.jar %EXEDIR%/lib/pde.jar - %EXEDIR%/lib/rsyntaxtextarea-2.5.7.1+arduino.jar + %EXEDIR%/lib/rsyntaxtextarea-2.5.8.1+arduino.jar java diff --git a/hardware/arduino/avr/boards.txt b/hardware/arduino/avr/boards.txt index 65df589e567..7b55a6d98b8 100644 --- a/hardware/arduino/avr/boards.txt +++ b/hardware/arduino/avr/boards.txt @@ -46,7 +46,7 @@ yun.build.extra_flags={build.usb_flags} ############################################################## -uno.name=Arduino Uno +uno.name=Arduino/Genuino Uno uno.vid.0=0x2341 uno.pid.0=0x0043 @@ -54,6 +54,8 @@ uno.vid.1=0x2341 uno.pid.1=0x0001 uno.vid.2=0x2A03 uno.pid.2=0x0043 +uno.vid.3=0x2341 +uno.pid.3=0x0243 uno.upload.tool=avrdude uno.upload.protocol=arduino @@ -168,7 +170,7 @@ nano.menu.cpu.atmega168.build.mcu=atmega168 ############################################################## -mega.name=Arduino Mega or Mega 2560 +mega.name=Arduino/Genuino Mega or Mega 2560 mega.vid.0=0x2341 mega.pid.0=0x0010 @@ -178,6 +180,10 @@ mega.vid.2=0x2A03 mega.pid.2=0x0010 mega.vid.3=0x2A03 mega.pid.3=0x0042 +mega.vid.4=0x2341 +mega.pid.4=0x0210 +mega.vid.5=0x2341 +mega.pid.5=0x0242 mega.upload.tool=avrdude mega.upload.maximum_data_size=8192 @@ -190,10 +196,10 @@ mega.bootloader.lock_bits=0x0F mega.build.f_cpu=16000000L mega.build.core=arduino mega.build.variant=mega -# default board may be overridden by the cpu menu +# default board may be overridden by the cpu menu mega.build.board=AVR_MEGA2560 -## Arduino Mega w/ ATmega2560 +## Arduino/Genuino Mega w/ ATmega2560 ## ------------------------- mega.menu.cpu.atmega2560=ATmega2560 (Mega 2560) @@ -297,7 +303,8 @@ leonardo.build.extra_flags={build.usb_flags} ############################################################## -micro.name=Arduino Micro +micro.name=Arduino/Genuino Micro + micro.vid.0=0x2341 micro.pid.0=0x0037 micro.vid.1=0x2341 @@ -307,6 +314,24 @@ micro.pid.2=0x0037 micro.vid.3=0x2A03 micro.pid.3=0x8037 +micro.vid.4=0x2341 +micro.pid.4=0x0237 +# If the board is a 2341:0237 use 2341:8237 for build and set +# other parameters as well +micro.vid.4.build.vid=0x2341 +micro.vid.4.build.pid=0x8237 +micro.vid.4.build.usb_product="Genuino Micro" +micro.vid.4.bootloader.file=caterina/Caterina-Genuino-Micro.hex + +micro.vid.5=0x2341 +micro.pid.5=0x8237 +# If the board is a 2341:8237 use 2341:8237 for build and set +# other paramters as well +micro.vid.5.build.vid=0x2341 +micro.vid.5.build.pid=0x8237 +micro.vid.5.build.usb_product="Genuino Micro" +micro.vid.5.bootloader.file=caterina/Caterina-Genuino-Micro.hex + micro.upload.tool=avrdude micro.upload.protocol=avr109 micro.upload.maximum_size=28672 diff --git a/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.hex b/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.hex new file mode 100644 index 00000000000..b658b286997 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.hex @@ -0,0 +1,257 @@ +:1070000055C000006EC000006CC000006AC00000E7 +:1070100068C0000066C0000064C0000062C00000DC +:1070200060C000005EC00000F2C400005AC0000052 +:1070300058C0000056C0000054C0000052C00000FC +:1070400050C0000078C000004CC000004AC00000E2 +:1070500048C0000046C0000044C0000042C000001C +:1070600040C000003EC000003CC000003AC000002C +:1070700038C0000036C0000034C0000032C000003C +:1070800030C000002EC000002CC000002AC000004C +:1070900028C0000026C0000024C0000022C000005C +:1070A00020C000001EC000001CC0000011241FBE34 +:1070B000CFEFDAE0DEBFCDBF11E0A0E0B1E0E2E368 +:1070C000FFE702C005900D92A83AB107D9F711E089 +:1070D000A8EAB1E001C01D92AE3BB107E1F78FD342 +:1070E00026C78ECFF89410926F00109281001092F4 +:1070F00085001092840081E085BF15BE47985D9899 +:1071000028980C94000008952091B2013091B301A9 +:107110002F5F3F4F3093B3012093B201932F37FF7E +:1071200003C08EEF831B982F990F921710F4479886 +:107130000895479A08951F920F920FB60F92112447 +:107140002F938F939F93EF93FF931092850010924C +:1071500084008091A8019091A901009741F00197C6 +:107160009093A9018093A801892B09F45D988091DF +:10717000AA019091AB01009741F001979093AB0168 +:107180008093AA01892B09F42898E0E0F0E085912A +:1071900094918F5F9F4F49F08091AC019091AD0128 +:1071A00001969093AD018093AC01FF91EF919F9177 +:1071B0008F912F910F900FBE0F901F90189584E024 +:1071C0008093E9000DC08091E8008B778093E80000 +:1071D00003C08EB3882351F08091E80082FFF9CF7D +:1071E0008091E80085FFEFCF8091F1000895982FFE +:1071F00083E08093E9008091E80085FD0DC08091D7 +:10720000E8008E778093E80003C08EB3882369F08E +:107210008091E80080FFF9CF9093F1005D9A84E6B9 +:1072200090E09093A9018093A80108954F925F92F6 +:107230006F927F928F929F92AF92BF92CF92DF9286 +:10724000EF92FF920F931F93CF93DF9384E080938D +:10725000E9008091E80082FF57C2289A84E690E016 +:107260009093AB018093AA01AADF182F853481F493 +:107270008CE49DE19093AD018093AC0107B600FCD6 +:10728000FDCFF999FECF81E180935700E89503C0C7 +:10729000843519F494DF8DE00DC28C34E1F3803530 +:1072A000D1F3843721F484E4A2DF80E003C2813685 +:1072B00011F489E5FFC18134B1F481DF182F7FDF3C +:1072C00090E0880F991FAA2797FDA095BA2F312F1C +:1072D000330F20E0442737FD4095542F822B932B0A +:1072E000A42BB52BB8C1803711F483E5E3C18335F6 +:1072F00049F4C0E0D1E089917ADF21E0C730D207BC +:10730000D1F7D9C1863521F481E371DF80E3D2C1A1 +:10731000833731F487E86BDF85E969DF8EE1CAC125 +:107320008536B9F4E0E0F0E093E085E09093570013 +:10733000E89507B600FCFDCF80935700E89507B6A7 +:1073400000FCFDCFE058FF4FA0E7E030FA0771F7EF +:10735000A2CF823739F4E1E0F0E089E08093570072 +:107360008491A8C1863439F4E0E0F0E089E08093AC +:10737000570084919FC18E3439F4E3E0F0E089E056 +:1073800080935700849196C1813539F4E2E0F0E0B2 +:1073900089E08093570084918DC1823631F489E56C +:1073A00026DF80E024DF80E885C1823419F087364B +:1073B00009F0E5C01092AD011092AC0100DF082F7A +:1073C000FEDEF82EFCDE682E8554823008F071C196 +:1073D000902F80E0CF2DD0E0C82BD92B10926F00DA +:1073E000173609F04BC081E180935700E895DD2402 +:1073F000CC24C3943FC0E090AE01F090AF01009167 +:10740000B0011091B101B6E46B16D9F4ED2DF0E0A6 +:10741000EE29FF29E4918E2FEADEDD2081F082E063 +:1074200090E0A0E0B0E0E80EF91E0A1F1B1FE092FA +:10743000AE01F092AF010093B0011093B101DC24D2 +:1074400018C0D801C701B695A7959795879559D5C6 +:10745000CEDE82E090E0A0E0B0E0E80EF91E0A1F68 +:107460001B1FE092AE01F092AF010093B0011093A8 +:10747000B1012197209709F0BECF7DC08090AE0169 +:107480009090AF01A090B001B090B10196E4691660 +:1074900009F05DC083E0F40180935700E89507B6DA +:1074A00000FCFDCF54C0F6E46F1661F5772031F192 +:1074B000E090AE01F090AF010091B0011091B101E8 +:1074C0007EDED82ECC24852D90E08C299D29F701D5 +:1074D0000C0140925700E895112482E090E0A0E072 +:1074E000B0E0E80EF91E0A1F1B1FE092AE01F092F9 +:1074F000AF010093B0011093B10102C060DE582EBD +:10750000742423C0E090AE01F090AF010091B0016F +:107510001091B10116950795F794E79450DE682F06 +:10752000C701F7D48091AE019091AF01A091B00155 +:10753000B091B1010296A11DB11D8093AE0190934F +:10754000AF01A093B001B093B101219704C05524BD +:10755000772444244394209709F0A5CF96E4691634 +:1075600041F485E0F40180935700E89507B600FCEC +:10757000FDCF8DE03CDE82E080936F009CC08334C1 +:1075800071F40091AE011091AF0119DE90E021E09D +:10759000F8010C0120935700E89511247CCE833626 +:1075A00019F5E090AE01F090AF010091B00110919B +:1075B000B10105DEF701E16090E021E00C012093CC +:1075C0005700E895112482E090E0A0E0B0E0E80EDA +:1075D000F91E0A1F1B1FE092AE01F092AF0100934B +:1075E000B0011093B10157CE8D3661F4E091AE0138 +:1075F000F091AF0185E080935700E89507B600FC55 +:10760000FDCF49CE823551F4E091AE01F091AF014A +:1076100005911491812FEBDD802F4CC0843421F52E +:10762000E090AE01F090AF010091B0011091B10176 +:1076300016950795F794E794C2DD682FC70169D4C2 +:107640008091AE019091AF01A091B001B091B101D4 +:107650000296A11DB11D8093AE019093AF01A0933E +:10766000B001B093B10117CE843609F5E090AE01B8 +:10767000F090AF010091B0011091B101D801C701A4 +:10768000B695A795979587953CD4B1DD82E090E0BB +:10769000A0E0B0E0E80EF91E0A1F1B1FE092AE0149 +:1076A000F092AF010093B0011093B10104C08B318F +:1076B00011F08FE39CDD83E08093E9009091E80076 +:1076C0008091E8008E778093E80095FF04C010C099 +:1076D0008EB38823C9F08091E80080FFF9CF8091B4 +:1076E000E8008E778093E80003C08EB3882361F0B2 +:1076F0008091E80080FFF9CF84E08093E9008091D9 +:10770000E8008B778093E800DF91CF911F910F9174 +:10771000FF90EF90DF90CF90BF90AF909F908F90B1 +:107720007F906F905F904F9008959091B601892F50 +:107730008F77813249F58091B7018032A1F0813293 +:1077400019F5913A09F58091E800877F8093E80068 +:107750008DE091E067E070E00BD28091E8008B77DC +:107760008093E8000895913279F48091E800877F52 +:107770008093E8008DE091E067E070E05DD2809159 +:10778000E8008E778093E800089582E061EC42E0A3 +:10779000B5D083E061E842E1B1D084E060E842E145 +:1077A000ADC084B7877F84BF88E10FB6F89480931B +:1077B0006000109260000FBE20E880E090E00FB6FD +:1077C000F89420936100809361000FBE81E085BF33 +:1077D00092E095BF3F9A209A559AE1E6F0E0208327 +:1077E000108247985D982898109289008AEF8093BC +:1077F000880090936F0083E080938100F0C04091F7 +:10780000000850910108109201081092000894B7E6 +:1078100014BE88E10FB6F894809360001092600067 +:107820000FBE292F30E0F901E270F07091FD18C011 +:1078300090FF05C0859194918F5F9F4F81F423FF46 +:107840000FC08091090190910A014817590741F032 +:10785000E0E0F0E0859194918F5F9F4F09F042DC6A +:10786000A0DF78941092AD011092AC010CC0DEDC68 +:1078700036D38091AC019091AD0181549F4110F0BD +:107880001092140141DC80911401882381F78091CA +:10789000E00081608093E00025DC80E090E00895C6 +:1078A000FA01923049F0933061F09130F9F485E1BA +:1078B00091E022E130E01EC087E291E02EE330E06B +:1078C00019C0882329F485E691E024E030E012C055 +:1078D000813029F489E691E022E230E00BC0823069 +:1078E00029F48DE891E028E130E004C080E090E0E8 +:1078F00020E030E091838083C90108958093E900FE +:107900008091EB0081608093EB001092ED0060931A +:10791000EC004093ED008091EE00881F8827881FBF +:1079200008958091B60188238CF403C08EB3882318 +:10793000B1F08091E80082FFF9CF8091E8008B7769 +:107940008093E80008958EB3882349F08091E80081 +:1079500080FFF9CF8091E8008E778093E80008954A +:10796000EF92FF920F931F9345D04CD008ED10E09B +:10797000F80180818F778083808180688083808117 +:107980008F7D808319BC1EBA1092B40180EEE82E60 +:10799000F12CF70180818B7F8083F80180818160E9 +:1079A000808380E060E042E0A9DFE1EEF0E08081EA +:1079B0008E7F8083E2EEF0E0808181608083808131 +:1079C00088608083F70180818E7F8083F8018081C9 +:1079D000806180831F910F91FF90EF900895E7EDF4 +:1079E000F0E08081816080838AE482BF81E08093BF +:1079F000B501B6CFE8EDF0E080818E7F80831092F4 +:107A0000E20008951092DA001092E10008951F92AA +:107A10000F920FB60F9211242F933F934F935F93C2 +:107A20006F937F938F939F93AF93BF93EF93FF9346 +:107A30008091DA0080FF1BC08091D80080FF17C0C2 +:107A40008091DA008E7F8093DA008091D90080FFE8 +:107A50000BC080E189BD82E189BD09B400FEFDCF84 +:107A600081E08EBB3BD203C019BC1EBA37D28091D5 +:107A7000E10080FF17C08091E20080FF13C0809179 +:107A8000E2008E7F8093E2008091E200806180932B +:107A9000E2008091D80080628093D80019BC85E014 +:107AA0008EBB1CD28091E10084FF2CC08091E2004B +:107AB00084FF28C080E189BD82E189BD09B400FE50 +:107AC000FDCF8091D8008F7D8093D8008091E10018 +:107AD0008F7E8093E1008091E2008F7E8093E200B0 +:107AE0008091E20081608093E2008091B40188235C +:107AF00031F48091E30087FD02C081E001C084E0A1 +:107B00008EBBECD18091E10083FF21C08091E20027 +:107B100083FF1DC08091E100877F8093E10082E0B8 +:107B20008EBB1092B4018091E1008E7F8093E100C2 +:107B30008091E2008E7F8093E2008091E20080617C +:107B40008093E20080E060E042E0D8DEC7D1FF91A0 +:107B5000EF91BF91AF919F918F917F916F915F91C5 +:107B60004F913F912F910F900FBE0F901F9018953E +:107B70009C014091BC015091BD014617570718F474 +:107B8000F90190E044C06115710511F0AB01F8CF27 +:107B90008091E8008E778093E80040E050E0F0CFDD +:107BA0008EB3882309F444C0853009F443C0809122 +:107BB000E80083FF02C081E008958091E80082FD23 +:107BC00031C08091E80080FF22C08091F300909145 +:107BD000F200782F60E0292F30E0262B372B07C0EA +:107BE00081918093F100415050402F5F3F4F4115EC +:107BF000510519F02830310598F390E0283031050F +:107C000009F491E08091E8008E778093E8004115B7 +:107C1000510531F6992321F605C08EB3882341F032 +:107C2000853041F08091E80082FFF7CF80E0089531 +:107C300082E0089583E008959C016115710529F49F +:107C40008091E8008B778093E800F90126C08EB31D +:107C5000882391F1853091F18091E80083FF02C083 +:107C600081E008958091E80082FFF1CF06C0809105 +:107C7000F10081936150704059F02091F3008091A0 +:107C8000F200322F20E090E0822B932B892B79F7A2 +:107C90008091E8008B778093E80061157105B9F653 +:107CA00005C08EB3882341F0853041F08091E80013 +:107CB00080FFF7CF80E0089582E0089583E0089583 +:107CC0000F931F93DF93CF9300D0CDB7DEB7E6EBD2 +:107CD000F1E08091F100819381E0EE3BF807C9F774 +:107CE00024DD8091E80083FFE4C08091B60190918B +:107CF000B701953009F46DC0963040F4913081F1B0 +:107D0000913070F0933009F0D4C02AC0983009F453 +:107D1000A3C0993009F4B2C0963009F0CAC07CC043 +:107D2000803809F4C6C0823809F0C3C08091BA0116 +:107D300087708093E9008091EB001092E900209118 +:107D4000E800277F2093E80090E025E0969587954E +:107D50002A95E1F781708093F1001092F10087C0BD +:107D6000882319F0823009F0A4C08F71823009F0A5 +:107D7000A0C08091B801882331F52091BA01277005 +:107D800009F497C02093E9008091EB0080FF1BC0AD +:107D9000933021F48091EB00806213C08091EB005E +:107DA00080618093EB0081E090E002C0880F991F12 +:107DB0002A95E2F78093EA001092EA008091EB00A6 +:107DC00088608093EB001092E9008091E800877F43 +:107DD00051C0882309F06DC01091B8011F770FB70B +:107DE000F8948091E800877F8093E8009ADD809185 +:107DF000E80080FFFCCF8091E3008078812B8093A6 +:107E0000E30080688093E300112311F482E001C055 +:107E100083E08EBB0FBF4DC08058823008F049C050 +:107E20008091B8019091B9016091BA01AE014F5FA4 +:107E30005F4F36DDBC01009709F43BC08091E8003C +:107E4000877F8093E80089819A8192DE8091E800A3 +:107E50008B778093E8002DC0803859F58091E80039 +:107E6000877F8093E8008091B4018093F100809136 +:107E7000E8008E778093E80054DD1BC08823C9F4A6 +:107E80009091B8019230A8F48091E800877F8093A8 +:107E9000E8009093B40145DD8091B401882331F46A +:107EA0008091E30087FD02C081E001C084E08EBBC9 +:107EB0006CDC8091E80083FF0AC08091EB00806257 +:107EC0008093EB008091E800877F8093E8000F901B +:107ED0000F90CF91DF911F910F91089508951F93F7 +:107EE0008EB3882361F01091E9001092E90080912F +:107EF000E80083FF01C0E4DE17701093E9001F91D2 +:107F00000895F999FECF92BD81BDF89A992780B561 +:107F10000895262FF999FECF1FBA92BD81BD20BDCD +:107F20000FB6F894FA9AF99A0FBE01960895F8944C +:027F3000FFCF81 +:107F32004341544552494E41007777000800000002 +:107F4200000000080112011001020000084123375D +:107F52000201000201000109023E0002010080321A +:107F6200090400000102020100052400100104249A +:107F720002040524060001070582030800FF090424 +:107F82000100020A000000070504021000010705B3 +:107F92008302100001040309042203470065006EF6 +:107FA20000750069006E006F0020004D00690063DB +:107FB2000072006F00200020002000000018034122 +:107FC2000072006400750069006E006F0020004CB2 +:087FD200004C00430000000018 +:040000030000700089 +:00000001FF diff --git a/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.txt b/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.txt new file mode 100644 index 00000000000..fd29bd8b8c7 --- /dev/null +++ b/hardware/arduino/avr/bootloaders/caterina/Caterina-Genuino-Micro.txt @@ -0,0 +1,19 @@ +GENUINO MICRO PRODUCTION FIRMWARES +================================== + +Bootloader: +----------- + +Name: Caterina-Genuino-Micro.hex + +Notes: +Builds against LUFA version 111009 +make version 3.81 +avrdude version 5.11 + +All AVR tools except avrdude were installed by CrossPack 20100115: +avr-gcc version 4.3.3 (GCC) +Thread model: single +Configured with: ../configure —prefix=/usr/local/CrossPack-AVR-20100115 —disable-dependency-tracking —disable-nls —disable-werror —target=avr —enable-languages=c,c++ —disable-nls —disable-libssp —with-dwarf2 +avr-libc version 1.6.7 +binutils version 2.19 diff --git a/hardware/arduino/avr/cores/arduino/CDC.cpp b/hardware/arduino/avr/cores/arduino/CDC.cpp index 7168408743b..f19b44c7f1e 100644 --- a/hardware/arduino/avr/cores/arduino/CDC.cpp +++ b/hardware/arduino/avr/cores/arduino/CDC.cpp @@ -236,9 +236,11 @@ Serial_::operator bool() { unsigned long Serial_::baud() { // Disable interrupts while reading a multi-byte value + uint32_t baudrate; ATOMIC_BLOCK(ATOMIC_RESTORESTATE) { - return _usbLineInfo.dwDTERate; + baudrate = _usbLineInfo.dwDTERate; } + return baudrate; } uint8_t Serial_::stopbits() { diff --git a/hardware/arduino/avr/cores/arduino/HardwareSerial.h b/hardware/arduino/avr/cores/arduino/HardwareSerial.h index 1beafc54c46..8a5bf95e660 100644 --- a/hardware/arduino/avr/cores/arduino/HardwareSerial.h +++ b/hardware/arduino/avr/cores/arduino/HardwareSerial.h @@ -40,14 +40,14 @@ // often work, but occasionally a race condition can occur that makes // Serial behave erratically. See https://github.com/arduino/Arduino/issues/2405 #if !defined(SERIAL_TX_BUFFER_SIZE) -#if (RAMEND < 1000) +#if ((RAMEND - RAMSTART) < 1023) #define SERIAL_TX_BUFFER_SIZE 16 #else #define SERIAL_TX_BUFFER_SIZE 64 #endif #endif #if !defined(SERIAL_RX_BUFFER_SIZE) -#if (RAMEND < 1000) +#if ((RAMEND - RAMSTART) < 1023) #define SERIAL_RX_BUFFER_SIZE 16 #else #define SERIAL_RX_BUFFER_SIZE 64 diff --git a/hardware/arduino/avr/cores/arduino/IPAddress.cpp b/hardware/arduino/avr/cores/arduino/IPAddress.cpp index 899cbd4eda8..76aefa8b21f 100644 --- a/hardware/arduino/avr/cores/arduino/IPAddress.cpp +++ b/hardware/arduino/avr/cores/arduino/IPAddress.cpp @@ -43,6 +43,48 @@ IPAddress::IPAddress(const uint8_t *address) memcpy(_address.bytes, address, sizeof(_address.bytes)); } +bool IPAddress::fromString(const char *address) +{ + // TODO: add support for "a", "a.b", "a.b.c" formats + + uint16_t acc = 0; // Accumulator + uint8_t dots = 0; + + while (*address) + { + char c = *address++; + if (c >= '0' && c <= '9') + { + acc = acc * 10 + (c - '0'); + if (acc > 255) { + // Value out of [0..255] range + return false; + } + } + else if (c == '.') + { + if (dots == 3) { + // Too much dots (there must be 3 dots) + return false; + } + _address.bytes[dots++] = acc; + acc = 0; + } + else + { + // Invalid char + return false; + } + } + + if (dots != 3) { + // Too few dots (there must be 3 dots) + return false; + } + _address.bytes[3] = acc; + return true; +} + IPAddress& IPAddress::operator=(const uint8_t *address) { memcpy(_address.bytes, address, sizeof(_address.bytes)); diff --git a/hardware/arduino/avr/cores/arduino/IPAddress.h b/hardware/arduino/avr/cores/arduino/IPAddress.h index 94acdc45668..d762f2c02b5 100644 --- a/hardware/arduino/avr/cores/arduino/IPAddress.h +++ b/hardware/arduino/avr/cores/arduino/IPAddress.h @@ -21,7 +21,8 @@ #define IPAddress_h #include -#include +#include "Printable.h" +#include "WString.h" // A class to make it easier to handle and pass around IP addresses @@ -45,6 +46,9 @@ class IPAddress : public Printable { IPAddress(uint32_t address); IPAddress(const uint8_t *address); + bool fromString(const char *address); + bool fromString(const String &address) { return fromString(address.c_str()); } + // 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() const { return _address.dword; }; @@ -71,5 +75,4 @@ class IPAddress : public Printable { const IPAddress INADDR_NONE(0,0,0,0); - #endif diff --git a/hardware/arduino/avr/cores/arduino/PluggableUSB.h b/hardware/arduino/avr/cores/arduino/PluggableUSB.h index d89040eb41d..23013eb7844 100644 --- a/hardware/arduino/avr/cores/arduino/PluggableUSB.h +++ b/hardware/arduino/avr/cores/arduino/PluggableUSB.h @@ -35,12 +35,6 @@ typedef struct __attribute__((packed)) uint8_t *endpointType; } PUSBCallbacks; -typedef struct -{ - u8 interface; - u8 firstEndpoint; -} PUSBReturn; - class PUSBListNode { public: PUSBListNode *next = NULL; diff --git a/hardware/arduino/avr/cores/arduino/Tone.cpp b/hardware/arduino/avr/cores/arduino/Tone.cpp index 4e058cd25f6..1bfb3e379e4 100644 --- a/hardware/arduino/avr/cores/arduino/Tone.cpp +++ b/hardware/arduino/avr/cores/arduino/Tone.cpp @@ -209,7 +209,7 @@ static int8_t toneBegin(uint8_t _pin) #if defined(WGM42) bitWrite(TCCR4B, WGM42, 1); #elif defined(CS43) - #warning this may not be correct + // TODO this may not be correct // atmega32u4 bitWrite(TCCR4B, CS43, 1); #endif diff --git a/hardware/arduino/avr/cores/arduino/USBAPI.h b/hardware/arduino/avr/cores/arduino/USBAPI.h index 4072772ecb3..f22ab6add54 100644 --- a/hardware/arduino/avr/cores/arduino/USBAPI.h +++ b/hardware/arduino/avr/cores/arduino/USBAPI.h @@ -75,7 +75,7 @@ extern USBDevice_ USBDevice; struct ring_buffer; #ifndef SERIAL_BUFFER_SIZE -#if (RAMEND < 1000) +#if ((RAMEND - RAMSTART) < 1023) #define SERIAL_BUFFER_SIZE 16 #else #define SERIAL_BUFFER_SIZE 64 diff --git a/hardware/arduino/avr/cores/arduino/USBCore.cpp b/hardware/arduino/avr/cores/arduino/USBCore.cpp index f12d3269afd..733a178c909 100644 --- a/hardware/arduino/avr/cores/arduino/USBCore.cpp +++ b/hardware/arduino/avr/cores/arduino/USBCore.cpp @@ -372,8 +372,8 @@ bool ClassInterfaceRequest(USBSetup& setup) return false; } -int _cmark; -int _cend; +static int _cmark; +static int _cend; void InitControl(int end) { SetEP(0); @@ -438,7 +438,7 @@ int USB_RecvControl(void* d, int len) return len; } -int SendInterfaces() +static u8 SendInterfaces() { u8 interfaces = 0; @@ -459,7 +459,7 @@ bool SendConfiguration(int maxlen) { // Count and measure interfaces InitControl(0); - int interfaces = SendInterfaces(); + u8 interfaces = SendInterfaces(); ConfigDescriptor config = D_CONFIG(_cmark + sizeof(ConfigDescriptor),interfaces); // Now send them @@ -469,7 +469,7 @@ bool SendConfiguration(int maxlen) return true; } -u8 _cdcComposite = 0; +static u8 _cdcComposite = 0; static bool SendDescriptor(USBSetup& setup) diff --git a/hardware/arduino/avr/cores/arduino/WInterrupts.c b/hardware/arduino/avr/cores/arduino/WInterrupts.c index 71dd45cac5f..7e9f71702d8 100644 --- a/hardware/arduino/avr/cores/arduino/WInterrupts.c +++ b/hardware/arduino/avr/cores/arduino/WInterrupts.c @@ -32,7 +32,39 @@ #include "wiring_private.h" -static volatile voidFuncPtr intFunc[EXTERNAL_NUM_INTERRUPTS]; +static void nothing(void) { +} + +static volatile voidFuncPtr intFunc[EXTERNAL_NUM_INTERRUPTS] = { +#if EXTERNAL_NUM_INTERRUPTS > 8 + #warning There are more than 8 external interrupts. Some callbacks may not be initialized. + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 7 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 6 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 5 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 4 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 3 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 2 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 1 + nothing, +#endif +#if EXTERNAL_NUM_INTERRUPTS > 0 + nothing, +#endif +}; // volatile static voidFuncPtr twiIntFunc; void attachInterrupt(uint8_t interruptNum, void (*userFunc)(void), int mode) { @@ -238,7 +270,7 @@ void detachInterrupt(uint8_t interruptNum) { #endif } - intFunc[interruptNum] = 0; + intFunc[interruptNum] = nothing; } } @@ -250,87 +282,71 @@ void attachInterruptTwi(void (*userFunc)(void) ) { #if defined(__AVR_ATmega32U4__) ISR(INT0_vect) { - if(intFunc[EXTERNAL_INT_0]) - intFunc[EXTERNAL_INT_0](); + intFunc[EXTERNAL_INT_0](); } ISR(INT1_vect) { - if(intFunc[EXTERNAL_INT_1]) - intFunc[EXTERNAL_INT_1](); + intFunc[EXTERNAL_INT_1](); } ISR(INT2_vect) { - if(intFunc[EXTERNAL_INT_2]) - intFunc[EXTERNAL_INT_2](); + intFunc[EXTERNAL_INT_2](); } ISR(INT3_vect) { - if(intFunc[EXTERNAL_INT_3]) - intFunc[EXTERNAL_INT_3](); + intFunc[EXTERNAL_INT_3](); } ISR(INT6_vect) { - if(intFunc[EXTERNAL_INT_4]) - intFunc[EXTERNAL_INT_4](); + intFunc[EXTERNAL_INT_4](); } #elif defined(EICRA) && defined(EICRB) ISR(INT0_vect) { - if(intFunc[EXTERNAL_INT_2]) intFunc[EXTERNAL_INT_2](); } ISR(INT1_vect) { - if(intFunc[EXTERNAL_INT_3]) intFunc[EXTERNAL_INT_3](); } ISR(INT2_vect) { - if(intFunc[EXTERNAL_INT_4]) intFunc[EXTERNAL_INT_4](); } ISR(INT3_vect) { - if(intFunc[EXTERNAL_INT_5]) intFunc[EXTERNAL_INT_5](); } ISR(INT4_vect) { - if(intFunc[EXTERNAL_INT_0]) intFunc[EXTERNAL_INT_0](); } ISR(INT5_vect) { - if(intFunc[EXTERNAL_INT_1]) intFunc[EXTERNAL_INT_1](); } ISR(INT6_vect) { - if(intFunc[EXTERNAL_INT_6]) intFunc[EXTERNAL_INT_6](); } ISR(INT7_vect) { - if(intFunc[EXTERNAL_INT_7]) intFunc[EXTERNAL_INT_7](); } #else ISR(INT0_vect) { - if(intFunc[EXTERNAL_INT_0]) intFunc[EXTERNAL_INT_0](); } ISR(INT1_vect) { - if(intFunc[EXTERNAL_INT_1]) intFunc[EXTERNAL_INT_1](); } #if defined(EICRA) && defined(ISC20) ISR(INT2_vect) { - if(intFunc[EXTERNAL_INT_2]) intFunc[EXTERNAL_INT_2](); } #endif diff --git a/hardware/arduino/avr/cores/arduino/wiring.c b/hardware/arduino/avr/cores/arduino/wiring.c index f1a14ef9215..1c3e5a52ceb 100644 --- a/hardware/arduino/avr/cores/arduino/wiring.c +++ b/hardware/arduino/avr/cores/arduino/wiring.c @@ -303,8 +303,6 @@ void init() // put timer 1 in 8-bit phase correct pwm mode #if defined(TCCR1A) && defined(WGM10) sbi(TCCR1A, WGM10); -#elif defined(TCCR1) - #warning this needs to be finished #endif // set timer 2 prescale factor to 64 @@ -312,8 +310,8 @@ void init() sbi(TCCR2, CS22); #elif defined(TCCR2B) && defined(CS22) sbi(TCCR2B, CS22); -#else - #warning Timer 2 not finished (may not be present on this CPU) +//#else + // Timer 2 not finished (may not be present on this CPU) #endif // configure timer 2 for phase correct pwm (8-bit) @@ -321,8 +319,8 @@ void init() sbi(TCCR2, WGM20); #elif defined(TCCR2A) && defined(WGM20) sbi(TCCR2A, WGM20); -#else - #warning Timer 2 not finished (may not be present on this CPU) +//#else + // Timer 2 not finished (may not be present on this CPU) #endif #if defined(TCCR3B) && defined(CS31) && defined(WGM30) diff --git a/hardware/arduino/avr/cores/arduino/wiring_digital.c b/hardware/arduino/avr/cores/arduino/wiring_digital.c index 51adb2cc9d2..27a62fc6cde 100644 --- a/hardware/arduino/avr/cores/arduino/wiring_digital.c +++ b/hardware/arduino/avr/cores/arduino/wiring_digital.c @@ -94,7 +94,7 @@ static void turnOffPWM(uint8_t timer) case TIMER0A: cbi(TCCR0A, COM0A1); break; #endif - #if defined(TIMER0B) && defined(COM0B1) + #if defined(TCCR0A) && defined(COM0B1) case TIMER0B: cbi(TCCR0A, COM0B1); break; #endif #if defined(TCCR2A) && defined(COM2A1) diff --git a/hardware/arduino/avr/cores/arduino/wiring_private.h b/hardware/arduino/avr/cores/arduino/wiring_private.h index ed7c8f0a72a..a277b148450 100644 --- a/hardware/arduino/avr/cores/arduino/wiring_private.h +++ b/hardware/arduino/avr/cores/arduino/wiring_private.h @@ -52,7 +52,8 @@ uint32_t countPulseASM(volatile uint8_t *port, uint8_t bit, uint8_t stateMask, u #define EXTERNAL_INT_6 6 #define EXTERNAL_INT_7 7 -#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega128RFA1__) || defined(__AVR_ATmega256RFR2__) +#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) || defined(__AVR_ATmega128RFA1__) || defined(__AVR_ATmega256RFR2__) || \ + defined(__AVR_AT90USB82__) || defined(__AVR_AT90USB162__) || defined(__AVR_ATmega32U2__) || defined(__AVR_ATmega16U2__) || defined(__AVR_ATmega8U2__) #define EXTERNAL_NUM_INTERRUPTS 8 #elif defined(__AVR_ATmega1284__) || defined(__AVR_ATmega1284P__) || defined(__AVR_ATmega644__) || defined(__AVR_ATmega644A__) || defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644PA__) #define EXTERNAL_NUM_INTERRUPTS 3 diff --git a/hardware/arduino/avr/cores/arduino/wiring_pulse.c b/hardware/arduino/avr/cores/arduino/wiring_pulse.c index 76383e996ef..d6e04347e92 100644 --- a/hardware/arduino/avr/cores/arduino/wiring_pulse.c +++ b/hardware/arduino/avr/cores/arduino/wiring_pulse.c @@ -69,25 +69,24 @@ unsigned long pulseInLong(uint8_t pin, uint8_t state, unsigned long timeout) uint8_t port = digitalPinToPort(pin); uint8_t stateMask = (state ? bit : 0); - // convert the timeout from microseconds to a number of times through - // the initial loop; it takes 16 clock cycles per iteration. - unsigned long numloops = 0; - unsigned long maxloops = microsecondsToClockCycles(timeout); + unsigned long startMicros = micros(); // wait for any previous pulse to end - while ((*portInputRegister(port) & bit) == stateMask) - if (numloops++ == maxloops) + while ((*portInputRegister(port) & bit) == stateMask) { + if (micros() - startMicros > timeout) return 0; + } // wait for the pulse to start - while ((*portInputRegister(port) & bit) != stateMask) - if (numloops++ == maxloops) + while ((*portInputRegister(port) & bit) != stateMask) { + if (micros() - startMicros > timeout) return 0; + } unsigned long start = micros(); // wait for the pulse to stop while ((*portInputRegister(port) & bit) == stateMask) { - if (numloops++ == maxloops) + if (micros() - startMicros > timeout) return 0; } return micros() - start; diff --git a/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex b/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex new file mode 100644 index 00000000000..80c358b68f7 --- /dev/null +++ b/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Mega2560-R3.hex @@ -0,0 +1,490 @@ +:200000009EC00000B7C00000B5C00000B3C00000B1C00000AFC00000ADC00000ABC000006B +:20002000A9C00000A7C00000A5C00000FCC30000A1C400009FC000009DC000009BC0000050 +:2000400099C0000097C0000095C0000093C0000091C000008FC000008DC00000C6C10000D4 +:2000600089C0000087C0000085C0000083C0000081C00000160538052206380522067A05C3 +:2000800097052206EA05FC052403470065006E00750069006E006F0020004D006500670077 +:2000A00061002000320035003600300000003A03410072006400750069006E006F002000C3 +:2000C0004C004C004300200028007700770077002E00610072006400750069006E006F0078 +:2000E0002E0063006300290000000403090409023E00020100C0320904000001020201007E +:200100000524000110042402060524060001070582030800FF09040100020A000000070587 +:2001200004024000010705830240000112011001020000084123420201000102DC011124BA +:200140001FBECFEFD2E0DEBFCDBF11E0A0E0B1E0EEE4FFE002C005900D92A631B107D9F721 +:2001600012E0A6E1B1E001C01D92AF32B107E1F764D0EBC645CFFC01E058FF4FA081B181C5 +:200180006C93A081B1819D012F5F3F4F318320832E173F0721F412969C938E9311972FB7D6 +:2001A000F894FC01EC57FF4F80818F5F80832FBF0895DC01AE57BF4FED91FC911197419133 +:2001C0001196FC93EE939C0120583F4FE217F30711F48D939C932FB7F894FC01EC57FF4F7E +:2001E0009081915090832FBF842F089584B7877F84BF88E10FB6F894809360001092600009 +:200200000FBE87E690E09093CD008093CC0086E08093CA001092C80088E18093C900539A86 +:200220005A9A8AB180638AB98BB180638BB9F0D284E085BD5F9A579A0895D8DF2FB7F894EE +:200240008EE991E090931F0280931E0290932102809320022FBF2FB7F89489E191E0909366 +:200260009A018093990190939C0180939B012FBF7894D3E09FB7F894809122029FBF8038ED +:2002800049F080E091E00ED697FD04C0682F8EE991E071DF8FB7F894C0919D018FBFA899F9 +:2002A00002C0C13658F1A89A80919D01882319F05D98D0931601CC2349F089E191E079DFCD +:2002C000682F80E091E093D5C150F5CF80911601882341F0809116018150809316018111C0 +:2002E00001C05D9A80911701882341F080911701815080931701811101C05C9A9FB7F894F1 +:20030000809122029FBF882361F08EE991E051DF9091C80095FFFCCF8093CE005C98D093B6 +:20032000170180E091E0B0D59AD4A4CF80E091E011C580E091E0A5C41F93CF93DF93EC011A +:200340008C89813031F0823011F010E003C010E201C010E38B89823009F418608D898730A2 +:2003600031F0883031F0863029F4126003C0146001C016601092C9001092C8001092CA008F +:200380002F85388949895A89211581EE38074105510571F0CA01B90196958795779567957E +:2003A00060587B47814E9F4FA8D52150310902C020E130E03093CD002093CC001093CA008F +:2003C0008F859889A989BA898115914EA105B10511F480E001C082E08093C80088E98093BB +:2003E000C900DF91CF911F9108951F920F920FB60F9211242F933F934F935F936F937F93AE +:200400008F939F93AF93BF93EF93FF936091CE008EB3843019F489E191E0ADDEFF91EF91A9 +:20042000BF91AF919F918F917F916F915F914F913F912F910F900FBE0F901F901895FC0108 +:20044000858580FF02C05F9808955F9A0895292F33272230310559F02330310569F0213071 +:200460003105F9F482E190E02CE231E01EC08EE390E02EEE30E019C099278130910541F06B +:200480008230910541F0892B61F4EAEEF0E005C0EEEAF0E002C0E8E8F0E0849190E09F013E +:2004A00004C080E090E020E030E0FA0131832083089528E030E040E02817390720F44F5F30 +:2004C000220F331FF9CF842F8295807F08958093E900EBEEF0E0808181608083EDEEF0E036 +:2004E00010826093EC0040838091EE00881F8827881F08951092F40080E08093E90010929B +:20050000F0001092E8001092ED009091EB009E7F9093EB008F5F853081F7089580912702A9 +:2005200087FD05C08091E80080FF0DC010C08091E80082FD04C08EB38111F9CF08958091D8 +:20054000E8008B7707C08EB38111ECCF08958091E8008E778093E800089585E69091EC00B1 +:2005600090FF05C09091E80090FF05C01BC09091E80092FD17C09EB39923B1F09EB39530BC +:20058000A9F09091EB0095FD13C09091E10092FFE5CF9091E1009B7F9093E1008150F1F632 +:2005A00084E0089580E0089582E0089583E0089581E0089520912D0230912E0226173707F4 +:2005C00048F06115710539F42091E8002E772093E80001C0B90130E06115710591F1209147 +:2005E000E80023FD38C02091E80022FF06C08091E80082FF29C080E008952EB3222369F19B +:200600002EB3253061F12091E80020FFE5CF2091F200FC01CF016115710549F0283038F4CD +:2006200081918093F100615071092F5FF3CF31E0283009F030E02091E8002E772093E800DE +:20064000CBCF3111CCCFD3CF8EB3882331F08EB3853069F604C081E0089582E0089583E0FB +:20066000089520912D0230912E022617370748F06115710539F42091E8002E772093E80067 +:2006800001C0B90130E06115710599F12091E80023FD39C02091E80022FF06C08091E8002E +:2006A00082FF2AC080E008952EB3222371F12EB3253069F12091E80020FFE5CF2091F200AB +:2006C000FC01CF016115710551F0283040F484918093F100615071092F5F3196F2CF31E029 +:2006E000283009F030E02091E8002E772093E800CACF3111CBCFD2CF8EB3882331F08EB35C +:20070000853061F604C081E0089582E0089583E008956115710529F42091E8002B77209315 +:20072000E8006115710549F12091E80023FD2AC02EB3222359F12EB3253051F12091E80087 +:2007400022FFF2CFFC018091F200882371F09F012F5F3F4FC9014091F10040836150710975 +:2007600061157105C9F2F901EECFCF01D5CF8EB3882361F08EB3853059F08091E80080FFB3 +:20078000F6CF02C081E0089580E0089582E0089583E0089542D044D01EBA1092250210926F +:2007A00024021092230284E089BD89B5826089BD09B400FEFDCF8091D800982F9F779093CC +:2007C000D80080688093D800809163008E7F809363008091D8008F7D8093D8008091E000A6 +:2007E0008E7F8093E0008091E1008E7F8093E1008091E20081608093E2008091E100877F45 +:200800008093E1008091E20088608093E2000895C1DF81E08093260208951092E20008957D +:200820001092E10008951F920F920FB60F9211242F933F934F935F936F937F938F939F93DB +:20084000AF93BF93EF93FF938091E10080FF1BC08091E20080FF17C08091E1008E7F809349 +:20086000E1008091E2008E7F8093E2008091E20080618093E2008091D80080628093D80023 +:2008800019BC1EBAEBD18091E10084FF29C08091E20084FF25C084E089BD89B5826089BD26 +:2008A00009B400FEFDCF8091D8008F7D8093D8008091E1008F7E8093E1008091E2008F7EDE +:2008C0008093E2008091E20081608093E20080912502882311F084E001C081E08EBBBED118 +:2008E0008091E10083FF27C08091E20083FF23C08091E100877F8093E10082E08EBB10920C +:2009000025028091E1008E7F8093E1008091E2008E7F8093E2008091E20080618093E200FF +:20092000E9DD42E060E080E0D2DD8091F00088608093F00093D18091E10082FF0AC08091E2 +:20094000E20082FF06C08091E1008B7F8093E10085D1FF91EF91BF91AF919F918F917F9128 +:200960006F915F914F913F912F910F900FBE0F901F9018951F920F920FB60F9211242F9301 +:200980003F934F935F936F937F938F939F93AF93BF93CF93EF93FF93E9EEF0E0C081C77020 +:2009A0001082E0EFF0E08081877F808378941CD0F894E9EEF0E01082A0EFB0E08C9188601B +:2009C0008C93C083FF91EF91CF91BF91AF919F918F917F916F915F914F913F912F910F9056 +:2009E0000FBE0F901F9018951F93CF93DF93CDB7DEB7AA970FB6F894DEBF0FBECDBFE7E23F +:200A0000F2E08091F100819322E0EF32F207C9F72091270230912802832F90E08A309105DB +:200A200008F010C1FC01E65CFF4F89C2203881F0223809F007C180912B0287708093E90000 +:200A40008091EB0085FB882780F91092E90006C08091230290912402911182609091E80097 +:200A6000977F9093E8008093F1001092F100BDC0822F8D7F09F0E6C0222319F0223061F0F4 +:200A8000D2C080912902813009F0CDC0333009F080E08093240228C080912902811124C0C2 +:200AA00020912B02277009F4BEC02093E9008091EB0080FFB8C08091EB00333011F4806271 +:200AC00011C080618093EB0081E090E0022E01C0880F0A94EAF78093EA001092EA008091F4 +:200AE000EB0088608093EB001092E9008091E800877F7EC02111A6C0109129028091E80000 +:200B0000877F8093E8000ADD8091E80080FD04C08EB38111F9CF87C0812F8F7711F093E0A7 +:200B200001C092E09EBB80688093E3007CC02058223008F087C08091290290912A028C3DB4 +:200B400023E0920781F583E08A838AE289834FB7F894DE01139620E03EE051E2E32FF0E04E +:200B600050935700E49120FF03C0E295EF703F5FEF7090E39E0F9A3310F0E95C01C0E92F06 +:200B80008E2F90E08D939D932F5F243139F74FBF8091E800877F8093E8006AE270E0CE0152 +:200BA000019608DD11C0AE014F5F5F4F60912B024EDC0097C1F12091E800277F2093E80072 +:200BC000BC0189819A814DDD8091E8008B778093E80029C02038B1F58091E800877F80931A +:200BE000E800809125028093F1008091E8008E778093E80093DC17C0211124C09091290230 +:200C0000923088F48091E800877F8093E8009093250284DC80912502882311F084E001C0E9 +:200C200083E08EBB83DB8091E80083FF0DC08091EB0080628093EB008091E800877F809374 +:200C4000E80002C076DBEFCFAA960FB6F894DEBF0FBECDBFDF91CF911F9108950895CF9338 +:200C60008EB3882359F0C091E900C7701092E9008091E80083FDB8DEC093E900CF910895FB +:200C80000895CF93DF93EC018091E80083FF5FC0888190E020912B0230912C022817390797 +:200CA00009F055C080912802813249F018F48032C9F04DC0823261F18332C9F148C08091ED +:200CC0002702813A09F043C08091E800877F8093E80067E070E0CE010F966CDC8091E800EE +:200CE0008B7713C080912702813289F58091E800877F8093E80067E070E0CE010F9609DDC9 +:200D0000CE011ADB8091E8008E778093E8001FC0809127028132D9F48091E800877F80936B +:200D2000E800809129028D87CE0189DB0DC080912702813261F48091E800877F8093E8003F +:200D400060912902CE019CDFDF91CF91E7CBDF91CF9108950F931F93CF93DF93EC01FC012C +:200D60003D9689E0DF011D928A95E9F72A813B818C81882311F014E001C010E00981C90190 +:200D800098DB412F482B426061E8802FA0DB882341F12E813F818885882311F014E001C02E +:200DA00010E00D81C90185DB412F482B426060E8802F8DDB8823A9F02A853B858C85882338 +:200DC00011F014E001C010E0C985C90172DB412F482B426061EC8C2FDF91CF911F910F915B +:200DE00076CB80E0DF91CF911F910F910895CF93C62F2EB32430E9F4FC01478550896189A0 +:200E00007289452B462B472BA1F081818093E9008091E80085FF04C0C093F10080E00AC046 +:200E20008091E8008E778093E80097DB8823A1F301C082E0CF9108952EB3243019F5FC01A8 +:200E40004785508961897289452B462B472BD1F081818093E9008091F200882389F09091AE +:200E6000E8008091E8008E778093E80095FD08C074DB811108C08091E8008E778093E80095 +:200E800080E0089582E008952EB3243051F4FC014785508961897289452B462B472B09F009 +:200EA000CBCF08952EB3243019F08FEF9FEF0895FC014785508961897289452B462B472B3A +:200EC000A1F385818093E9008091E80082FFEDCF8091F200882321F02091F10030E002C013 +:200EE0002FEF3FEF8091F200811105C08091E8008B778093E800C9010895A1E21A2EAA1B5F +:200F0000BB1BFD010DC0AA1FBB1FEE1FFF1FA217B307E407F50720F0A21BB30BE40BF50B8E +:200F2000661F771F881F991F1A9469F760957095809590959B01AC01BD01CF010895EE0F84 +:200F4000FF1F0590F491E02D0994F894FFCF000340000004400000020800000000000000C4 +:200F600000000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8D +:200F800020F0A21BB30BE40BF50B661F771F881F991F1A9469F760957095809590959B017F +:200FA000AC01BD01CF010895F894FFCF00034000000440000002080000000000000000006E +:200FC0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F +:200FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF11 +:20100000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 +:20102000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0 +:20104000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0 +:20106000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF90 +:20108000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF70 +:2010A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF50 +:2010C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF30 +:2010E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF10 +:20110000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF +:20112000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF +:20114000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF +:20116000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F +:20118000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6F +:2011A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4F +:2011C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F +:2011E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F +:20120000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE +:20122000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE +:20124000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE +:20126000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E +:20128000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6E +:2012A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4E +:2012C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2E +:2012E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0E +: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 +:203000004BC0000064C0000062C0000060C000005EC000005CC000005AC0000058C00000D3 +:2030200056C0000054C0000052C00000CBC400004EC000004CC000004AC0000048C0000099 +:2030400046C0000044C0000042C0000040C000003EC000003CC000003AC0000038C0000078 +:2030600036C0000034C0000032C0000030C000002EC000002CC000002AC0000028C00000D8 +:2030800026C0000024C0000022C0000020C000001EC000001CC0000011241FBECFEFD2E068 +:2030A000DEBFCDBF11E0A0E0B1E0E4EBFCE302C005900D92A836B107D9F711E0A8E6B1E0CB +:2030C00001C01D92A738B107E1F74FD3F1C598CF982F15C08091F200882371F48091E8002A +:2030E0008B7F8093E80003C08EB3882351F08091E80082FFF9CF02C08091F1009150992338 +:2031000049F708952091760130917501809174019091730180936D0190936E01C901809368 +:203120006F0190937001089580917101843009F45AC0853030F4813059F0833009F0C3C09E +:203140001FC0853009F4A0C0863009F0BCC0AFC080917201823008F0B6C0D4DF8091720109 +:20316000882361F480916D0190916E0123E0FC0120935700E89507B600FCFDCF85E008C007 +:2031800080917201882311F0823029F4BBDF89E0809301010895813009F095C020E030E06C +:2031A00040E050E0F90184918F3F81F0CA01AA27BB2780936C0130936E0120936D018AE0B6 +:2031C0008093010185E08093690108952F5F3F4F4F4F5F4F2030F0E33F07F0E04F07F0E094 +:2031E0005F0701F7089580917201833051F581E0809368018091770190917801892B71F042 +:2032000080917301813009F05EC0809176019091750190936B0180936A0108958091730113 +:20322000882361F42CE088E190E00FB6F894A895809360000FBE2093600008951092000188 +:203240000895882309F03FC0809173018F3F09F03AC0E0E0F0E093E085E090935700E89589 +:2032600007B600FCFDCF80935700E89507B600FCFDCFE058FF4F20E3E030F20771F781E101 +:2032800080935700E8950895E091730180917201882321F4F0E0EB5FFE4F05C0813099F417 +:2032A000F0E0EE52FF4F808180937C01089580917201833041F480917301882321F48091C0 +:2032C000740180936C0108952F923F924F925F926F927F929F92AF92BF92CF92DF92EF92D0 +:2032E000FF920F931F93CF93DF938091850190918601909378018093770180917901882379 +:2033000051F08091790181508093790180917901882309F45D9A80917A01882351F08091D0 +:203320007A01815080937A0180917A01882309F45C9A80918001833009F4B2C1843030F4FC +:20334000813071F0823009F0E3C111C1853009F4C5C1853008F4BAC1863009F0D9C1CDC1FF +:203360005C9883E080937A018091E800877F8093E80080916801882329F0D6DE5D9A5C9A8F +:203380001092680120917701309178012115310529F42AC08EB3882309F4BAC18091E800EF +:2033A00082FFF8CF8091F10080937101215030403093780120937701E2E7F1E00CC080917F +:2033C000F10081932150304081E0E737F80719F43183208308C08091F200882381F7309374 +:2033E000780120937701A0DE80910101853009F0BAC08091770190917801892B21F482E022 +:2034000080930101B0C08AE163DE80916D018F715FDEC0916F01D091700120916D0130914C +:203420006E0121968E01021B130B219780917201882309F093C0180136942794C901A091D0 +:203440006C01B0E09C01AD0162E0E62EF12C012D112DE20EF31E041F151F59016A0190E0B8 +:2034600099249394B5E0A3E048C08091F200882371F48091E8008B7F8093E80004C08EB332 +:20348000882309F445C18091E80082FFF8CF0894210831088091F100682F8091F100782FFD +:2034A000F5010B0190925700E89511249F5F903419F021143104A1F4F901B0935700E89504 +:2034C00007B600FCFDCF2114310451F0F701A0935700E89507B600FCFDCFA801970190E087 +:2034E00042E0442E512C612C712CE40CF51C061D171DA40CB51CC61CD71C2114310409F080 +:20350000B4CFD0936E01C0936D0181E180935700E89527C08091F200882371F48091E80059 +:203520008B7F8093E80004C08EB3882309F4F0C08091E80082FFF8CF6091F10080916D0187 +:2035400090916E01A7D380916D0190916E01019690936E0180936D010150104001151105DB +:20356000C9F680E1B5DD8091E8008B7FC3C08091E800877F8093E8005D9883E08093790134 +:2035800004C08EB3882309F4C3C08091E80080FFF8CF80910101893091F08A3069F4809147 +:2035A0007201813049F480916D0190916E018093F1009093F1009BC080917C0196C0609153 +:2035C0006F017091700120916D0130916E016F5F7F4F7B01E21AF30A6150704080917201C4 +:2035E000882389F5870116950795C901A0916C01B0E09C01AD011FC08091F200803271F497 +:203600008091E8008E7F8093E80004C08EB3882309F47EC08091E80080FFF8CFF90185916F +:2036200094918093F1009093F100015010402E5F3F4F4F4F5F4F01151105F1F670936E01C0 +:2036400060936D0129C0823039F523C08091F200803271F48091E8008E7F8093E80004C07E +:203660008EB3882309F454C08091E80080FFF8CF00916D0110916E01C80104D38093F1005B +:203680000F5F1F4F10936E0100936D010894E108F108E114F104D1F682E08093010127C0AE +:2036A0008091E800877F8093E800809169018093F1001092F1001092F1001092F1008091C7 +:2036C00001018093F1001092F10011C08091E800877F8093E8001092690119C08091E800A8 +:2036E000877F8093E800809101018093F1008091E8008E7F8093E8000AC08091E800877FE8 +:203700008093E8005D9A5C9A82E08093010187D0DF91CF911F910F91FF90EF90DF90CF90F7 +:20372000BF90AF909F907F906F905F904F903F902F9008952BD181E085BF15BE089584B779 +:20374000877F84BF88E10FB6F89480936000109260000FBE81E085BF82E085BF8AB18063BB +:203760008AB98BB180638BB90CC1E9DF789401C080D2809100018823D9F78091680188233D +:20378000B9F7D8DFE0916A01F0916B010995FA01923071F0933089F0913029F488E091E04A +:2037A00022E130E019C080E090E020E030E014C08AE191E02BE130E00FC0882339F48091B9 +:2037C0003501282F30E085E391E006C080913901282F30E089E391E091838083C9010895A0 +:2037E0008091EB0081608093EB001092ED006093EC004093ED008091EE00881F8827881FC4 +:2038000008951092F4001092F0001092E8001092ED00EBEEF0E080818E7F80830895809162 +:203820007F0188238CF403C08EB38823B1F08091E80082FFF9CF8091E8008B7F8093E8004D +:2038400008958EB3882349F08091E80080FFF9CF8091E8008E7F8093E80008959C0140915A +:203860008501509186014617570718F4F90120E038C06115710511F0AB01F8CF8091E80048 +:203880008E7F8093E80040E050E0F0CF8091E80083FF02C081E008958091E80082FD2DC071 +:2038A0008EB3882381F18EB3853079F18091E80080FF17C09091F20006C081918093F1000C +:2038C000415050409F5F4115510511F09032A8F320E0903209F421E08091E8008E7F8093E6 +:2038E000E8004115510591F6222381F606C08EB3882349F08EB3853041F08091E80082FF65 +:20390000F6CF80E0089582E0089583E0089554D056D01EBA10927D0184E089BD89B58260DA +:2039200089BD09B400FEFDCF8091D800982F9F779093D80080688093D800809163008E7FA5 +:20394000809363008091D8008F7D8093D8008091E0008E7F8093E0008091E1008E7F80930E +:20396000E1008091E20081608093E2008091E100877F8093E1008091E20088608093E200E1 +:203980000895C5DF81E080937E010895C0DFE0EEF0E0808181608083E8EDF0E080818F7788 +:2039A00080830AD00CD019BCE3E6F0E080818160808310927E0108951092E200089510927A +:2039C000E10008951F920F920FB60F9211242F933F934F935F936F937F938F939F93AF936A +:2039E000BF93EF93FF938091E10080FF1BC08091E20080FF17C08091E1008E7F8093E100D9 +:203A00008091E2008E7F8093E2008091E20080618093E2008091D80080628093D80019BC5D +:203A20001EBA26D18091E10084FF29C08091E20084FF25C084E089BD89B5826089BD09B431 +:203A400000FEFDCF8091D8008F7D8093D8008091E1008F7E8093E1008091E2008F7E8093B6 +:203A6000E2008091E20081608093E20080917D01882311F481E001C084E08EBBF9D08091B3 +:203A8000E10083FF22C08091E20083FF1EC08091E100877F8093E10082E08EBB10927D01D7 +:203AA0008091E1008E7F8093E1008091E2008E7F8093E2008091E20080618093E200A1DED6 +:203AC00080E060E042E28CDED3D08091E10082FF0AC08091E20082FF06C08091E1008B7FA2 +:203AE0008093E100C5D0FF91EF91BF91AF919F918F917F916F915F914F913F912F910F903E +:203B00000FBE0F901F9018951F93DF93CF9300D0CDB7DEB7EFE7F1E08091F100819381E050 +:203B2000E738F807C9F790917F0180918001853011F1863040F48130B9F0813070F08330B5 +:203B400009F081C011C0883009F453C0893009F462C0863009F077C02DC0903809F474C0EE +:203B6000923809F070C070C0992309F46DC0923009F069C069C0992309F065C01091810132 +:203B80008091E800877F8093E80049DE04C08EB3882309F459C08091E80080FFF8CF812F4F +:203BA0008F7711F492E001C093E09EBB80688093E3004AC09058923008F045C080918101D9 +:203BC0009091820160918301AE014F5F5F4FDFDDBC010097C9F18091E800877F8093E800FD +:203BE00089819A813BDE8091E8008B7F8093E8002BC0903841F58091E800877F8093E800A6 +:203C000080917D018093F1008091E8008E7F8093E80005DE19C09923B1F49091810192308E +:203C200098F48091E800877F8093E80090937D01F6DD80917D01882311F483E001C084E0C3 +:203C40008EBB16D001C040DB8091E80083FF0AC08091EB0080628093EB008091E800877F39 +:203C60008093E8000F900F90CF91DF911F91089508958EB3882329F08091E80083FF01C010 +:203C800043CF0895F999FECF92BD81BDF89A992780B50895262FF999FECF1FBA92BD81BD4B +:203CA00020BD0FB6F894FA9AF99A0FBE01960895F894FFCF01021E948920DCFB12011001FB +:203CC00000000020EB03EF2F00000001000109021B0001010080320904000000FE010200CE +:203CE0000921030000000C0001040309042C03410054006D0065006700610031003600555C +:1C3D00000032002000440046005500200020002000200020002000200000000096 +:00000001FF diff --git a/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex b/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex new file mode 100644 index 00000000000..a6fe19413be --- /dev/null +++ b/hardware/arduino/avr/firmwares/atmegaxxu2/Genuino-COMBINED-dfu-usbserial-atmega16u2-Uno-R3.hex @@ -0,0 +1,490 @@ +:2000000098C00000B1C00000AFC00000ADC00000ABC00000A9C00000A7C00000A5C000009B +:20002000A3C00000A1C000009FC00000F6C300009BC4000099C0000097C0000095C0000080 +:2000400093C0000091C000008FC000008DC000008BC0000089C0000087C00000C0C1000004 +:2000600083C0000081C000007FC000007DC000007BC00000100532051C0632051C06740505 +:2000800091051C06E405F6051803470065006E00750069006E006F00200055006E006F0082 +:2000A00000003A03410072006400750069006E006F0020004C004C00430020002800770077 +:2000C000770077002E00610072006400750069006E006F002E0063006300290000000403EE +:2000E000090409023E00020100C03209040000010202010005240001100424020605240609 +:200100000001070582030800FF09040100020A000000070504024000010705830240000107 +:2001200012011001020000084123430201000102DC0111241FBECFEFD2E0DEBFCDBF11E06B +:20014000A0E0B1E0E2E4FFE002C005900D92A631B107D9F712E0A6E1B1E001C01D92AF3239 +:20016000B107E1F764D0EBC64BCFFC01E058FF4FA081B1816C93A081B1819D012F5F3F4F0E +:20018000318320832E173F0721F412969C938E9311972FB7F894FC01EC57FF4F80818F5FD9 +:2001A00080832FBF0895DC01AE57BF4FED91FC91119741911196FC93EE939C0120583F4FE2 +:2001C000E217F30711F48D939C932FB7F894FC01EC57FF4F9081915090832FBF842F089595 +:2001E00084B7877F84BF88E10FB6F89480936000109260000FBE87E690E09093CD0080939F +:20020000CC0086E08093CA001092C80088E18093C900539A5A9A8AB180638AB98BB18063BF +:200220008BB9F0D284E085BD5F9A579A0895D8DF2FB7F8948EE991E090931F0280931E0203 +:2002400090932102809320022FBF2FB7F89489E191E090939A018093990190939C018093AA +:200260009B012FBF7894D3E09FB7F894809122029FBF803849F080E091E00ED697FD04C0C2 +:20028000682F8EE991E071DF8FB7F894C0919D018FBFA89902C0C13658F1A89A80919D014C +:2002A000882319F05D98D0931601CC2349F089E191E079DF682F80E091E093D5C150F5CF1B +:2002C00080911601882341F080911601815080931601811101C05D9A80911701882341F0A8 +:2002E00080911701815080931701811101C05C9A9FB7F894809122029FBF882361F08EE9A8 +:2003000091E051DF9091C80095FFFCCF8093CE005C98D093170180E091E0B0D59AD4A4CF6D +:2003200080E091E011C580E091E0A5C41F93CF93DF93EC018C89813031F0823011F010E0DF +:2003400003C010E201C010E38B89823009F418608D89873031F0883031F0863029F41260ED +:2003600003C0146001C016601092C9001092C8001092CA002F85388949895A89211581EEFF +:2003800038074105510571F0CA01B901969587957795679560587B47814E9F4FA8D5215028 +:2003A000310902C020E130E03093CD002093CC001093CA008F859889A989BA898115914E95 +:2003C000A105B10511F480E001C082E08093C80088E98093C900DF91CF911F9108951F9243 +:2003E0000F920FB60F9211242F933F934F935F936F937F938F939F93AF93BF93EF93FF9349 +:200400006091CE008EB3843019F489E191E0ADDEFF91EF91BF91AF919F918F917F916F91B5 +:200420005F914F913F912F910F900FBE0F901F901895FC01858580FF02C05F9808955F9A20 +:200440000895292F33272230310559F02330310569F021303105F9F482E190E020E231E040 +:200460001EC08EE390E022EE30E019C099278130910541F08230910541F0892B61F4EEED2F +:20048000F0E005C0E2EAF0E002C0E8E8F0E0849190E09F0104C080E090E020E030E0FA0105 +:2004A00031832083089528E030E040E02817390720F44F5F220F331FF9CF842F8295807FBB +:2004C00008958093E900EBEEF0E0808181608083EDEEF0E010826093EC0040838091EE0017 +:2004E000881F8827881F08951092F40080E08093E9001092F0001092E8001092ED009091A4 +:20050000EB009E7F9093EB008F5F853081F708958091270287FD05C08091E80080FF0DC045 +:2005200010C08091E80082FD04C08EB38111F9CF08958091E8008B7707C08EB38111ECCF27 +:2005400008958091E8008E778093E800089585E69091EC0090FF05C09091E80090FF05C03F +:200560001BC09091E80092FD17C09EB39923B1F09EB39530A9F09091EB0095FD13C0909142 +:20058000E10092FFE5CF9091E1009B7F9093E1008150F1F684E0089580E0089582E0089560 +:2005A00083E0089581E0089520912D0230912E022617370748F06115710539F42091E80007 +:2005C0002E772093E80001C0B90130E06115710591F12091E80023FD38C02091E80022FF77 +:2005E00006C08091E80082FF29C080E008952EB3222369F12EB3253061F12091E80020FF15 +:20060000E5CF2091F200FC01CF016115710549F0283038F481918093F100615071092F5F3E +:20062000F3CF31E0283009F030E02091E8002E772093E800CBCF3111CCCFD3CF8EB38823A8 +:2006400031F08EB3853069F604C081E0089582E0089583E0089520912D0230912E02261755 +:20066000370748F06115710539F42091E8002E772093E80001C0B90130E06115710599F111 +:200680002091E80023FD39C02091E80022FF06C08091E80082FF2AC080E008952EB32223A1 +:2006A00071F12EB3253069F12091E80020FFE5CF2091F200FC01CF016115710551F02830E7 +:2006C00040F484918093F100615071092F5F3196F2CF31E0283009F030E02091E8002E77DC +:2006E0002093E800CACF3111CBCFD2CF8EB3882331F08EB3853061F604C081E0089582E0CB +:20070000089583E008956115710529F42091E8002B772093E8006115710549F12091E8009E +:2007200023FD2AC02EB3222359F12EB3253051F12091E80022FFF2CFFC018091F2008823A1 +:2007400071F09F012F5F3F4FC9014091F10040836150710961157105C9F2F901EECFCF01D4 +:20076000D5CF8EB3882361F08EB3853059F08091E80080FFF6CF02C081E0089580E008955F +:2007800082E0089583E0089542D044D01EBA10922502109224021092230284E089BD89B51C +:2007A000826089BD09B400FEFDCF8091D800982F9F779093D80080688093D8008091630082 +:2007C0008E7F809363008091D8008F7D8093D8008091E0008E7F8093E0008091E1008E7FC6 +:2007E0008093E1008091E20081608093E2008091E100877F8093E1008091E2008860809362 +:20080000E2000895C1DF81E08093260208951092E20008951092E10008951F920F920FB628 +:200820000F9211242F933F934F935F936F937F938F939F93AF93BF93EF93FF938091E10078 +:2008400080FF1BC08091E20080FF17C08091E1008E7F8093E1008091E2008E7F8093E2000D +:200860008091E20080618093E2008091D80080628093D80019BC1EBAEBD18091E10084FF1B +:2008800029C08091E20084FF25C084E089BD89B5826089BD09B400FEFDCF8091D8008F7D88 +:2008A0008093D8008091E1008F7E8093E1008091E2008F7E8093E2008091E200816080937E +:2008C000E20080912502882311F084E001C081E08EBBBED18091E10083FF27C08091E200A6 +:2008E00083FF23C08091E100877F8093E10082E08EBB109225028091E1008E7F8093E10040 +:200900008091E2008E7F8093E2008091E20080618093E200E9DD42E060E080E0D2DD8091D1 +:20092000F00088608093F00093D18091E10082FF0AC08091E20082FF06C08091E1008B7F05 +:200940008093E10085D1FF91EF91BF91AF919F918F917F916F915F914F913F912F910F904E +:200960000FBE0F901F9018951F920F920FB60F9211242F933F934F935F936F937F938F9324 +:200980009F93AF93BF93CF93EF93FF93E9EEF0E0C081C7701082E0EFF0E08081877F8083C1 +:2009A00078941CD0F894E9EEF0E01082A0EFB0E08C9188608C93C083FF91EF91CF91BF9134 +:2009C000AF919F918F917F916F915F914F913F912F910F900FBE0F901F9018951F93CF939C +:2009E000DF93CDB7DEB7AA970FB6F894DEBF0FBECDBFE7E2F2E08091F100819322E0EF3210 +:200A0000F207C9F72091270230912802832F90E08A30910508F010C1FC01E65CFF4F89C245 +:200A2000203881F0223809F007C180912B0287708093E9008091EB0085FB882780F910925B +:200A4000E90006C08091230290912402911182609091E800977F9093E8008093F100109216 +:200A6000F100BDC0822F8D7F09F0E6C0222319F0223061F0D2C080912902813009F0CDC0B6 +:200A8000333009F080E08093240228C080912902811124C020912B02277009F4BEC0209324 +:200AA000E9008091EB0080FFB8C08091EB00333011F4806211C080618093EB0081E090E093 +:200AC000022E01C0880F0A94EAF78093EA001092EA008091EB0088608093EB001092E90019 +:200AE0008091E800877F7EC02111A6C0109129028091E800877F8093E8000ADD8091E8007B +:200B000080FD04C08EB38111F9CF87C0812F8F7711F093E001C092E09EBB80688093E3001E +:200B20007CC02058223008F087C08091290290912A028C3D23E0920781F583E08A838AE230 +:200B400089834FB7F894DE01139620E03EE051E2E32FF0E050935700E49120FF03C0E29534 +:200B6000EF703F5FEF7090E39E0F9A3310F0E95C01C0E92F8E2F90E08D939D932F5F2431AE +:200B800039F74FBF8091E800877F8093E8006AE270E0CE01019608DD11C0AE014F5F5F4F5A +:200BA00060912B024EDC0097C1F12091E800277F2093E800BC0189819A814DDD8091E800C5 +:200BC0008B778093E80029C02038B1F58091E800877F8093E800809125028093F1008091EA +:200BE000E8008E778093E80093DC17C0211124C090912902923088F48091E800877F809315 +:200C0000E8009093250284DC80912502882311F084E001C083E08EBB83DB8091E80083FFB4 +:200C20000DC08091EB0080628093EB008091E800877F8093E80002C076DBEFCFAA960FB63B +:200C4000F894DEBF0FBECDBFDF91CF911F9108950895CF938EB3882359F0C091E900C77050 +:200C60001092E9008091E80083FDB8DEC093E900CF9108950895CF93DF93EC018091E8004A +:200C800083FF5FC0888190E020912B0230912C022817390709F055C080912802813249F0B9 +:200CA00018F48032C9F04DC0823261F18332C9F148C080912702813A09F043C08091E80049 +:200CC000877F8093E80067E070E0CE010F966CDC8091E8008B7713C080912702813289F587 +:200CE0008091E800877F8093E80067E070E0CE010F9609DDCE011ADB8091E8008E77809334 +:200D0000E8001FC0809127028132D9F48091E800877F8093E800809129028D87CE0189DBD5 +:200D20000DC080912702813261F48091E800877F8093E80060912902CE019CDFDF91CF9174 +:200D4000E7CBDF91CF9108950F931F93CF93DF93EC01FC013D9689E0DF011D928A95E9F798 +:200D60002A813B818C81882311F014E001C010E00981C90198DB412F482B426061E8802F6A +:200D8000A0DB882341F12E813F818885882311F014E001C010E00D81C90185DB412F482B93 +:200DA000426060E8802F8DDB8823A9F02A853B858C85882311F014E001C010E0C985C90105 +:200DC00072DB412F482B426061EC8C2FDF91CF911F910F9176CB80E0DF91CF911F910F9158 +:200DE0000895CF93C62F2EB32430E9F4FC014785508961897289452B462B472BA1F0818180 +:200E00008093E9008091E80085FF04C0C093F10080E00AC08091E8008E778093E80097DBBC +:200E20008823A1F301C082E0CF9108952EB3243019F5FC014785508961897289452B462BA8 +:200E4000472BD1F081818093E9008091F200882389F09091E8008091E8008E778093E80038 +:200E600095FD08C074DB811108C08091E8008E778093E80080E0089582E008952EB3243045 +:200E800051F4FC014785508961897289452B462B472B09F0CBCF08952EB3243019F08FEF47 +:200EA0009FEF0895FC014785508961897289452B462B472BA1F385818093E9008091E8009E +:200EC00082FFEDCF8091F200882321F02091F10030E002C02FEF3FEF8091F200811105C0FC +:200EE0008091E8008B778093E800C9010895A1E21A2EAA1BBB1BFD010DC0AA1FBB1FEE1FB4 +:200F0000FF1FA217B307E407F50720F0A21BB30BE40BF50B661F771F881F991F1A9469F757 +:200F200060957095809590959B01AC01BD01CF010895EE0FFF1F0590F491E02D0994F8949E +:200F4000FFCF00034000000440000002080000000000000000000000FFFFFFFFFFFFFFFF3A +:200F6000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF91 +:200F800020F0A21BB30BE40BF50B661F771F881F991F1A9469F760957095809590959B017F +:200FA000AC01BD01CF010895F894FFCF00034000000440000002080000000000000000006E +:200FC0000000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F +:200FE000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF11 +:20100000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0 +:20102000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFD0 +:20104000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFB0 +:20106000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF90 +:20108000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF70 +:2010A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF50 +:2010C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF30 +:2010E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF10 +:20110000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEF +:20112000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCF +:20114000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAF +:20116000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8F +:20118000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6F +:2011A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4F +:2011C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2F +:2011E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0F +:20120000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFEE +:20122000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFCE +:20124000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFAE +:20126000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF8E +:20128000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF6E +:2012A000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF4E +:2012C000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF2E +:2012E000FFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF0E +: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 +:203000004BC0000064C0000062C0000060C000005EC000005CC000005AC0000058C00000D3 +:2030200056C0000054C0000052C00000CBC400004EC000004CC000004AC0000048C0000099 +:2030400046C0000044C0000042C0000040C000003EC000003CC000003AC0000038C0000078 +:2030600036C0000034C0000032C0000030C000002EC000002CC000002AC0000028C00000D8 +:2030800026C0000024C0000022C0000020C000001EC000001CC0000011241FBECFEFD2E068 +:2030A000DEBFCDBF11E0A0E0B1E0E4EBFCE302C005900D92A836B107D9F711E0A8E6B1E0CB +:2030C00001C01D92A738B107E1F74FD3F1C598CF982F15C08091F200882371F48091E8002A +:2030E0008B7F8093E80003C08EB3882351F08091E80082FFF9CF02C08091F1009150992338 +:2031000049F708952091760130917501809174019091730180936D0190936E01C901809368 +:203120006F0190937001089580917101843009F45AC0853030F4813059F0833009F0C3C09E +:203140001FC0853009F4A0C0863009F0BCC0AFC080917201823008F0B6C0D4DF8091720109 +:20316000882361F480916D0190916E0123E0FC0120935700E89507B600FCFDCF85E008C007 +:2031800080917201882311F0823029F4BBDF89E0809301010895813009F095C020E030E06C +:2031A00040E050E0F90184918F3F81F0CA01AA27BB2780936C0130936E0120936D018AE0B6 +:2031C0008093010185E08093690108952F5F3F4F4F4F5F4F2030F0E33F07F0E04F07F0E094 +:2031E0005F0701F7089580917201833051F581E0809368018091770190917801892B71F042 +:2032000080917301813009F05EC0809176019091750190936B0180936A0108958091730113 +:20322000882361F42CE088E190E00FB6F894A895809360000FBE2093600008951092000188 +:203240000895882309F03FC0809173018F3F09F03AC0E0E0F0E093E085E090935700E89589 +:2032600007B600FCFDCF80935700E89507B600FCFDCFE058FF4F20E3E030F20771F781E101 +:2032800080935700E8950895E091730180917201882321F4F0E0EB5FFE4F05C0813099F417 +:2032A000F0E0EE52FF4F808180937C01089580917201833041F480917301882321F48091C0 +:2032C000740180936C0108952F923F924F925F926F927F929F92AF92BF92CF92DF92EF92D0 +:2032E000FF920F931F93CF93DF938091850190918601909378018093770180917901882379 +:2033000051F08091790181508093790180917901882309F45D9A80917A01882351F08091D0 +:203320007A01815080937A0180917A01882309F45C9A80918001833009F4B2C1843030F4FC +:20334000813071F0823009F0E3C111C1853009F4C5C1853008F4BAC1863009F0D9C1CDC1FF +:203360005C9883E080937A018091E800877F8093E80080916801882329F0D6DE5D9A5C9A8F +:203380001092680120917701309178012115310529F42AC08EB3882309F4BAC18091E800EF +:2033A00082FFF8CF8091F10080937101215030403093780120937701E2E7F1E00CC080917F +:2033C000F10081932150304081E0E737F80719F43183208308C08091F200882381F7309374 +:2033E000780120937701A0DE80910101853009F0BAC08091770190917801892B21F482E022 +:2034000080930101B0C08AE163DE80916D018F715FDEC0916F01D091700120916D0130914C +:203420006E0121968E01021B130B219780917201882309F093C0180136942794C901A091D0 +:203440006C01B0E09C01AD0162E0E62EF12C012D112DE20EF31E041F151F59016A0190E0B8 +:2034600099249394B5E0A3E048C08091F200882371F48091E8008B7F8093E80004C08EB332 +:20348000882309F445C18091E80082FFF8CF0894210831088091F100682F8091F100782FFD +:2034A000F5010B0190925700E89511249F5F903419F021143104A1F4F901B0935700E89504 +:2034C00007B600FCFDCF2114310451F0F701A0935700E89507B600FCFDCFA801970190E087 +:2034E00042E0442E512C612C712CE40CF51C061D171DA40CB51CC61CD71C2114310409F080 +:20350000B4CFD0936E01C0936D0181E180935700E89527C08091F200882371F48091E80059 +:203520008B7F8093E80004C08EB3882309F4F0C08091E80082FFF8CF6091F10080916D0187 +:2035400090916E01A7D380916D0190916E01019690936E0180936D010150104001151105DB +:20356000C9F680E1B5DD8091E8008B7FC3C08091E800877F8093E8005D9883E08093790134 +:2035800004C08EB3882309F4C3C08091E80080FFF8CF80910101893091F08A3069F4809147 +:2035A0007201813049F480916D0190916E018093F1009093F1009BC080917C0196C0609153 +:2035C0006F017091700120916D0130916E016F5F7F4F7B01E21AF30A6150704080917201C4 +:2035E000882389F5870116950795C901A0916C01B0E09C01AD011FC08091F200803271F497 +:203600008091E8008E7F8093E80004C08EB3882309F47EC08091E80080FFF8CFF90185916F +:2036200094918093F1009093F100015010402E5F3F4F4F4F5F4F01151105F1F670936E01C0 +:2036400060936D0129C0823039F523C08091F200803271F48091E8008E7F8093E80004C07E +:203660008EB3882309F454C08091E80080FFF8CF00916D0110916E01C80104D38093F1005B +:203680000F5F1F4F10936E0100936D010894E108F108E114F104D1F682E08093010127C0AE +:2036A0008091E800877F8093E800809169018093F1001092F1001092F1001092F1008091C7 +:2036C00001018093F1001092F10011C08091E800877F8093E8001092690119C08091E800A8 +:2036E000877F8093E800809101018093F1008091E8008E7F8093E8000AC08091E800877FE8 +:203700008093E8005D9A5C9A82E08093010187D0DF91CF911F910F91FF90EF90DF90CF90F7 +:20372000BF90AF909F907F906F905F904F903F902F9008952BD181E085BF15BE089584B779 +:20374000877F84BF88E10FB6F89480936000109260000FBE81E085BF82E085BF8AB18063BB +:203760008AB98BB180638BB90CC1E9DF789401C080D2809100018823D9F78091680188233D +:20378000B9F7D8DFE0916A01F0916B010995FA01923071F0933089F0913029F488E091E04A +:2037A00022E130E019C080E090E020E030E014C08AE191E02BE130E00FC0882339F48091B9 +:2037C0003501282F30E085E391E006C080913901282F30E089E391E091838083C9010895A0 +:2037E0008091EB0081608093EB001092ED006093EC004093ED008091EE00881F8827881FC4 +:2038000008951092F4001092F0001092E8001092ED00EBEEF0E080818E7F80830895809162 +:203820007F0188238CF403C08EB38823B1F08091E80082FFF9CF8091E8008B7F8093E8004D +:2038400008958EB3882349F08091E80080FFF9CF8091E8008E7F8093E80008959C0140915A +:203860008501509186014617570718F4F90120E038C06115710511F0AB01F8CF8091E80048 +:203880008E7F8093E80040E050E0F0CF8091E80083FF02C081E008958091E80082FD2DC071 +:2038A0008EB3882381F18EB3853079F18091E80080FF17C09091F20006C081918093F1000C +:2038C000415050409F5F4115510511F09032A8F320E0903209F421E08091E8008E7F8093E6 +:2038E000E8004115510591F6222381F606C08EB3882349F08EB3853041F08091E80082FF65 +:20390000F6CF80E0089582E0089583E0089554D056D01EBA10927D0184E089BD89B58260DA +:2039200089BD09B400FEFDCF8091D800982F9F779093D80080688093D800809163008E7FA5 +:20394000809363008091D8008F7D8093D8008091E0008E7F8093E0008091E1008E7F80930E +:20396000E1008091E20081608093E2008091E100877F8093E1008091E20088608093E200E1 +:203980000895C5DF81E080937E010895C0DFE0EEF0E0808181608083E8EDF0E080818F7788 +:2039A00080830AD00CD019BCE3E6F0E080818160808310927E0108951092E200089510927A +:2039C000E10008951F920F920FB60F9211242F933F934F935F936F937F938F939F93AF936A +:2039E000BF93EF93FF938091E10080FF1BC08091E20080FF17C08091E1008E7F8093E100D9 +:203A00008091E2008E7F8093E2008091E20080618093E2008091D80080628093D80019BC5D +:203A20001EBA26D18091E10084FF29C08091E20084FF25C084E089BD89B5826089BD09B431 +:203A400000FEFDCF8091D8008F7D8093D8008091E1008F7E8093E1008091E2008F7E8093B6 +:203A6000E2008091E20081608093E20080917D01882311F481E001C084E08EBBF9D08091B3 +:203A8000E10083FF22C08091E20083FF1EC08091E100877F8093E10082E08EBB10927D01D7 +:203AA0008091E1008E7F8093E1008091E2008E7F8093E2008091E20080618093E200A1DED6 +:203AC00080E060E042E28CDED3D08091E10082FF0AC08091E20082FF06C08091E1008B7FA2 +:203AE0008093E100C5D0FF91EF91BF91AF919F918F917F916F915F914F913F912F910F903E +:203B00000FBE0F901F9018951F93DF93CF9300D0CDB7DEB7EFE7F1E08091F100819381E050 +:203B2000E738F807C9F790917F0180918001853011F1863040F48130B9F0813070F08330B5 +:203B400009F081C011C0883009F453C0893009F462C0863009F077C02DC0903809F474C0EE +:203B6000923809F070C070C0992309F46DC0923009F069C069C0992309F065C01091810132 +:203B80008091E800877F8093E80049DE04C08EB3882309F459C08091E80080FFF8CF812F4F +:203BA0008F7711F492E001C093E09EBB80688093E3004AC09058923008F045C080918101D9 +:203BC0009091820160918301AE014F5F5F4FDFDDBC010097C9F18091E800877F8093E800FD +:203BE00089819A813BDE8091E8008B7F8093E8002BC0903841F58091E800877F8093E800A6 +:203C000080917D018093F1008091E8008E7F8093E80005DE19C09923B1F49091810192308E +:203C200098F48091E800877F8093E80090937D01F6DD80917D01882311F483E001C084E0C3 +:203C40008EBB16D001C040DB8091E80083FF0AC08091EB0080628093EB008091E800877F39 +:203C60008093E8000F900F90CF91DF911F91089508958EB3882329F08091E80083FF01C010 +:203C800043CF0895F999FECF92BD81BDF89A992780B50895262FF999FECF1FBA92BD81BD4B +:203CA00020BD0FB6F894FA9AF99A0FBE01960895F894FFCF01021E948920DCFB12011001FB +:203CC00000000020EB03EF2F00000001000109021B0001010080320904000000FE010200CE +:203CE0000921030000000C0001040309042C03410054006D0065006700610031003600555C +:1C3D00000032002000440046005500200020002000200020002000200000000096 +:00000001FF diff --git a/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Mega2560-R3.hex b/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Mega2560-R3.hex new file mode 100644 index 00000000000..5393cf61305 --- /dev/null +++ b/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Mega2560-R3.hex @@ -0,0 +1,248 @@ +:100000009EC00000B7C00000B5C00000B3C0000033 +:10001000B1C00000AFC00000ADC00000ABC0000028 +:10002000A9C00000A7C00000A5C00000FCC30000DC +:10003000A1C400009FC000009DC000009BC0000044 +:1000400099C0000097C0000095C0000093C0000058 +:1000500091C000008FC000008DC00000C6C100002C +:1000600089C0000087C0000085C0000083C0000078 +:1000700081C00000160538052206380522067A05DB +:1000800097052206EA05FC052403470065006E007B +:10009000750069006E006F0020004D00650067006C +:1000A00061002000320035003600300000003A03C5 +:1000B000410072006400750069006E006F0020004E +:1000C0004C004C00430020002800770077007700A8 +:1000D0002E00610072006400750069006E006F0000 +:1000E0002E006300630029000000040309040902D4 +:1000F0003E00020100C032090400000102020100BA +:100100000524000110042402060524060001070549 +:1001100082030800FF09040100020A00000007052D +:100120000402400001070583024000011201100192 +:10013000020000084123420201000102DC011124F7 +:100140001FBECFEFD2E0DEBFCDBF11E0A0E0B1E037 +:10015000EEE4FFE002C005900D92A631B107D9F799 +:1001600012E0A6E1B1E001C01D92AF32B107E1F7A4 +:1001700064D0EBC645CFFC01E058FF4FA081B181B0 +:100180006C93A081B1819D012F5F3F4F318320830C +:100190002E173F0721F412969C938E9311972FB739 +:1001A000F894FC01EC57FF4F80818F5F80832FBF55 +:1001B0000895DC01AE57BF4FED91FC91119741912D +:1001C0001196FC93EE939C0120583F4FE217F307E2 +:1001D00011F48D939C932FB7F894FC01EC57FF4FCB +:1001E0009081915090832FBF842F089584B7877F8B +:1001F00084BF88E10FB6F89480936000109260008D +:100200000FBE87E690E09093CD008093CC0086E00F +:100210008093CA001092C80088E18093C900539A65 +:100220005A9A8AB180638AB98BB180638BB9F0D254 +:1002300084E085BD5F9A579A0895D8DF2FB7F89468 +:100240008EE991E090931F0280931E029093210209 +:10025000809320022FBF2FB7F89489E191E090930B +:100260009A018093990190939C0180939B012FBFE9 +:100270007894D3E09FB7F894809122029FBF803892 +:1002800049F080E091E00ED697FD04C0682F8EE91A +:1002900091E071DF8FB7F894C0919D018FBFA8994D +:1002A00002C0C13658F1A89A80919D01882319F0A7 +:1002B0005D98D0931601CC2349F089E191E079DF74 +:1002C000682F80E091E093D5C150F5CF8091160161 +:1002D000882341F08091160181508093160181118D +:1002E00001C05D9A80911701882341F08091170128 +:1002F000815080931701811101C05C9A9FB7F894D7 +:10030000809122029FBF882361F08EE991E051DF46 +:100310009091C80095FFFCCF8093CE005C98D0935D +:10032000170180E091E0B0D59AD4A4CF80E091E0AD +:1003300011C580E091E0A5C41F93CF93DF93EC013A +:100340008C89813031F0823011F010E003C010E26E +:1003500001C010E38B89823009F418608D898730E1 +:1003600031F0883031F0863029F4126003C0146017 +:1003700001C016601092C9001092C8001092CA0005 +:100380002F85388949895A89211581EE3807410519 +:10039000510571F0CA01B9019695879577956795D2 +:1003A00060587B47814E9F4FA8D52150310902C02C +:1003B00020E130E03093CD002093CC001093CA00B0 +:1003C0008F859889A989BA898115914EA105B105B2 +:1003D00011F480E001C082E08093C80088E9809336 +:1003E000C900DF91CF911F9108951F920F920FB610 +:1003F0000F9211242F933F934F935F936F937F93AB +:100400008F939F93AF93BF93EF93FF936091CE0031 +:100410008EB3843019F489E191E0ADDEFF91EF9164 +:10042000BF91AF919F918F917F916F915F914F910C +:100430003F912F910F900FBE0F901F901895FC01C8 +:10044000858580FF02C05F9808955F9A0895292FDF +:1004500033272230310559F02330310569F021303E +:100460003105F9F482E190E02CE231E01EC08EE328 +:1004700090E02EEE30E019C099278130910541F0CF +:100480008230910541F0892B61F4EAEEF0E005C07D +:10049000EEEAF0E002C0E8E8F0E0849190E09F012D +:1004A00004C080E090E020E030E0FA013183208356 +:1004B000089528E030E040E02817390720F44F5F26 +:1004C000220F331FF9CF842F8295807F0895809368 +:1004D000E900EBEEF0E0808181608083EDEEF0E0FA +:1004E00010826093EC0040838091EE00881F882783 +:1004F000881F08951092F40080E08093E900109224 +:10050000F0001092E8001092ED009091EB009E7FB9 +:100510009093EB008F5F853081F7089580912702DB +:1005200087FD05C08091E80080FF0DC010C080915C +:10053000E80082FD04C08EB38111F9CF0895809147 +:10054000E8008B7707C08EB38111ECCF08958091BE +:10055000E8008E778093E800089585E69091EC009E +:1005600090FF05C09091E80090FF05C01BC09091DE +:10057000E80092FD17C09EB39923B1F09EB3953069 +:10058000A9F09091EB0095FD13C09091E10092FFCE +:10059000E5CF9091E1009B7F9093E1008150F1F6CF +:1005A00084E0089580E0089582E0089583E008954E +:1005B00081E0089520912D0230912E0226173707F1 +:1005C00048F06115710539F42091E8002E772093E9 +:1005D000E80001C0B90130E06115710591F1209189 +:1005E000E80023FD38C02091E80022FF06C080917A +:1005F000E80082FF29C080E008952EB3222369F12C +:100600002EB3253061F12091E80020FFE5CF209145 +:10061000F200FC01CF016115710549F0283038F472 +:1006200081918093F100615071092F5FF3CF31E028 +:10063000283009F030E02091E8002E772093E80080 +:10064000CBCF3111CCCFD3CF8EB3882331F08EB343 +:10065000853069F604C081E0089582E0089583E062 +:10066000089520912D0230912E022617370748F069 +:100670006115710539F42091E8002E772093E80088 +:1006800001C0B90130E06115710599F12091E800D0 +:1006900023FD39C02091E80022FF06C08091E800C8 +:1006A00082FF2AC080E008952EB3222371F12EB379 +:1006B000253069F12091E80020FFE5CF2091F2007C +:1006C000FC01CF016115710551F0283040F484918F +:1006D0008093F100615071092F5F3196F2CF31E0C4 +:1006E000283009F030E02091E8002E772093E800D0 +:1006F000CACF3111CBCFD2CF8EB3882331F08EB396 +:10070000853061F604C081E0089582E0089583E0B9 +:1007100008956115710529F42091E8002B77209345 +:10072000E8006115710549F12091E80023FD2AC018 +:100730002EB3222359F12EB3253051F12091E80038 +:1007400022FFF2CFFC018091F200882371F09F011B +:100750002F5F3F4FC9014091F10040836150710903 +:1007600061157105C9F2F901EECFCF01D5CF8EB376 +:10077000882361F08EB3853059F08091E80080FFC6 +:10078000F6CF02C081E0089580E0089582E00895E8 +:1007900083E0089542D044D01EBA109225021092F0 +:1007A00024021092230284E089BD89B5826089BD4C +:1007B00009B400FEFDCF8091D800982F9F779093C9 +:1007C000D80080688093D800809163008E7F8093EA +:1007D00063008091D8008F7D8093D8008091E000E5 +:1007E0008E7F8093E0008091E1008E7F8093E10016 +:1007F0008091E20081608093E2008091E100877F38 +:100800008093E1008091E20088608093E200089587 +:10081000C1DF81E08093260208951092E2000895DE +:100820001092E10008951F920F920FB60F921124BB +:100830002F933F934F935F936F937F938F939F93E8 +:10084000AF93BF93EF93FF938091E10080FF1BC0B4 +:100850008091E20080FF17C08091E1008E7F80933D +:10086000E1008091E2008E7F8093E2008091E200BF +:1008700080618093E2008091D80080628093D800EC +:1008800019BC1EBAEBD18091E10084FF29C0809190 +:10089000E20084FF25C084E089BD89B5826089BDFE +:1008A00009B400FEFDCF8091D8008F7D8093D800E1 +:1008B0008091E1008F7E8093E1008091E2008F7E45 +:1008C0008093E2008091E20081608093E200809159 +:1008D0002502882311F084E001C081E08EBBBED1E7 +:1008E0008091E10083FF27C08091E20083FF23C055 +:1008F0008091E100877F8093E10082E08EBB1092BF +:1009000025028091E1008E7F8093E1008091E200DA +:100910008E7F8093E2008091E20080618093E2000C +:10092000E9DD42E060E080E0D2DD8091F0008860A7 +:100930008093F00093D18091E10082FF0AC0809102 +:10094000E20082FF06C08091E1008B7F8093E1008E +:1009500085D1FF91EF91BF91AF919F918F917F9141 +:100960006F915F914F913F912F910F900FBE0F901C +:100970001F9018951F920F920FB60F9211242F936C +:100980003F934F935F936F937F938F939F93AF9317 +:10099000BF93CF93EF93FF93E9EEF0E0C081C77070 +:1009A0001082E0EFF0E08081877F808378941CD014 +:1009B000F894E9EEF0E01082A0EFB0E08C9188604E +:1009C0008C93C083FF91EF91CF91BF91AF919F9195 +:1009D0008F917F916F915F914F913F912F910F90E8 +:1009E0000FBE0F901F9018951F93CF93DF93CDB735 +:1009F000DEB7AA970FB6F894DEBF0FBECDBFE7E211 +:100A0000F2E08091F100819322E0EF32F207C9F722 +:100A10002091270230912802832F90E08A3091059F +:100A200008F010C1FC01E65CFF4F89C2203881F05C +:100A3000223809F007C180912B0287708093E9006A +:100A40008091EB0085FB882780F91092E90006C0B1 +:100A50008091230290912402911182609091E8008C +:100A6000977F9093E8008093F1001092F100BDC051 +:100A7000822F8D7F09F0E6C0222319F0223061F029 +:100A8000D2C080912902813009F0CDC0333009F005 +:100A900080E08093240228C080912902811124C023 +:100AA00020912B02277009F4BEC02093E9008091A9 +:100AB000EB0080FFB8C08091EB00333011F480620E +:100AC00011C080618093EB0081E090E0022E01C0B4 +:100AD000880F0A94EAF78093EA001092EA00809166 +:100AE000EB0088608093EB001092E9008091E800B1 +:100AF000877F7EC02111A6C0109129028091E80055 +:100B0000877F8093E8000ADD8091E80080FD04C0C3 +:100B10008EB38111F9CF87C0812F8F7711F093E0C9 +:100B200001C092E09EBB80688093E3007CC02058A7 +:100B3000223008F087C08091290290912A028C3DD2 +:100B400023E0920781F583E08A838AE289834FB7A5 +:100B5000F894DE01139620E03EE051E2E32FF0E04E +:100B600050935700E49120FF03C0E295EF703F5F80 +:100B7000EF7090E39E0F9A3310F0E95C01C0E92F0B +:100B80008E2F90E08D939D932F5F243139F74FBFC7 +:100B90008091E800877F8093E8006AE270E0CE01F0 +:100BA000019608DD11C0AE014F5F5F4F60912B02CF +:100BB0004EDC0097C1F12091E800277F2093E800E8 +:100BC000BC0189819A814DDD8091E8008B7780930B +:100BD000E80029C02038B1F58091E800877F809334 +:100BE000E800809125028093F1008091E8008E77E3 +:100BF0008093E80093DC17C0211124C09091290252 +:100C0000923088F48091E800877F8093E800909389 +:100C1000250284DC80912502882311F084E001C044 +:100C200083E08EBB83DB8091E80083FF0DC0809161 +:100C3000EB0080628093EB008091E800877F8093D7 +:100C4000E80002C076DBEFCFAA960FB6F894DEBFBD +:100C50000FBECDBFDF91CF911F9108950895CF931F +:100C60008EB3882359F0C091E900C7701092E90053 +:100C70008091E80083FDB8DEC093E900CF9108952C +:100C80000895CF93DF93EC018091E80083FF5FC06C +:100C9000888190E020912B0230912C02281739078F +:100CA00009F055C080912802813249F018F4803251 +:100CB000C9F04DC0823261F18332C9F148C08091E0 +:100CC0002702813A09F043C08091E800877F809332 +:100CD000E80067E070E0CE010F966CDC8091E800E0 +:100CE0008B7713C080912702813289F58091E800CB +:100CF000877F8093E80067E070E0CE010F9609DD02 +:100D0000CE011ADB8091E8008E778093E8001FC047 +:100D1000809127028132D9F48091E800877F809307 +:100D2000E800809129028D87CE0189DB0DC080917A +:100D30002702813261F48091E800877F8093E80088 +:100D400060912902CE019CDFDF91CF91E7CBDF914B +:100D5000CF9108950F931F93CF93DF93EC01FC0184 +:100D60003D9689E0DF011D928A95E9F72A813B8152 +:100D70008C81882311F014E001C010E00981C901C1 +:100D800098DB412F482B426061E8802FA0DB88234D +:100D900041F12E813F818885882311F014E001C044 +:100DA00010E00D81C90185DB412F482B426060E8CE +:100DB000802F8DDB8823A9F02A853B858C858823AD +:100DC00011F014E001C010E0C985C90172DB412FA8 +:100DD000482B426061EC8C2FDF91CF911F910F91D6 +:100DE00076CB80E0DF91CF911F910F910895CF9343 +:100DF000C62F2EB32430E9F4FC0147855089618960 +:100E00007289452B462B472BA1F081818093E90005 +:100E10008091E80085FF04C0C093F10080E00AC023 +:100E20008091E8008E778093E80097DB8823A1F318 +:100E300001C082E0CF9108952EB3243019F5FC0152 +:100E40004785508961897289452B462B472BD1F004 +:100E500081818093E9008091F200882389F090914C +:100E6000E8008091E8008E778093E80095FD08C047 +:100E700074DB811108C08091E8008E778093E800D0 +:100E800080E0089582E008952EB3243051F4FC01EF +:100E90004785508961897289452B462B472B09F07C +:100EA000CBCF08952EB3243019F08FEF9FEF089524 +:100EB000FC014785508961897289452B462B472B58 +:100EC000A1F385818093E9008091E80082FFEDCF56 +:100ED0008091F200882321F02091F10030E002C0DF +:100EE0002FEF3FEF8091F200811105C08091E80063 +:100EF0008B778093E800C9010895A1E21A2EAA1BFE +:100F0000BB1BFD010DC0AA1FBB1FEE1FFF1FA217B9 +:100F1000B307E407F50720F0A21BB30BE40BF50BB6 +:100F2000661F771F881F991F1A9469F7609570953F +:100F3000809590959B01AC01BD01CF010895EE0F06 +:0E0F4000FF1F0590F491E02D0994F894FFCF67 +:100F4E000003400000044000000208000000000002 +:060F5E000000000000008D +:00000001FF diff --git a/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Uno-R3.hex b/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Uno-R3.hex new file mode 100644 index 00000000000..3abf6adbae1 --- /dev/null +++ b/hardware/arduino/avr/firmwares/atmegaxxu2/arduino-usbserial/Genuino-usbserial-atmega16u2-Uno-R3.hex @@ -0,0 +1,248 @@ +:1000000098C00000B1C00000AFC00000ADC000004B +:10001000ABC00000A9C00000A7C00000A5C0000040 +:10002000A3C00000A1C000009FC00000F6C30000F4 +:100030009BC4000099C0000097C0000095C000005C +:1000400093C0000091C000008FC000008DC0000070 +:100050008BC0000089C0000087C00000C0C1000044 +:1000600083C0000081C000007FC000007DC0000090 +:100070007BC00000100532051C0632051C06740505 +:1000800091051C06E405F6051803470065006E009F +:10009000750069006E006F00200055006E006F0053 +:1000A00000003A03410072006400750069006E00B0 +:1000B0006F0020004C004C00430020002800770017 +:1000C000770077002E0061007200640075006900FF +:1000D0006E006F002E00630063002900000004031F +:1000E000090409023E00020100C0320904000001B7 +:1000F0000202010005240001100424020605240662 +:100100000001070582030800FF09040100020A003C +:1001100000000705040240000107058302400001BA +:1001200012011001020000084123430201000102F4 +:10013000DC0111241FBECFEFD2E0DEBFCDBF11E046 +:10014000A0E0B1E0E2E4FFE002C005900D92A6312C +:10015000B107D9F712E0A6E1B1E001C01D92AF32BC +:10016000B107E1F764D0EBC64BCFFC01E058FF4F7D +:10017000A081B1816C93A081B1819D012F5F3F4F20 +:10018000318320832E173F0721F412969C938E9380 +:1001900011972FB7F894FC01EC57FF4F80818F5FC8 +:1001A00080832FBF0895DC01AE57BF4FED91FC91C6 +:1001B000119741911196FC93EE939C0120583F4F6B +:1001C000E217F30711F48D939C932FB7F894FC0179 +:1001D000EC57FF4F9081915090832FBF842F08954B +:1001E00084B7877F84BF88E10FB6F894809360005E +:1001F000109260000FBE87E690E09093CD00809350 +:10020000CC0086E08093CA001092C80088E18093F9 +:10021000C900539A5A9A8AB180638AB98BB18063B4 +:100220008BB9F0D284E085BD5F9A579A0895D8DFE4 +:100230002FB7F8948EE991E090931F0280931E02ED +:1002400090932102809320022FBF2FB7F89489E169 +:1002500091E090939A018093990190939C018093EF +:100260009B012FBF7894D3E09FB7F894809122022E +:100270009FBF803849F080E091E00ED697FD04C022 +:10028000682F8EE991E071DF8FB7F894C0919D01DE +:100290008FBFA89902C0C13658F1A89A80919D01DC +:1002A000882319F05D98D0931601CC2349F089E199 +:1002B00091E079DF682F80E091E093D5C150F5CFD0 +:1002C00080911601882341F080911601815080931E +:1002D0001601811101C05D9A80911701882341F0B8 +:1002E00080911701815080931701811101C05C9AA0 +:1002F0009FB7F894809122029FBF882361F08EE916 +:1003000091E051DF9091C80095FFFCCF8093CE0023 +:100310005C98D093170180E091E0B0D59AD4A4CF37 +:1003200080E091E011C580E091E0A5C41F93CF93D8 +:10033000DF93EC018C89813031F0823011F010E0D4 +:1003400003C010E201C010E38B89823009F4186009 +:100350008D89873031F0883031F0863029F4126091 +:1003600003C0146001C016601092C9001092C8004A +:100370001092CA002F85388949895A89211581EE42 +:1003800038074105510571F0CA01B9019695879565 +:100390007795679560587B47814E9F4FA8D5215030 +:1003A000310902C020E130E03093CD002093CC0031 +:1003B0001093CA008F859889A989BA898115914EB1 +:1003C000A105B10511F480E001C082E08093C8006E +:1003D00088E98093C900DF91CF911F9108951F9202 +:1003E0000F920FB60F9211242F933F934F935F9369 +:1003F0006F937F938F939F93AF93BF93EF93FF93ED +:100400006091CE008EB3843019F489E191E0ADDEC5 +:10041000FF91EF91BF91AF919F918F917F916F91DC +:100420005F914F913F912F910F900FBE0F901F90B2 +:100430001895FC01858580FF02C05F9808955F9A3A +:100440000895292F33272230310559F02330310503 +:1004500069F021303105F9F482E190E020E231E0E9 +:100460001EC08EE390E022EE30E019C09927813063 +:10047000910541F08230910541F0892B61F4EEED58 +:10048000F0E005C0E2EAF0E002C0E8E8F0E08491C4 +:1004900090E09F0104C080E090E020E030E0FA01AD +:1004A00031832083089528E030E040E028173907A1 +:1004B00020F44F5F220F331FF9CF842F8295807F66 +:1004C00008958093E900EBEEF0E080818160808305 +:1004D000EDEEF0E010826093EC0040838091EE003E +:1004E000881F8827881F08951092F40080E0809369 +:1004F000E9001092F0001092E8001092ED00909147 +:10050000EB009E7F9093EB008F5F853081F708951D +:100510008091270287FD05C08091E80080FF0DC013 +:1005200010C08091E80082FD04C08EB38111F9CF24 +:1005300008958091E8008B7707C08EB38111ECCFCE +:1005400008958091E8008E778093E800089585E60D +:100550009091EC0090FF05C09091E80090FF05C0DD +:100560001BC09091E80092FD17C09EB39923B1F093 +:100570009EB39530A9F09091EB0095FD13C090913A +:10058000E10092FFE5CF9091E1009B7F9093E10025 +:100590008150F1F684E0089580E0089582E00895A6 +:1005A00083E0089581E0089520912D0230912E027C +:1005B0002617370748F06115710539F42091E800D6 +:1005C0002E772093E80001C0B90130E06115710574 +:1005D00091F12091E80023FD38C02091E80022FF2E +:1005E00006C08091E80082FF29C080E008952EB304 +:1005F000222369F12EB3253061F12091E80020FF1C +:10060000E5CF2091F200FC01CF016115710549F0A1 +:10061000283038F481918093F100615071092F5F87 +:10062000F3CF31E0283009F030E02091E8002E7758 +:100630002093E800CBCF3111CCCFD3CF8EB388231A +:1006400031F08EB3853069F604C081E0089582E010 +:10065000089583E0089520912D0230912E022617EF +:10066000370748F06115710539F42091E8002E77BD +:100670002093E80001C0B90130E06115710599F1DE +:100680002091E80023FD39C02091E80022FF06C038 +:100690008091E80082FF2AC080E008952EB32223D3 +:1006A00071F12EB3253069F12091E80020FFE5CFEC +:1006B0002091F200FC01CF016115710551F0283045 +:1006C00040F484918093F100615071092F5F31965D +:1006D000F2CF31E0283009F030E02091E8002E77A9 +:1006E0002093E800CACF3111CBCFD2CF8EB388236D +:1006F00031F08EB3853061F604C081E0089582E068 +:10070000089583E008956115710529F42091E800AA +:100710002B772093E8006115710549F12091E800DD +:1007200023FD2AC02EB3222359F12EB3253051F1D7 +:100730002091E80022FFF2CFFC018091F200882393 +:1007400071F09F012F5F3F4FC9014091F10040833D +:100750006150710961157105C9F2F901EECFCF0140 +:10076000D5CF8EB3882361F08EB3853059F0809158 +:10077000E80080FFF6CF02C081E0089580E0089590 +:1007800082E0089583E0089542D044D01EBA1092CA +:100790002502109224021092230284E089BD89B5BB +:1007A000826089BD09B400FEFDCF8091D800982FEA +:1007B0009F779093D80080688093D80080916300E1 +:1007C0008E7F809363008091D8008F7D8093D800C6 +:1007D0008091E0008E7F8093E0008091E1008E7F29 +:1007E0008093E1008091E20081608093E20080913B +:1007F000E100877F8093E1008091E2008860809330 +:10080000E2000895C1DF81E08093260208951092EE +:10081000E20008951092E10008951F920F920FB622 +:100820000F9211242F933F934F935F936F937F9376 +:100830008F939F93AF93BF93EF93FF938091E100CA +:1008400080FF1BC08091E20080FF17C08091E10013 +:100850008E7F8093E1008091E2008E7F8093E200A2 +:100860008091E20080618093E2008091D8008062F4 +:100870008093D80019BC1EBAEBD18091E10084FFAF +:1008800029C08091E20084FF25C084E089BD89B53C +:10089000826089BD09B400FEFDCF8091D8008F7DB4 +:1008A0008093D8008091E1008F7E8093E100809159 +:1008B000E2008F7E8093E2008091E200816080936D +:1008C000E20080912502882311F084E001C081E0DC +:1008D0008EBBBED18091E10083FF27C08091E200F2 +:1008E00083FF23C08091E100877F8093E10082E055 +:1008F0008EBB109225028091E1008E7F8093E100F3 +:100900008091E2008E7F8093E2008091E20080611E +:100910008093E200E9DD42E060E080E0D2DD80919A +:10092000F00088608093F00093D18091E10082FF15 +:100930000AC08091E20082FF06C08091E1008B7FB7 +:100940008093E10085D1FF91EF91BF91AF919F918D +:100950008F917F916F915F914F913F912F910F9068 +:100960000FBE0F901F9018951F920F920FB60F9207 +:1009700011242F933F934F935F936F937F938F93A4 +:100980009F93AF93BF93CF93EF93FF93E9EEF0E084 +:10099000C081C7701082E0EFF0E08081877F8083A4 +:1009A00078941CD0F894E9EEF0E01082A0EFB0E06B +:1009B0008C9188608C93C083FF91EF91CF91BF9110 +:1009C000AF919F918F917F916F915F914F913F91E7 +:1009D0002F910F900FBE0F901F9018951F93CF93DC +:1009E000DF93CDB7DEB7AA970FB6F894DEBF0FBE80 +:1009F000CDBFE7E2F2E08091F100819322E0EF3297 +:100A0000F207C9F72091270230912802832F90E046 +:100A10008A30910508F010C1FC01E65CFF4F89C2E5 +:100A2000203881F0223809F007C180912B028770AD +:100A30008093E9008091EB0085FB882780F9109274 +:100A4000E90006C0809123029091240291118260F6 +:100A50009091E800977F9093E8008093F1001092C6 +:100A6000F100BDC0822F8D7F09F0E6C0222319F06E +:100A7000223061F0D2C080912902813009F0CDC0CE +:100A8000333009F080E08093240228C0809129024D +:100A9000811124C020912B02277009F4BEC020933D +:100AA000E9008091EB0080FFB8C08091EB0033300B +:100AB00011F4806211C080618093EB0081E090E0CE +:100AC000022E01C0880F0A94EAF78093EA00109280 +:100AD000EA008091EB0088608093EB001092E900BF +:100AE0008091E800877F7EC02111A6C01091290265 +:100AF0008091E800877F8093E8000ADD8091E8001C +:100B000080FD04C08EB38111F9CF87C0812F8F770C +:100B100011F093E001C092E09EBB80688093E300F7 +:100B20007CC02058223008F087C080912902909123 +:100B30002A028C3D23E0920781F583E08A838AE2D2 +:100B400089834FB7F894DE01139620E03EE051E22E +:100B5000E32FF0E050935700E49120FF03C0E295AB +:100B6000EF703F5FEF7090E39E0F9A3310F0E95CF7 +:100B700001C0E92F8E2F90E08D939D932F5F24313C +:100B800039F74FBF8091E800877F8093E8006AE2E1 +:100B900070E0CE01019608DD11C0AE014F5F5F4FDE +:100BA00060912B024EDC0097C1F12091E800277F75 +:100BB0002093E800BC0189819A814DDD8091E80095 +:100BC0008B778093E80029C02038B1F58091E80048 +:100BD000877F8093E800809125028093F1008091C7 +:100BE000E8008E778093E80093DC17C0211124C0C1 +:100BF00090912902923088F48091E800877F809359 +:100C0000E8009093250284DC80912502882311F06E +:100C100084E001C083E08EBB83DB8091E80083FF2A +:100C20000DC08091EB0080628093EB008091E80022 +:100C3000877F8093E80002C076DBEFCFAA960FB6DD +:100C4000F894DEBF0FBECDBFDF91CF911F91089505 +:100C50000895CF938EB3882359F0C091E900C770EF +:100C60001092E9008091E80083FDB8DEC093E900AE +:100C7000CF9108950895CF93DF93EC018091E80020 +:100C800083FF5FC0888190E020912B0230912C027D +:100C90002817390709F055C080912802813249F0A0 +:100CA00018F48032C9F04DC0823261F18332C9F14B +:100CB00048C080912702813A09F043C08091E80042 +:100CC000877F8093E80067E070E0CE010F966CDCD0 +:100CD0008091E8008B7713C080912702813289F5DB +:100CE0008091E800877F8093E80067E070E0CE01A4 +:100CF0000F9609DDCE011ADB8091E8008E77809394 +:100D0000E8001FC0809127028132D9F48091E80069 +:100D1000877F8093E800809129028D87CE0189DB4F +:100D20000DC080912702813261F48091E800877FB5 +:100D30008093E80060912902CE019CDFDF91CF9182 +:100D4000E7CBDF91CF9108950F931F93CF93DF935C +:100D5000EC01FC013D9689E0DF011D928A95E9F7DF +:100D60002A813B818C81882311F014E001C010E0BE +:100D70000981C90198DB412F482B426061E8802F2F +:100D8000A0DB882341F12E813F818885882311F0E3 +:100D900014E001C010E00D81C90185DB412F482B13 +:100DA000426060E8802F8DDB8823A9F02A853B858F +:100DB0008C85882311F014E001C010E0C985C901B9 +:100DC00072DB412F482B426061EC8C2FDF91CF9179 +:100DD0001F910F9176CB80E0DF91CF911F910F9102 +:100DE0000895CF93C62F2EB32430E9F4FC01478534 +:100DF000508961897289452B462B472BA1F081814F +:100E00008093E9008091E80085FF04C0C093F10061 +:100E100080E00AC08091E8008E778093E80097DB3D +:100E20008823A1F301C082E0CF9108952EB324302E +:100E300019F5FC014785508961897289452B462B3C +:100E4000472BD1F081818093E9008091F2008823C3 +:100E500089F09091E8008091E8008E778093E80017 +:100E600095FD08C074DB811108C08091E8008E7781 +:100E70008093E80080E0089582E008952EB3243046 +:100E800051F4FC014785508961897289452B462BB5 +:100E9000472B09F0CBCF08952EB3243019F08FEFF4 +:100EA0009FEF0895FC014785508961897289452B20 +:100EB000462B472BA1F385818093E9008091E800C0 +:100EC00082FFEDCF8091F200882321F02091F10084 +:100ED00030E002C02FEF3FEF8091F200811105C09A +:100EE0008091E8008B778093E800C9010895A1E222 +:100EF0001A2EAA1BBB1BFD010DC0AA1FBB1FEE1F94 +:100F0000FF1FA217B307E407F50720F0A21BB30BDE +:100F1000E40BF50B661F771F881F991F1A9469F75A +:100F200060957095809590959B01AC01BD01CF01B6 +:100F30000895EE0FFF1F0590F491E02D0994F894A9 +:020F4000FFCFE1 +:100F4200000340000004400000020800000000000E +:060F520000000000000099 +:00000001FF diff --git a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino index d14b4b3d4c5..c6db85c3b79 100644 --- a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino +++ b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_crc/eeprom_crc.ino @@ -15,7 +15,7 @@ void setup() { //Start serial Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } //Print length of data to run CRC on. @@ -49,4 +49,4 @@ unsigned long eeprom_crc(void) { crc = ~crc; } return crc; -} \ No newline at end of file +} diff --git a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino index bbebc480e81..a07cee7c797 100644 --- a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino +++ b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_get/eeprom_get.ino @@ -24,7 +24,7 @@ void setup() { Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } Serial.print("Read float from EEPROM: "); @@ -65,4 +65,4 @@ void secondTest() { void loop() { /* Empty loop */ -} \ No newline at end of file +} diff --git a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino index fe8a9fb8b49..c1ba0a57d5e 100644 --- a/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino +++ b/hardware/arduino/avr/libraries/EEPROM/examples/eeprom_put/eeprom_put.ino @@ -26,7 +26,7 @@ void setup() { Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } float f = 123.456f; //Variable to store in EEPROM. @@ -55,4 +55,4 @@ void setup() { void loop() { /* Empty loop */ -} \ No newline at end of file +} 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 25bc5d93de0..a8a3510d840 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 @@ -16,7 +16,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } } diff --git a/hardware/arduino/avr/libraries/EEPROM/library.properties b/hardware/arduino/avr/libraries/EEPROM/library.properties index 21437ffdf65..dfa46cd44b1 100644 --- a/hardware/arduino/avr/libraries/EEPROM/library.properties +++ b/hardware/arduino/avr/libraries/EEPROM/library.properties @@ -2,8 +2,9 @@ name=EEPROM version=2.0 author=Arduino, Christopher Andrews maintainer=Arduino -sentence=Enables reading and writing to the permanent board storage. For all Arduino boards BUT Arduino DUE. +sentence=Enables reading and writing to the permanent board storage. For all Arduino boards BUT Arduino DUE and Arduino ZERO. paragraph= +category=Data Storage url=http://www.arduino.cc/en/Reference/EEPROM architectures=avr diff --git a/hardware/arduino/avr/libraries/HID/HID.cpp b/hardware/arduino/avr/libraries/HID/HID.cpp index c629eb9ebad..42e0ee5d202 100644 --- a/hardware/arduino/avr/libraries/HID/HID.cpp +++ b/hardware/arduino/avr/libraries/HID/HID.cpp @@ -23,22 +23,13 @@ HID_ HID; -static u8 HID_ENDPOINT_INT; +static uint8_t HID_ENDPOINT_INT; //================================================================================ //================================================================================ +// HID Interface -// HID report descriptor - -#define LSB(_x) ((_x) & 0xFF) -#define MSB(_x) ((_x) >> 8) - -#define RAWHID_USAGE_PAGE 0xFFC0 -#define RAWHID_USAGE 0x0C00 -#define RAWHID_TX_SIZE 64 -#define RAWHID_RX_SIZE 64 - -static u8 HID_INTERFACE; +static uint8_t HID_INTERFACE; HIDDescriptor _hidInterface; @@ -49,10 +40,10 @@ static uint8_t modules_count = 0; //================================================================================ // Driver -u8 _hid_protocol = 1; -u8 _hid_idle = 1; +uint8_t _hid_protocol = 1; +uint8_t _hid_idle = 1; -int HID_GetInterface(u8* interfaceNum) +int HID_GetInterface(uint8_t* interfaceNum) { interfaceNum[0] += 1; // uses 1 _hidInterface = @@ -70,7 +61,7 @@ int HID_GetDescriptor(int8_t t) HIDDescriptorListNode* current = rootNode; int total = 0; while(current != NULL) { - total += USB_SendControl(TRANSFER_PGM,current->cb->descriptor,current->cb->length); + total += USB_SendControl(TRANSFER_PGM,current->data,current->length); current = current->next; } return total; @@ -91,7 +82,7 @@ void HID_::AppendDescriptor(HIDDescriptorListNode *node) current->next = node; } modules_count++; - sizeof_hidReportDescriptor += (uint16_t)node->cb->length; + sizeof_hidReportDescriptor += (uint16_t)node->length; } void HID_::SendReport(u8 id, const void* data, int len) @@ -100,13 +91,13 @@ void HID_::SendReport(u8 id, const void* data, int len) USB_Send(HID_TX | TRANSFER_RELEASE,data,len); } -bool HID_Setup(USBSetup& setup, u8 i) +bool HID_Setup(USBSetup& setup, uint8_t i) { if (HID_INTERFACE != i) { return false; } else { - u8 r = setup.bRequest; - u8 requestType = setup.bmRequestType; + uint8_t r = setup.bRequest; + uint8_t requestType = setup.bmRequestType; if (REQUEST_DEVICETOHOST_CLASS_INTERFACE == requestType) { if (HID_GET_REPORT == r) @@ -161,6 +152,7 @@ HID_::HID_(void) int HID_::begin(void) { + return 0; } #endif /* if defined(USBCON) */ diff --git a/hardware/arduino/avr/libraries/HID/HID.h b/hardware/arduino/avr/libraries/HID/HID.h index b9f29b4be4f..47ac3b9679a 100644 --- a/hardware/arduino/avr/libraries/HID/HID.h +++ b/hardware/arduino/avr/libraries/HID/HID.h @@ -44,16 +44,13 @@ #define HID_REPORT_DESCRIPTOR_TYPE 0x22 #define HID_PHYSICAL_DESCRIPTOR_TYPE 0x23 -typedef struct __attribute__((packed)) { - uint16_t length; - const void* descriptor; -} HID_Descriptor; - class HIDDescriptorListNode { public: HIDDescriptorListNode *next = NULL; - const HID_Descriptor * cb; - HIDDescriptorListNode(const HID_Descriptor *ncb) {cb = ncb;} + HIDDescriptorListNode(const void *d, const uint16_t l) : data(d), length(l) { } + + const void* data; + uint16_t length; }; class HID_ @@ -67,22 +64,22 @@ class HID_ 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; + uint8_t len; // 9 + uint8_t dtype; // 0x21 + uint8_t addr; + uint8_t versionL; // 0x101 + uint8_t versionH; // 0x101 + uint8_t country; + uint8_t desctype; // 0x22 report + uint8_t descLenL; + uint8_t descLenH; } HIDDescDescriptor; typedef struct { - InterfaceDescriptor hid; - HIDDescDescriptor desc; - EndpointDescriptor in; + InterfaceDescriptor hid; + HIDDescDescriptor desc; + EndpointDescriptor in; } HIDDescriptor; #define HID_TX HID_ENDPOINT_INT diff --git a/hardware/arduino/avr/libraries/HID/library.properties b/hardware/arduino/avr/libraries/HID/library.properties index 20a1e7f331f..5cbb5d741e2 100644 --- a/hardware/arduino/avr/libraries/HID/library.properties +++ b/hardware/arduino/avr/libraries/HID/library.properties @@ -4,5 +4,6 @@ author=Arduino maintainer=Arduino sentence=Module for PluggableUSB infrastructure. Exposes an API for devices like Keyboards, Mice and Gamepads paragraph= +category=Communication url=http://www.arduino.cc/en/Reference/HID -architectures=avr \ No newline at end of file +architectures=avr diff --git a/hardware/arduino/avr/libraries/SPI/library.properties b/hardware/arduino/avr/libraries/SPI/library.properties index 2964aecfe5c..44285053626 100644 --- a/hardware/arduino/avr/libraries/SPI/library.properties +++ b/hardware/arduino/avr/libraries/SPI/library.properties @@ -4,6 +4,7 @@ author=Arduino maintainer=Arduino sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For all Arduino boards, BUT Arduino DUE. paragraph= +category=Communication url=http://www.arduino.cc/en/Reference/SPI architectures=avr diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino b/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino index d35303d556d..aba6ebec951 100644 --- a/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino +++ b/hardware/arduino/avr/libraries/SoftwareSerial/examples/SoftwareSerialExample/SoftwareSerialExample.ino @@ -33,7 +33,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino b/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino index 2c501e55162..26659d6f9a9 100644 --- a/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino +++ b/hardware/arduino/avr/libraries/SoftwareSerial/examples/TwoPortReceive/TwoPortReceive.ino @@ -46,7 +46,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/hardware/arduino/avr/libraries/SoftwareSerial/library.properties b/hardware/arduino/avr/libraries/SoftwareSerial/library.properties index 37eb04b3dc6..c42cbde71cb 100644 --- a/hardware/arduino/avr/libraries/SoftwareSerial/library.properties +++ b/hardware/arduino/avr/libraries/SoftwareSerial/library.properties @@ -4,6 +4,7 @@ author=Arduino maintainer=Arduino sentence=Enables serial communication on digital pins. For all Arduino boards, BUT Arduino DUE. paragraph= +category=Communication url=http://www.arduino.cc/en/Reference/SoftwareSerial architectures=avr diff --git a/hardware/arduino/avr/libraries/Wire/library.properties b/hardware/arduino/avr/libraries/Wire/library.properties index 08058474314..811527bb796 100644 --- a/hardware/arduino/avr/libraries/Wire/library.properties +++ b/hardware/arduino/avr/libraries/Wire/library.properties @@ -4,6 +4,7 @@ author=Arduino maintainer=Arduino sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For all Arduino boards, BUT Arduino DUE. paragraph= +category=Communication url=http://www.arduino.cc/en/Reference/Wire architectures=avr diff --git a/hardware/arduino/avr/platform.txt b/hardware/arduino/avr/platform.txt index 80513e8f849..b541c168d87 100644 --- a/hardware/arduino/avr/platform.txt +++ b/hardware/arduino/avr/platform.txt @@ -6,7 +6,7 @@ # https://github.com/arduino/Arduino/wiki/Arduino-IDE-1.5-3rd-party-Hardware-specification name=Arduino AVR Boards -version=1.6.7 +version=1.6.8 # AVR compile variables # --------------------- @@ -62,25 +62,31 @@ recipe.cpp.o.pattern="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} -m recipe.S.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.S.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.S.extra_flags} {build.extra_flags} {includes} "{source_file}" -o "{object_file}" ## Create archives -recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{build.path}/{archive_file}" "{object_file}" +recipe.ar.pattern="{compiler.path}{compiler.ar.cmd}" {compiler.ar.flags} {compiler.ar.extra_flags} "{archive_file_path}" "{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} {compiler.c.elf.extra_flags} -o "{build.path}/sketch/{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} {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" {object_files} "{build.path}/{archive_file}" "-L{build.path}" -lm ## Create output files (.eep and .hex) -recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.objcopy.eep.flags} {compiler.objcopy.eep.extra_flags} "{build.path}/sketch/{build.project_name}.elf" "{build.path}/sketch/{build.project_name}.eep" -recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/sketch/{build.project_name}.elf" "{build.path}/sketch/{build.project_name}.hex" +recipe.objcopy.eep.pattern="{compiler.path}{compiler.objcopy.cmd}" {compiler.objcopy.eep.flags} {compiler.objcopy.eep.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.eep" +recipe.objcopy.hex.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.hex" ## Save hex recipe.output.tmp_file={build.project_name}.hex recipe.output.save_file={build.project_name}.{build.variant}.hex ## Compute size -recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/sketch/{build.project_name}.elf" +recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/{build.project_name}.elf" recipe.size.regex=^(?:\.text|\.data|\.bootloader)\s+([0-9]+).* recipe.size.regex.data=^(?:\.data|\.bss|\.noinit)\s+([0-9]+).* recipe.size.regex.eeprom=^(?:\.eeprom)\s+([0-9]+).* +## Preprocessor +preproc.includes.flags=-w -x c++ -M -MG -MP +recipe.preproc.includes="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} {preproc.includes.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}" + +preproc.macros.flags=-w -x c++ -E -CC +recipe.preproc.macros="{compiler.path}{compiler.cpp.cmd}" {compiler.cpp.flags} {preproc.macros.flags} -mmcu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {includes} "{source_file}" # AVR Uploader/Programmers tools # ------------------------------ @@ -91,11 +97,11 @@ tools.avrdude.config.path={path}/etc/avrdude.conf tools.avrdude.upload.params.verbose=-v tools.avrdude.upload.params.quiet=-q -q -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}/sketch/{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 tools.avrdude.program.params.quiet=-q -q -tools.avrdude.program.pattern="{cmd.path}" "-C{config.path}" {program.verbose} -p{build.mcu} -c{protocol} {program.extra_params} "-Uflash:w:{build.path}/sketch/{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 tools.avrdude.erase.params.quiet=-q -q diff --git a/hardware/arduino/sam/cores/arduino/IPAddress.cpp b/hardware/arduino/sam/cores/arduino/IPAddress.cpp index 899cbd4eda8..76aefa8b21f 100644 --- a/hardware/arduino/sam/cores/arduino/IPAddress.cpp +++ b/hardware/arduino/sam/cores/arduino/IPAddress.cpp @@ -43,6 +43,48 @@ IPAddress::IPAddress(const uint8_t *address) memcpy(_address.bytes, address, sizeof(_address.bytes)); } +bool IPAddress::fromString(const char *address) +{ + // TODO: add support for "a", "a.b", "a.b.c" formats + + uint16_t acc = 0; // Accumulator + uint8_t dots = 0; + + while (*address) + { + char c = *address++; + if (c >= '0' && c <= '9') + { + acc = acc * 10 + (c - '0'); + if (acc > 255) { + // Value out of [0..255] range + return false; + } + } + else if (c == '.') + { + if (dots == 3) { + // Too much dots (there must be 3 dots) + return false; + } + _address.bytes[dots++] = acc; + acc = 0; + } + else + { + // Invalid char + return false; + } + } + + if (dots != 3) { + // Too few dots (there must be 3 dots) + return false; + } + _address.bytes[3] = acc; + return true; +} + IPAddress& IPAddress::operator=(const uint8_t *address) { memcpy(_address.bytes, address, sizeof(_address.bytes)); diff --git a/hardware/arduino/sam/cores/arduino/IPAddress.h b/hardware/arduino/sam/cores/arduino/IPAddress.h index 94acdc45668..d762f2c02b5 100644 --- a/hardware/arduino/sam/cores/arduino/IPAddress.h +++ b/hardware/arduino/sam/cores/arduino/IPAddress.h @@ -21,7 +21,8 @@ #define IPAddress_h #include -#include +#include "Printable.h" +#include "WString.h" // A class to make it easier to handle and pass around IP addresses @@ -45,6 +46,9 @@ class IPAddress : public Printable { IPAddress(uint32_t address); IPAddress(const uint8_t *address); + bool fromString(const char *address); + bool fromString(const String &address) { return fromString(address.c_str()); } + // 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() const { return _address.dword; }; @@ -71,5 +75,4 @@ class IPAddress : public Printable { const IPAddress INADDR_NONE(0,0,0,0); - #endif diff --git a/hardware/arduino/sam/cores/arduino/USB/CDC.cpp b/hardware/arduino/sam/cores/arduino/USB/CDC.cpp index 0f15d82a145..306c124ff24 100644 --- a/hardware/arduino/sam/cores/arduino/USB/CDC.cpp +++ b/hardware/arduino/sam/cores/arduino/USB/CDC.cpp @@ -17,6 +17,7 @@ #include "Arduino.h" #include "USBAPI.h" #include "Reset.h" +#include "Print.h" #ifdef CDC_ENABLED @@ -103,7 +104,7 @@ int WEAK CDC_GetOtherInterface(uint8_t* interfaceNum) return USBD_SendControl(0,&_cdcOtherInterface,sizeof(_cdcOtherInterface)); } -bool WEAK CDC_Setup(Setup& setup) +bool WEAK CDC_Setup(USBSetup& setup) { uint8_t r = setup.bRequest; uint8_t requestType = setup.bmRequestType; diff --git a/hardware/arduino/sam/cores/arduino/USB/HID.cpp b/hardware/arduino/sam/cores/arduino/USB/HID.cpp deleted file mode 100644 index c243f495142..00000000000 --- a/hardware/arduino/sam/cores/arduino/USB/HID.cpp +++ /dev/null @@ -1,518 +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 "Arduino.h" - -#ifdef HID_ENABLED - -//#define RAWHID_ENABLED - -// Singletons for mouse and keyboard - -Mouse_ Mouse; -Keyboard_ Keyboard; - -//================================================================================ -//================================================================================ - -// HID report descriptor - -#define LSB(_x) ((_x) & 0xFF) -#define MSB(_x) ((_x) >> 8) - -#define RAWHID_USAGE_PAGE 0xFFC0 -#define RAWHID_USAGE 0x0C00 -#define RAWHID_TX_SIZE 64 -#define RAWHID_RX_SIZE 64 - -extern const uint8_t _hidReportDescriptor[] = { - // Mouse - 0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 54 - 0x09, 0x02, // USAGE (Mouse) - 0xa1, 0x01, // COLLECTION (Application) - 0x09, 0x01, // USAGE (Pointer) - 0xa1, 0x00, // COLLECTION (Physical) - 0x85, 0x01, // REPORT_ID (1) - 0x05, 0x09, // USAGE_PAGE (Button) - 0x19, 0x01, // USAGE_MINIMUM (Button 1) - 0x29, 0x03, // USAGE_MAXIMUM (Button 3) - 0x15, 0x00, // LOGICAL_MINIMUM (0) - 0x25, 0x01, // LOGICAL_MAXIMUM (1) - 0x95, 0x03, // REPORT_COUNT (3) - 0x75, 0x01, // REPORT_SIZE (1) - 0x81, 0x02, // INPUT (Data,Var,Abs) - 0x95, 0x01, // REPORT_COUNT (1) - 0x75, 0x05, // REPORT_SIZE (5) - 0x81, 0x03, // INPUT (Cnst,Var,Abs) - 0x05, 0x01, // USAGE_PAGE (Generic Desktop) - 0x09, 0x30, // USAGE (X) - 0x09, 0x31, // USAGE (Y) - 0x09, 0x38, // USAGE (Wheel) - 0x15, 0x81, // LOGICAL_MINIMUM (-127) - 0x25, 0x7f, // LOGICAL_MAXIMUM (127) - 0x75, 0x08, // REPORT_SIZE (8) - 0x95, 0x03, // REPORT_COUNT (3) - 0x81, 0x06, // INPUT (Data,Var,Rel) - 0xc0, // END_COLLECTION - 0xc0, // END_COLLECTION - - // Keyboard - 0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 47 - 0x09, 0x06, // USAGE (Keyboard) - 0xa1, 0x01, // COLLECTION (Application) - 0x85, 0x02, // REPORT_ID (2) - 0x05, 0x07, // USAGE_PAGE (Keyboard) - - 0x19, 0xe0, // USAGE_MINIMUM (Keyboard LeftControl) - 0x29, 0xe7, // USAGE_MAXIMUM (Keyboard Right GUI) - 0x15, 0x00, // LOGICAL_MINIMUM (0) - 0x25, 0x01, // LOGICAL_MAXIMUM (1) - 0x75, 0x01, // REPORT_SIZE (1) - - 0x95, 0x08, // REPORT_COUNT (8) - 0x81, 0x02, // INPUT (Data,Var,Abs) - 0x95, 0x01, // REPORT_COUNT (1) - 0x75, 0x08, // REPORT_SIZE (8) - 0x81, 0x03, // INPUT (Cnst,Var,Abs) - - 0x95, 0x06, // REPORT_COUNT (6) - 0x75, 0x08, // REPORT_SIZE (8) - 0x15, 0x00, // LOGICAL_MINIMUM (0) - 0x25, 0x65, // LOGICAL_MAXIMUM (101) - 0x05, 0x07, // USAGE_PAGE (Keyboard) - - 0x19, 0x00, // USAGE_MINIMUM (Reserved (no event indicated)) - 0x29, 0x65, // USAGE_MAXIMUM (Keyboard Application) - 0x81, 0x00, // INPUT (Data,Ary,Abs) - 0xc0, // END_COLLECTION - -#ifdef RAWHID_ENABLED - // 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 -#endif -}; - -_Pragma("pack(1)") -extern const HIDDescriptor _hidInterface = -{ - D_INTERFACE(HID_INTERFACE,1,3,0,0), - D_HIDREPORT(sizeof(_hidReportDescriptor)), - D_ENDPOINT(USB_ENDPOINT_IN(HID_ENDPOINT_INT),USB_ENDPOINT_TYPE_INTERRUPT,0x40,0x01) -}; -_Pragma("pack()") - -//================================================================================ -//================================================================================ -// Driver - -uint8_t _hid_protocol = 1; -uint8_t _hid_idle = 1; - -#define WEAK __attribute__ ((weak)) - -int WEAK HID_GetInterface(uint8_t* interfaceNum) -{ - interfaceNum[0] += 1; // uses 1 - return USBD_SendControl(0,&_hidInterface,sizeof(_hidInterface)); -} - -int WEAK HID_GetDescriptor(int i) -{ - return USBD_SendControl(0,_hidReportDescriptor,sizeof(_hidReportDescriptor)); -} - -void WEAK HID_SendReport(uint8_t id, const void* data, uint32_t len) -{ - uint8_t p[64]; - const uint8_t *d = reinterpret_cast(data); - - p[0] = id; - for (uint32_t i=0; i 0) - return true; - return false; -} - -//================================================================================ -//================================================================================ -// Keyboard - -Keyboard_::Keyboard_(void) -{ -} - -void Keyboard_::begin(void) -{ -} - -void Keyboard_::end(void) -{ -} - -void Keyboard_::sendReport(KeyReport* keys) -{ - HID_SendReport(2,keys,sizeof(KeyReport)); -} - -#define SHIFT 0x80 -extern const uint8_t _asciimap[128] = -{ - 0x00, // NUL - 0x00, // SOH - 0x00, // STX - 0x00, // ETX - 0x00, // EOT - 0x00, // ENQ - 0x00, // ACK - 0x00, // BEL - 0x2a, // BS Backspace - 0x2b, // TAB Tab - 0x28, // LF Enter - 0x00, // VT - 0x00, // FF - 0x00, // CR - 0x00, // SO - 0x00, // SI - 0x00, // DEL - 0x00, // DC1 - 0x00, // DC2 - 0x00, // DC3 - 0x00, // DC4 - 0x00, // NAK - 0x00, // SYN - 0x00, // ETB - 0x00, // CAN - 0x00, // EM - 0x00, // SUB - 0x00, // ESC - 0x00, // FS - 0x00, // GS - 0x00, // RS - 0x00, // US - - 0x2c, // ' ' - 0x1e|SHIFT, // ! - 0x34|SHIFT, // " - 0x20|SHIFT, // # - 0x21|SHIFT, // $ - 0x22|SHIFT, // % - 0x24|SHIFT, // & - 0x34, // ' - 0x26|SHIFT, // ( - 0x27|SHIFT, // ) - 0x25|SHIFT, // * - 0x2e|SHIFT, // + - 0x36, // , - 0x2d, // - - 0x37, // . - 0x38, // / - 0x27, // 0 - 0x1e, // 1 - 0x1f, // 2 - 0x20, // 3 - 0x21, // 4 - 0x22, // 5 - 0x23, // 6 - 0x24, // 7 - 0x25, // 8 - 0x26, // 9 - 0x33|SHIFT, // : - 0x33, // ; - 0x36|SHIFT, // < - 0x2e, // = - 0x37|SHIFT, // > - 0x38|SHIFT, // ? - 0x1f|SHIFT, // @ - 0x04|SHIFT, // A - 0x05|SHIFT, // B - 0x06|SHIFT, // C - 0x07|SHIFT, // D - 0x08|SHIFT, // E - 0x09|SHIFT, // F - 0x0a|SHIFT, // G - 0x0b|SHIFT, // H - 0x0c|SHIFT, // I - 0x0d|SHIFT, // J - 0x0e|SHIFT, // K - 0x0f|SHIFT, // L - 0x10|SHIFT, // M - 0x11|SHIFT, // N - 0x12|SHIFT, // O - 0x13|SHIFT, // P - 0x14|SHIFT, // Q - 0x15|SHIFT, // R - 0x16|SHIFT, // S - 0x17|SHIFT, // T - 0x18|SHIFT, // U - 0x19|SHIFT, // V - 0x1a|SHIFT, // W - 0x1b|SHIFT, // X - 0x1c|SHIFT, // Y - 0x1d|SHIFT, // Z - 0x2f, // [ - 0x31, // bslash - 0x30, // ] - 0x23|SHIFT, // ^ - 0x2d|SHIFT, // _ - 0x35, // ` - 0x04, // a - 0x05, // b - 0x06, // c - 0x07, // d - 0x08, // e - 0x09, // f - 0x0a, // g - 0x0b, // h - 0x0c, // i - 0x0d, // j - 0x0e, // k - 0x0f, // l - 0x10, // m - 0x11, // n - 0x12, // o - 0x13, // p - 0x14, // q - 0x15, // r - 0x16, // s - 0x17, // t - 0x18, // u - 0x19, // v - 0x1a, // w - 0x1b, // x - 0x1c, // y - 0x1d, // z - 0x2f|SHIFT, // - 0x31|SHIFT, // | - 0x30|SHIFT, // } - 0x35|SHIFT, // ~ - 0 // DEL -}; - -uint8_t USBPutChar(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) -{ - 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 = _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; - } - } - - // 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 = _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 = 0; - - p = press(c); // Keydown - release(c); // Keyup - - return (p); // Just return the result of press() since release() almost always returns 1 -} - -#endif diff --git a/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.cpp b/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.cpp new file mode 100644 index 00000000000..84d781d812a --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.cpp @@ -0,0 +1,98 @@ +/* + PluggableUSB.cpp + Copyright (c) 2015 Arduino LLC + + 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 +*/ + +#include "USBAPI.h" +#include "USBDesc.h" +#include "PluggableUSB.h" + +#ifdef PLUGGABLE_USB_ENABLED + +#define MAX_MODULES 6 + +static uint8_t lastIf = CDC_ACM_INTERFACE + CDC_INTERFACE_COUNT; +static uint8_t lastEp = CDC_FIRST_ENDPOINT + CDC_ENPOINT_COUNT; + +extern uint32_t EndPoints[]; + +//PUSBCallbacks cbs[MAX_MODULES]; +static uint8_t modules_count = 0; + +static PUSBListNode* rootNode = NULL; + +int PUSB_GetInterface(uint8_t* interfaceNum) +{ + int ret = 0; + PUSBListNode* node = rootNode; + for (uint8_t i=0; icb->getInterface(interfaceNum); + node = node->next; + } + return ret; +} + +int PUSB_GetDescriptor(int8_t t) +{ + int ret = 0; + PUSBListNode* node = rootNode; + for (uint8_t i=0; icb->getDescriptor(t); + node = node->next; + } + return ret; +} + +bool PUSB_Setup(USBSetup& setup, uint8_t j) +{ + bool ret = false; + PUSBListNode* node = rootNode; + for (uint8_t i=0; icb->setup(setup, j); + node = node->next; + } + return ret; +} + +int8_t PUSB_AddFunction(PUSBListNode *node, uint8_t* interface) +{ + if (modules_count >= MAX_MODULES) { + return 0; + } + + if (modules_count == 0) { + rootNode = node; + } else { + PUSBListNode *current = rootNode; + while(current->next != NULL) { + current = current->next; + } + current->next = node; + } + + *interface = lastIf; + lastIf += node->cb->numInterfaces; + for ( uint8_t i = 0; i< node->cb->numEndpoints; i++) { + EndPoints[lastEp] = node->cb->endpointType[i]; + lastEp++; + } + modules_count++; + return lastEp - node->cb->numEndpoints; + // restart USB layer??? +} + +#endif \ No newline at end of file diff --git a/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.h b/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.h new file mode 100644 index 00000000000..75793fa32b4 --- /dev/null +++ b/hardware/arduino/sam/cores/arduino/USB/PluggableUSB.h @@ -0,0 +1,57 @@ +/* + PluggableUSB.h + Copyright (c) 2015 Arduino LLC + + 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 +*/ + +#ifndef PUSB_h +#define PUSB_h + +#include "USBAPI.h" +#include + +#if defined(USBCON) + +typedef struct __attribute__((packed)) +{ + bool (*setup)(USBSetup& setup, uint8_t i); + int (*getInterface)(uint8_t* interfaceNum); + int (*getDescriptor)(int8_t t); + int8_t numEndpoints; + int8_t numInterfaces; + uint32_t *endpointType; +} PUSBCallbacks; + +class PUSBListNode { +public: + PUSBListNode *next = NULL; + PUSBCallbacks *cb; + PUSBListNode(PUSBCallbacks *ncb) {cb = ncb;} +}; + +int8_t PUSB_AddFunction(PUSBListNode *node, uint8_t *interface); + +int PUSB_GetInterface(uint8_t* interfaceNum); + +int PUSB_GetDescriptor(int8_t t); + +bool PUSB_Setup(USBSetup& setup, uint8_t i); + +void PUSB_Begin(); + +#endif + +#endif diff --git a/hardware/arduino/sam/cores/arduino/USB/USBAPI.h b/hardware/arduino/sam/cores/arduino/USB/USBAPI.h index eda623ddb54..97e8ad6fec5 100644 --- a/hardware/arduino/sam/cores/arduino/USB/USBAPI.h +++ b/hardware/arduino/sam/cores/arduino/USB/USBAPI.h @@ -22,6 +22,10 @@ #if defined __cplusplus #include "RingBuffer.h" +#include "Stream.h" +#include + +#define min(a, b) Min(a, b) //================================================================================ //================================================================================ @@ -86,97 +90,6 @@ class Serial_ : public Stream }; extern Serial_ SerialUSB; -//================================================================================ -//================================================================================ -// Mouse - -#define MOUSE_LEFT 1 -#define MOUSE_RIGHT 2 -#define MOUSE_MIDDLE 4 -#define MOUSE_ALL (MOUSE_LEFT | MOUSE_RIGHT | MOUSE_MIDDLE) - -class Mouse_ -{ -private: - uint8_t _buttons; - void buttons(uint8_t b); -public: - 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 -}; -extern Mouse_ Mouse; - -//================================================================================ -//================================================================================ -// Keyboard - -#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 -{ - uint8_t modifiers; - uint8_t reserved; - uint8_t keys[6]; -} KeyReport; - -class Keyboard_ : public Print -{ -private: - KeyReport _keyReport; - void sendReport(KeyReport* keys); -public: - 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; - //================================================================================ //================================================================================ // Low level API @@ -189,16 +102,7 @@ typedef struct uint8_t wValueH; uint16_t wIndex; uint16_t wLength; -} Setup; - -//================================================================================ -//================================================================================ -// HID 'Driver' - -int HID_GetInterface(uint8_t* interfaceNum); -int HID_GetDescriptor(int i); -bool HID_Setup(Setup& setup); -void HID_SendReport(uint8_t id, const void* data, uint32_t len); +} USBSetup; //================================================================================ //================================================================================ @@ -206,7 +110,7 @@ void HID_SendReport(uint8_t id, const void* data, uint32_t len); int MSC_GetInterface(uint8_t* interfaceNum); int MSC_GetDescriptor(int i); -bool MSC_Setup(Setup& setup); +bool MSC_Setup(USBSetup& setup); bool MSC_Data(uint8_t rx,uint8_t tx); //================================================================================ @@ -216,7 +120,7 @@ bool MSC_Data(uint8_t rx,uint8_t tx); int CDC_GetInterface(uint8_t* interfaceNum); int CDC_GetOtherInterface(uint8_t* interfaceNum); int CDC_GetDescriptor(int i); -bool CDC_Setup(Setup& setup); +bool CDC_Setup(USBSetup& setup); //================================================================================ //================================================================================ @@ -228,7 +132,7 @@ void USBD_InitControl(int end); int USBD_SendControl(uint8_t flags, const void* d, uint32_t len); int USBD_RecvControl(void* d, uint32_t len); int USBD_SendInterfaces(void); -bool USBD_ClassInterfaceRequest(Setup& setup); +bool USBD_ClassInterfaceRequest(USBSetup& setup); uint32_t USBD_Available(uint32_t ep); diff --git a/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp b/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp index c21fda7f4c9..3fc6e43d618 100644 --- a/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp +++ b/hardware/arduino/sam/cores/arduino/USB/USBCore.cpp @@ -18,11 +18,13 @@ #include "USBAPI.h" #include "Reset.h" #include +#include "PluggableUSB.h" +#include //#define TRACE_CORE(x) x #define TRACE_CORE(x) -static const uint32_t EndPoints[] = +uint32_t EndPoints[] = { EP_TYPE_CONTROL, @@ -32,8 +34,14 @@ static const uint32_t EndPoints[] = EP_TYPE_BULK_IN, // CDC_ENDPOINT_IN #endif -#ifdef HID_ENABLED - EP_TYPE_INTERRUPT_IN_HID // HID_ENDPOINT_INT +#ifdef PLUGGABLE_USB_ENABLED + //allocate 6 endpoints and remove const so they can be changed by the user + 0, + 0, + 0, + 0, + 0, + 0, #endif }; @@ -91,7 +99,7 @@ const DeviceDescriptor USB_DeviceDescriptor = D_DEVICE(0x00,0x00,0x00,64,USB_VID,USB_PID,0x100,IMANUFACTURER,IPRODUCT,0,1); const DeviceDescriptor USB_DeviceDescriptorA = - D_DEVICE(DEVICE_CLASS,0x00,0x00,64,USB_VID,USB_PID,0x100,IMANUFACTURER,IPRODUCT,0,1); + D_DEVICE(0xEF,0x02,0x01,64,USB_VID,USB_PID,0x100,IMANUFACTURER,IPRODUCT,0,1); const DeviceDescriptor USB_DeviceQualifier = D_QUALIFIER(0x00,0x00,0x00,64,1); @@ -274,7 +282,7 @@ int USBD_RecvControl(void* d, uint32_t len) } // Handle CLASS_INTERFACE requests -bool USBD_ClassInterfaceRequest(Setup& setup) +bool USBD_ClassInterfaceRequest(USBSetup& setup) { uint8_t i = setup.wIndex; @@ -287,11 +295,8 @@ bool USBD_ClassInterfaceRequest(Setup& setup) } #endif -#ifdef HID_ENABLED - if (HID_INTERFACE == i) - { - return HID_Setup(setup); - } +#ifdef PLUGGABLE_USB_ENABLED + return PUSB_Setup(setup, i); #endif return false; @@ -299,37 +304,33 @@ bool USBD_ClassInterfaceRequest(Setup& setup) int USBD_SendInterfaces(void) { - int total = 0; uint8_t interfaces = 0; #ifdef CDC_ENABLED - total = CDC_GetInterface(&interfaces); + CDC_GetInterface(&interfaces); #endif -#ifdef HID_ENABLED - total += HID_GetInterface(&interfaces); +#ifdef PLUGGABLE_USB_ENABLED + PUSB_GetInterface(&interfaces); #endif - total = total; // Get rid of compiler warning - TRACE_CORE(printf("=> USBD_SendInterfaces, total=%d interfaces=%d\r\n", total, interfaces);) + TRACE_CORE(printf("=> USBD_SendInterfaces, interfaces=%d\r\n", interfaces);) return interfaces; } int USBD_SendOtherInterfaces(void) { - int total = 0; uint8_t interfaces = 0; #ifdef CDC_ENABLED - total = CDC_GetOtherInterface(&interfaces); + CDC_GetOtherInterface(&interfaces); #endif -#ifdef HID_ENABLED - total += HID_GetInterface(&interfaces); +#ifdef PLUGGABLE_USB_ENABLED + PUSB_GetInterface(&interfaces); #endif - total = total; // Get rid of compiler warning - TRACE_CORE(printf("=> USBD_SendInterfaces, total=%d interfaces=%d\r\n", total, interfaces);) + TRACE_CORE(printf("=> USBD_SendInterfaces, interfaces=%d\r\n", interfaces);) return interfaces; } @@ -382,10 +383,11 @@ _Pragma("pack()") return true; } -static bool USBD_SendDescriptor(Setup& setup) +static bool USBD_SendDescriptor(USBSetup& setup) { uint8_t t = setup.wValueH; uint8_t desc_length = 0; + int ret = 0; const uint8_t* desc_addr = 0; if (USB_CONFIGURATION_DESCRIPTOR_TYPE == t) @@ -395,11 +397,11 @@ static bool USBD_SendDescriptor(Setup& setup) } USBD_InitControl(setup.wLength); -#ifdef HID_ENABLED - if (HID_REPORT_DESCRIPTOR_TYPE == t) - { - TRACE_CORE(puts("=> USBD_SendDescriptor : HID_REPORT_DESCRIPTOR_TYPE\r\n");) - return HID_GetDescriptor(t); + +#ifdef PLUGGABLE_USB_ENABLED + ret = PUSB_GetDescriptor(t); + if (ret != 0) { + return (ret > 0 ? true : false); } #endif @@ -640,7 +642,7 @@ static void USB_ISR(void) return; } - Setup setup; + USBSetup setup; UDD_Recv(EP0, (uint8_t*)&setup, 8); UDD_ClearSetupInt(); @@ -765,7 +767,11 @@ static void USB_ISR(void) { TRACE_CORE(printf(">>> EP0 Int: SET_CONFIGURATION REQUEST_DEVICE %d\r\n", setup.wValueL);) - UDD_InitEndpoints(EndPoints, (sizeof(EndPoints) / sizeof(EndPoints[0]))); + uint32_t num_endpoints = 0; + while (EndPoints[num_endpoints] != 0) { + num_endpoints++; + } + UDD_InitEndpoints(EndPoints, num_endpoints); _usbConfiguration = setup.wValueL; #ifdef CDC_ENABLED diff --git a/hardware/arduino/sam/cores/arduino/USB/USBCore.h b/hardware/arduino/sam/cores/arduino/USB/USBCore.h index b01d7576a1e..c522d448207 100644 --- a/hardware/arduino/sam/cores/arduino/USB/USBCore.h +++ b/hardware/arduino/sam/cores/arduino/USB/USBCore.h @@ -58,13 +58,6 @@ #define MSC_RESET 0xFF #define MSC_GET_MAX_LUN 0xFE -#define HID_GET_REPORT 0x01 -#define HID_GET_IDLE 0x02 -#define HID_GET_PROTOCOL 0x03 -#define HID_SET_REPORT 0x09 -#define HID_SET_IDLE 0x0A -#define HID_SET_PROTOCOL 0x0B - // Descriptors #define USB_DEVICE_DESC_SIZE 18 @@ -121,10 +114,6 @@ #define MSC_SUBCLASS_SCSI 0x06 #define MSC_PROTOCOL_BULK_ONLY 0x50 -#define HID_HID_DESCRIPTOR_TYPE 0x21 -#define HID_REPORT_DESCRIPTOR_TYPE 0x22 -#define HID_PHYSICAL_DESCRIPTOR_TYPE 0x23 - _Pragma("pack(1)") // Device @@ -259,26 +248,6 @@ typedef struct EndpointDescriptor out; } MSCDescriptor; -typedef struct -{ - uint8_t len; // 9 - uint8_t dtype; // 0x21 - uint8_t addr; - uint8_t versionL; // 0x101 - uint8_t versionH; // 0x101 - uint8_t country; - uint8_t desctype; // 0x22 report - uint8_t descLenL; - uint8_t descLenH; -} HIDDescDescriptor; - -typedef struct -{ - InterfaceDescriptor hid; - HIDDescDescriptor desc; - EndpointDescriptor in; -} HIDDescriptor; - _Pragma("pack()") #define D_DEVICE(_class,_subClass,_proto,_packetSize0,_vid,_pid,_version,_im,_ip,_is,_configs) \ @@ -302,9 +271,6 @@ _Pragma("pack()") #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 } diff --git a/hardware/arduino/sam/cores/arduino/USB/USBDesc.h b/hardware/arduino/sam/cores/arduino/USB/USBDesc.h index 878095e2450..389967cf988 100644 --- a/hardware/arduino/sam/cores/arduino/USB/USBDesc.h +++ b/hardware/arduino/sam/cores/arduino/USB/USBDesc.h @@ -18,7 +18,7 @@ #define __USBDESC_H__ #define CDC_ENABLED -#define HID_ENABLED +#define PLUGGABLE_USB_ENABLED #ifdef CDC_ENABLED #define CDC_INTERFACE_COUNT 2 @@ -28,14 +28,6 @@ #define CDC_ENPOINT_COUNT 0 #endif -#ifdef HID_ENABLED -#define HID_INTERFACE_COUNT 1 -#define HID_ENPOINT_COUNT 1 -#else -#define HID_INTERFACE_COUNT 0 -#define HID_ENPOINT_COUNT 0 -#endif - #define CDC_ACM_INTERFACE 0 // CDC ACM #define CDC_DATA_INTERFACE 1 // CDC Data #define CDC_FIRST_ENDPOINT 1 @@ -43,10 +35,6 @@ #define CDC_ENDPOINT_OUT (CDC_FIRST_ENDPOINT+1) #define CDC_ENDPOINT_IN (CDC_FIRST_ENDPOINT+2) -#define HID_INTERFACE (CDC_ACM_INTERFACE + CDC_INTERFACE_COUNT) // HID Interface -#define HID_FIRST_ENDPOINT (CDC_FIRST_ENDPOINT + CDC_ENPOINT_COUNT) -#define HID_ENDPOINT_INT (HID_FIRST_ENDPOINT) - #define INTERFACE_COUNT (MSC_INTERFACE + MSC_INTERFACE_COUNT) #ifdef CDC_ENABLED @@ -54,10 +42,6 @@ #define CDC_TX CDC_ENDPOINT_IN #endif -#ifdef HID_ENABLED -#define HID_TX HID_ENDPOINT_INT -#endif - #define IMANUFACTURER 1 #define IPRODUCT 2 diff --git a/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp b/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp index 241b6f19a70..4ffc9aaa073 100644 --- a/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp +++ b/hardware/arduino/sam/cores/arduino/wiring_pulse.cpp @@ -69,24 +69,24 @@ uint32_t pulseInLong(uint8_t pin, uint8_t state, unsigned long timeout) uint32_t bit = p.ulPin; uint32_t stateMask = state ? bit : 0; - // convert the timeout from microseconds to a number of times through - // the initial loop; it takes 18 clock cycles per iteration. - unsigned long maxloops = microsecondsToClockCycles(timeout) / 10; + unsigned long startMicros = micros(); // wait for any previous pulse to end - while ((p.pPort->PIO_PDSR & bit) == stateMask) - if (--maxloops == 0) + while ((p.pPort->PIO_PDSR & bit) == stateMask) { + if (micros() - startMicros > timeout) return 0; + } // wait for the pulse to start - while ((p.pPort->PIO_PDSR & bit) != stateMask) - if (--maxloops == 0) + while ((p.pPort->PIO_PDSR & bit) != stateMask) { + if (micros() - startMicros > timeout) return 0; + } unsigned long start = micros(); // wait for the pulse to stop while ((p.pPort->PIO_PDSR & bit) == stateMask) { - if (--maxloops == 0) + if (micros() - startMicros > timeout) return 0; } return micros() - start; diff --git a/hardware/arduino/sam/libraries/HID/HID.cpp b/hardware/arduino/sam/libraries/HID/HID.cpp new file mode 100644 index 00000000000..b2a79423e35 --- /dev/null +++ b/hardware/arduino/sam/libraries/HID/HID.cpp @@ -0,0 +1,168 @@ +/* Copyright (c) 2015, Arduino LLC +** +** Original code (pre-library): 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 "USB/PluggableUSB.h" +#include "HID.h" + +HID_ HID; + +static uint8_t HID_ENDPOINT_INT; + +//================================================================================ +//================================================================================ + +// HID report descriptor + +#define LSB(_x) ((_x) & 0xFF) +#define MSB(_x) ((_x) >> 8) + +#define RAWHID_USAGE_PAGE 0xFFC0 +#define RAWHID_USAGE 0x0C00 +#define RAWHID_TX_SIZE 64 +#define RAWHID_RX_SIZE 64 + +static uint8_t HID_INTERFACE; + +HIDDescriptor _hidInterface; + +static HIDDescriptorListNode* rootNode = NULL; +static uint8_t sizeof_hidReportDescriptor = 0; +static uint8_t modules_count = 0; +//================================================================================ +//================================================================================ +// Driver + +uint8_t _hid_protocol = 1; +uint8_t _hid_idle = 1; + +int HID_GetInterface(uint8_t* interfaceNum) +{ + interfaceNum[0] += 1; // uses 1 + _hidInterface = + { + D_INTERFACE(HID_INTERFACE,1,3,0,0), + D_HIDREPORT(sizeof_hidReportDescriptor), + D_ENDPOINT(USB_ENDPOINT_IN (HID_ENDPOINT_INT),USB_ENDPOINT_TYPE_INTERRUPT,0x40,0x01) + }; + return USBD_SendControl(0,&_hidInterface,sizeof(_hidInterface)); +} + +int HID_GetDescriptor(int8_t t) +{ + if (HID_REPORT_DESCRIPTOR_TYPE == t) { + HIDDescriptorListNode* current = rootNode; + int total = 0; + while(current != NULL) { + total += USBD_SendControl(0,current->data,current->length); + current = current->next; + } + return total; + } else { + return 0; + } +} + +void HID_::AppendDescriptor(HIDDescriptorListNode *node) +{ + if (modules_count == 0) { + rootNode = node; + } else { + HIDDescriptorListNode *current = rootNode; + while(current->next != NULL) { + current = current->next; + } + current->next = node; + } + modules_count++; + sizeof_hidReportDescriptor += node->length; +} + +void HID_::SendReport(uint8_t id, const void* data, int len) +{ + uint8_t p[64]; + const uint8_t *d = reinterpret_cast(data); + + p[0] = id; + for (uint32_t i=0; i +#include + +#define _USING_HID + +//================================================================================ +//================================================================================ +// HID 'Driver' + +#define HID_GET_REPORT 0x01 +#define HID_GET_IDLE 0x02 +#define HID_GET_PROTOCOL 0x03 +#define HID_SET_REPORT 0x09 +#define HID_SET_IDLE 0x0A +#define HID_SET_PROTOCOL 0x0B + +#define HID_HID_DESCRIPTOR_TYPE 0x21 +#define HID_REPORT_DESCRIPTOR_TYPE 0x22 +#define HID_PHYSICAL_DESCRIPTOR_TYPE 0x23 + +class HIDDescriptorListNode { +public: + HIDDescriptorListNode *next = NULL; + HIDDescriptorListNode(const void *d, const uint16_t l) : data(d), length(l) { } + + const void* data; + const uint16_t length; +}; + +class HID_ +{ +public: + HID_(void); + int begin(void); + void SendReport(uint8_t id, const void* data, int len); + void AppendDescriptor(HIDDescriptorListNode* node); +}; + +typedef struct +{ + uint8_t len; // 9 + uint8_t dtype; // 0x21 + uint8_t addr; + uint8_t versionL; // 0x101 + uint8_t versionH; // 0x101 + uint8_t country; + uint8_t desctype; // 0x22 report + uint8_t descLenL; + uint8_t descLenH; +} HIDDescDescriptor; + +typedef struct +{ + InterfaceDescriptor hid; + HIDDescDescriptor desc; + EndpointDescriptor in; +} HIDDescriptor; + +#define HID_TX HID_ENDPOINT_INT + +#define D_HIDREPORT(_descriptorLength) \ + { 9, 0x21, 0x1, 0x1, 0, 1, 0x22, _descriptorLength, 0 } + +#define WEAK __attribute__ ((weak)) + +#endif diff --git a/hardware/arduino/sam/libraries/HID/keywords.txt b/hardware/arduino/sam/libraries/HID/keywords.txt new file mode 100644 index 00000000000..32a9ba5f20c --- /dev/null +++ b/hardware/arduino/sam/libraries/HID/keywords.txt @@ -0,0 +1,21 @@ +####################################### +# Syntax Coloring Map HID +####################################### + +####################################### +# Datatypes (KEYWORD1) +####################################### + +HID KEYWORD1 + +####################################### +# Methods and Functions (KEYWORD2) +####################################### +begin KEYWORD2 +SendReport KEYWORD2 +AppendDescriptor KEYWORD2 + +####################################### +# Constants (LITERAL1) +####################################### +HID_TX LITERAL1 \ No newline at end of file diff --git a/hardware/arduino/sam/libraries/HID/library.properties b/hardware/arduino/sam/libraries/HID/library.properties new file mode 100644 index 00000000000..1beace148fa --- /dev/null +++ b/hardware/arduino/sam/libraries/HID/library.properties @@ -0,0 +1,9 @@ +name=HID +version=1.0 +author=Arduino +maintainer=Arduino +sentence=Module for PluggableUSB infrastructure. Exposes an API for devices like Keyboards, Mice and Gamepads +paragraph= +category=Communication +url=http://www.arduino.cc/en/Reference/HID +architectures=sam diff --git a/hardware/arduino/sam/libraries/SPI/library.properties b/hardware/arduino/sam/libraries/SPI/library.properties index 0e358df5f24..fdc75484eda 100644 --- a/hardware/arduino/sam/libraries/SPI/library.properties +++ b/hardware/arduino/sam/libraries/SPI/library.properties @@ -4,6 +4,7 @@ author=Arduino maintainer=Arduino sentence=Enables the communication with devices that use the Serial Peripheral Interface (SPI) Bus. For Arduino DUE only. paragraph= +category=Communication url=http://www.arduino.cc/en/Reference/SPI architectures=sam diff --git a/hardware/arduino/sam/libraries/Wire/Wire.cpp b/hardware/arduino/sam/libraries/Wire/Wire.cpp index 696a1ecaadc..12c225316cd 100644 --- a/hardware/arduino/sam/libraries/Wire/Wire.cpp +++ b/hardware/arduino/sam/libraries/Wire/Wire.cpp @@ -92,10 +92,11 @@ static inline bool TWI_STATUS_NACK(uint32_t status) { return (status & TWI_SR_NACK) == TWI_SR_NACK; } -TwoWire::TwoWire(Twi *_twi, void(*_beginCb)(void)) : +TwoWire::TwoWire(Twi *_twi, void(*_beginCb)(void), void(*_endCb)(void)) : twi(_twi), rxBufferIndex(0), rxBufferLength(0), txAddress(0), txBufferLength(0), srvBufferIndex(0), srvBufferLength(0), status( - UNINITIALIZED), onBeginCallback(_beginCb), twiClock(TWI_CLOCK) { + UNINITIALIZED), onBeginCallback(_beginCb), + onEndCallback(_endCb), twiClock(TWI_CLOCK) { } void TwoWire::begin(void) { @@ -126,6 +127,16 @@ void TwoWire::begin(int address) { begin((uint8_t) address); } +void TwoWire::end(void) { + TWI_Disable(twi); + + // Enable PDC channel + twi->TWI_PTCR &= ~(UART_PTCR_RXTDIS | UART_PTCR_TXTDIS); + + if (onEndCallback) + onEndCallback(); +} + void TwoWire::setClock(uint32_t frequency) { twiClock = frequency; TWI_SetClock(twi, twiClock, VARIANT_MCK); @@ -381,7 +392,21 @@ static void Wire_Init(void) { NVIC_EnableIRQ(WIRE_ISR_ID); } -TwoWire Wire = TwoWire(WIRE_INTERFACE, Wire_Init); +static void Wire_Deinit(void) { + NVIC_DisableIRQ(WIRE_ISR_ID); + NVIC_ClearPendingIRQ(WIRE_ISR_ID); + + pmc_disable_periph_clk(WIRE_INTERFACE_ID); + + // disable pull ups + pinMode(PIN_WIRE_SDA, OUTPUT); + pinMode(PIN_WIRE_SCL, OUTPUT); + + digitalWrite(PIN_WIRE_SDA, LOW); + digitalWrite(PIN_WIRE_SCL, LOW); +} + +TwoWire Wire = TwoWire(WIRE_INTERFACE, Wire_Init, Wire_Deinit); void WIRE_ISR_HANDLER(void) { Wire.onService(); @@ -408,7 +433,21 @@ static void Wire1_Init(void) { NVIC_EnableIRQ(WIRE1_ISR_ID); } -TwoWire Wire1 = TwoWire(WIRE1_INTERFACE, Wire1_Init); +static void Wire1_Deinit(void) { + NVIC_DisableIRQ(WIRE1_ISR_ID); + NVIC_ClearPendingIRQ(WIRE1_ISR_ID); + + pmc_disable_periph_clk(WIRE1_INTERFACE_ID); + + // disable pull ups + pinMode(PIN_WIRE1_SDA, OUTPUT); + pinMode(PIN_WIRE1_SCL, OUTPUT); + + digitalWrite(PIN_WIRE1_SDA, LOW); + digitalWrite(PIN_WIRE1_SCL, LOW); +} + +TwoWire Wire1 = TwoWire(WIRE1_INTERFACE, Wire1_Init, Wire1_Deinit); void WIRE1_ISR_HANDLER(void) { Wire1.onService(); diff --git a/hardware/arduino/sam/libraries/Wire/Wire.h b/hardware/arduino/sam/libraries/Wire/Wire.h index 76cc3d2673f..3913c983bcd 100644 --- a/hardware/arduino/sam/libraries/Wire/Wire.h +++ b/hardware/arduino/sam/libraries/Wire/Wire.h @@ -29,12 +29,16 @@ #define BUFFER_LENGTH 32 + // WIRE_HAS_END means Wire has end() +#define WIRE_HAS_END 1 + class TwoWire : public Stream { public: - TwoWire(Twi *twi, void(*begin_cb)(void)); + TwoWire(Twi *twi, void(*begin_cb)(void), void(*end_cb)(void)); void begin(); void begin(uint8_t); void begin(int); + void end(); void setClock(uint32_t); void beginTransmission(uint8_t); void beginTransmission(int); @@ -85,6 +89,9 @@ class TwoWire : public Stream { // Called before initialization void (*onBeginCallback)(void); + // Called after deinitialization + void (*onEndCallback)(void); + // TWI instance Twi *twi; diff --git a/hardware/arduino/sam/libraries/Wire/library.properties b/hardware/arduino/sam/libraries/Wire/library.properties index 607cf0ddec5..d5ea17b2d26 100644 --- a/hardware/arduino/sam/libraries/Wire/library.properties +++ b/hardware/arduino/sam/libraries/Wire/library.properties @@ -4,6 +4,7 @@ author=Arduino maintainer=Arduino sentence=Allows the communication between devices or sensors connected via Two Wire Interface Bus. For Arduino DUE only. paragraph= +cateogry=Communication url=http://www.arduino.cc/en/Reference/Wire architectures=sam diff --git a/hardware/arduino/sam/platform.txt b/hardware/arduino/sam/platform.txt index d0c4e11a384..46280a5f081 100644 --- a/hardware/arduino/sam/platform.txt +++ b/hardware/arduino/sam/platform.txt @@ -23,7 +23,7 @@ compiler.c.flags=-c -g -Os {compiler.warning_flags} -std=gnu11 -ffunction-sectio compiler.c.elf.cmd=arm-none-eabi-gcc compiler.c.elf.flags=-Os -Wl,--gc-sections compiler.S.cmd=arm-none-eabi-gcc -compiler.S.flags=-c -g -x assembler-with-cpp -mthumb +compiler.S.flags=-c -g -x assembler-with-cpp compiler.cpp.cmd=arm-none-eabi-g++ compiler.cpp.flags=-c -g -Os {compiler.warning_flags} -std=gnu++11 -ffunction-sections -fdata-sections -nostdlib -fno-threadsafe-statics --param max-inline-insns-single=500 -fno-rtti -fno-exceptions -Dprintf=iprintf -MMD compiler.ar.cmd=arm-none-eabi-ar @@ -55,7 +55,7 @@ compiler.libsam.c.flags="-I{build.system.path}/libsam" "-I{build.system.path}/CM build.usb_flags=-DUSB_VID={build.vid} -DUSB_PID={build.pid} -DUSBCON '-DUSB_MANUFACTURER={build.usb_manufacturer}' '-DUSB_PRODUCT={build.usb_product}' # Default usb manufacturer will be replaced at compile time using -# numeric vendor ID if available or by board's specific value. +# numeric vendor ID if available or by board's specific value. build.usb_manufacturer="Unknown" @@ -63,40 +63,41 @@ build.usb_manufacturer="Unknown" # --------------------- ## Compile c files -recipe.c.o.pattern="{compiler.path}{compiler.c.cmd}" {compiler.c.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.c.extra_flags} {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} -mthumb -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.c.extra_flags} {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} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {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} -mthumb -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.cpp.extra_flags} {build.extra_flags} {compiler.libsam.c.flags} {includes} "{source_file}" -o "{object_file}" ## Compile S files -recipe.S.o.pattern="{compiler.path}{compiler.S.cmd}" {compiler.S.flags} -mcpu={build.mcu} -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.S.extra_flags} {build.extra_flags} {compiler.libsam.c.flags} {includes} "{source_file}" -o "{object_file}" +recipe.S.o.pattern="{compiler.path}{compiler.S.cmd}" {compiler.S.flags} -mcpu={build.mcu} -mthumb -DF_CPU={build.f_cpu} -DARDUINO={runtime.ide.version} -DARDUINO_{build.board} -DARDUINO_ARCH_{build.arch} {compiler.S.extra_flags} {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} {compiler.ar.extra_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}/sketch/{build.project_name}.map" {compiler.c.elf.extra_flags} -o "{build.path}/sketch/{build.project_name}.elf" "-L{build.path}" -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}/core/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group -lm -gcc +recipe.c.combine.pattern="{compiler.path}{compiler.c.elf.cmd}" -mcpu={build.mcu} -mthumb {compiler.c.elf.flags} "-T{build.variant.path}/{build.ldscript}" "-Wl,-Map,{build.path}/{build.project_name}.map" {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -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,--start-group "{build.path}/core/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group -lm -gcc ## Create output (.bin file) -recipe.objcopy.bin.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/sketch/{build.project_name}.elf" "{build.path}/sketch/{build.project_name}.bin" +recipe.objcopy.bin.pattern="{compiler.path}{compiler.elf2hex.cmd}" {compiler.elf2hex.flags} {compiler.elf2hex.extra_flags} "{build.path}/{build.project_name}.elf" "{build.path}/{build.project_name}.bin" ## Save hex recipe.output.tmp_file={build.project_name}.bin recipe.output.save_file={build.project_name}.{build.variant}.bin ## Compute size -recipe.size.pattern="{compiler.path}{compiler.size.cmd}" -A "{build.path}/sketch/{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]+).* # SAM3 Uploader tools # ------------------- +# BOSSA tools.bossac.path={runtime.tools.bossac.path} tools.bossac.cmd=bossac tools.bossac.cmd.windows=bossac.exe tools.bossac.upload.params.verbose=-i -d tools.bossac.upload.params.quiet= -tools.bossac.upload.pattern="{path}/{cmd}" {upload.verbose} --port={serial.port.file} -U {upload.native_usb} -e -w -v -b "{build.path}/sketch/{build.project_name}.bin" -R +tools.bossac.upload.pattern="{path}/{cmd}" {upload.verbose} --port={serial.port.file} -U {upload.native_usb} -e -w -v -b "{build.path}/{build.project_name}.bin" -R diff --git a/hardware/arduino/sam/system/libsam/include/twi.h b/hardware/arduino/sam/system/libsam/include/twi.h index 0967089f7aa..76ecd9c8034 100644 --- a/hardware/arduino/sam/system/libsam/include/twi.h +++ b/hardware/arduino/sam/system/libsam/include/twi.h @@ -71,6 +71,8 @@ extern void TWI_SetClock( Twi *pTwi, uint32_t dwTwCk, uint32_t dwMCk ); extern void TWI_ConfigureSlave(Twi *pTwi, uint8_t slaveAddress); +extern void TWI_Disable(Twi *pTwi); + extern void TWI_Stop(Twi *pTwi); extern void TWI_StartRead( diff --git a/hardware/arduino/sam/system/libsam/source/twi.c b/hardware/arduino/sam/system/libsam/source/twi.c index 4366e17c187..a00e1b519ff 100644 --- a/hardware/arduino/sam/system/libsam/source/twi.c +++ b/hardware/arduino/sam/system/libsam/source/twi.c @@ -100,13 +100,8 @@ void TWI_ConfigureMaster( Twi* pTwi, uint32_t dwTwCk, uint32_t dwMCk ) /* SVEN: TWI Slave Mode Enabled */ pTwi->TWI_CR = TWI_CR_SVEN ; - /* Reset the TWI */ - pTwi->TWI_CR = TWI_CR_SWRST ; - pTwi->TWI_RHR ; - /* TWI Slave Mode Disabled, TWI Master Mode Disabled. */ - pTwi->TWI_CR = TWI_CR_SVDIS ; - pTwi->TWI_CR = TWI_CR_MSDIS ; + TWI_Disable(pTwi); /* Set master mode */ pTwi->TWI_CR = TWI_CR_MSEN ; @@ -156,15 +151,7 @@ void TWI_ConfigureSlave(Twi *pTwi, uint8_t slaveAddress) { uint32_t i; - /* TWI software reset */ - pTwi->TWI_CR = TWI_CR_SWRST; - pTwi->TWI_RHR; - - /* Wait at least 10 ms */ - for (i=0; i < 1000000; i++); - - /* TWI Slave Mode Disabled, TWI Master Mode Disabled*/ - pTwi->TWI_CR = TWI_CR_SVDIS | TWI_CR_MSDIS; + TWI_Disable(pTwi); /* Configure slave address. */ pTwi->TWI_SMR = 0; @@ -178,6 +165,27 @@ void TWI_ConfigureSlave(Twi *pTwi, uint8_t slaveAddress) assert( (pTwi->TWI_CR & TWI_CR_SVDIS)!= TWI_CR_SVDIS ) ; } +/** + * \brief Disables the TWI. + * \param pTwi Pointer to an Twi instance. + */ +void TWI_Disable(Twi *pTwi) +{ + assert( pTwi ) ; + + uint32_t i; + + /* TWI software reset */ + pTwi->TWI_CR = TWI_CR_SWRST; + pTwi->TWI_RHR; + + /* Wait at least 10 ms */ + for (i=0; i < 1000000; i++); + + /* TWI Slave Mode Disabled, TWI Master Mode Disabled*/ + pTwi->TWI_CR = TWI_CR_SVDIS | TWI_CR_MSDIS; +} + /** * \brief Sends a STOP condition on the TWI. * \param pTwi Pointer to an Twi instance. diff --git a/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a b/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a index 4ccce8bd692..62a27a8e43d 100644 Binary files a/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a and b/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a differ diff --git a/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a.txt b/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a.txt index 5e8ca23728b..9b614811bd3 100644 --- a/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a.txt +++ b/hardware/arduino/sam/variants/arduino_due_x/libsam_sam3x8e_gcc_rel.a.txt @@ -72,7 +72,6 @@ pmc.o: 00000000 T pmc_switch_udpck_to_upllck pwmc.o: -00000000 r C.9.8054 00000000 t FindClockConfiguration 00000000 T PWMC_ConfigureChannel 00000000 T PWMC_ConfigureChannelExt @@ -100,14 +99,14 @@ pwmc.o: 00000000 T PWMC_SetSyncChannelUpdateUnlock 00000000 T PWMC_WriteBuffer U __assert_func -00000000 r __func__.6635 -00000000 r __func__.6646 -00000000 r __func__.6661 -00000000 r __func__.6672 -00000000 r __func__.6683 -00000000 r __func__.6690 -00000000 r __func__.6774 -00000000 r __func__.6780 +00000000 r __func__.6793 +00000000 r __func__.6804 +00000000 r __func__.6819 +00000000 r __func__.6830 +00000000 r __func__.6841 +00000000 r __func__.6848 +00000000 r __func__.6932 +00000000 r __func__.6938 rtc.o: 00000000 T RTC_ClearSCCR @@ -123,9 +122,9 @@ rtc.o: 00000000 T RTC_SetTime 00000000 T RTC_SetTimeAlarm U __assert_func -00000000 r __func__.6632 -00000000 r __func__.6641 -00000000 r __func__.6646 +00000000 r __func__.6790 +00000000 r __func__.6799 +00000000 r __func__.6804 rtt.o: 00000000 T RTT_EnableIT @@ -134,8 +133,8 @@ rtt.o: 00000000 T RTT_SetAlarm 00000000 T RTT_SetPrescaler U __assert_func -00000000 r __func__.6639 -00000000 r __func__.6647 +00000000 r __func__.6797 +00000000 r __func__.6805 spi.o: 00000000 T SPI_Configure @@ -161,9 +160,9 @@ tc.o: 00000000 T TC_Start 00000000 T TC_Stop U __assert_func -00000000 r __func__.6634 -00000000 r __func__.6640 -00000000 r __func__.6646 +00000000 r __func__.6792 +00000000 r __func__.6798 +00000000 r __func__.6804 timetick.o: 00000000 T GetTickCount @@ -178,6 +177,7 @@ twi.o: 00000000 T TWI_ByteSent 00000000 T TWI_ConfigureMaster 00000000 T TWI_ConfigureSlave +00000000 T TWI_Disable 00000000 T TWI_DisableIt 00000000 T TWI_EnableIt 00000000 T TWI_GetMaskedStatus @@ -191,19 +191,20 @@ twi.o: 00000000 T TWI_TransferComplete 00000000 T TWI_WriteByte U __assert_func -00000000 r __func__.7004 -00000000 r __func__.7010 -00000000 r __func__.7028 -00000000 r __func__.7032 -00000000 r __func__.7039 -00000000 r __func__.7043 -00000000 r __func__.7048 -00000000 r __func__.7056 -00000000 r __func__.7070 -00000000 r __func__.7075 -00000000 r __func__.7079 -00000000 r __func__.7084 -00000000 r __func__.7088 +00000000 r __func__.7151 +00000000 r __func__.7157 +00000000 r __func__.7172 +00000000 r __func__.7176 +00000000 r __func__.7184 +00000000 r __func__.7191 +00000000 r __func__.7195 +00000000 r __func__.7200 +00000000 r __func__.7208 +00000000 r __func__.7222 +00000000 r __func__.7227 +00000000 r __func__.7231 +00000000 r __func__.7236 +00000000 r __func__.7240 usart.o: 00000000 T USART_Configure @@ -222,7 +223,7 @@ usart.o: 00000000 T USART_Write 00000000 T USART_WriteBuffer U __assert_func -00000000 r __func__.6928 +00000000 r __func__.7068 wdt.o: 00000000 T WDT_Disable @@ -300,7 +301,6 @@ startup_sam3xa.o: U main adc.o: -00000000 r C.0.8146 00000000 T adc_configure_power_save 00000000 T adc_configure_sequence 00000000 T adc_configure_timing @@ -485,12 +485,12 @@ efc.o: 00000000 T efc_get_wait_state 00000000 T efc_init 00000000 T efc_perform_command -00000070 T efc_perform_fcr +0000006c T efc_perform_fcr 00000000 T efc_perform_read_sequence 00000000 T efc_set_flash_access_mode 00000000 T efc_set_wait_state -0000006c T efc_write_fmr -00000000 b iap_perform_command.6909 +00000068 T efc_write_fmr +00000000 b iap_perform_command.7049 gpbr.o: 00000000 T gpbr_read @@ -568,7 +568,6 @@ emac.o: 00000000 T emac_phy_write 00000000 t emac_reset_rx_mem 00000000 t emac_reset_tx_mem -00000000 t emac_wait_phy.clone.1 00000000 b gs_rx_desc 00000000 b gs_tx_callback 00000000 b gs_tx_desc diff --git a/hardware/platform.keys.rewrite.txt b/hardware/platform.keys.rewrite.txt deleted file mode 100644 index bc6bb5e0832..00000000000 --- a/hardware/platform.keys.rewrite.txt +++ /dev/null @@ -1,20 +0,0 @@ -old.0.compiler.path={runtime.ide.path}/hardware/tools/avr/bin/ -new.0.compiler.path={runtime.tools.avr-gcc.path}/bin/ - -added.tools.avrdude.path={runtime.tools.avrdude.path} - -old.1.tools.avrdude.cmd.path={runtime.ide.path}/hardware/tools/avr/bin/avrdude -new.1.tools.avrdude.cmd.path={path}/bin/avrdude - -old.2.tools.avrdude.config.path={runtime.ide.path}/hardware/tools/avr/etc/avrdude.conf -new.2.tools.avrdude.config.path={path}/etc/avrdude.conf - -old.3.compiler.path={runtime.ide.path}/hardware/tools/gcc-arm-none-eabi-4.8.3-2014q1/bin/ -new.3.compiler.path={runtime.tools.arm-none-eabi-gcc.path}/bin/ - -old.4.tools.bossac.path={runtime.ide.path}/hardware/tools -new.4.tools.bossac.path={runtime.tools.bossac.path} - -old.5.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" {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -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 -lm -gcc -new.5.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" {compiler.c.elf.extra_flags} -o "{build.path}/{build.project_name}.elf" "-L{build.path}" -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}/core/syscalls_sam3.c.o" {object_files} "{build.variant.path}/{build.variant_system_lib}" "{build.path}/{archive_file}" -Wl,--end-group -lm -gcc - diff --git a/libraries/Bridge/README.adoc b/libraries/Bridge/README.adoc deleted file mode 100644 index c660f86eec2..00000000000 --- a/libraries/Bridge/README.adoc +++ /dev/null @@ -1,24 +0,0 @@ -= Bridge Library for Arduino = - -The Bridge library simplifies communication between the ATmega32U4 and the AR9331. - -For more information about this library please visit us at -http://www.arduino.cc/en/Reference/YunBridgeLibrary - -== License == - -Copyright (c) 2014 Arduino LLC. All right reserved. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Bridge/examples/Bridge/Bridge.ino b/libraries/Bridge/examples/Bridge/Bridge.ino deleted file mode 100644 index c6c7be3af23..00000000000 --- a/libraries/Bridge/examples/Bridge/Bridge.ino +++ /dev/null @@ -1,185 +0,0 @@ -/* - Arduino Yún Bridge example - - This example for the Arduino Yún shows how to use the - Bridge library to access the digital and analog pins - on the board through REST calls. It demonstrates how - you can create your own API when using REST style - calls through the browser. - - Possible commands created in this shetch: - - "/arduino/digital/13" -> digitalRead(13) - "/arduino/digital/13/1" -> digitalWrite(13, HIGH) - "/arduino/analog/2/123" -> analogWrite(2, 123) - "/arduino/analog/2" -> analogRead(2) - "/arduino/mode/13/input" -> pinMode(13, INPUT) - "/arduino/mode/13/output" -> pinMode(13, OUTPUT) - - This example code is part of the public domain - - http://www.arduino.cc/en/Tutorial/Bridge - -*/ - -#include -#include -#include - -// Listen to the default port 5555, the Yún webserver -// will forward there all the HTTP requests you send -BridgeServer server; - -void setup() { - // Bridge startup - pinMode(13, OUTPUT); - digitalWrite(13, LOW); - Bridge.begin(); - digitalWrite(13, HIGH); - - // Listen for incoming connection only from localhost - // (no one from the external network could connect) - server.listenOnLocalhost(); - server.begin(); -} - -void loop() { - // Get clients coming from server - BridgeClient client = server.accept(); - - // There is a new client? - if (client) { - // Process request - process(client); - - // Close connection and free resources. - client.stop(); - } - - delay(50); // Poll every 50ms -} - -void process(BridgeClient client) { - // read the command - String command = client.readStringUntil('/'); - - // is "digital" command? - if (command == "digital") { - digitalCommand(client); - } - - // is "analog" command? - if (command == "analog") { - analogCommand(client); - } - - // is "mode" command? - if (command == "mode") { - modeCommand(client); - } -} - -void digitalCommand(BridgeClient client) { - int pin, value; - - // Read pin number - pin = client.parseInt(); - - // If the next character is a '/' it means we have an URL - // with a value like: "/digital/13/1" - if (client.read() == '/') { - value = client.parseInt(); - digitalWrite(pin, value); - } else { - value = digitalRead(pin); - } - - // Send feedback to client - client.print(F("Pin D")); - client.print(pin); - client.print(F(" set to ")); - client.println(value); - - // Update datastore key with the current pin value - String key = "D"; - key += pin; - Bridge.put(key, String(value)); -} - -void analogCommand(BridgeClient client) { - int pin, value; - - // Read pin number - pin = client.parseInt(); - - // If the next character is a '/' it means we have an URL - // with a value like: "/analog/5/120" - if (client.read() == '/') { - // Read value and execute command - value = client.parseInt(); - analogWrite(pin, value); - - // Send feedback to client - client.print(F("Pin D")); - client.print(pin); - client.print(F(" set to analog ")); - client.println(value); - - // Update datastore key with the current pin value - String key = "D"; - key += pin; - Bridge.put(key, String(value)); - } else { - // Read analog pin - value = analogRead(pin); - - // Send feedback to client - client.print(F("Pin A")); - client.print(pin); - client.print(F(" reads analog ")); - client.println(value); - - // Update datastore key with the current pin value - String key = "A"; - key += pin; - Bridge.put(key, String(value)); - } -} - -void modeCommand(BridgeClient client) { - int pin; - - // Read pin number - pin = client.parseInt(); - - // If the next character is not a '/' we have a malformed URL - if (client.read() != '/') { - client.println(F("error")); - return; - } - - String mode = client.readStringUntil('\r'); - - if (mode == "input") { - pinMode(pin, INPUT); - // Send feedback to client - client.print(F("Pin D")); - client.print(pin); - client.print(F(" configured as INPUT!")); - return; - } - - if (mode == "output") { - pinMode(pin, OUTPUT); - // Send feedback to client - client.print(F("Pin D")); - client.print(pin); - client.print(F(" configured as OUTPUT!")); - return; - } - - client.print(F("error: invalid mode ")); - client.print(mode); -} - - diff --git a/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino b/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino deleted file mode 100644 index 79d5aff7e04..00000000000 --- a/libraries/Bridge/examples/ConsoleAsciiTable/ConsoleAsciiTable.ino +++ /dev/null @@ -1,95 +0,0 @@ -/* - ASCII table - - Prints out byte values in all possible formats: - * as raw binary values - * as ASCII-encoded decimal, hex, octal, and binary values - - For more on ASCII, see http://www.asciitable.com and http://en.wikipedia.org/wiki/ASCII - - The circuit: No external hardware needed. - - created 2006 - by Nicholas Zambetti - http://www.zambetti.com - modified 9 Apr 2012 - by Tom Igoe - modified 22 May 2013 - by Cristian Maglie - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/ConsoleAsciiTable - - */ - -#include - -void setup() { - //Initialize Console and wait for port to open: - Bridge.begin(); - Console.begin(); - - // Uncomment the following line to enable buffering: - // - better transmission speed and efficiency - // - needs to call Console.flush() to ensure that all - // transmitted data is sent - - //Console.buffer(64); - - while (!Console) { - ; // wait for Console port to connect. - } - - // prints title with ending line break - Console.println("ASCII Table ~ Character Map"); -} - -// first visible ASCIIcharacter '!' is number 33: -int thisByte = 33; -// you can also write ASCII characters in single quotes. -// for example. '!' is the same as 33, so you could also use this: -//int thisByte = '!'; - -void loop() { - // prints value unaltered, i.e. the raw binary version of the - // byte. The Console monitor interprets all bytes as - // ASCII, so 33, the first number, will show up as '!' - Console.write(thisByte); - - Console.print(", dec: "); - // prints value as string as an ASCII-encoded decimal (base 10). - // Decimal is the default format for Console.print() and Console.println(), - // so no modifier is needed: - Console.print(thisByte); - // But you can declare the modifier for decimal if you want to. - //this also works if you uncomment it: - - // Console.print(thisByte, DEC); - - Console.print(", hex: "); - // prints value as string in hexadecimal (base 16): - Console.print(thisByte, HEX); - - Console.print(", oct: "); - // prints value as string in octal (base 8); - Console.print(thisByte, OCT); - - Console.print(", bin: "); - // prints value as string in binary (base 2) - // also prints ending line break: - Console.println(thisByte, BIN); - - // if printed last visible character '~' or 126, stop: - if (thisByte == 126) { // you could also use if (thisByte == '~') { - // ensure the latest bit of data is sent - Console.flush(); - - // This loop loops forever and does nothing - while (true) { - continue; - } - } - // go on to the next character - thisByte++; -} diff --git a/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino b/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino deleted file mode 100644 index ee78f4c6167..00000000000 --- a/libraries/Bridge/examples/ConsolePixel/ConsolePixel.ino +++ /dev/null @@ -1,64 +0,0 @@ -/* - Console Pixel - - An example of using the Arduino board to receive data from the - Console on the Arduino Yún. In this case, the Arduino boards turns on an LED when - it receives the character 'H', and turns off the LED when it - receives the character 'L'. - - To see the Console, pick your Yún's name and IP address in the Port menu - then open the Port Monitor. You can also see it by opening a terminal window - and typing - ssh root@ yourYunsName.local 'telnet localhost 6571' - then pressing enter. When prompted for the password, enter it. - - - The circuit: - * LED connected from digital pin 13 to ground - - created 2006 - by David A. Mellis - modified 25 Jun 2013 - by Tom Igoe - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/ConsolePixel - - */ - -#include - -const int ledPin = 13; // the pin that the LED is attached to -char incomingByte; // a variable to read incoming Console data into - -void setup() { - Bridge.begin(); // Initialize Bridge - Console.begin(); // Initialize Console - - // Wait for the Console port to connect - while (!Console); - - Console.println("type H or L to turn pin 13 on or off"); - - // initialize the LED pin as an output: - pinMode(ledPin, OUTPUT); -} - -void loop() { - // see if there's incoming Console data: - if (Console.available() > 0) { - // read the oldest byte in the Console buffer: - incomingByte = Console.read(); - Console.println(incomingByte); - // if it's a capital H (ASCII 72), turn on the LED: - if (incomingByte == 'H') { - digitalWrite(ledPin, HIGH); - } - // if it's an L (ASCII 76) turn off the LED: - if (incomingByte == 'L') { - digitalWrite(ledPin, LOW); - } - } -} - diff --git a/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino b/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino deleted file mode 100644 index 8fc37fbe610..00000000000 --- a/libraries/Bridge/examples/ConsoleRead/ConsoleRead.ino +++ /dev/null @@ -1,60 +0,0 @@ -/* - Console Read example - - Read data coming from bridge using the Console.read() function - and store it in a string. - - To see the Console, pick your Yún's name and IP address in the Port menu - then open the Port Monitor. You can also see it by opening a terminal window - and typing: - ssh root@ yourYunsName.local 'telnet localhost 6571' - then pressing enter. When prompted for the password, enter it. - - created 13 Jun 2013 - by Angelo Scialabba - modified 16 June 2013 - by Tom Igoe - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/ConsoleRead - - */ - -#include - -String name; - -void setup() { - // Initialize Console and wait for port to open: - Bridge.begin(); - Console.begin(); - - // Wait for Console port to connect - while (!Console); - - Console.println("Hi, what's your name?"); -} - -void loop() { - if (Console.available() > 0) { - char c = Console.read(); // read the next char received - // look for the newline character, this is the last character in the string - if (c == '\n') { - //print text with the name received - Console.print("Hi "); - Console.print(name); - Console.println("! Nice to meet you!"); - Console.println(); - // Ask again for name and clear the old name - Console.println("Hi, what's your name?"); - name = ""; // clear the name string - } else { // if the buffer is empty Cosole.read() returns -1 - name += c; // append the read char from Console to the name string - } - } else { - delay(100); - } -} - - diff --git a/libraries/Bridge/examples/Datalogger/Datalogger.ino b/libraries/Bridge/examples/Datalogger/Datalogger.ino deleted file mode 100644 index c701348194c..00000000000 --- a/libraries/Bridge/examples/Datalogger/Datalogger.ino +++ /dev/null @@ -1,102 +0,0 @@ -/* - SD card datalogger - - This example shows how to log data from three analog sensors - to an SD card mounted on the Arduino Yún using the Bridge library. - - The circuit: - * analog sensors on analog pins 0, 1 and 2 - * SD card attached to SD card slot of the Arduino Yún - - Prepare your SD card creating an empty folder in the SD root - named "arduino". This will ensure that the Yún will create a link - to the SD to the "/mnt/sd" path. - - You can remove the SD card while the Linux and the - sketch are running but be careful not to remove it while - the system is writing to it. - - created 24 Nov 2010 - modified 9 Apr 2012 - by Tom Igoe - adapted to the Yún Bridge library 20 Jun 2013 - by Federico Vanzati - modified 21 Jun 2013 - by Tom Igoe - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/YunDatalogger - - */ - -#include - -void setup() { - // Initialize the Bridge and the Serial - Bridge.begin(); - Serial.begin(9600); - FileSystem.begin(); - - while (!Serial); // wait for Serial port to connect. - Serial.println("Filesystem datalogger\n"); -} - - -void loop() { - // make a string that start with a timestamp for assembling the data to log: - String dataString; - dataString += getTimeStamp(); - dataString += " = "; - - // read three sensors and append to the string: - for (int analogPin = 0; analogPin < 3; analogPin++) { - int sensor = analogRead(analogPin); - dataString += String(sensor); - if (analogPin < 2) { - dataString += ","; // separate the values with a comma - } - } - - // open the file. note that only one file can be open at a time, - // so you have to close this one before opening another. - // The FileSystem card is mounted at the following "/mnt/FileSystema1" - File dataFile = FileSystem.open("/mnt/sd/datalog.txt", FILE_APPEND); - - // if the file is available, write to it: - if (dataFile) { - dataFile.println(dataString); - dataFile.close(); - // print to the serial port too: - Serial.println(dataString); - } - // if the file isn't open, pop up an error: - else { - Serial.println("error opening datalog.txt"); - } - - delay(15000); - -} - -// This function return a string with the time stamp -String getTimeStamp() { - String result; - Process time; - // date is a command line utility to get the date and the time - // in different formats depending on the additional parameter - time.begin("date"); - time.addParameter("+%D-%T"); // parameters: D for the complete date mm/dd/yy - // T for the time hh:mm:ss - time.run(); // run the command - - // read the output of the command - while (time.available() > 0) { - char c = time.read(); - if (c != '\n') { - result += c; - } - } - - return result; -} diff --git a/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino b/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino deleted file mode 100644 index 0ca7d2cfb10..00000000000 --- a/libraries/Bridge/examples/FileWriteScript/FileWriteScript.ino +++ /dev/null @@ -1,84 +0,0 @@ -/* - Write to file using FileIO classes. - - This sketch demonstrate how to write file into the Yún filesystem. - A shell script file is created in /tmp, and it is executed afterwards. - - created 7 June 2010 - by Cristian Maglie - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/FileWriteScript - - */ - -#include - -void setup() { - // Setup Bridge (needed every time we communicate with the Arduino Yún) - Bridge.begin(); - // Initialize the Serial - Serial.begin(9600); - - while (!Serial); // wait for Serial port to connect. - Serial.println("File Write Script example\n\n"); - - // Setup File IO - FileSystem.begin(); - - // Upload script used to gain network statistics - uploadScript(); -} - -void loop() { - // Run stats script every 5 secs. - runScript(); - delay(5000); -} - -// this function creates a file into the linux processor that contains a shell script -// to check the network traffic of the WiFi interface -void uploadScript() { - // Write our shell script in /tmp - // Using /tmp stores the script in RAM this way we can preserve - // the limited amount of FLASH erase/write cycles - File script = FileSystem.open("/tmp/wlan-stats.sh", FILE_WRITE); - // Shell script header - script.print("#!/bin/sh\n"); - // shell commands: - // ifconfig: is a command line utility for controlling the network interfaces. - // wlan0 is the interface we want to query - // grep: search inside the output of the ifconfig command the "RX bytes" keyword - // and extract the line that contains it - script.print("ifconfig wlan0 | grep 'RX bytes'\n"); - script.close(); // close the file - - // Make the script executable - Process chmod; - chmod.begin("chmod"); // chmod: change mode - chmod.addParameter("+x"); // x stays for executable - chmod.addParameter("/tmp/wlan-stats.sh"); // path to the file to make it executable - chmod.run(); -} - - -// this function run the script and read the output data -void runScript() { - // Run the script and show results on the Serial - Process myscript; - myscript.begin("/tmp/wlan-stats.sh"); - myscript.run(); - - String output = ""; - - // read the output of the script - while (myscript.available()) { - output += (char)myscript.read(); - } - // remove the blank spaces at the beginning and the ending of the string - output.trim(); - Serial.println(output); - Serial.flush(); -} - diff --git a/libraries/Bridge/examples/HttpClient/HttpClient.ino b/libraries/Bridge/examples/HttpClient/HttpClient.ino deleted file mode 100644 index 1107b4d057c..00000000000 --- a/libraries/Bridge/examples/HttpClient/HttpClient.ino +++ /dev/null @@ -1,53 +0,0 @@ -/* - Yún HTTP Client - - This example for the Arduino Yún shows how create a basic - HTTP client that connects to the internet and downloads - content. In this case, you'll connect to the Arduino - website and download a version of the logo as ASCII text. - - created by Tom igoe - May 2013 - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/HttpClient - - */ - -#include -#include - -void setup() { - // Bridge takes about two seconds to start up - // it can be helpful to use the on-board LED - // as an indicator for when it has initialized - pinMode(13, OUTPUT); - digitalWrite(13, LOW); - Bridge.begin(); - digitalWrite(13, HIGH); - - Serial.begin(9600); - - while (!Serial); // wait for a serial connection -} - -void loop() { - // Initialize the client library - HttpClient client; - - // Make a HTTP request: - client.get("http://www.arduino.cc/asciilogo.txt"); - - // if there are incoming bytes available - // from the server, read them and print them: - while (client.available()) { - char c = client.read(); - Serial.print(c); - } - Serial.flush(); - - delay(5000); -} - - diff --git a/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino b/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino deleted file mode 100644 index dc128ca7b19..00000000000 --- a/libraries/Bridge/examples/MailboxReadMessage/MailboxReadMessage.ino +++ /dev/null @@ -1,58 +0,0 @@ -/* - Read Messages from the Mailbox - - This example for the Arduino Yún shows how to - read the messages queue, called Mailbox, using the - Bridge library. - The messages can be sent to the queue through REST calls. - Appen the message in the URL after the keyword "/mailbox". - Example - - "/mailbox/hello" - - created 3 Feb 2014 - by Federico Vanzati & Federico Fissore - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/MailboxReadMessage - - */ - -#include - -void setup() { - pinMode(13, OUTPUT); - digitalWrite(13, LOW); - // Initialize Bridge and Mailbox - Bridge.begin(); - Mailbox.begin(); - digitalWrite(13, HIGH); - - // Initialize Serial - Serial.begin(9600); - - // Wait until a Serial Monitor is connected. - while (!Serial); - - Serial.println("Mailbox Read Message\n"); - Serial.println("The Mailbox is checked every 10 seconds. The incoming messages will be shown below.\n"); -} - -void loop() { - String message; - - // if there is a message in the Mailbox - if (Mailbox.messageAvailable()) { - // read all the messages present in the queue - while (Mailbox.messageAvailable()) { - Mailbox.readMessage(message); - Serial.println(message); - } - - Serial.println("Waiting 10 seconds before checking the Mailbox again"); - } - - // wait 10 seconds - delay(10000); -} diff --git a/libraries/Bridge/examples/Process/Process.ino b/libraries/Bridge/examples/Process/Process.ino deleted file mode 100644 index 4f540120c73..00000000000 --- a/libraries/Bridge/examples/Process/Process.ino +++ /dev/null @@ -1,72 +0,0 @@ -/* - Running process using Process class. - - This sketch demonstrate how to run linux processes - using an Arduino Yún. - - created 5 Jun 2013 - by Cristian Maglie - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/Process - - */ - -#include - -void setup() { - // Initialize Bridge - Bridge.begin(); - - // Initialize Serial - Serial.begin(9600); - - // Wait until a Serial Monitor is connected. - while (!Serial); - - // run various example processes - runCurl(); - runCpuInfo(); -} - -void loop() { - // Do nothing here. -} - -void runCurl() { - // Launch "curl" command and get Arduino ascii art logo from the network - // curl is command line program for transferring data using different internet protocols - Process p; // Create a process and call it "p" - p.begin("curl"); // Process that launch the "curl" command - p.addParameter("http://www.arduino.cc/asciilogo.txt"); // Add the URL parameter to "curl" - p.run(); // Run the process and wait for its termination - - // Print arduino logo over the Serial - // A process output can be read with the stream methods - while (p.available() > 0) { - char c = p.read(); - Serial.print(c); - } - // Ensure the last bit of data is sent. - Serial.flush(); -} - -void runCpuInfo() { - // Launch "cat /proc/cpuinfo" command (shows info on Atheros CPU) - // cat is a command line utility that shows the content of a file - Process p; // Create a process and call it "p" - p.begin("cat"); // Process that launch the "cat" command - p.addParameter("/proc/cpuinfo"); // Add the cpuifo file path as parameter to cut - p.run(); // Run the process and wait for its termination - - // Print command output on the Serial. - // A process output can be read with the stream methods - while (p.available() > 0) { - char c = p.read(); - Serial.print(c); - } - // Ensure the last bit of data is sent. - Serial.flush(); -} - diff --git a/libraries/Bridge/examples/ShellCommands/ShellCommands.ino b/libraries/Bridge/examples/ShellCommands/ShellCommands.ino deleted file mode 100644 index 3e5ef9deeea..00000000000 --- a/libraries/Bridge/examples/ShellCommands/ShellCommands.ino +++ /dev/null @@ -1,55 +0,0 @@ -/* - Running shell commands using Process class. - - This sketch demonstrate how to run linux shell commands - using an Arduino Yún. It runs the wifiCheck script on the Linux side - of the Yún, then uses grep to get just the signal strength line. - Then it uses parseInt() to read the wifi signal strength as an integer, - and finally uses that number to fade an LED using analogWrite(). - - The circuit: - * Arduino Yún with LED connected to pin 9 - - created 12 Jun 2013 - by Cristian Maglie - modified 25 June 2013 - by Tom Igoe - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/ShellCommands - - */ - -#include - -void setup() { - Bridge.begin(); // Initialize the Bridge - Serial.begin(9600); // Initialize the Serial - - // Wait until a Serial Monitor is connected. - while (!Serial); -} - -void loop() { - Process p; - // This command line runs the WifiStatus script, (/usr/bin/pretty-wifi-info.lua), then - // sends the result to the grep command to look for a line containing the word - // "Signal:" the result is passed to this sketch: - p.runShellCommand("/usr/bin/pretty-wifi-info.lua | grep Signal"); - - // do nothing until the process finishes, so you get the whole output: - while (p.running()); - - // Read command output. runShellCommand() should have passed "Signal: xx&": - while (p.available()) { - int result = p.parseInt(); // look for an integer - int signal = map(result, 0, 100, 0, 255); // map result from 0-100 range to 0-255 - analogWrite(9, signal); // set the brightness of LED on pin 9 - Serial.println(result); // print the number as well - } - delay(5000); // wait 5 seconds before you do it again -} - - - diff --git a/libraries/Bridge/examples/SpacebrewYun/inputOutput/inputOutput.ino b/libraries/Bridge/examples/SpacebrewYun/inputOutput/inputOutput.ino deleted file mode 100644 index 617e4e86772..00000000000 --- a/libraries/Bridge/examples/SpacebrewYun/inputOutput/inputOutput.ino +++ /dev/null @@ -1,134 +0,0 @@ -/* - Input Output - - Demonstrates how to create a sketch that sends and receives all standard - spacebrew data types, and a custom data type. Every time data is - received it is output to the Serial monitor. - - Make sure that your Yún is connected to the internet for this example - to function properly. - - The circuit: - - No circuit required - - created 2013 - by Julio Terra - - This example code is in the public domain. - - More information about Spacebrew is available at: - http://spacebrew.cc/ - - */ - -#include -#include - -// create a variable of type SpacebrewYun and initialize it with the constructor -SpacebrewYun sb = SpacebrewYun("aYun", "Arduino Yun spacebrew test"); - -// create variables to manage interval between each time we send a string -long last = 0; -int interval = 2000; - -int counter = 0; - -void setup() { - - // start the serial port - Serial.begin(57600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial) { - ; - } - - // start-up the bridge - Bridge.begin(); - - // configure the spacebrew object to print status messages to serial - sb.verbose(true); - - // configure the spacebrew publisher and subscriber - sb.addPublish("string test", "string"); - sb.addPublish("range test", "range"); - sb.addPublish("boolean test", "boolean"); - sb.addPublish("custom test", "crazy"); - sb.addSubscribe("string test", "string"); - sb.addSubscribe("range test", "range"); - sb.addSubscribe("boolean test", "boolean"); - sb.addSubscribe("custom test", "crazy"); - - // register the string message handler method - sb.onRangeMessage(handleRange); - sb.onStringMessage(handleString); - sb.onBooleanMessage(handleBoolean); - sb.onCustomMessage(handleCustom); - - // connect to cloud spacebrew server at "sandbox.spacebrew.cc" - sb.connect("sandbox.spacebrew.cc"); - // we give some time to arduino to connect to sandbox, otherwise the first sb.monitor(); call will give an error - delay(1000); -} - - -void loop() { - // monitor spacebrew connection for new data - sb.monitor(); - - // connected to spacebrew then send a string every 2 seconds - if (sb.connected()) { - - // check if it is time to send a new message - if ((millis() - last) > interval) { - String test_str_msg = "testing, testing, "; - test_str_msg += counter; - counter ++; - - sb.send("string test", test_str_msg); - sb.send("range test", 500); - sb.send("boolean test", true); - sb.send("custom test", "youre loco"); - - last = millis(); - - } - } - delay(1000); -} - -// define handler methods, all standard data type handlers take two appropriate arguments - -void handleRange(String route, int value) { - Serial.print("Range msg "); - Serial.print(route); - Serial.print(", value "); - Serial.println(value); -} - -void handleString(String route, String value) { - Serial.print("String msg "); - Serial.print(route); - Serial.print(", value "); - Serial.println(value); -} - -void handleBoolean(String route, boolean value) { - Serial.print("Boolen msg "); - Serial.print(route); - Serial.print(", value "); - Serial.println(value ? "true" : "false"); -} - -// custom data type handlers takes three String arguments - -void handleCustom(String route, String value, String type) { - Serial.print("Custom msg "); - Serial.print(route); - Serial.print(" of type "); - Serial.print(type); - Serial.print(", value "); - Serial.println(value); -} - diff --git a/libraries/Bridge/examples/SpacebrewYun/spacebrewBoolean/spacebrewBoolean.ino b/libraries/Bridge/examples/SpacebrewYun/spacebrewBoolean/spacebrewBoolean.ino deleted file mode 100644 index 97d188b08fb..00000000000 --- a/libraries/Bridge/examples/SpacebrewYun/spacebrewBoolean/spacebrewBoolean.ino +++ /dev/null @@ -1,94 +0,0 @@ -/* - Spacebrew Boolean - - Demonstrates how to create a sketch that sends and receives a - boolean value to and from Spacebrew. Every time the buttton is - pressed (or other digital input component) a spacebrew message - is sent. The sketch also accepts analog range messages from - other Spacebrew apps. - - Make sure that your Yún is connected to the internet for this example - to function properly. - - The circuit: - - Button connected to Yún, using the Arduino's internal pullup resistor. - - created 2013 - by Julio Terra - - This example code is in the public domain. - - More information about Spacebrew is available at: - http://spacebrew.cc/ - - */ - -#include -#include - -// create a variable of type SpacebrewYun and initialize it with the constructor -SpacebrewYun sb = SpacebrewYun("spacebrewYun Boolean", "Boolean sender and receiver"); - -// variable that holds the last potentiometer value -int last_value = 0; - -// create variables to manage interval between each time we send a string -void setup() { - - // start the serial port - Serial.begin(57600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial) { - ; - } - - // start-up the bridge - Bridge.begin(); - - // configure the spacebrew object to print status messages to serial - sb.verbose(true); - - // configure the spacebrew publisher and subscriber - sb.addPublish("physical button", "boolean"); - sb.addSubscribe("virtual button", "boolean"); - - // register the string message handler method - sb.onBooleanMessage(handleBoolean); - - // connect to cloud spacebrew server at "sandbox.spacebrew.cc" - sb.connect("sandbox.spacebrew.cc"); - - pinMode(3, INPUT); - digitalWrite(3, HIGH); -} - - -void loop() { - // monitor spacebrew connection for new data - sb.monitor(); - - // connected to spacebrew then send a new value whenever the pot value changes - if (sb.connected()) { - int cur_value = digitalRead(3); - if (last_value != cur_value) { - if (cur_value == HIGH) { - sb.send("physical button", false); - } else { - sb.send("physical button", true); - } - last_value = cur_value; - } - } -} - -// handler method that is called whenever a new string message is received -void handleBoolean(String route, boolean value) { - // print the message that was received - Serial.print("From "); - Serial.print(route); - Serial.print(", received msg: "); - Serial.println(value ? "true" : "false"); -} - diff --git a/libraries/Bridge/examples/SpacebrewYun/spacebrewRange/spacebrewRange.ino b/libraries/Bridge/examples/SpacebrewYun/spacebrewRange/spacebrewRange.ino deleted file mode 100644 index c1c752a69f4..00000000000 --- a/libraries/Bridge/examples/SpacebrewYun/spacebrewRange/spacebrewRange.ino +++ /dev/null @@ -1,88 +0,0 @@ -/* - Spacebrew Range - - Demonstrates how to create a sketch that sends and receives analog - range value to and from Spacebrew. Every time the state of the - potentiometer (or other analog input component) change a spacebrew - message is sent. The sketch also accepts analog range messages from - other Spacebrew apps. - - Make sure that your Yún is connected to the internet for this example - to function properly. - - The circuit: - - Potentiometer connected to Yún. Middle pin connected to analog pin A0, - other pins connected to 5v and GND pins. - - created 2013 - by Julio Terra - - This example code is in the public domain. - - More information about Spacebrew is available at: - http://spacebrew.cc/ - - */ - -#include -#include - -// create a variable of type SpacebrewYun and initialize it with the constructor -SpacebrewYun sb = SpacebrewYun("spacebrewYun Range", "Range sender and receiver"); - -// variable that holds the last potentiometer value -int last_value = 0; - -// create variables to manage interval between each time we send a string -void setup() { - - // start the serial port - Serial.begin(57600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial) { - ; - } - - // start-up the bridge - Bridge.begin(); - - // configure the spacebrew object to print status messages to serial - sb.verbose(true); - - // configure the spacebrew publisher and subscriber - sb.addPublish("physical pot", "range"); - sb.addSubscribe("virtual pot", "range"); - - // register the string message handler method - sb.onRangeMessage(handleRange); - - // connect to cloud spacebrew server at "sandbox.spacebrew.cc" - sb.connect("sandbox.spacebrew.cc"); -} - - -void loop() { - // monitor spacebrew connection for new data - sb.monitor(); - - // connected to spacebrew then send a new value whenever the pot value changes - if (sb.connected()) { - int cur_value = analogRead(A0); - if (last_value != cur_value) { - sb.send("physical pot", cur_value); - last_value = cur_value; - } - } -} - -// handler method that is called whenever a new string message is received -void handleRange(String route, int value) { - // print the message that was received - Serial.print("From "); - Serial.print(route); - Serial.print(", received msg: "); - Serial.println(value); -} - diff --git a/libraries/Bridge/examples/SpacebrewYun/spacebrewString/spacebrewString.ino b/libraries/Bridge/examples/SpacebrewYun/spacebrewString/spacebrewString.ino deleted file mode 100644 index 40cdc55d827..00000000000 --- a/libraries/Bridge/examples/SpacebrewYun/spacebrewString/spacebrewString.ino +++ /dev/null @@ -1,86 +0,0 @@ -/* - Spacebrew String - - Demonstrates how to create a sketch that sends and receives strings - to and from Spacebrew. Every time string data is received it - is output to the Serial monitor. - - Make sure that your Yún is connected to the internet for this example - to function properly. - - The circuit: - - No circuit required - - created 2013 - by Julio Terra - - This example code is in the public domain. - - More information about Spacebrew is available at: - http://spacebrew.cc/ - - */ - -#include -#include - -// create a variable of type SpacebrewYun and initialize it with the constructor -SpacebrewYun sb = SpacebrewYun("spacebrewYun Strings", "String sender and receiver"); - -// create variables to manage interval between each time we send a string -long last_time = 0; -int interval = 2000; - -void setup() { - - // start the serial port - Serial.begin(57600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial) { - ; - } - - // start-up the bridge - Bridge.begin(); - - // configure the spacebrew object to print status messages to serial - sb.verbose(true); - - // configure the spacebrew publisher and subscriber - sb.addPublish("speak", "string"); - sb.addSubscribe("listen", "string"); - - // register the string message handler method - sb.onStringMessage(handleString); - - // connect to cloud spacebrew server at "sandbox.spacebrew.cc" - sb.connect("sandbox.spacebrew.cc"); -} - - -void loop() { - // monitor spacebrew connection for new data - sb.monitor(); - - // connected to spacebrew then send a string every 2 seconds - if (sb.connected()) { - - // check if it is time to send a new message - if ((millis() - last_time) > interval) { - sb.send("speak", "is anybody out there?"); - last_time = millis(); - } - } -} - -// handler method that is called whenever a new string message is received -void handleString(String route, String value) { - // print the message that was received - Serial.print("From "); - Serial.print(route); - Serial.print(", received msg: "); - Serial.println(value); -} - diff --git a/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino b/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino deleted file mode 100644 index 8eb36dfb263..00000000000 --- a/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/GetYahooWeatherReport.ino +++ /dev/null @@ -1,114 +0,0 @@ -/* - GetYahooWeatherReport - - Demonstrates making a request to the Yahoo! Weather API using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - This example assumes basic familiarity with Arduino sketches, and that your Yún is connected - to the Internet. - - Looking for another API to use with your Arduino Yún? We've got over 100 in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - - -// the address for which a weather forecast will be retrieved -String ADDRESS_FOR_FORECAST = "104 Franklin St., New York NY 10013"; - -int numRuns = 1; // execution count, so that this doesn't run forever -int maxRuns = 10; // max number of times the Yahoo WeatherByAddress Choreo should be run - - -void setup() { - Serial.begin(9600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial); - Bridge.begin(); - -} - -void loop() { - // while we haven't reached the max number of runs... - if (numRuns <= maxRuns) { - - // print status - Serial.println("Running GetWeatherByAddress - Run #" + String(numRuns++) + "..."); - - // create a TembooChoreo object to send a Choreo request to Temboo - TembooChoreo GetWeatherByAddressChoreo; - - // invoke the Temboo client - GetWeatherByAddressChoreo.begin(); - - // add your temboo account info - GetWeatherByAddressChoreo.setAccountName(TEMBOO_ACCOUNT); - GetWeatherByAddressChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - GetWeatherByAddressChoreo.setAppKey(TEMBOO_APP_KEY); - - // set the name of the choreo we want to run - GetWeatherByAddressChoreo.setChoreo("/Library/Yahoo/Weather/GetWeatherByAddress"); - - // set choreo inputs; in this case, the address for which to retrieve weather data - // the Temboo client provides standardized calls to 100+ cloud APIs - GetWeatherByAddressChoreo.addInput("Address", ADDRESS_FOR_FORECAST); - - // add an output filter to extract the name of the city. - GetWeatherByAddressChoreo.addOutputFilter("city", "/rss/channel/yweather:location/@city", "Response"); - - // add an output filter to extract the current temperature - GetWeatherByAddressChoreo.addOutputFilter("temperature", "/rss/channel/item/yweather:condition/@temp", "Response"); - - // add an output filter to extract the date and time of the last report. - GetWeatherByAddressChoreo.addOutputFilter("date", "/rss/channel/item/yweather:condition/@date", "Response"); - - // run the choreo - GetWeatherByAddressChoreo.run(); - - // when the choreo results are available, print them to the serial monitor - while (GetWeatherByAddressChoreo.available()) { - - char c = GetWeatherByAddressChoreo.read(); - Serial.print(c); - } - GetWeatherByAddressChoreo.close(); - - } - - Serial.println("Waiting..."); - Serial.println(""); - delay(30000); // wait 30 seconds between GetWeatherByAddress calls -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/TembooAccount.h b/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/TembooAccount.h deleted file mode 100644 index c58b4479d61..00000000000 --- a/libraries/Bridge/examples/Temboo/GetYahooWeatherReport/TembooAccount.h +++ /dev/null @@ -1,4 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - diff --git a/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino b/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino deleted file mode 100644 index 59991238e1f..00000000000 --- a/libraries/Bridge/examples/Temboo/ReadATweet/ReadATweet.ino +++ /dev/null @@ -1,172 +0,0 @@ -/* - ReadATweet - - Demonstrates retrieving the most recent Tweet from a user's home timeline - using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - In order to run this sketch, you'll need to register an application using - the Twitter dev console at https://dev.twitter.com. After creating the - app, you'll find OAuth credentials for that application under the "OAuth Tool" tab. - Substitute these values for the placeholders below. - - This example assumes basic familiarity with Arduino sketches, and that your Yún - is connected to the Internet. - - Want to use another social API with your Arduino Yún? We've got Facebook, - Google+, Instagram, Tumblr and more in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use #define statements to specify these values in a .h file. -const String TWITTER_ACCESS_TOKEN = "your-twitter-access-token"; -const String TWITTER_ACCESS_TOKEN_SECRET = "your-twitter-access-token-secret"; -const String TWITTER_CONSUMER_KEY = "your-twitter-consumer-key"; -const String TWITTER_CONSUMER_SECRET = "your-twitter-consumer-secret"; - -int numRuns = 1; // execution count, so this doesn't run forever -int maxRuns = 10; // the max number of times the Twitter HomeTimeline Choreo should run - -void setup() { - Serial.begin(9600); - - // For debugging, wait until a serial console is connected. - delay(4000); - while (!Serial); - Bridge.begin(); -} -void loop() { - // while we haven't reached the max number of runs... - if (numRuns <= maxRuns) { - Serial.println("Running ReadATweet - Run #" + String(numRuns++)); - - TembooChoreo HomeTimelineChoreo; - - // invoke the Temboo client. - // NOTE that the client must be reinvoked, and repopulated with - // appropriate arguments, each time its run() method is called. - HomeTimelineChoreo.begin(); - - // set Temboo account credentials - HomeTimelineChoreo.setAccountName(TEMBOO_ACCOUNT); - HomeTimelineChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - HomeTimelineChoreo.setAppKey(TEMBOO_APP_KEY); - - // tell the Temboo client which Choreo to run (Twitter > Timelines > HomeTimeline) - HomeTimelineChoreo.setChoreo("/Library/Twitter/Timelines/HomeTimeline"); - - - // set the required choreo inputs - // see https://www.temboo.com/library/Library/Twitter/Timelines/HomeTimeline/ - // for complete details about the inputs for this Choreo - - HomeTimelineChoreo.addInput("Count", "1"); // the max number of Tweets to return from each request - HomeTimelineChoreo.addInput("AccessToken", TWITTER_ACCESS_TOKEN); - HomeTimelineChoreo.addInput("AccessTokenSecret", TWITTER_ACCESS_TOKEN_SECRET); - HomeTimelineChoreo.addInput("ConsumerKey", TWITTER_CONSUMER_KEY); - HomeTimelineChoreo.addInput("ConsumerSecret", TWITTER_CONSUMER_SECRET); - - // next, we'll define two output filters that let us specify the - // elements of the response from Twitter that we want to receive. - // see the examples at http://www.temboo.com/arduino - // for more on using output filters - - // we want the text of the tweet - HomeTimelineChoreo.addOutputFilter("tweet", "/[1]/text", "Response"); - - // and the name of the author - HomeTimelineChoreo.addOutputFilter("author", "/[1]/user/screen_name", "Response"); - - - // tell the Process to run and wait for the results. The - // return code will tell us whether the Temboo client - // was able to send our request to the Temboo servers - unsigned int returnCode = HomeTimelineChoreo.run(); - - // a response code of 0 means success; print the API response - if (returnCode == 0) { - - String author; // a String to hold the tweet author's name - String tweet; // a String to hold the text of the tweet - - - // choreo outputs are returned as key/value pairs, delimited with - // newlines and record/field terminator characters, for example: - // Name1\n\x1F - // Value1\n\x1E - // Name2\n\x1F - // Value2\n\x1E - - // see the examples at http://www.temboo.com/arduino for more details - // we can read this format into separate variables, as follows: - - while (HomeTimelineChoreo.available()) { - // read the name of the output item - String name = HomeTimelineChoreo.readStringUntil('\x1F'); - name.trim(); - - // read the value of the output item - String data = HomeTimelineChoreo.readStringUntil('\x1E'); - data.trim(); - - // assign the value to the appropriate String - if (name == "tweet") { - tweet = data; - } else if (name == "author") { - author = data; - } - } - - Serial.println("@" + author + " - " + tweet); - - } else { - // there was an error - // print the raw output from the choreo - while (HomeTimelineChoreo.available()) { - char c = HomeTimelineChoreo.read(); - Serial.print(c); - } - } - - HomeTimelineChoreo.close(); - - } - - Serial.println("Waiting..."); - delay(90000); // wait 90 seconds between HomeTimeline calls -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/ReadATweet/TembooAccount.h b/libraries/Bridge/examples/Temboo/ReadATweet/TembooAccount.h deleted file mode 100644 index c58b4479d61..00000000000 --- a/libraries/Bridge/examples/Temboo/ReadATweet/TembooAccount.h +++ /dev/null @@ -1,4 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - diff --git a/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino b/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino deleted file mode 100644 index 275f3506e61..00000000000 --- a/libraries/Bridge/examples/Temboo/SendATweet/SendATweet.ino +++ /dev/null @@ -1,137 +0,0 @@ -/* - SendATweet - - Demonstrates sending a tweet via a Twitter account using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - In order to run this sketch, you'll need to register an application using - the Twitter dev console at https://dev.twitter.com. Note that since this - sketch creates a new tweet, your application will need to be configured with - read+write permissions. After creating the app, you'll find OAuth credentials - for that application under the "OAuth Tool" tab. Substitute these values for - the placeholders below. - - This example assumes basic familiarity with Arduino sketches, and that your Yún is connected - to the Internet. - - Want to use another social API with your Arduino Yún? We've got Facebook, - Google+, Instagram, Tumblr and more in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use #define statements to specify these values in a .h file. -const String TWITTER_ACCESS_TOKEN = "your-twitter-access-token"; -const String TWITTER_ACCESS_TOKEN_SECRET = "your-twitter-access-token-secret"; -const String TWITTER_CONSUMER_KEY = "your-twitter-consumer-key"; -const String TWITTER_CONSUMER_SECRET = "your-twitter-consumer-secret"; - -int numRuns = 1; // execution count, so this sketch doesn't run forever -int maxRuns = 3; // the max number of times the Twitter Update Choreo should run - -void setup() { - Serial.begin(9600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial); - - Bridge.begin(); -} - -void loop() { - // only try to send the tweet if we haven't already sent it successfully - if (numRuns <= maxRuns) { - - Serial.println("Running SendATweet - Run #" + String(numRuns++) + "..."); - - // define the text of the tweet we want to send - String tweetText("My Arduino Yun has been running for " + String(millis()) + " milliseconds."); - - - TembooChoreo StatusesUpdateChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked, and repopulated with - // appropriate arguments, each time its run() method is called. - StatusesUpdateChoreo.begin(); - - // set Temboo account credentials - StatusesUpdateChoreo.setAccountName(TEMBOO_ACCOUNT); - StatusesUpdateChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - StatusesUpdateChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (Twitter > Tweets > StatusesUpdate) - StatusesUpdateChoreo.setChoreo("/Library/Twitter/Tweets/StatusesUpdate"); - - // set the required choreo inputs - // see https://www.temboo.com/library/Library/Twitter/Tweets/StatusesUpdate/ - // for complete details about the inputs for this Choreo - - // add the Twitter account information - StatusesUpdateChoreo.addInput("AccessToken", TWITTER_ACCESS_TOKEN); - StatusesUpdateChoreo.addInput("AccessTokenSecret", TWITTER_ACCESS_TOKEN_SECRET); - StatusesUpdateChoreo.addInput("ConsumerKey", TWITTER_CONSUMER_KEY); - StatusesUpdateChoreo.addInput("ConsumerSecret", TWITTER_CONSUMER_SECRET); - - // and the tweet we want to send - StatusesUpdateChoreo.addInput("StatusUpdate", tweetText); - - // tell the Process to run and wait for the results. The - // return code (returnCode) will tell us whether the Temboo client - // was able to send our request to the Temboo servers - unsigned int returnCode = StatusesUpdateChoreo.run(); - - // a return code of zero (0) means everything worked - if (returnCode == 0) { - Serial.println("Success! Tweet sent!"); - } else { - // a non-zero return code means there was an error - // read and print the error message - while (StatusesUpdateChoreo.available()) { - char c = StatusesUpdateChoreo.read(); - Serial.print(c); - } - } - StatusesUpdateChoreo.close(); - - // do nothing for the next 90 seconds - Serial.println("Waiting..."); - delay(90000); - } -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/SendATweet/TembooAccount.h b/libraries/Bridge/examples/Temboo/SendATweet/TembooAccount.h deleted file mode 100644 index c58b4479d61..00000000000 --- a/libraries/Bridge/examples/Temboo/SendATweet/TembooAccount.h +++ /dev/null @@ -1,4 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - diff --git a/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino b/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino deleted file mode 100644 index e494936d5e8..00000000000 --- a/libraries/Bridge/examples/Temboo/SendAnEmail/SendAnEmail.ino +++ /dev/null @@ -1,165 +0,0 @@ -/* - SendAnEmail - - Demonstrates sending an email via a Google Gmail account using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and tutorials at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - Instructions: - - 1. Create a Temboo account: http://www.temboo.com - - 2. Retrieve your Temboo application details: http://www.temboo.com/account/applications - - 3. Replace the values in the TembooAccount.h tab with your Temboo application details - - 4. You'll also need a Gmail account. Update the placeholder Gmail address in the code - below with your own details. - - https://www.gmail.com - - 5. Once you have a Gmail account, turn on 2-step authentication, and create an application-specific - password to allow Temboo to access your Google account: https://www.google.com/landing/2step/. - - 6. After you've enabled 2-Step authentication, you'll need to create an App Password: - https://security.google.com/settings/security/apppasswords - - 7. In the "Select app" dropdown menu, choose "Other", and give your app a name (e.g., TembooApp). - - 8. Click "Generate". You'll be given a 16-digit passcode that can be used to access your Google Account from Temboo. - - 9. Copy and paste this password into the code below, updating the GMAIL_APP_PASSWORD variable - - 10. Upload the sketch to your Arduino Yún and open the serial monitor - - NOTE: You can test this Choreo and find the latest instructions on our website: - https://temboo.com/library/Library/Google/Gmail/SendEmail - - You can also find an in-depth version of this example here: - https://temboo.com/arduino/yun/send-an-email - - This example assumes basic familiarity with Arduino sketches, and that your Yún is connected - to the Internet. - - Looking for another API to use with your Arduino Yún? We've got over 100 in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use #define statements to specify these values in a .h file. - -// your Gmail username, formatted as a complete email address, eg "bob.smith@gmail.com" -const String GMAIL_USER_NAME = "xxxxxxxxxx"; - -// your application specific password (see instructions above) -const String GMAIL_APP_PASSWORD = "xxxxxxxxxx"; - -// the email address you want to send the email to, eg "jane.doe@temboo.com" -const String TO_EMAIL_ADDRESS = "xxxxxxxxxx"; - -// a flag to indicate whether we've tried to send the email yet or not -boolean attempted = false; - -void setup() { - Serial.begin(9600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial); - - Bridge.begin(); -} - -void loop() { - // only try to send the email if we haven't already tried - if (!attempted) { - - Serial.println("Running SendAnEmail..."); - - TembooChoreo SendEmailChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked, and repopulated with - // appropriate arguments, each time its run() method is called. - SendEmailChoreo.begin(); - - // set Temboo account credentials - SendEmailChoreo.setAccountName(TEMBOO_ACCOUNT); - SendEmailChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - SendEmailChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (Google > Gmail > SendEmail) - SendEmailChoreo.setChoreo("/Library/Google/Gmail/SendEmail"); - - - // set the required choreo inputs - // see https://www.temboo.com/library/Library/Google/Gmail/SendEmail/ - // for complete details about the inputs for this Choreo - - // the first input is your Gmail email address. - SendEmailChoreo.addInput("Username", GMAIL_USER_NAME); - // next is your application specific password - SendEmailChoreo.addInput("Password", GMAIL_APP_PASSWORD); - // who to send the email to - SendEmailChoreo.addInput("ToAddress", TO_EMAIL_ADDRESS); - // then a subject line - SendEmailChoreo.addInput("Subject", "ALERT: Greenhouse Temperature"); - - // next comes the message body, the main content of the email - SendEmailChoreo.addInput("MessageBody", "Hey! The greenhouse is too cold!"); - - // tell the Choreo to run and wait for the results. The - // return code (returnCode) will tell us whether the Temboo client - // was able to send our request to the Temboo servers - unsigned int returnCode = SendEmailChoreo.run(); - - // a return code of zero (0) means everything worked - if (returnCode == 0) { - Serial.println("Success! Email sent!"); - } else { - // a non-zero return code means there was an error - // read and print the error message - while (SendEmailChoreo.available()) { - char c = SendEmailChoreo.read(); - Serial.print(c); - } - } - SendEmailChoreo.close(); - - // set the flag showing we've tried - attempted = true; - } -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/SendAnEmail/TembooAccount.h b/libraries/Bridge/examples/Temboo/SendAnEmail/TembooAccount.h deleted file mode 100644 index c58b4479d61..00000000000 --- a/libraries/Bridge/examples/Temboo/SendAnEmail/TembooAccount.h +++ /dev/null @@ -1,4 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - diff --git a/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino b/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino deleted file mode 100644 index 5bc838ec743..00000000000 --- a/libraries/Bridge/examples/Temboo/SendAnSMS/SendAnSMS.ino +++ /dev/null @@ -1,153 +0,0 @@ -/* - SendAnSMS - - Demonstrates sending an SMS via Twilio using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - Since this sketch uses Twilio to send the SMS, you'll also need a valid - Twilio account. You can create one for free at https://www.twilio.com. - - The sketch needs your Twilio phone number, along with - the Account SID and Auth Token you get when you register with Twilio. - Make sure to use the Account SID and Auth Token from your Twilio Dashboard - (not your test credentials from the Dev Tools panel). - - Also note that if you're using a free Twilio account, you'll need to verify - the phone number to which messages are being sent by going to twilio.com and following - the instructions under the "Numbers > Verified Caller IDs" tab (this restriction - doesn't apply if you have a paid Twilio account). - - This example assumes basic familiarity with Arduino sketches, and that your Yún is connected - to the Internet. - - Looking for another API to use with your Arduino Yún? We've got over 100 in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - - - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use #define statements to specify these values in a .h file. - -// the Account SID from your Twilio account -const String TWILIO_ACCOUNT_SID = "xxxxxxxxxx"; - -// the Auth Token from your Twilio account -const String TWILIO_AUTH_TOKEN = "xxxxxxxxxx"; - -// your Twilio phone number, e.g., "+1 555-222-1212" -const String TWILIO_NUMBER = "xxxxxxxxxx"; - -// the number to which the SMS should be sent, e.g., "+1 555-222-1212" -const String RECIPIENT_NUMBER = "xxxxxxxxxx"; - -// a flag to indicate whether we've attempted to send the SMS yet or not -boolean attempted = false; - -void setup() { - Serial.begin(9600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial); - - Bridge.begin(); -} - -void loop() { - // only try to send the SMS if we haven't already sent it successfully - if (!attempted) { - - Serial.println("Running SendAnSMS..."); - - // we need a Process object to send a Choreo request to Temboo - TembooChoreo SendSMSChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked and repopulated with - // appropriate arguments each time its run() method is called. - SendSMSChoreo.begin(); - - // set Temboo account credentials - SendSMSChoreo.setAccountName(TEMBOO_ACCOUNT); - SendSMSChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - SendSMSChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (Twilio > SMSMessages > SendSMS) - SendSMSChoreo.setChoreo("/Library/Twilio/SMSMessages/SendSMS"); - - // set the required choreo inputs - // see https://www.temboo.com/library/Library/Twilio/SMSMessages/SendSMS/ - // for complete details about the inputs for this Choreo - - // the first input is a your AccountSID - SendSMSChoreo.addInput("AccountSID", TWILIO_ACCOUNT_SID); - - // next is your Auth Token - SendSMSChoreo.addInput("AuthToken", TWILIO_AUTH_TOKEN); - - // next is your Twilio phone number - SendSMSChoreo.addInput("From", TWILIO_NUMBER); - - // next, what number to send the SMS to - SendSMSChoreo.addInput("To", RECIPIENT_NUMBER); - - // finally, the text of the message to send - SendSMSChoreo.addInput("Body", "Hey, there! This is a message from your Arduino Yun!"); - - // tell the Process to run and wait for the results. The - // return code (returnCode) will tell us whether the Temboo client - // was able to send our request to the Temboo servers - unsigned int returnCode = SendSMSChoreo.run(); - - // a return code of zero (0) means everything worked - if (returnCode == 0) { - Serial.println("Success! SMS sent!"); - } else { - // a non-zero return code means there was an error - // read and print the error message - while (SendSMSChoreo.available()) { - char c = SendSMSChoreo.read(); - Serial.print(c); - } - } - SendSMSChoreo.close(); - - // set the flag indicatine we've tried once. - attempted = true; - } -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/SendAnSMS/TembooAccount.h b/libraries/Bridge/examples/Temboo/SendAnSMS/TembooAccount.h deleted file mode 100644 index 8d7dcfb7703..00000000000 --- a/libraries/Bridge/examples/Temboo/SendAnSMS/TembooAccount.h +++ /dev/null @@ -1,5 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - diff --git a/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino b/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino deleted file mode 100644 index f07b0947834..00000000000 --- a/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/SendDataToGoogleSpreadsheet.ino +++ /dev/null @@ -1,202 +0,0 @@ -/* - SendDataToGoogleSpreadsheet - - Demonstrates appending a row of data to a Google spreadsheet using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and tutorials at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - Instructions: - - 1. Create a Temboo account: http://www.temboo.com - - 2. Retrieve your Temboo application details: http://www.temboo.com/account/applications - - 3. Replace the values in the TembooAccount.h tab with your Temboo application details - - 4. You'll also need a Google Spreadsheet that includes a title in the first row - of each column that data will be written to. This example assumes there are two columns. - The first column is the time (in milliseconds) that the row was appended, and the second - column is a sensor value. In other words, your spreadsheet should look like: - - Time | Sensor Value | - ------+----------------- - | | - - 5. Google Spreadsheets requires you to authenticate via OAuth. Follow the steps - in the link below to find your ClientID, ClientSecret, and RefreshToken, and then - use those values to overwrite the placeholders in the code below. - - https://temboo.com/library/Library/Google/OAuth/ - - For the scope field, you need to use: https://spreadsheets.google.com/feeds/ - - Here's a video outlines how Temboo helps with the OAuth process: - - https://www.temboo.com/videos#oauthchoreos - - And here's a more in-depth version of this example on our website: - - https://temboo.com/arduino/yun/update-google-spreadsheet - - 6. Next, upload the sketch to your Arduino Yún and open the serial monitor - - Note: you can test this Choreo and find the latest instructions on our website: - https://temboo.com/library/Library/Google/Spreadsheets/AppendRow/ - - Looking for another API to use with your Arduino Yún? We've got over 100 in our Library! - - This example code is in the public domain. - -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information, -// as described in the footer comment below - - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use #define statements to specify these values in a .h file. - -// the clientID found in Google's Developer Console under APIs & Auth > Credentials -const String CLIENT_ID = "your-client-id"; - -// the clientSecret found in Google's Developer Console under APIs & Auth > Credentials -const String CLIENT_SECRET = "your-client-secret"; - -// returned after running FinalizeOAuth -const String REFRESH_TOKEN = "your-oauth-refresh-token"; - -// the title of the spreadsheet you want to send data to -// (Note that this must actually be the title of a Google spreadsheet -// that exists in your Google Drive/Docs account, and is configured -// as described above.) -const String SPREADSHEET_TITLE = "your-spreadsheet-title"; - -const unsigned long RUN_INTERVAL_MILLIS = 60000; // how often to run the Choreo (in milliseconds) - -// the last time we ran the Choreo -// (initialized to 60 seconds ago so the -// Choreo is run immediately when we start up) -unsigned long lastRun = (unsigned long) - 60000; - -void setup() { - - // for debugging, wait until a serial console is connected - Serial.begin(9600); - delay(4000); - while (!Serial); - - Serial.print("Initializing the bridge..."); - Bridge.begin(); - Serial.println("Done"); -} - -void loop() { - // get the number of milliseconds this sketch has been running - unsigned long now = millis(); - - // run again if it's been 60 seconds since we last ran - if (now - lastRun >= RUN_INTERVAL_MILLIS) { - - // remember 'now' as the last time we ran the choreo - lastRun = now; - - Serial.println("Getting sensor value..."); - - // get the value we want to append to our spreadsheet - unsigned long sensorValue = getSensorValue(); - - Serial.println("Appending value to spreadsheet..."); - - // we need a Process object to send a Choreo request to Temboo - TembooChoreo AppendRowChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked and repopulated with - // appropriate arguments each time its run() method is called. - AppendRowChoreo.begin(); - - // set Temboo account credentials - AppendRowChoreo.setAccountName(TEMBOO_ACCOUNT); - AppendRowChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - AppendRowChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (Google > Spreadsheets > AppendRow) - AppendRowChoreo.setChoreo("/Library/Google/Spreadsheets/AppendRow"); - - // set the required Choreo inputs - // see https://www.temboo.com/library/Library/Google/Spreadsheets/AppendRow/ - // for complete details about the inputs for this Choreo - - // your Google application client ID - AppendRowChoreo.addInput("ClientID", CLIENT_ID); - // your Google application client secert - AppendRowChoreo.addInput("ClientSecret", CLIENT_SECRET); - // your Google OAuth refresh token - AppendRowChoreo.addInput("RefreshToken", REFRESH_TOKEN); - - // the title of the spreadsheet you want to append to - // NOTE: substitute your own value, retaining the "SpreadsheetTitle:" prefix. - AppendRowChoreo.addInput("SpreadsheetTitle", SPREADSHEET_TITLE); - - // convert the time and sensor values to a comma separated string - String rowData(now); - rowData += ","; - rowData += sensorValue; - - // add the RowData input item - AppendRowChoreo.addInput("RowData", rowData); - - // run the Choreo and wait for the results - // The return code (returnCode) will indicate success or failure - unsigned int returnCode = AppendRowChoreo.run(); - - // return code of zero (0) means success - if (returnCode == 0) { - Serial.println("Success! Appended " + rowData); - Serial.println(""); - } else { - // return code of anything other than zero means failure - // read and display any error messages - while (AppendRowChoreo.available()) { - char c = AppendRowChoreo.read(); - Serial.print(c); - } - } - - AppendRowChoreo.close(); - } -} - -// this function simulates reading the value of a sensor -unsigned long getSensorValue() { - return analogRead(A0); -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/TembooAccount.h b/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/TembooAccount.h deleted file mode 100644 index 8d7dcfb7703..00000000000 --- a/libraries/Bridge/examples/Temboo/SendDataToGoogleSpreadsheet/TembooAccount.h +++ /dev/null @@ -1,5 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - diff --git a/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/TembooAccount.h b/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/TembooAccount.h deleted file mode 100644 index 8d7dcfb7703..00000000000 --- a/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/TembooAccount.h +++ /dev/null @@ -1,5 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - diff --git a/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino b/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino deleted file mode 100644 index 4708dac4d94..00000000000 --- a/libraries/Bridge/examples/Temboo/ToxicFacilitiesSearch/ToxicFacilitiesSearch.ino +++ /dev/null @@ -1,170 +0,0 @@ -/* - ToxicFacilitiesSearch - - Demonstrates making a request to the Envirofacts API using Temboo from an Arduino Yún. - This example retrieves the names and addresses of EPA-regulated facilities in the - Toxins Release Inventory (TRI) database within a given zip code. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - This example assumes basic familiarity with Arduino sketches, and that your Yún is connected - to the Internet. - - Looking for another API to use with your Arduino Yún? We've got over 100 in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - -// the zip code to search for toxin-emitting facilities -String US_ZIP_CODE = "11215"; - -int numRuns = 1; // execution count, so that this doesn't run forever -int maxRuns = 10; // max number of times the Envirofacts FacilitiesSearch Choreo should be run - -void setup() { - Serial.begin(9600); - - // for debugging, wait until a serial console is connected - delay(4000); - while (!Serial); - Bridge.begin(); -} - -void loop() { - // while we haven't reached the max number of runs... - if (numRuns <= maxRuns) { - - // print status - Serial.println("Running ToxicFacilitiesSearch - Run #" + String(numRuns++) + "..."); - - // we need a Process object to send a Choreo request to Temboo - TembooChoreo FacilitiesSearchByZipChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked and repopulated with - // appropriate arguments each time its run() method is called. - FacilitiesSearchByZipChoreo.begin(); - - // set Temboo account credentials - FacilitiesSearchByZipChoreo.setAccountName(TEMBOO_ACCOUNT); - FacilitiesSearchByZipChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - FacilitiesSearchByZipChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (EnviroFacts > Toxins > FacilitiesSearchByZip) - FacilitiesSearchByZipChoreo.setChoreo("/Library/EnviroFacts/Toxins/FacilitiesSearchByZip"); - - // set choreo inputs; in this case, the US zip code for which to retrieve toxin release data - // the Temboo client provides standardized calls to 100+ cloud APIs - FacilitiesSearchByZipChoreo.addInput("Zip", US_ZIP_CODE); - - // specify two output filters, to help simplify the Envirofacts API results. - // see the tutorials on using Temboo SDK output filters at http://www.temboo.com/arduino - FacilitiesSearchByZipChoreo.addOutputFilter("fac", "FACILITY_NAME", "Response"); - - FacilitiesSearchByZipChoreo.addOutputFilter("addr", "STREET_ADDRESS", "Response"); - - // run the choreo - unsigned int returnCode = FacilitiesSearchByZipChoreo.run(); - if (returnCode == 0) { - String facilities; - String addresses; - - // when the choreo results are available, process them. - // the output filters we specified will return comma delimited - // lists containing the name and street address of the facilities - // located in the specified zip code. - while (FacilitiesSearchByZipChoreo.available()) { - String name = FacilitiesSearchByZipChoreo.readStringUntil('\x1F'); - name.trim(); - - String data = FacilitiesSearchByZipChoreo.readStringUntil('\x1E'); - data.trim(); - - if (name == "fac") { - facilities = data; - } else if (name == "addr") { - addresses = data; - } - } - FacilitiesSearchByZipChoreo.close(); - - // parse the comma delimited lists of facilities to join the - // name with the address and print it to the serial monitor - if (facilities.length() > 0) { - int i = -1; - int facilityStart = 0; - int addressStart = 0; - String facility; - String address; - do { - i = facilities.indexOf(',', facilityStart); - if (i >= 0) { - facility = facilities.substring(facilityStart, i); - facilityStart = i + 1; - } - - i = addresses.indexOf(',', addressStart); - if (i >= 0) { - address = addresses.substring(addressStart, i); - addressStart = i + 1; - } - - if (i >= 0) { - printResult(facility, address); - } - - } while (i >= 0); - facility = facilities.substring(facilityStart); - address = addresses.substring(addressStart); - printResult(facility, address); - } else { - Serial.println("No facilities found in zip code " + US_ZIP_CODE); - } - } else { - while (FacilitiesSearchByZipChoreo.available()) { - char c = FacilitiesSearchByZipChoreo.read(); - Serial.print(c); - } - } - } - Serial.println("Waiting..."); - Serial.println(""); - delay(30000); // wait 30 seconds between calls -} - -// a simple utility function, to output the facility name and address in the serial monitor. -void printResult(String facility, String address) { - Serial.print(facility); - Serial.print(" - "); - Serial.println(address); -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/TembooAccount.h b/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/TembooAccount.h deleted file mode 100644 index 8d7dcfb7703..00000000000 --- a/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/TembooAccount.h +++ /dev/null @@ -1,5 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - diff --git a/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino b/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino deleted file mode 100644 index 8de806b460d..00000000000 --- a/libraries/Bridge/examples/Temboo/UpdateFacebookStatus/UpdateFacebookStatus.ino +++ /dev/null @@ -1,132 +0,0 @@ -/* - UpdateFacebookStatus - - Demonstrates sending a Facebook status update using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - In order to run this sketch, you'll need to register an application using - the Facebook dev console at https://developers.facebook.com/apps -- after creating - the app, log in to Temboo and visit https://www.temboo.com/library/Library/Facebook/Publishing/SetStatus/ - to use our OAuth Wizard (or OAuth Choreos) to obtain a Facebook access token. - Substitute your access token for the placeholder value of FACEBOOK_ACCESS_TOKEN below. - - This example assumes basic familiarity with Arduino sketches, and that your Yún - is connected to the Internet. - - Want to use another social API with your Arduino Yún? We've got Twitter, Google+, - Instagram, Tumblr and more in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information, -// as described in the footer comment below - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use a #define statement to specify this value in a .h file. - -// the Facebook Access Token, which can be obtained using the Temboo OAuth Wizard or Choreos -const String FACEBOOK_ACCESS_TOKEN = "xxxxxxxxxx"; - - -int numRuns = 1; // execution count, so this sketch doesn't run forever -int maxRuns = 10; // the max number of times the Facebook SetStatus Choreo should run - -void setup() { - Serial.begin(9600); - - // For debugging, wait until a serial console is connected. - delay(4000); - while (!Serial); - Bridge.begin(); -} - -void loop() { - // while we haven't reached the max number of runs... - if (numRuns <= maxRuns) { - - // print status - Serial.println("Running UpdateFacebookStatus - Run #" + String(numRuns++) + "..."); - - // Define the status message we want to post on Facebook; since Facebook - // doesn't allow duplicate status messages, we'll include a changing value. - String statusMsg = "My Arduino Yun has been running for " + String(millis()) + " milliseconds!"; - - // define the Process that will be used to call the "temboo" client - TembooChoreo SetStatusChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked and repopulated with - // appropriate arguments each time its run() method is called. - SetStatusChoreo.begin(); - - // set Temboo account credentials - SetStatusChoreo.setAccountName(TEMBOO_ACCOUNT); - SetStatusChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - SetStatusChoreo.setAppKey(TEMBOO_APP_KEY); - - // tell the Temboo client which Choreo to run (Facebook > Publishing > SetStatus) - SetStatusChoreo.setChoreo("/Library/Facebook/Publishing/SetStatus"); - - // set the required choreo inputs - // see https://www.temboo.com/library/Library/Facebook/Publishing/SetStatus/ - // for complete details about the inputs for this Choreo - - SetStatusChoreo.addInput("AccessToken", FACEBOOK_ACCESS_TOKEN); - SetStatusChoreo.addInput("Message", statusMsg); - - - // tell the Process to run and wait for the results. The - // return code (returnCode) will tell us whether the Temboo client - // was able to send our request to the Temboo servers - unsigned int returnCode = SetStatusChoreo.run(); - - // print the response code and API response. - Serial.println("Response code: " + String(returnCode)); - - // note that in this case, we're just printing the raw response from Facebook. - // see the examples on using Temboo SDK output filters at http://www.temboo.com/arduino - // for information on how to filter this data - while (SetStatusChoreo.available()) { - char c = SetStatusChoreo.read(); - Serial.print(c); - } - - SetStatusChoreo.close(); - } - - Serial.println("Waiting..."); - Serial.println(""); - - delay(30000); // wait 30 seconds between SetStatus calls -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/Temboo/UploadToDropbox/TembooAccount.h b/libraries/Bridge/examples/Temboo/UploadToDropbox/TembooAccount.h deleted file mode 100644 index 8d7dcfb7703..00000000000 --- a/libraries/Bridge/examples/Temboo/UploadToDropbox/TembooAccount.h +++ /dev/null @@ -1,5 +0,0 @@ -#define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name -#define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name -#define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - diff --git a/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino b/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino deleted file mode 100644 index 7bc0fb0c846..00000000000 --- a/libraries/Bridge/examples/Temboo/UploadToDropbox/UploadToDropbox.ino +++ /dev/null @@ -1,207 +0,0 @@ -/* - UploadToDropbox - - Demonstrates uploading a file to a Dropbox account using Temboo from an Arduino Yún. - - Check out the latest Arduino & Temboo examples and support docs at http://www.temboo.com/arduino - - A Temboo account and application key are necessary to run all Temboo examples. - If you don't already have one, you can register for a free Temboo account at - http://www.temboo.com - - You'll also need a valid Dropbox app and accompanying OAuth credentials. - To create a Dropbox app, visit https://www.dropbox.com/developers/apps and - do the following: - - 1. Create a "Dropbox API app" - 2. Select "Files and datastores" - 3. Select "Yes - my app only needs access to the files it creates." - - Once you've created your app, follow the instructions at - https://www.temboo.com/library/Library/Dropbox/OAuth/ to run the Initialize and Finalize - OAuth Choreos. These Choreos complete the OAuth handshake and retrieve your Dropbox OAuth access tokens. - - This example assumes basic familiarity with Arduino sketches, and that your Yún is connected - to the Internet. - - Looking for another API to use with your Arduino Yún? We've got over 100 in our Library! - - This example code is in the public domain. -*/ - -#include -#include -#include "TembooAccount.h" // contains Temboo account information -// as described in the footer comment below - - -/*** SUBSTITUTE YOUR VALUES BELOW: ***/ - -// Note that for additional security and reusability, you could -// use #define statements to specify these values in a .h file. - -// your Dropbox app key, available on the Dropbox developer console after registering an app -const String DROPBOX_APP_KEY = "xxxxxxxxxx"; - -// your Dropbox app secret, available on the Dropbox developer console after registering an app -const String DROPBOX_APP_SECRET = "xxxxxxxxxx"; - -// your Dropbox access token, which is returned by the FinalizeOAuth Choreo -const String DROPBOX_ACCESS_TOKEN = "xxxxxxxxxx"; - -// your Dropbox access token secret, which is returned by the FinalizeOAuth Choreo -const String DROPBOX_ACCESS_TOKEN_SECRET = "xxxxxxxxxx"; - - -boolean success = false; // a flag to indicate whether we've uploaded the file yet - -void setup() { - Serial.begin(9600); - - // For debugging, wait until a serial console is connected. - delay(4000); - while (!Serial); - Bridge.begin(); -} - -void loop() { - // only try to upload the file if we haven't already done so - if (!success) { - - Serial.println("Base64 encoding data to upload..."); - - // base64 encode the data to upload - String base64EncodedData = base64Encode("Hello, Arduino!"); - - - Serial.println("Uploading data to Dropbox..."); - - // we need a Process object to send a Choreo request to Temboo - TembooChoreo UploadFileChoreo; - - // invoke the Temboo client - // NOTE that the client must be reinvoked and repopulated with - // appropriate arguments each time its run() method is called. - UploadFileChoreo.begin(); - - // set Temboo account credentials - UploadFileChoreo.setAccountName(TEMBOO_ACCOUNT); - UploadFileChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - UploadFileChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (Dropbox > FilesAndMetadata > UploadFile) - UploadFileChoreo.setChoreo("/Library/Dropbox/FilesAndMetadata/UploadFile"); - - // set the required choreo inputs - // see https://www.temboo.com/library/Library/Dropbox/FilesAndMetadata/UploadFile/ - // for complete details about the inputs for this Choreo - - // first specify the name of the file to create/update on Dropbox - UploadFileChoreo.addInput("FileName", "ArduinoTest.txt"); - - // next, the root folder on Dropbox relative to which the file path is specified. - // to work with the Dropbox app you created earlier, this should be left as "sandbox" - // if your Dropbox app has full access to your files, specify "dropbox" - UploadFileChoreo.addInput("Root", "sandbox"); - - // next, the Base64 encoded file data to upload - UploadFileChoreo.addInput("FileContents", base64EncodedData); - - // finally, the Dropbox OAuth credentials defined above - UploadFileChoreo.addInput("AppSecret", DROPBOX_APP_SECRET); - UploadFileChoreo.addInput("AccessToken", DROPBOX_ACCESS_TOKEN); - UploadFileChoreo.addInput("AccessTokenSecret", DROPBOX_ACCESS_TOKEN_SECRET); - UploadFileChoreo.addInput("AppKey", DROPBOX_APP_KEY); - - // tell the Process to run and wait for the results. The - // return code (returnCode) will tell us whether the Temboo client - // was able to send our request to the Temboo servers - unsigned int returnCode = UploadFileChoreo.run(); - - // a return code of zero (0) means everything worked - if (returnCode == 0) { - Serial.println("Success! File uploaded!"); - success = true; - } else { - // a non-zero return code means there was an error - Serial.println("Uh-oh! Something went wrong!"); - } - - // print out the full response to the serial monitor in all - // cases, just for debugging - while (UploadFileChoreo.available()) { - char c = UploadFileChoreo.read(); - Serial.print(c); - } - UploadFileChoreo.close(); - - Serial.println("Waiting..."); - } - - delay(30000); // wait 30 seconds between upload attempts -} - - -/* - A utility function to Base64 encode the specified string - by calling a Temboo Utilities Choreo. -*/ -String base64Encode(String toEncode) { - - // we need a Process object to send a Choreo request to Temboo - TembooChoreo Base64EncodeChoreo; - - // invoke the Temboo client - Base64EncodeChoreo.begin(); - - // set Temboo account credentials - Base64EncodeChoreo.setAccountName(TEMBOO_ACCOUNT); - Base64EncodeChoreo.setAppKeyName(TEMBOO_APP_KEY_NAME); - Base64EncodeChoreo.setAppKey(TEMBOO_APP_KEY); - - // identify the Temboo Library choreo to run (Utilities > Encoding > Base64Encode) - Base64EncodeChoreo.setChoreo("/Library/Utilities/Encoding/Base64Encode"); - - // set choreo inputs - Base64EncodeChoreo.addInput("Text", toEncode); - - // run the choreo - Base64EncodeChoreo.run(); - - // read in the choreo results, and return the "Base64EncodedText" output value. - // see http://www.temboo.com/arduino for more details on using choreo outputs. - while (Base64EncodeChoreo.available()) { - // read the name of the output item - String name = Base64EncodeChoreo.readStringUntil('\x1F'); - name.trim(); - - // read the value of the output item - String data = Base64EncodeChoreo.readStringUntil('\x1E'); - data.trim(); - - if (name == "Base64EncodedText") { - return data; - } - } -} - -/* - IMPORTANT NOTE: TembooAccount.h: - - TembooAccount.h is a file referenced by this sketch that contains your Temboo account information. - You'll need to edit the placeholder version of TembooAccount.h included with this example sketch, - by inserting your own Temboo account name and app key information. The contents of the file should - look like: - - #define TEMBOO_ACCOUNT "myTembooAccountName" // your Temboo account name - #define TEMBOO_APP_KEY_NAME "myFirstApp" // your Temboo app key name - #define TEMBOO_APP_KEY "xxx-xxx-xxx-xx-xxx" // your Temboo app key - - You can find your Temboo App Key information on the Temboo website, - under My Account > Application Keys - - The same TembooAccount.h file settings can be used for all Temboo SDK sketches. - - Keeping your account information in a separate file means you can share the main .ino file without worrying - that you forgot to delete your credentials. -*/ diff --git a/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino b/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino deleted file mode 100644 index b389f92a6c6..00000000000 --- a/libraries/Bridge/examples/TemperatureWebPanel/TemperatureWebPanel.ino +++ /dev/null @@ -1,125 +0,0 @@ -/* - Temperature web interface - - This example shows how to serve data from an analog input - via the Arduino Yún's built-in webserver using the Bridge library. - - The circuit: - * TMP36 temperature sensor on analog pin A1 - * SD card attached to SD card slot of the Arduino Yún - - This sketch must be uploaded via wifi. REST API must be set to "open". - - Prepare your SD card with an empty folder in the SD root - named "arduino" and a subfolder of that named "www". - This will ensure that the Yún will create a link - to the SD to the "/mnt/sd" path. - - In this sketch folder is a basic webpage and a copy of zepto.js, a - minimized version of jQuery. When you upload your sketch, these files - will be placed in the /arduino/www/TemperatureWebPanel folder on your SD card. - - You can then go to http://arduino.local/sd/TemperatureWebPanel - to see the output of this sketch. - - You can remove the SD card while the Linux and the - sketch are running but be careful not to remove it while - the system is writing to it. - - created 6 July 2013 - by Tom Igoe - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/TemperatureWebPanel - - */ - -#include -#include -#include - -// Listen on default port 5555, the webserver on the Yún -// will forward there all the HTTP requests for us. -BridgeServer server; -String startString; -long hits = 0; - -void setup() { - Serial.begin(9600); - - // Bridge startup - pinMode(13, OUTPUT); - digitalWrite(13, LOW); - Bridge.begin(); - digitalWrite(13, HIGH); - - // using A0 and A2 as vcc and gnd for the TMP36 sensor: - pinMode(A0, OUTPUT); - pinMode(A2, OUTPUT); - digitalWrite(A0, HIGH); - digitalWrite(A2, LOW); - - // Listen for incoming connection only from localhost - // (no one from the external network could connect) - server.listenOnLocalhost(); - server.begin(); - - // get the time that this sketch started: - Process startTime; - startTime.runShellCommand("date"); - while (startTime.available()) { - char c = startTime.read(); - startString += c; - } -} - -void loop() { - // Get clients coming from server - BridgeClient client = server.accept(); - - // There is a new client? - if (client) { - // read the command - String command = client.readString(); - command.trim(); //kill whitespace - Serial.println(command); - // is "temperature" command? - if (command == "temperature") { - - // get the time from the server: - Process time; - time.runShellCommand("date"); - String timeString = ""; - while (time.available()) { - char c = time.read(); - timeString += c; - } - Serial.println(timeString); - int sensorValue = analogRead(A1); - // convert the reading to millivolts: - float voltage = sensorValue * (5000.0f / 1024.0f); - // convert the millivolts to temperature celsius: - float temperature = (voltage - 500.0f) / 10.0f; - // print the temperature: - client.print("Current time on the Yún: "); - client.println(timeString); - client.print("
Current temperature: "); - client.print(temperature); - client.print(" °C"); - client.print("
This sketch has been running since "); - client.print(startString); - client.print("
Hits so far: "); - client.print(hits); - } - - // Close connection and free resources. - client.stop(); - hits++; - } - - delay(50); // Poll every 50ms -} - - - diff --git a/libraries/Bridge/examples/TemperatureWebPanel/www/index.html b/libraries/Bridge/examples/TemperatureWebPanel/www/index.html deleted file mode 100644 index c6b674771a5..00000000000 --- a/libraries/Bridge/examples/TemperatureWebPanel/www/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - - - - - - 0 - - - diff --git a/libraries/Bridge/examples/TemperatureWebPanel/www/zepto.min.js b/libraries/Bridge/examples/TemperatureWebPanel/www/zepto.min.js deleted file mode 100644 index dbe4e3c3f89..00000000000 --- a/libraries/Bridge/examples/TemperatureWebPanel/www/zepto.min.js +++ /dev/null @@ -1,2 +0,0 @@ -/* Zepto v1.0-1-ga3cab6c - polyfill zepto detect event ajax form fx - zeptojs.com/license */ -(function(a){String.prototype.trim===a&&(String.prototype.trim=function(){return this.replace(/^\s+|\s+$/g,"")}),Array.prototype.reduce===a&&(Array.prototype.reduce=function(b){if(this===void 0||this===null)throw new TypeError;var c=Object(this),d=c.length>>>0,e=0,f;if(typeof b!="function")throw new TypeError;if(d==0&&arguments.length==1)throw new TypeError;if(arguments.length>=2)f=arguments[1];else do{if(e in c){f=c[e++];break}if(++e>=d)throw new TypeError}while(!0);while(e0?c.fn.concat.apply([],a):a}function O(a){return a.replace(/::/g,"/").replace(/([A-Z]+)([A-Z][a-z])/g,"$1_$2").replace(/([a-z\d])([A-Z])/g,"$1_$2").replace(/_/g,"-").toLowerCase()}function P(a){return a in j?j[a]:j[a]=new RegExp("(^|\\s)"+a+"(\\s|$)")}function Q(a,b){return typeof b=="number"&&!l[O(a)]?b+"px":b}function R(a){var b,c;return i[a]||(b=h.createElement(a),h.body.appendChild(b),c=k(b,"").getPropertyValue("display"),b.parentNode.removeChild(b),c=="none"&&(c="block"),i[a]=c),i[a]}function S(a){return"children"in a?f.call(a.children):c.map(a.childNodes,function(a){if(a.nodeType==1)return a})}function T(c,d,e){for(b in d)e&&(J(d[b])||K(d[b]))?(J(d[b])&&!J(c[b])&&(c[b]={}),K(d[b])&&!K(c[b])&&(c[b]=[]),T(c[b],d[b],e)):d[b]!==a&&(c[b]=d[b])}function U(b,d){return d===a?c(b):c(b).filter(d)}function V(a,b,c,d){return F(b)?b.call(a,c,d):b}function W(a,b,c){c==null?a.removeAttribute(b):a.setAttribute(b,c)}function X(b,c){var d=b.className,e=d&&d.baseVal!==a;if(c===a)return e?d.baseVal:d;e?d.baseVal=c:b.className=c}function Y(a){var b;try{return a?a=="true"||(a=="false"?!1:a=="null"?null:isNaN(b=Number(a))?/^[\[\{]/.test(a)?c.parseJSON(a):a:b):a}catch(d){return a}}function Z(a,b){b(a);for(var c in a.childNodes)Z(a.childNodes[c],b)}var a,b,c,d,e=[],f=e.slice,g=e.filter,h=window.document,i={},j={},k=h.defaultView.getComputedStyle,l={"column-count":1,columns:1,"font-weight":1,"line-height":1,opacity:1,"z-index":1,zoom:1},m=/^\s*<(\w+|!)[^>]*>/,n=/<(?!area|br|col|embed|hr|img|input|link|meta|param)(([\w:]+)[^>]*)\/>/ig,o=/^(?:body|html)$/i,p=["val","css","html","text","data","width","height","offset"],q=["after","prepend","before","append"],r=h.createElement("table"),s=h.createElement("tr"),t={tr:h.createElement("tbody"),tbody:r,thead:r,tfoot:r,td:s,th:s,"*":h.createElement("div")},u=/complete|loaded|interactive/,v=/^\.([\w-]+)$/,w=/^#([\w-]*)$/,x=/^[\w-]+$/,y={},z=y.toString,A={},B,C,D=h.createElement("div");return A.matches=function(a,b){if(!a||a.nodeType!==1)return!1;var c=a.webkitMatchesSelector||a.mozMatchesSelector||a.oMatchesSelector||a.matchesSelector;if(c)return c.call(a,b);var d,e=a.parentNode,f=!e;return f&&(e=D).appendChild(a),d=~A.qsa(e,b).indexOf(a),f&&D.removeChild(a),d},B=function(a){return a.replace(/-+(.)?/g,function(a,b){return b?b.toUpperCase():""})},C=function(a){return g.call(a,function(b,c){return a.indexOf(b)==c})},A.fragment=function(b,d,e){b.replace&&(b=b.replace(n,"<$1>")),d===a&&(d=m.test(b)&&RegExp.$1),d in t||(d="*");var g,h,i=t[d];return i.innerHTML=""+b,h=c.each(f.call(i.childNodes),function(){i.removeChild(this)}),J(e)&&(g=c(h),c.each(e,function(a,b){p.indexOf(a)>-1?g[a](b):g.attr(a,b)})),h},A.Z=function(a,b){return a=a||[],a.__proto__=c.fn,a.selector=b||"",a},A.isZ=function(a){return a instanceof A.Z},A.init=function(b,d){if(!b)return A.Z();if(F(b))return c(h).ready(b);if(A.isZ(b))return b;var e;if(K(b))e=M(b);else if(I(b))e=[J(b)?c.extend({},b):b],b=null;else if(m.test(b))e=A.fragment(b.trim(),RegExp.$1,d),b=null;else{if(d!==a)return c(d).find(b);e=A.qsa(h,b)}return A.Z(e,b)},c=function(a,b){return A.init(a,b)},c.extend=function(a){var b,c=f.call(arguments,1);return typeof a=="boolean"&&(b=a,a=c.shift()),c.forEach(function(c){T(a,c,b)}),a},A.qsa=function(a,b){var c;return H(a)&&w.test(b)?(c=a.getElementById(RegExp.$1))?[c]:[]:a.nodeType!==1&&a.nodeType!==9?[]:f.call(v.test(b)?a.getElementsByClassName(RegExp.$1):x.test(b)?a.getElementsByTagName(b):a.querySelectorAll(b))},c.contains=function(a,b){return a!==b&&a.contains(b)},c.type=E,c.isFunction=F,c.isWindow=G,c.isArray=K,c.isPlainObject=J,c.isEmptyObject=function(a){var b;for(b in a)return!1;return!0},c.inArray=function(a,b,c){return e.indexOf.call(b,a,c)},c.camelCase=B,c.trim=function(a){return a.trim()},c.uuid=0,c.support={},c.expr={},c.map=function(a,b){var c,d=[],e,f;if(L(a))for(e=0;e=0?b:b+this.length]},toArray:function(){return this.get()},size:function(){return this.length},remove:function(){return this.each(function(){this.parentNode!=null&&this.parentNode.removeChild(this)})},each:function(a){return e.every.call(this,function(b,c){return a.call(b,c,b)!==!1}),this},filter:function(a){return F(a)?this.not(this.not(a)):c(g.call(this,function(b){return A.matches(b,a)}))},add:function(a,b){return c(C(this.concat(c(a,b))))},is:function(a){return this.length>0&&A.matches(this[0],a)},not:function(b){var d=[];if(F(b)&&b.call!==a)this.each(function(a){b.call(this,a)||d.push(this)});else{var e=typeof b=="string"?this.filter(b):L(b)&&F(b.item)?f.call(b):c(b);this.forEach(function(a){e.indexOf(a)<0&&d.push(a)})}return c(d)},has:function(a){return this.filter(function(){return I(a)?c.contains(this,a):c(this).find(a).size()})},eq:function(a){return a===-1?this.slice(a):this.slice(a,+a+1)},first:function(){var a=this[0];return a&&!I(a)?a:c(a)},last:function(){var a=this[this.length-1];return a&&!I(a)?a:c(a)},find:function(a){var b,d=this;return typeof a=="object"?b=c(a).filter(function(){var a=this;return e.some.call(d,function(b){return c.contains(b,a)})}):this.length==1?b=c(A.qsa(this[0],a)):b=this.map(function(){return A.qsa(this,a)}),b},closest:function(a,b){var d=this[0],e=!1;typeof a=="object"&&(e=c(a));while(d&&!(e?e.indexOf(d)>=0:A.matches(d,a)))d=d!==b&&!H(d)&&d.parentNode;return c(d)},parents:function(a){var b=[],d=this;while(d.length>0)d=c.map(d,function(a){if((a=a.parentNode)&&!H(a)&&b.indexOf(a)<0)return b.push(a),a});return U(b,a)},parent:function(a){return U(C(this.pluck("parentNode")),a)},children:function(a){return U(this.map(function(){return S(this)}),a)},contents:function(){return this.map(function(){return f.call(this.childNodes)})},siblings:function(a){return U(this.map(function(a,b){return g.call(S(b.parentNode),function(a){return a!==b})}),a)},empty:function(){return this.each(function(){this.innerHTML=""})},pluck:function(a){return c.map(this,function(b){return b[a]})},show:function(){return this.each(function(){this.style.display=="none"&&(this.style.display=null),k(this,"").getPropertyValue("display")=="none"&&(this.style.display=R(this.nodeName))})},replaceWith:function(a){return this.before(a).remove()},wrap:function(a){var b=F(a);if(this[0]&&!b)var d=c(a).get(0),e=d.parentNode||this.length>1;return this.each(function(f){c(this).wrapAll(b?a.call(this,f):e?d.cloneNode(!0):d)})},wrapAll:function(a){if(this[0]){c(this[0]).before(a=c(a));var b;while((b=a.children()).length)a=b.first();c(a).append(this)}return this},wrapInner:function(a){var b=F(a);return this.each(function(d){var e=c(this),f=e.contents(),g=b?a.call(this,d):a;f.length?f.wrapAll(g):e.append(g)})},unwrap:function(){return this.parent().each(function(){c(this).replaceWith(c(this).children())}),this},clone:function(){return this.map(function(){return this.cloneNode(!0)})},hide:function(){return this.css("display","none")},toggle:function(b){return this.each(function(){var d=c(this);(b===a?d.css("display")=="none":b)?d.show():d.hide()})},prev:function(a){return c(this.pluck("previousElementSibling")).filter(a||"*")},next:function(a){return c(this.pluck("nextElementSibling")).filter(a||"*")},html:function(b){return b===a?this.length>0?this[0].innerHTML:null:this.each(function(a){var d=this.innerHTML;c(this).empty().append(V(this,b,a,d))})},text:function(b){return b===a?this.length>0?this[0].textContent:null:this.each(function(){this.textContent=b})},attr:function(c,d){var e;return typeof c=="string"&&d===a?this.length==0||this[0].nodeType!==1?a:c=="value"&&this[0].nodeName=="INPUT"?this.val():!(e=this[0].getAttribute(c))&&c in this[0]?this[0][c]:e:this.each(function(a){if(this.nodeType!==1)return;if(I(c))for(b in c)W(this,b,c[b]);else W(this,c,V(this,d,a,this.getAttribute(c)))})},removeAttr:function(a){return this.each(function(){this.nodeType===1&&W(this,a)})},prop:function(b,c){return c===a?this[0]&&this[0][b]:this.each(function(a){this[b]=V(this,c,a,this[b])})},data:function(b,c){var d=this.attr("data-"+O(b),c);return d!==null?Y(d):a},val:function(b){return b===a?this[0]&&(this[0].multiple?c(this[0]).find("option").filter(function(a){return this.selected}).pluck("value"):this[0].value):this.each(function(a){this.value=V(this,b,a,this.value)})},offset:function(a){if(a)return this.each(function(b){var d=c(this),e=V(this,a,b,d.offset()),f=d.offsetParent().offset(),g={top:e.top-f.top,left:e.left-f.left};d.css("position")=="static"&&(g.position="relative"),d.css(g)});if(this.length==0)return null;var b=this[0].getBoundingClientRect();return{left:b.left+window.pageXOffset,top:b.top+window.pageYOffset,width:Math.round(b.width),height:Math.round(b.height)}},css:function(a,c){if(arguments.length<2&&typeof a=="string")return this[0]&&(this[0].style[B(a)]||k(this[0],"").getPropertyValue(a));var d="";if(E(a)=="string")!c&&c!==0?this.each(function(){this.style.removeProperty(O(a))}):d=O(a)+":"+Q(a,c);else for(b in a)!a[b]&&a[b]!==0?this.each(function(){this.style.removeProperty(O(b))}):d+=O(b)+":"+Q(b,a[b])+";";return this.each(function(){this.style.cssText+=";"+d})},index:function(a){return a?this.indexOf(c(a)[0]):this.parent().children().indexOf(this[0])},hasClass:function(a){return e.some.call(this,function(a){return this.test(X(a))},P(a))},addClass:function(a){return this.each(function(b){d=[];var e=X(this),f=V(this,a,b,e);f.split(/\s+/g).forEach(function(a){c(this).hasClass(a)||d.push(a)},this),d.length&&X(this,e+(e?" ":"")+d.join(" "))})},removeClass:function(b){return this.each(function(c){if(b===a)return X(this,"");d=X(this),V(this,b,c,d).split(/\s+/g).forEach(function(a){d=d.replace(P(a)," ")}),X(this,d.trim())})},toggleClass:function(b,d){return this.each(function(e){var f=c(this),g=V(this,b,e,X(this));g.split(/\s+/g).forEach(function(b){(d===a?!f.hasClass(b):d)?f.addClass(b):f.removeClass(b)})})},scrollTop:function(){if(!this.length)return;return"scrollTop"in this[0]?this[0].scrollTop:this[0].scrollY},position:function(){if(!this.length)return;var a=this[0],b=this.offsetParent(),d=this.offset(),e=o.test(b[0].nodeName)?{top:0,left:0}:b.offset();return d.top-=parseFloat(c(a).css("margin-top"))||0,d.left-=parseFloat(c(a).css("margin-left"))||0,e.top+=parseFloat(c(b[0]).css("border-top-width"))||0,e.left+=parseFloat(c(b[0]).css("border-left-width"))||0,{top:d.top-e.top,left:d.left-e.left}},offsetParent:function(){return this.map(function(){var a=this.offsetParent||h.body;while(a&&!o.test(a.nodeName)&&c(a).css("position")=="static")a=a.offsetParent;return a})}},c.fn.detach=c.fn.remove,["width","height"].forEach(function(b){c.fn[b]=function(d){var e,f=this[0],g=b.replace(/./,function(a){return a[0].toUpperCase()});return d===a?G(f)?f["inner"+g]:H(f)?f.documentElement["offset"+g]:(e=this.offset())&&e[b]:this.each(function(a){f=c(this),f.css(b,V(this,d,a,f[b]()))})}}),q.forEach(function(a,b){var d=b%2;c.fn[a]=function(){var a,e=c.map(arguments,function(b){return a=E(b),a=="object"||a=="array"||b==null?b:A.fragment(b)}),f,g=this.length>1;return e.length<1?this:this.each(function(a,h){f=d?h:h.parentNode,h=b==0?h.nextSibling:b==1?h.firstChild:b==2?h:null,e.forEach(function(a){if(g)a=a.cloneNode(!0);else if(!f)return c(a).remove();Z(f.insertBefore(a,h),function(a){a.nodeName!=null&&a.nodeName.toUpperCase()==="SCRIPT"&&(!a.type||a.type==="text/javascript")&&!a.src&&window.eval.call(window,a.innerHTML)})})})},c.fn[d?a+"To":"insert"+(b?"Before":"After")]=function(b){return c(b)[a](this),this}}),A.Z.prototype=c.fn,A.uniq=C,A.deserializeValue=Y,c.zepto=A,c}();window.Zepto=Zepto,"$"in window||(window.$=Zepto),function(a){function b(a){var b=this.os={},c=this.browser={},d=a.match(/WebKit\/([\d.]+)/),e=a.match(/(Android)\s+([\d.]+)/),f=a.match(/(iPad).*OS\s([\d_]+)/),g=!f&&a.match(/(iPhone\sOS)\s([\d_]+)/),h=a.match(/(webOS|hpwOS)[\s\/]([\d.]+)/),i=h&&a.match(/TouchPad/),j=a.match(/Kindle\/([\d.]+)/),k=a.match(/Silk\/([\d._]+)/),l=a.match(/(BlackBerry).*Version\/([\d.]+)/),m=a.match(/(BB10).*Version\/([\d.]+)/),n=a.match(/(RIM\sTablet\sOS)\s([\d.]+)/),o=a.match(/PlayBook/),p=a.match(/Chrome\/([\d.]+)/)||a.match(/CriOS\/([\d.]+)/),q=a.match(/Firefox\/([\d.]+)/);if(c.webkit=!!d)c.version=d[1];e&&(b.android=!0,b.version=e[2]),g&&(b.ios=b.iphone=!0,b.version=g[2].replace(/_/g,".")),f&&(b.ios=b.ipad=!0,b.version=f[2].replace(/_/g,".")),h&&(b.webos=!0,b.version=h[2]),i&&(b.touchpad=!0),l&&(b.blackberry=!0,b.version=l[2]),m&&(b.bb10=!0,b.version=m[2]),n&&(b.rimtabletos=!0,b.version=n[2]),o&&(c.playbook=!0),j&&(b.kindle=!0,b.version=j[1]),k&&(c.silk=!0,c.version=k[1]),!k&&b.android&&a.match(/Kindle Fire/)&&(c.silk=!0),p&&(c.chrome=!0,c.version=p[1]),q&&(c.firefox=!0,c.version=q[1]),b.tablet=!!(f||o||e&&!a.match(/Mobile/)||q&&a.match(/Tablet/)),b.phone=!b.tablet&&!!(e||g||h||l||m||p&&a.match(/Android/)||p&&a.match(/CriOS\/([\d.]+)/)||q&&a.match(/Mobile/))}b.call(a,navigator.userAgent),a.__detect=b}(Zepto),function(a){function g(a){return a._zid||(a._zid=d++)}function h(a,b,d,e){b=i(b);if(b.ns)var f=j(b.ns);return(c[g(a)]||[]).filter(function(a){return a&&(!b.e||a.e==b.e)&&(!b.ns||f.test(a.ns))&&(!d||g(a.fn)===g(d))&&(!e||a.sel==e)})}function i(a){var b=(""+a).split(".");return{e:b[0],ns:b.slice(1).sort().join(" ")}}function j(a){return new RegExp("(?:^| )"+a.replace(" "," .* ?")+"(?: |$)")}function k(b,c,d){a.type(b)!="string"?a.each(b,d):b.split(/\s/).forEach(function(a){d(a,c)})}function l(a,b){return a.del&&(a.e=="focus"||a.e=="blur")||!!b}function m(a){return f[a]||a}function n(b,d,e,h,j,n){var o=g(b),p=c[o]||(c[o]=[]);k(d,e,function(c,d){var e=i(c);e.fn=d,e.sel=h,e.e in f&&(d=function(b){var c=b.relatedTarget;if(!c||c!==this&&!a.contains(this,c))return e.fn.apply(this,arguments)}),e.del=j&&j(d,c);var g=e.del||d;e.proxy=function(a){var c=g.apply(b,[a].concat(a.data));return c===!1&&(a.preventDefault(),a.stopPropagation()),c},e.i=p.length,p.push(e),b.addEventListener(m(e.e),e.proxy,l(e,n))})}function o(a,b,d,e,f){var i=g(a);k(b||"",d,function(b,d){h(a,b,d,e).forEach(function(b){delete c[i][b.i],a.removeEventListener(m(b.e),b.proxy,l(b,f))})})}function t(b){var c,d={originalEvent:b};for(c in b)!r.test(c)&&b[c]!==undefined&&(d[c]=b[c]);return a.each(s,function(a,c){d[a]=function(){return this[c]=p,b[a].apply(b,arguments)},d[c]=q}),d}function u(a){if(!("defaultPrevented"in a)){a.defaultPrevented=!1;var b=a.preventDefault;a.preventDefault=function(){this.defaultPrevented=!0,b.call(this)}}}var b=a.zepto.qsa,c={},d=1,e={},f={mouseenter:"mouseover",mouseleave:"mouseout"};e.click=e.mousedown=e.mouseup=e.mousemove="MouseEvents",a.event={add:n,remove:o},a.proxy=function(b,c){if(a.isFunction(b)){var d=function(){return b.apply(c,arguments)};return d._zid=g(b),d}if(typeof c=="string")return a.proxy(b[c],b);throw new TypeError("expected function")},a.fn.bind=function(a,b){return this.each(function(){n(this,a,b)})},a.fn.unbind=function(a,b){return this.each(function(){o(this,a,b)})},a.fn.one=function(a,b){return this.each(function(c,d){n(this,a,b,null,function(a,b){return function(){var c=a.apply(d,arguments);return o(d,b,a),c}})})};var p=function(){return!0},q=function(){return!1},r=/^([A-Z]|layer[XY]$)/,s={preventDefault:"isDefaultPrevented",stopImmediatePropagation:"isImmediatePropagationStopped",stopPropagation:"isPropagationStopped"};a.fn.delegate=function(b,c,d){return this.each(function(e,f){n(f,c,d,b,function(c){return function(d){var e,g=a(d.target).closest(b,f).get(0);if(g)return e=a.extend(t(d),{currentTarget:g,liveFired:f}),c.apply(g,[e].concat([].slice.call(arguments,1)))}})})},a.fn.undelegate=function(a,b,c){return this.each(function(){o(this,b,c,a)})},a.fn.live=function(b,c){return a(document.body).delegate(this.selector,b,c),this},a.fn.die=function(b,c){return a(document.body).undelegate(this.selector,b,c),this},a.fn.on=function(b,c,d){return!c||a.isFunction(c)?this.bind(b,c||d):this.delegate(c,b,d)},a.fn.off=function(b,c,d){return!c||a.isFunction(c)?this.unbind(b,c||d):this.undelegate(c,b,d)},a.fn.trigger=function(b,c){if(typeof b=="string"||a.isPlainObject(b))b=a.Event(b);return u(b),b.data=c,this.each(function(){"dispatchEvent"in this&&this.dispatchEvent(b)})},a.fn.triggerHandler=function(b,c){var d,e;return this.each(function(f,g){d=t(typeof b=="string"?a.Event(b):b),d.data=c,d.target=g,a.each(h(g,b.type||b),function(a,b){e=b.proxy(d);if(d.isImmediatePropagationStopped())return!1})}),e},"focusin focusout load resize scroll unload click dblclick mousedown mouseup mousemove mouseover mouseout mouseenter mouseleave change select keydown keypress keyup error".split(" ").forEach(function(b){a.fn[b]=function(a){return a?this.bind(b,a):this.trigger(b)}}),["focus","blur"].forEach(function(b){a.fn[b]=function(a){return a?this.bind(b,a):this.each(function(){try{this[b]()}catch(a){}}),this}}),a.Event=function(a,b){typeof a!="string"&&(b=a,a=b.type);var c=document.createEvent(e[a]||"Events"),d=!0;if(b)for(var f in b)f=="bubbles"?d=!!b[f]:c[f]=b[f];return c.initEvent(a,d,!0,null,null,null,null,null,null,null,null,null,null,null,null),c.isDefaultPrevented=function(){return this.defaultPrevented},c}}(Zepto),function($){function triggerAndReturn(a,b,c){var d=$.Event(b);return $(a).trigger(d,c),!d.defaultPrevented}function triggerGlobal(a,b,c,d){if(a.global)return triggerAndReturn(b||document,c,d)}function ajaxStart(a){a.global&&$.active++===0&&triggerGlobal(a,null,"ajaxStart")}function ajaxStop(a){a.global&&!--$.active&&triggerGlobal(a,null,"ajaxStop")}function ajaxBeforeSend(a,b){var c=b.context;if(b.beforeSend.call(c,a,b)===!1||triggerGlobal(b,c,"ajaxBeforeSend",[a,b])===!1)return!1;triggerGlobal(b,c,"ajaxSend",[a,b])}function ajaxSuccess(a,b,c){var d=c.context,e="success";c.success.call(d,a,e,b),triggerGlobal(c,d,"ajaxSuccess",[b,c,a]),ajaxComplete(e,b,c)}function ajaxError(a,b,c,d){var e=d.context;d.error.call(e,c,b,a),triggerGlobal(d,e,"ajaxError",[c,d,a]),ajaxComplete(b,c,d)}function ajaxComplete(a,b,c){var d=c.context;c.complete.call(d,b,a),triggerGlobal(c,d,"ajaxComplete",[b,c]),ajaxStop(c)}function empty(){}function mimeToDataType(a){return a&&(a=a.split(";",2)[0]),a&&(a==htmlType?"html":a==jsonType?"json":scriptTypeRE.test(a)?"script":xmlTypeRE.test(a)&&"xml")||"text"}function appendQuery(a,b){return(a+"&"+b).replace(/[&?]{1,2}/,"?")}function serializeData(a){a.processData&&a.data&&$.type(a.data)!="string"&&(a.data=$.param(a.data,a.traditional)),a.data&&(!a.type||a.type.toUpperCase()=="GET")&&(a.url=appendQuery(a.url,a.data))}function parseArguments(a,b,c,d){var e=!$.isFunction(b);return{url:a,data:e?b:undefined,success:e?$.isFunction(c)?c:undefined:b,dataType:e?d||c:c}}function serialize(a,b,c,d){var e,f=$.isArray(b);$.each(b,function(b,g){e=$.type(g),d&&(b=c?d:d+"["+(f?"":b)+"]"),!d&&f?a.add(g.name,g.value):e=="array"||!c&&e=="object"?serialize(a,g,c,b):a.add(b,g)})}var jsonpID=0,document=window.document,key,name,rscript=/)<[^<]*)*<\/script>/gi,scriptTypeRE=/^(?:text|application)\/javascript/i,xmlTypeRE=/^(?:text|application)\/xml/i,jsonType="application/json",htmlType="text/html",blankRE=/^\s*$/;$.active=0,$.ajaxJSONP=function(a){if("type"in a){var b="jsonp"+ ++jsonpID,c=document.createElement("script"),d=function(){clearTimeout(g),$(c).remove(),delete window[b]},e=function(c){d();if(!c||c=="timeout")window[b]=empty;ajaxError(null,c||"abort",f,a)},f={abort:e},g;return ajaxBeforeSend(f,a)===!1?(e("abort"),!1):(window[b]=function(b){d(),ajaxSuccess(b,f,a)},c.onerror=function(){e("error")},c.src=a.url.replace(/=\?/,"="+b),$("head").append(c),a.timeout>0&&(g=setTimeout(function(){e("timeout")},a.timeout)),f)}return $.ajax(a)},$.ajaxSettings={type:"GET",beforeSend:empty,success:empty,error:empty,complete:empty,context:null,global:!0,xhr:function(){return new window.XMLHttpRequest},accepts:{script:"text/javascript, application/javascript",json:jsonType,xml:"application/xml, text/xml",html:htmlType,text:"text/plain"},crossDomain:!1,timeout:0,processData:!0,cache:!0},$.ajax=function(options){var settings=$.extend({},options||{});for(key in $.ajaxSettings)settings[key]===undefined&&(settings[key]=$.ajaxSettings[key]);ajaxStart(settings),settings.crossDomain||(settings.crossDomain=/^([\w-]+:)?\/\/([^\/]+)/.test(settings.url)&&RegExp.$2!=window.location.host),settings.url||(settings.url=window.location.toString()),serializeData(settings),settings.cache===!1&&(settings.url=appendQuery(settings.url,"_="+Date.now()));var dataType=settings.dataType,hasPlaceholder=/=\?/.test(settings.url);if(dataType=="jsonp"||hasPlaceholder)return hasPlaceholder||(settings.url=appendQuery(settings.url,"callback=?")),$.ajaxJSONP(settings);var mime=settings.accepts[dataType],baseHeaders={},protocol=/^([\w-]+:)\/\//.test(settings.url)?RegExp.$1:window.location.protocol,xhr=settings.xhr(),abortTimeout;settings.crossDomain||(baseHeaders["X-Requested-With"]="XMLHttpRequest"),mime&&(baseHeaders.Accept=mime,mime.indexOf(",")>-1&&(mime=mime.split(",",2)[0]),xhr.overrideMimeType&&xhr.overrideMimeType(mime));if(settings.contentType||settings.contentType!==!1&&settings.data&&settings.type.toUpperCase()!="GET")baseHeaders["Content-Type"]=settings.contentType||"application/x-www-form-urlencoded";settings.headers=$.extend(baseHeaders,settings.headers||{}),xhr.onreadystatechange=function(){if(xhr.readyState==4){xhr.onreadystatechange=empty,clearTimeout(abortTimeout);var result,error=!1;if(xhr.status>=200&&xhr.status<300||xhr.status==304||xhr.status==0&&protocol=="file:"){dataType=dataType||mimeToDataType(xhr.getResponseHeader("content-type")),result=xhr.responseText;try{dataType=="script"?(1,eval)(result):dataType=="xml"?result=xhr.responseXML:dataType=="json"&&(result=blankRE.test(result)?null:$.parseJSON(result))}catch(e){error=e}error?ajaxError(error,"parsererror",xhr,settings):ajaxSuccess(result,xhr,settings)}else ajaxError(null,xhr.status?"error":"abort",xhr,settings)}};var async="async"in settings?settings.async:!0;xhr.open(settings.type,settings.url,async);for(name in settings.headers)xhr.setRequestHeader(name,settings.headers[name]);return ajaxBeforeSend(xhr,settings)===!1?(xhr.abort(),!1):(settings.timeout>0&&(abortTimeout=setTimeout(function(){xhr.onreadystatechange=empty,xhr.abort(),ajaxError(null,"timeout",xhr,settings)},settings.timeout)),xhr.send(settings.data?settings.data:null),xhr)},$.get=function(a,b,c,d){return $.ajax(parseArguments.apply(null,arguments))},$.post=function(a,b,c,d){var e=parseArguments.apply(null,arguments);return e.type="POST",$.ajax(e)},$.getJSON=function(a,b,c){var d=parseArguments.apply(null,arguments);return d.dataType="json",$.ajax(d)},$.fn.load=function(a,b,c){if(!this.length)return this;var d=this,e=a.split(/\s/),f,g=parseArguments(a,b,c),h=g.success;return e.length>1&&(g.url=e[0],f=e[1]),g.success=function(a){d.html(f?$("

").html(a.replace(rscript,"")).find(f):a),h&&h.apply(d,arguments)},$.ajax(g),this};var escape=encodeURIComponent;$.param=function(a,b){var c=[];return c.add=function(a,b){this.push(escape(a)+"="+escape(b))},serialize(c,a,b),c.join("&").replace(/%20/g,"+")}}(Zepto),function(a){a.fn.serializeArray=function(){var b=[],c;return a(Array.prototype.slice.call(this.get(0).elements)).each(function(){c=a(this);var d=c.attr("type");this.nodeName.toLowerCase()!="fieldset"&&!this.disabled&&d!="submit"&&d!="reset"&&d!="button"&&(d!="radio"&&d!="checkbox"||this.checked)&&b.push({name:c.attr("name"),value:c.val()})}),b},a.fn.serialize=function(){var a=[];return this.serializeArray().forEach(function(b){a.push(encodeURIComponent(b.name)+"="+encodeURIComponent(b.value))}),a.join("&")},a.fn.submit=function(b){if(b)this.bind("submit",b);else if(this.length){var c=a.Event("submit");this.eq(0).trigger(c),c.defaultPrevented||this.get(0).submit()}return this}}(Zepto),function(a,b){function s(a){return t(a.replace(/([a-z])([A-Z])/,"$1-$2"))}function t(a){return a.toLowerCase()}function u(a){return d?d+a:t(a)}var c="",d,e,f,g={Webkit:"webkit",Moz:"",O:"o",ms:"MS"},h=window.document,i=h.createElement("div"),j=/^((translate|rotate|scale)(X|Y|Z|3d)?|matrix(3d)?|perspective|skew(X|Y)?)$/i,k,l,m,n,o,p,q,r={};a.each(g,function(a,e){if(i.style[a+"TransitionProperty"]!==b)return c="-"+t(a)+"-",d=e,!1}),k=c+"transform",r[l=c+"transition-property"]=r[m=c+"transition-duration"]=r[n=c+"transition-timing-function"]=r[o=c+"animation-name"]=r[p=c+"animation-duration"]=r[q=c+"animation-timing-function"]="",a.fx={off:d===b&&i.style.transitionProperty===b,speeds:{_default:400,fast:200,slow:600},cssPrefix:c,transitionEnd:u("TransitionEnd"),animationEnd:u("AnimationEnd")},a.fn.animate=function(b,c,d,e){return a.isPlainObject(c)&&(d=c.easing,e=c.complete,c=c.duration),c&&(c=(typeof c=="number"?c:a.fx.speeds[c]||a.fx.speeds._default)/1e3),this.anim(b,c,d,e)},a.fn.anim=function(c,d,e,f){var g,h={},i,t="",u=this,v,w=a.fx.transitionEnd;d===b&&(d=.4),a.fx.off&&(d=0);if(typeof c=="string")h[o]=c,h[p]=d+"s",h[q]=e||"linear",w=a.fx.animationEnd;else{i=[];for(g in c)j.test(g)?t+=g+"("+c[g]+") ":(h[g]=c[g],i.push(s(g)));t&&(h[k]=t,i.push(k)),d>0&&typeof c=="object"&&(h[l]=i.join(", "),h[m]=d+"s",h[n]=e||"linear")}return v=function(b){if(typeof b!="undefined"){if(b.target!==b.currentTarget)return;a(b.target).unbind(w,v)}a(this).css(r),f&&f.call(this)},d>0&&this.bind(w,v),this.size()&&this.get(0).clientLeft,this.css(h),d<=0&&setTimeout(function(){u.each(function(){v.call(this)})},0),this},i=null}(Zepto) diff --git a/libraries/Bridge/examples/TimeCheck/TimeCheck.ino b/libraries/Bridge/examples/TimeCheck/TimeCheck.ino deleted file mode 100644 index fcb2d50e4cd..00000000000 --- a/libraries/Bridge/examples/TimeCheck/TimeCheck.ino +++ /dev/null @@ -1,88 +0,0 @@ -/* - Time Check - - Gets the time from Linux via Bridge then parses out hours, - minutes and seconds for the Arduino using an Arduino Yún. - - created 27 May 2013 - modified 21 June 2013 - By Tom Igoe - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/TimeCheck - - */ - - -#include - -Process date; // process used to get the date -int hours, minutes, seconds; // for the results -int lastSecond = -1; // need an impossible value for comparison - -void setup() { - Bridge.begin(); // initialize Bridge - Serial.begin(9600); // initialize serial - - while (!Serial); // wait for Serial Monitor to open - Serial.println("Time Check"); // Title of sketch - - // run an initial date process. Should return: - // hh:mm:ss : - if (!date.running()) { - date.begin("date"); - date.addParameter("+%T"); - date.run(); - } -} - -void loop() { - - if (lastSecond != seconds) { // if a second has passed - // print the time: - if (hours <= 9) { - Serial.print("0"); // adjust for 0-9 - } - Serial.print(hours); - Serial.print(":"); - if (minutes <= 9) { - Serial.print("0"); // adjust for 0-9 - } - Serial.print(minutes); - Serial.print(":"); - if (seconds <= 9) { - Serial.print("0"); // adjust for 0-9 - } - Serial.println(seconds); - - // restart the date process: - if (!date.running()) { - date.begin("date"); - date.addParameter("+%T"); - date.run(); - } - } - - //if there's a result from the date process, parse it: - while (date.available() > 0) { - // get the result of the date process (should be hh:mm:ss): - String timeString = date.readString(); - - // find the colons: - int firstColon = timeString.indexOf(":"); - int secondColon = timeString.lastIndexOf(":"); - - // get the substrings for hour, minute second: - String hourString = timeString.substring(0, firstColon); - String minString = timeString.substring(firstColon + 1, secondColon); - String secString = timeString.substring(secondColon + 1); - - // convert to ints,saving the previous second: - hours = hourString.toInt(); - minutes = minString.toInt(); - lastSecond = seconds; // save to do a time comparison - seconds = secString.toInt(); - } - -} diff --git a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino b/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino deleted file mode 100644 index fb4126978aa..00000000000 --- a/libraries/Bridge/examples/WiFiStatus/WiFiStatus.ino +++ /dev/null @@ -1,52 +0,0 @@ -/* - WiFi Status - - This sketch runs a script called "pretty-wifi-info.lua" - installed on your Yún in folder /usr/bin. - It prints information about the status of your wifi connection. - - It uses Serial to print, so you need to connect your Yún to your - computer using a USB cable and select the appropriate port from - the Port menu - - created 18 June 2013 - By Federico Fissore - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/YunWiFiStatus - - */ - -#include - -void setup() { - Serial.begin(9600); // initialize serial communication - while (!Serial); // do nothing until the serial monitor is opened - - Serial.println("Starting bridge...\n"); - pinMode(13, OUTPUT); - digitalWrite(13, LOW); - Bridge.begin(); // make contact with the linux processor - digitalWrite(13, HIGH); // Led on pin 13 turns on when the bridge is ready - - delay(2000); // wait 2 seconds -} - -void loop() { - Process wifiCheck; // initialize a new process - - wifiCheck.runShellCommand("/usr/bin/pretty-wifi-info.lua"); // command you want to run - - // while there's any characters coming back from the - // process, print them to the serial monitor: - while (wifiCheck.available() > 0) { - char c = wifiCheck.read(); - Serial.print(c); - } - - Serial.println(); - - delay(5000); -} - diff --git a/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino b/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino deleted file mode 100644 index ca427e192c7..00000000000 --- a/libraries/Bridge/examples/YunSerialTerminal/YunSerialTerminal.ino +++ /dev/null @@ -1,83 +0,0 @@ -/* - Arduino Yún USB-to-Serial - - Allows you to use the Yún's 32U4 processor as a - serial terminal for the Linux side on the Yún. - - Upload this to an Arduino Yún via serial (not WiFi) then open - the serial monitor at 115200 to see the boot process of Linux. - You can also use the serial monitor as a basic command line - interface for Linux using this sketch. - - From the serial monitor the following commands can be issued: - - '~' followed by '0' -> Set the UART speed to 57600 baud - '~' followed by '1' -> Set the UART speed to 115200 baud - '~' followed by '2' -> Set the UART speed to 250000 baud - '~' followed by '3' -> Set the UART speed to 500000 baud - '~' followed by '~' -> Sends the bridge's shutdown command to - obtain the console. - - The circuit: - Arduino Yún - - created March 2013 - by Massimo Banzi - modified by Cristian Maglie - - This example code is in the public domain. - - http://www.arduino.cc/en/Tutorial/YunSerialTerminal - -*/ - - -long linuxBaud = 250000; - -void setup() { - Serial.begin(115200); // open serial connection via USB-Serial - Serial1.begin(linuxBaud); // open serial connection to Linux -} - -boolean commandMode = false; - -void loop() { - // copy from USB-CDC to UART - int c = Serial.read(); // read from USB-CDC - if (c != -1) { // got anything? - if (commandMode == false) { // if we aren't in command mode... - if (c == '~') { // Tilde '~' key pressed? - commandMode = true; // enter in command mode - } else { - Serial1.write(c); // otherwise write char to UART - } - } else { // if we are in command mode... - if (c == '0') { // '0' key pressed? - Serial1.begin(57600); // set speed to 57600 - Serial.println("Speed set to 57600"); - } else if (c == '1') { // '1' key pressed? - Serial1.begin(115200); // set speed to 115200 - Serial.println("Speed set to 115200"); - } else if (c == '2') { // '2' key pressed? - Serial1.begin(250000); // set speed to 250000 - Serial.println("Speed set to 250000"); - } else if (c == '3') { // '3' key pressed? - Serial1.begin(500000); // set speed to 500000 - Serial.println("Speed set to 500000"); - } else if (c == '~') { // '~` key pressed? - Serial1.write((uint8_t *)"\xff\0\0\x05XXXXX\x7f\xf9", 11); // send "bridge shutdown" command - Serial.println("Sending bridge's shutdown command"); - } else { // any other key pressed? - Serial1.write('~'); // write '~' to UART - Serial1.write(c); // write char to UART - } - commandMode = false; // in all cases exit from command mode - } - } - - // copy from UART to USB-CDC - c = Serial1.read(); // read from UART - if (c != -1) { // got anything? - Serial.write(c); // write to USB-CDC - } -} diff --git a/libraries/Bridge/keywords.txt b/libraries/Bridge/keywords.txt deleted file mode 100644 index 1f03feec505..00000000000 --- a/libraries/Bridge/keywords.txt +++ /dev/null @@ -1,90 +0,0 @@ -####################################### -# Syntax Coloring Map For Bridge -####################################### - -####################################### -# Class (KEYWORD1) -####################################### - -Bridge KEYWORD1 YunBridgeLibrary -FileIO KEYWORD4 YunFileIOConstructor -FileSystem KEYWORD1 YunFileIOConstructor -Console KEYWORD1 YunConsoleConstructor -Process KEYWORD1 YunProcessConstructor -Mailbox KEYWORD1 YunMailboxConstructor -HttpClient KEYWORD1 YunHttpClientConstructor -YunServer KEYWORD1 YunServerConstructor -YunClient KEYWORD1 YunClientConstructor -BridgeServer KEYWORD1 YunServerConstructor -BridgeClient KEYWORD1 YunClientConstructor - -####################################### -# Methods and Functions (KEYWORD2) -####################################### - -# methods names in commond -begin KEYWORD2 -end KEYWORD2 -available KEYWORD2 -read KEYWORD2 -peek KEYWORD2 -write KEYWORD2 -flush KEYWORD2 -bool KEYWORD2 - -# Bridge Class -transfer KEYWORD2 -put KEYWORD2 -get KEYWORD2 - -# Console Class -buffer KEYWORD2 -noBuffer KEYWORD2 -connected KEYWORD2 - -# FileIO Class -File KEYWORD2 -BridgeFile KEYWORD2 -seek KEYWORD2 -position KEYWORD2 -size KEYWORD2 -close KEYWORD2 -name KEYWORD2 -isDirectory KEYWORD2 -openNextFile KEYWORD2 -rewindDirectory KEYWORD2 - -# Process Class -addParameter KEYWORD2 -runAsynchronously KEYWORD2 -run KEYWORD2 -running KEYWORD2 -exitValue KEYWORD2 -runShellCommand KEYWORD2 -runShellCommandAsynchronously KEYWORD2 - -# Mailbox Class -readMessage KEYWORD2 -writeMessage KEYWORD2 -writeJSON KEYWORD2 -message Available KEYWORD2 - -# HttpClient Class -getAsynchronously KEYWORD2 -ready KEYWORD2 -getResult KEYWORD2 - -# BridgeServer Class -accept KEYWORD2 -stop KEYWORD2 -connect KEYWORD2 -connected KEYWORD2 - - -####################################### -# Constants (LITERAL1) -####################################### - -FILE_READ LITERAL1 -FILE_WRITE LITERAL1 -FILE_APPEND LITERAL1 diff --git a/libraries/Bridge/library.properties b/libraries/Bridge/library.properties deleted file mode 100644 index e1ce9571ce3..00000000000 --- a/libraries/Bridge/library.properties +++ /dev/null @@ -1,9 +0,0 @@ -name=Bridge -version=1.1.0 -author=Arduino -maintainer=Arduino -sentence=Enables the communication between the Linux processor and the AVR. For Arduino Yún and TRE only. -paragraph=The Bridge library feature: access to the shared storage, run and manage linux processes, open a remote console, access to the linux file system, including the SD card, enstablish http clients or servers. -category=Communication -url=http://www.arduino.cc/en/Reference/YunBridgeLibrary -architectures=* diff --git a/libraries/Bridge/src/Bridge.cpp b/libraries/Bridge/src/Bridge.cpp deleted file mode 100644 index 4cf74661d4f..00000000000 --- a/libraries/Bridge/src/Bridge.cpp +++ /dev/null @@ -1,250 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include "Bridge.h" - -BridgeClass::BridgeClass(Stream &_stream) : - index(0), stream(_stream), started(false), max_retries(0) { - // Empty -} - -void BridgeClass::begin() { - if (started) - return; - started = true; - - // Wait for U-boot to finish startup - do { - dropAll(); - delay(1000); - } while (stream.available() > 0); - - while (true) { - // Bridge interrupt: - // - Ask the bridge to close itself - uint8_t quit_cmd[] = {'X', 'X', 'X', 'X', 'X'}; - max_retries = 1; - transfer(quit_cmd, 5); - - // Bridge startup: - // - If the bridge is not running starts it safely - stream.print(CTRL_C); - delay(250); - stream.print(F("\n")); - delay(250); - stream.print(F("\n")); - delay(500); - // Wait for OpenWRT message - // "Press enter to activate console" - stream.print(F("run-bridge\n")); - delay(500); - dropAll(); - - // Reset the brigde to check if it is running - uint8_t cmd[] = {'X', 'X', '1', '0', '0'}; - uint8_t res[4]; - max_retries = 50; - uint16_t l = transfer(cmd, 5, res, 4); - if (l == TRANSFER_TIMEOUT) { - // Bridge didn't start... - // Maybe the board is starting-up? - - // Wait and retry - delay(1000); - continue; - } - if (res[0] != 0) - while (true); - - // Detect bridge version - if (l == 4) { - bridgeVersion = (res[1]-'0')*100 + (res[2]-'0')*10 + (res[3]-'0'); - } else { - // Bridge v1.0.0 didn't send any version info - bridgeVersion = 100; - } - - max_retries = 50; - return; - } -} - -void BridgeClass::put(const char *key, const char *value) { - // TODO: do it in a more efficient way - String cmd = "D"; - uint8_t res[1]; - cmd += key; - cmd += "\xFE"; - cmd += value; - transfer((uint8_t*)cmd.c_str(), cmd.length(), res, 1); -} - -unsigned int BridgeClass::get(const char *key, uint8_t *value, unsigned int maxlen) { - uint8_t cmd[] = {'d'}; - unsigned int l = transfer(cmd, 1, (uint8_t *)key, strlen(key), value, maxlen); - if (l < maxlen) - value[l] = 0; // Zero-terminate string - return l; -} - -#if defined(ARDUINO_ARCH_AVR) -// AVR use an optimized implementation of CRC -#include -#else -// Generic implementation for non-AVR architectures -uint16_t _crc_ccitt_update(uint16_t crc, uint8_t data) -{ - data ^= crc & 0xff; - data ^= data << 4; - return ((((uint16_t)data << 8) | ((crc >> 8) & 0xff)) ^ - (uint8_t)(data >> 4) ^ - ((uint16_t)data << 3)); -} -#endif - -void BridgeClass::crcUpdate(uint8_t c) { - CRC = _crc_ccitt_update(CRC, c); -} - -void BridgeClass::crcReset() { - CRC = 0xFFFF; -} - -void BridgeClass::crcWrite() { - stream.write((char)(CRC >> 8)); - stream.write((char)(CRC & 0xFF)); -} - -bool BridgeClass::crcCheck(uint16_t _CRC) { - return CRC == _CRC; -} - -uint16_t BridgeClass::transfer(const uint8_t *buff1, uint16_t len1, - const uint8_t *buff2, uint16_t len2, - const uint8_t *buff3, uint16_t len3, - uint8_t *rxbuff, uint16_t rxlen) -{ - uint16_t len = len1 + len2 + len3; - uint8_t retries = 0; - for ( ; retries < max_retries; retries++, delay(100), dropAll() /* Delay for retransmission */) { - // Send packet - crcReset(); - stream.write((char)0xFF); // Start of packet (0xFF) - crcUpdate(0xFF); - stream.write((char)index); // Message index - crcUpdate(index); - stream.write((char)((len >> 8) & 0xFF)); // Message length (hi) - crcUpdate((len >> 8) & 0xFF); - stream.write((char)(len & 0xFF)); // Message length (lo) - crcUpdate(len & 0xFF); - for (uint16_t i = 0; i < len1; i++) { // Payload - stream.write((char)buff1[i]); - crcUpdate(buff1[i]); - } - for (uint16_t i = 0; i < len2; i++) { // Payload - stream.write((char)buff2[i]); - crcUpdate(buff2[i]); - } - for (uint16_t i = 0; i < len3; i++) { // Payload - stream.write((char)buff3[i]); - crcUpdate(buff3[i]); - } - crcWrite(); // CRC - - // Wait for ACK in 100ms - if (timedRead(100) != 0xFF) - continue; - crcReset(); - crcUpdate(0xFF); - - // Check packet index - if (timedRead(5) != index) - continue; - crcUpdate(index); - - // Recv len - int lh = timedRead(10); - if (lh < 0) - continue; - crcUpdate(lh); - int ll = timedRead(10); - if (ll < 0) - continue; - crcUpdate(ll); - uint16_t l = lh; - l <<= 8; - l += ll; - - // Recv data - for (uint16_t i = 0; i < l; i++) { - // Cut received data if rxbuffer is too small - if (i >= rxlen) - break; - int c = timedRead(5); - if (c < 0) - continue; - rxbuff[i] = c; - crcUpdate(c); - } - - // Check CRC - int crc_hi = timedRead(5); - if (crc_hi < 0) - continue; - int crc_lo = timedRead(5); - if (crc_lo < 0) - continue; - if (!crcCheck((crc_hi << 8) + crc_lo)) - continue; - - // Increase index - index++; - - // Return bytes received - if (l > rxlen) - return rxlen; - return l; - } - - // Max retries exceeded - return TRANSFER_TIMEOUT; -} - -int BridgeClass::timedRead(unsigned int timeout) { - int c; - unsigned long _startMillis = millis(); - do { - c = stream.read(); - if (c >= 0) return c; - } while (millis() - _startMillis < timeout); - return -1; // -1 indicates timeout -} - -void BridgeClass::dropAll() { - while (stream.available() > 0) { - stream.read(); - } -} - -// Bridge instance -#ifdef __AVR_ATmega32U4__ -// Leonardo variants (where HardwareSerial is Serial1) -SerialBridgeClass Bridge(Serial1); -#else -SerialBridgeClass Bridge(Serial); -#endif diff --git a/libraries/Bridge/src/Bridge.h b/libraries/Bridge/src/Bridge.h deleted file mode 100644 index 14f86cbd3ec..00000000000 --- a/libraries/Bridge/src/Bridge.h +++ /dev/null @@ -1,117 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef BRIDGE_H_ -#define BRIDGE_H_ - -#ifndef BRIDGE_BAUDRATE -#define BRIDGE_BAUDRATE 250000 -#endif - -#include -#include - -class BridgeClass { - public: - BridgeClass(Stream &_stream); - void begin(); - - // Methods to handle key/value datastore - void put(const char *key, const char *value); - void put(const String &key, const String &value) - { - put(key.c_str(), value.c_str()); - } - unsigned int get(const char *key, uint8_t *buff, unsigned int size); - unsigned int get(const char *key, char *value, unsigned int maxlen) - { - return get(key, reinterpret_cast(value), maxlen); - } - - // Trasnfer a frame (with error correction and response) - uint16_t transfer(const uint8_t *buff1, uint16_t len1, - const uint8_t *buff2, uint16_t len2, - const uint8_t *buff3, uint16_t len3, - uint8_t *rxbuff, uint16_t rxlen); - // multiple inline versions of the same function to allow efficient frame concatenation - uint16_t transfer(const uint8_t *buff1, uint16_t len1) - { - return transfer(buff1, len1, NULL, 0); - } - uint16_t transfer(const uint8_t *buff1, uint16_t len1, - uint8_t *rxbuff, uint16_t rxlen) - { - return transfer(buff1, len1, NULL, 0, rxbuff, rxlen); - } - uint16_t transfer(const uint8_t *buff1, uint16_t len1, - const uint8_t *buff2, uint16_t len2, - uint8_t *rxbuff, uint16_t rxlen) - { - return transfer(buff1, len1, buff2, len2, NULL, 0, rxbuff, rxlen); - } - - uint16_t getBridgeVersion() - { - return bridgeVersion; - } - - static const int TRANSFER_TIMEOUT = 0xFFFF; - - private: - uint8_t index; - int timedRead(unsigned int timeout); - void dropAll(); - uint16_t bridgeVersion; - - private: - void crcUpdate(uint8_t c); - void crcReset(); - void crcWrite(); - bool crcCheck(uint16_t _CRC); - uint16_t CRC; - - private: - static const char CTRL_C = 3; - Stream &stream; - bool started; - uint8_t max_retries; -}; - -// This subclass uses a serial port Stream -class SerialBridgeClass : public BridgeClass { - public: - SerialBridgeClass(HardwareSerial &_serial) - : BridgeClass(_serial), serial(_serial) { - // Empty - } - - void begin(unsigned long baudrate = BRIDGE_BAUDRATE) { - serial.begin(baudrate); - BridgeClass::begin(); - } - - private: - HardwareSerial &serial; -}; - -extern SerialBridgeClass Bridge; - -#endif /* BRIDGE_H_ */ - -#include -#include diff --git a/libraries/Bridge/src/BridgeClient.cpp b/libraries/Bridge/src/BridgeClient.cpp deleted file mode 100644 index 970485c9a32..00000000000 --- a/libraries/Bridge/src/BridgeClient.cpp +++ /dev/null @@ -1,173 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include - -BridgeClient::BridgeClient(int _h, BridgeClass &_b) : - bridge(_b), handle(_h), opened(true), buffered(0) { -} - -BridgeClient::BridgeClient(BridgeClass &_b) : - bridge(_b), handle(0), opened(false), buffered(0) { -} - -BridgeClient::~BridgeClient() { -} - -BridgeClient& BridgeClient::operator=(const BridgeClient &_x) { - opened = _x.opened; - handle = _x.handle; - return *this; -} - -void BridgeClient::stop() { - if (opened) { - uint8_t cmd[] = {'j', handle}; - bridge.transfer(cmd, 2); - } - opened = false; - buffered = 0; - readPos = 0; -} - -void BridgeClient::doBuffer() { - // If there are already char in buffer exit - if (buffered > 0) - return; - - // Try to buffer up to 32 characters - readPos = 0; - uint8_t cmd[] = {'K', handle, sizeof(buffer)}; - buffered = bridge.transfer(cmd, 3, buffer, sizeof(buffer)); -} - -int BridgeClient::available() { - // Look if there is new data available - doBuffer(); - return buffered; -} - -int BridgeClient::read() { - doBuffer(); - if (buffered == 0) - return -1; // no chars available - else { - buffered--; - return buffer[readPos++]; - } -} - -int BridgeClient::read(uint8_t *buff, size_t size) { - int readed = 0; - do { - if (buffered == 0) { - doBuffer(); - if (buffered == 0) - return readed; - } - buff[readed++] = buffer[readPos++]; - buffered--; - } while (readed < size); - return readed; -} - -int BridgeClient::peek() { - doBuffer(); - if (buffered == 0) - return -1; // no chars available - else - return buffer[readPos]; -} - -size_t BridgeClient::write(uint8_t c) { - if (!opened) - return 0; - uint8_t cmd[] = {'l', handle, c}; - bridge.transfer(cmd, 3); - return 1; -} - -size_t BridgeClient::write(const uint8_t *buf, size_t size) { - if (!opened) - return 0; - uint8_t cmd[] = {'l', handle}; - bridge.transfer(cmd, 2, buf, size, NULL, 0); - return size; -} - -void BridgeClient::flush() { -} - -uint8_t BridgeClient::connected() { - if (!opened) - return false; - // Client is "connected" if it has unread bytes - if (available()) - return true; - - uint8_t cmd[] = {'L', handle}; - uint8_t res[1]; - bridge.transfer(cmd, 2, res, 1); - return (res[0] == 1); -} - -int BridgeClient::connect(IPAddress ip, uint16_t port) { - String address; - address.reserve(18); - address += ip[0]; - address += '.'; - address += ip[1]; - address += '.'; - address += ip[2]; - address += '.'; - address += ip[3]; - return connect(address.c_str(), port); -} - -int BridgeClient::connect(const char *host, uint16_t port) { - uint8_t tmp[] = { - 'C', - (port >> 8) & 0xFF, - port & 0xFF - }; - uint8_t res[1]; - int l = bridge.transfer(tmp, 3, (const uint8_t *)host, strlen(host), res, 1); - if (l == 0) - return 0; - handle = res[0]; - - // wait for connection - uint8_t tmp2[] = { 'c', handle }; - uint8_t res2[1]; - while (true) { - bridge.transfer(tmp2, 2, res2, 1); - if (res2[0] == 0) - break; - delay(1); - } - opened = true; - - // check for successful connection - if (connected()) - return 1; - - stop(); - handle = 0; - return 0; -} - diff --git a/libraries/Bridge/src/BridgeClient.h b/libraries/Bridge/src/BridgeClient.h deleted file mode 100644 index aa9b51398ab..00000000000 --- a/libraries/Bridge/src/BridgeClient.h +++ /dev/null @@ -1,70 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef _BRIDGE_CLIENT_H_ -#define _BRIDGE_CLIENT_H_ - -#include -#include - -class BridgeClient : public Client { - public: - // Constructor with a user provided BridgeClass instance - BridgeClient(int _h, BridgeClass &_b = Bridge); - BridgeClient(BridgeClass &_b = Bridge); - ~BridgeClient(); - - // Stream methods - // (read message) - virtual int available(); - virtual int read(); - virtual int read(uint8_t *buf, size_t size); - virtual int peek(); - // (write response) - virtual size_t write(uint8_t); - virtual size_t write(const uint8_t *buf, size_t size); - virtual void flush(); - // TODO: add optimized function for block write - - virtual operator bool () { - return opened; - } - - BridgeClient& operator=(const BridgeClient &_x); - - virtual void stop(); - virtual uint8_t connected(); - - virtual int connect(IPAddress ip, uint16_t port); - virtual int connect(const char *host, uint16_t port); - - private: - BridgeClass &bridge; - unsigned int handle; - boolean opened; - - private: - void doBuffer(); - uint8_t buffered; - uint8_t readPos; - static const int BUFFER_SIZE = 64; - uint8_t buffer[BUFFER_SIZE]; - -}; - -#endif // _BRIDGE_CLIENT_H_ diff --git a/libraries/Bridge/src/BridgeServer.cpp b/libraries/Bridge/src/BridgeServer.cpp deleted file mode 100644 index 3b3abfdb0d1..00000000000 --- a/libraries/Bridge/src/BridgeServer.cpp +++ /dev/null @@ -1,54 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include -#include - -BridgeServer::BridgeServer(uint16_t _p, BridgeClass &_b) : - bridge(_b), port(_p), listening(false), useLocalhost(false) { -} - -void BridgeServer::begin() { - uint8_t tmp[] = { - 'N', - (port >> 8) & 0xFF, - port & 0xFF - }; - uint8_t res[1]; - String address = F("127.0.0.1"); - if (!useLocalhost) - address = F("0.0.0.0"); - bridge.transfer(tmp, 3, (const uint8_t *)address.c_str(), address.length(), res, 1); - listening = (res[0] == 1); -} - -BridgeClient BridgeServer::accept() { - uint8_t cmd[] = {'k'}; - uint8_t res[1]; - unsigned int l = bridge.transfer(cmd, 1, res, 1); - if (l == 0) - return BridgeClient(); - return BridgeClient(res[0]); -} - -size_t BridgeServer::write(uint8_t c) { - uint8_t cmd[] = { 'b', c }; - bridge.transfer(cmd, 2); - return 1; -} - diff --git a/libraries/Bridge/src/BridgeServer.h b/libraries/Bridge/src/BridgeServer.h deleted file mode 100644 index 9471697de19..00000000000 --- a/libraries/Bridge/src/BridgeServer.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef _BRIDGE_SERVER_H_ -#define _BRIDGE_SERVER_H_ - -#include -#include - -class BridgeClient; - -class BridgeServer : public Server { - public: - // Constructor with a user provided BridgeClass instance - BridgeServer(uint16_t port = 5555, BridgeClass &_b = Bridge); - - void begin(); - BridgeClient accept(); - - virtual size_t write(uint8_t c); - - void listenOnLocalhost() { - useLocalhost = true; - } - void noListenOnLocalhost() { - useLocalhost = false; - } - - private: - uint16_t port; - bool listening; - bool useLocalhost; - BridgeClass &bridge; -}; - -#endif // _BRIDGE_SERVER_H_ diff --git a/libraries/Bridge/src/BridgeUdp.cpp b/libraries/Bridge/src/BridgeUdp.cpp deleted file mode 100644 index c4fa6e34204..00000000000 --- a/libraries/Bridge/src/BridgeUdp.cpp +++ /dev/null @@ -1,188 +0,0 @@ -/* - Copyright (c) 2015 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include "BridgeUdp.h" - -BridgeUDP::BridgeUDP(BridgeClass &_b) : - bridge(_b), opened(false), avail(0), buffered(0), readPos(0) { -} - -/* Start BridgeUDP socket, listening at local port PORT */ -uint8_t BridgeUDP::begin(uint16_t port) { - if (opened) - return 0; - uint8_t cmd[] = {'e', (uint8_t)((port >> 8) & 0xFF), (uint8_t)(port & 0xFF)}; - uint8_t res[2]; - bridge.transfer(cmd, 3, res, 2); - if (res[1] == 1) // Error... - return 0; - handle = res[0]; - opened = true; - return 1; -} - -/* Release any resources being used by this BridgeUDP instance */ -void BridgeUDP::stop() -{ - if (!opened) - return; - uint8_t cmd[] = {'q', handle}; - bridge.transfer(cmd, 2); - opened = false; -} - -int BridgeUDP::beginPacket(const char *host, uint16_t port) -{ - if (!opened) - return 0; - uint8_t cmd[] = {'E', handle, (uint8_t)((port >> 8) & 0xFF), (uint8_t)(port & 0xFF)}; - uint8_t res[1]; - bridge.transfer(cmd, 4, (const uint8_t *)host, strlen(host), res, 1); - return res[0]; // 1=Success, 0=Error -} - -int BridgeUDP::beginPacket(IPAddress ip, uint16_t port) -{ - if (!opened) - return 0; - String address; - address.reserve(18); - address += ip[0]; - address += '.'; - address += ip[1]; - address += '.'; - address += ip[2]; - address += '.'; - address += ip[3]; - return beginPacket(address.c_str(), port); -} - -int BridgeUDP::endPacket() -{ - if (!opened) - return 0; - uint8_t cmd[] = {'H', handle}; - uint8_t res[1]; - bridge.transfer(cmd, 2, res, 1); - return res[0]; // 1=Success, 0=Error -} - -size_t BridgeUDP::write(const uint8_t *buffer, size_t size) -{ - if (!opened) - return 0; - uint8_t cmd[] = {'h', handle}; - uint8_t res[1]; - bridge.transfer(cmd, 2, buffer, size, res, 1); - return res[0]; // 1=Success, 0=Error -} - -int BridgeUDP::parsePacket() -{ - if (!opened) - return 0; - buffered = 0; - readPos = 0; - uint8_t cmd[] = {'Q', handle}; - uint8_t res[3]; - bridge.transfer(cmd, 2, res, 3); - if (res[0] == 0) { - // There aren't any packets available - return 0; - } - avail = (res[1] << 8) + res[2]; - return 1; -} - -void BridgeUDP::doBuffer() { - // If there are already char in buffer exit - if (buffered > 0) - return; - if (avail == 0) - return; - - // Try to buffer up to 32 characters - readPos = 0; - uint8_t cmd[] = {'u', handle, sizeof(buffer)}; - buffered = bridge.transfer(cmd, 3, buffer, sizeof(buffer)); -} - -int BridgeUDP::read() -{ - if (!opened) - return -1; - doBuffer(); - if (buffered == 0) { - return -1; // no chars available - } - buffered--; - avail--; - return buffer[readPos++]; -} - -int BridgeUDP::read(unsigned char* buff, size_t size) -{ - if (!opened) - return -1; - size_t readed = 0; - do { - if (buffered == 0) { - doBuffer(); - if (buffered == 0) - return readed; - } - buff[readed++] = buffer[readPos++]; - buffered--; - avail--; - } while (readed < size); - return readed; -} - -int BridgeUDP::peek() -{ - if (!opened) - return -1; - doBuffer(); - if (buffered == 0) - return -1; // no chars available - return buffer[readPos]; -} - -IPAddress BridgeUDP::remoteIP() -{ - if (!opened) - return -1; - uint8_t cmd[] = {'T', handle}; - uint8_t res[7]; - uint16_t l = bridge.transfer(cmd, 2, res, 7); - if (res[0] == 0) - return IPAddress(0,0,0,0); - return IPAddress(res[1], res[2], res[3], res[4]); -} - -uint16_t BridgeUDP::remotePort() -{ - if (!opened) - return -1; - uint8_t cmd[] = {'T', handle}; - uint8_t res[7]; - uint16_t l = bridge.transfer(cmd, 2, res, 7); - if (res[0] == 0) - return 0; - return (res[5] << 8) + res[6]; -} diff --git a/libraries/Bridge/src/BridgeUdp.h b/libraries/Bridge/src/BridgeUdp.h deleted file mode 100644 index 18c63d28a25..00000000000 --- a/libraries/Bridge/src/BridgeUdp.h +++ /dev/null @@ -1,64 +0,0 @@ -/* - Copyright (c) 2015 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#pragma once - -#include -#include "Bridge.h" - -class BridgeUDP : public UDP { - - public: - BridgeUDP(BridgeClass &_b = Bridge); - virtual uint8_t begin(uint16_t); - virtual void stop(); - - virtual int beginPacket(IPAddress ip, uint16_t port); - virtual int beginPacket(const char *host, uint16_t port); - virtual int endPacket(); - virtual size_t write(uint8_t d) { return write(&d, 1); } - virtual size_t write(const uint8_t *buffer, size_t size); - - using Print::write; - - virtual int parsePacket(); - /* return number of bytes available in the current packet, - will return zero if parsePacket hasn't been called yet */ - virtual int available() { return avail; } - virtual int read(); - virtual int read(unsigned char* buffer, size_t len); - virtual int read(char* buffer, size_t len) { return read((unsigned char*)buffer, len); }; - virtual int peek(); - virtual void flush() { avail = 0; } - - virtual IPAddress remoteIP(); - virtual uint16_t remotePort(); - - private: - BridgeClass &bridge; - uint8_t handle; - boolean opened; - - private: - void doBuffer(); - uint16_t avail; - uint8_t buffered; - uint8_t readPos; - static const int BUFFER_SIZE = 64; - uint8_t buffer[BUFFER_SIZE]; -}; diff --git a/libraries/Bridge/src/Console.cpp b/libraries/Bridge/src/Console.cpp deleted file mode 100644 index e265b0e6923..00000000000 --- a/libraries/Bridge/src/Console.cpp +++ /dev/null @@ -1,153 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include - -// Default constructor uses global Bridge instance -ConsoleClass::ConsoleClass() : - bridge(Bridge), inBuffered(0), inReadPos(0), inBuffer(NULL), - autoFlush(true) -{ - // Empty -} - -// Constructor with a user provided BridgeClass instance -ConsoleClass::ConsoleClass(BridgeClass &_b) : - bridge(_b), inBuffered(0), inReadPos(0), inBuffer(NULL), - autoFlush(true) -{ - // Empty -} - -ConsoleClass::~ConsoleClass() { - end(); -} - -size_t ConsoleClass::write(uint8_t c) { - if (autoFlush) { - uint8_t tmp[] = { 'P', c }; - bridge.transfer(tmp, 2); - return 1; - } else { - outBuffer[outBuffered++] = c; - if (outBuffered == outBufferSize) - flush(); - } -} - -size_t ConsoleClass::write(const uint8_t *buff, size_t size) { - if (autoFlush) { - // TODO: do it in a more efficient way - uint8_t *tmp = new uint8_t[size + 1]; - tmp[0] = 'P'; - memcpy(tmp + 1, buff, size); - bridge.transfer(tmp, size + 1); - delete[] tmp; - return size; - } else { - while (size > 0) { - outBuffer[outBuffered++] = *buff++; - size--; - if (outBuffered == outBufferSize) - flush(); - } - } -} - -void ConsoleClass::flush() { - if (autoFlush) - return; - - bridge.transfer(outBuffer, outBuffered); - outBuffered = 1; -} - -void ConsoleClass::noBuffer() { - if (autoFlush) - return; - delete[] outBuffer; - autoFlush = true; -} - -void ConsoleClass::buffer(uint8_t size) { - noBuffer(); - if (size == 0) - return; - outBuffer = new uint8_t[size + 1]; - outBuffer[0] = 'P'; // WRITE tag - outBufferSize = size + 1; - outBuffered = 1; - autoFlush = false; -} - -bool ConsoleClass::connected() { - uint8_t tmp = 'a'; - bridge.transfer(&tmp, 1, &tmp, 1); - return tmp == 1; -} - -int ConsoleClass::available() { - // Look if there is new data available - doBuffer(); - return inBuffered; -} - -int ConsoleClass::read() { - doBuffer(); - if (inBuffered == 0) - return -1; // no chars available - else { - inBuffered--; - return inBuffer[inReadPos++]; - } -} - -int ConsoleClass::peek() { - doBuffer(); - if (inBuffered == 0) - return -1; // no chars available - else - return inBuffer[inReadPos]; -} - -void ConsoleClass::doBuffer() { - // If there are already char in buffer exit - if (inBuffered > 0) - return; - - // Try to buffer up to 32 characters - inReadPos = 0; - uint8_t tmp[] = { 'p', BUFFER_SIZE }; - inBuffered = bridge.transfer(tmp, 2, inBuffer, BUFFER_SIZE); -} - -void ConsoleClass::begin() { - bridge.begin(); - end(); - inBuffer = new uint8_t[BUFFER_SIZE]; -} - -void ConsoleClass::end() { - noBuffer(); - if (inBuffer) { - delete[] inBuffer; - inBuffer = NULL; - } -} - -ConsoleClass Console; diff --git a/libraries/Bridge/src/Console.h b/libraries/Bridge/src/Console.h deleted file mode 100644 index ca05b08cf71..00000000000 --- a/libraries/Bridge/src/Console.h +++ /dev/null @@ -1,71 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef CONSOLE_H_ -#define CONSOLE_H_ - -#include - -class ConsoleClass : public Stream { - public: - // Default constructor uses global Bridge instance - ConsoleClass(); - // Constructor with a user provided BridgeClass instance - ConsoleClass(BridgeClass &_b); - ~ConsoleClass(); - - void begin(); - void end(); - - void buffer(uint8_t size); - void noBuffer(); - - bool connected(); - - // Stream methods - // (read from console socket) - int available(); - int read(); - int peek(); - // (write to console socket) - size_t write(uint8_t); - size_t write(const uint8_t *buffer, size_t size); - void flush(); - - operator bool () { - return connected(); - } - - private: - BridgeClass &bridge; - - void doBuffer(); - uint8_t inBuffered; - uint8_t inReadPos; - static const int BUFFER_SIZE = 32; - uint8_t *inBuffer; - - bool autoFlush; - uint8_t outBuffered; - uint8_t outBufferSize; - uint8_t *outBuffer; -}; - -extern ConsoleClass Console; - -#endif diff --git a/libraries/Bridge/src/FileIO.cpp b/libraries/Bridge/src/FileIO.cpp deleted file mode 100644 index e1d441526c2..00000000000 --- a/libraries/Bridge/src/FileIO.cpp +++ /dev/null @@ -1,283 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include - -namespace BridgeLib { - -File::File(BridgeClass &b) : mode(255), bridge(b) { - // Empty -} - -File::File(const char *_filename, uint8_t _mode, BridgeClass &b) : mode(_mode), bridge(b) { - filename = _filename; - char modes[] = {'r', 'w', 'a'}; - uint8_t cmd[] = {'F', modes[mode]}; - uint8_t res[2]; - dirPosition = 1; - bridge.transfer(cmd, 2, (uint8_t*)filename.c_str(), filename.length(), res, 2); - if (res[0] != 0) { // res[0] contains error code - mode = 255; // In case of error keep the file closed - return; - } - handle = res[1]; - buffered = 0; -} - -File::operator bool() { - return (mode != 255); -} - -File::~File() { - close(); -} - -size_t File::write(uint8_t c) { - return write(&c, 1); -} - -size_t File::write(const uint8_t *buf, size_t size) { - if (mode == 255) - return -1; - uint8_t cmd[] = {'g', handle}; - uint8_t res[1]; - bridge.transfer(cmd, 2, buf, size, res, 1); - if (res[0] != 0) // res[0] contains error code - return -res[0]; - return size; -} - -int File::read() { - doBuffer(); - if (buffered == 0) - return -1; // no chars available - else { - buffered--; - return buffer[readPos++]; - } -} - -int File::peek() { - doBuffer(); - if (buffered == 0) - return -1; // no chars available - else - return buffer[readPos]; -} - -boolean File::seek(uint32_t position) { - uint8_t cmd[] = { - 's', - handle, - (position >> 24) & 0xFF, - (position >> 16) & 0xFF, - (position >> 8) & 0xFF, - position & 0xFF - }; - uint8_t res[1]; - bridge.transfer(cmd, 6, res, 1); - if (res[0] == 0) { - // If seek succeed then flush buffers - buffered = 0; - return true; - } - return false; -} - -uint32_t File::position() { - uint8_t cmd[] = {'S', handle}; - uint8_t res[5]; - bridge.transfer(cmd, 2, res, 5); - //err = res[0]; // res[0] contains error code - uint32_t pos = res[1] << 24; - pos += res[2] << 16; - pos += res[3] << 8; - pos += res[4]; - return pos - buffered; -} - -void File::doBuffer() { - // If there are already char in buffer exit - if (buffered > 0) - return; - - // Try to buffer up to BUFFER_SIZE characters - readPos = 0; - uint8_t cmd[] = {'G', handle, BUFFER_SIZE - 1}; - buffered = bridge.transfer(cmd, 3, buffer, BUFFER_SIZE); - //err = buff[0]; // First byte is error code - if (BridgeClass::TRANSFER_TIMEOUT == buffered || 0 == buffered) { - // transfer failed to retrieve any data - buffered = 0; - } else { - // transfer retrieved at least one byte of data so skip the error code character - readPos++; - buffered--; - } -} - -int File::available() { - // Look if there is new data available - doBuffer(); - return buffered; -} - -void File::flush() { -} - -int File::read(void *buff, uint16_t nbyte) { - uint16_t n = 0; - uint8_t *p = reinterpret_cast(buff); - while (n < nbyte) { - if (buffered == 0) { - doBuffer(); - if (buffered == 0) - break; - } - *p++ = buffer[readPos++]; - buffered--; - n++; - } - return n; -} - -uint32_t File::size() { - if (bridge.getBridgeVersion() < 101) - return 0; - uint8_t cmd[] = {'t', handle}; - uint8_t buff[5]; - bridge.transfer(cmd, 2, buff, 5); - //err = res[0]; // First byte is error code - uint32_t res; - res = ((uint32_t)buff[1]) << 24; - res |= ((uint32_t)buff[2]) << 16; - res |= ((uint32_t)buff[3]) << 8; - res |= ((uint32_t)buff[4]); - return res; -} - -void File::close() { - if (mode == 255) - return; - uint8_t cmd[] = {'f', handle}; - uint8_t ret[1]; - bridge.transfer(cmd, 2, ret, 1); - mode = 255; -} - -const char *File::name() { - return filename.c_str(); -} - - -boolean File::isDirectory() { - uint8_t res[1]; - uint8_t lenght; - uint8_t cmd[] = {'i'}; - if (mode != 255) - return 0; - - bridge.transfer(cmd, 1, (uint8_t *)filename.c_str(), filename.length(), res, 1); - return res[0]; -} - - -File File::openNextFile(uint8_t mode) { - Process awk; - char tmp; - String command; - String filepath; - if (dirPosition == 0xFFFF) return File(); - - command = "ls "; - command += filename; - command += " | awk 'NR=="; - command += dirPosition; - command += "'"; - - awk.runShellCommand(command); - - while (awk.running()); - - command = ""; - - while (awk.available()) { - tmp = awk.read(); - if (tmp != '\n') command += tmp; - } - if (command.length() == 0) - return File(); - dirPosition++; - filepath = filename + "/" + command; - return File(filepath.c_str(), mode); - -} - -void File::rewindDirectory(void) { - dirPosition = 1; -} - - - - - - -boolean FileSystemClass::begin() { - return true; -} - -File FileSystemClass::open(const char *filename, uint8_t mode) { - return File(filename, mode); -} - -boolean FileSystemClass::exists(const char *filepath) { - Process ls; - ls.begin("ls"); - ls.addParameter(filepath); - int res = ls.run(); - return (res == 0); -} - -boolean FileSystemClass::mkdir(const char *filepath) { - Process mk; - mk.begin("mkdir"); - mk.addParameter("-p"); - mk.addParameter(filepath); - int res = mk.run(); - return (res == 0); -} - -boolean FileSystemClass::remove(const char *filepath) { - Process rm; - rm.begin("rm"); - rm.addParameter(filepath); - int res = rm.run(); - return (res == 0); -} - -boolean FileSystemClass::rmdir(const char *filepath) { - Process rm; - rm.begin("rmdir"); - rm.addParameter(filepath); - int res = rm.run(); - return (res == 0); -} - -FileSystemClass FileSystem; - -} diff --git a/libraries/Bridge/src/FileIO.h b/libraries/Bridge/src/FileIO.h deleted file mode 100644 index c5a8e9eac07..00000000000 --- a/libraries/Bridge/src/FileIO.h +++ /dev/null @@ -1,120 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef __FILEIO_H__ -#define __FILEIO_H__ - -#include - -#define FILE_READ 0 -#define FILE_WRITE 1 -#define FILE_APPEND 2 - -namespace BridgeLib { - -class File : public Stream { - - public: - File(BridgeClass &b = Bridge); - File(const char *_filename, uint8_t _mode, BridgeClass &b = Bridge); - ~File(); - - virtual size_t write(uint8_t); - virtual size_t write(const uint8_t *buf, size_t size); - virtual int read(); - virtual int peek(); - virtual int available(); - virtual void flush(); - int read(void *buf, uint16_t nbyte); - boolean seek(uint32_t pos); - uint32_t position(); - uint32_t size(); - void close(); - operator bool(); - const char * name(); - boolean isDirectory(); - File openNextFile(uint8_t mode = FILE_READ); - void rewindDirectory(void); - - //using Print::write; - - private: - void doBuffer(); - uint8_t buffered; - uint8_t readPos; - uint16_t dirPosition; - static const int BUFFER_SIZE = 64; - uint8_t buffer[BUFFER_SIZE]; - - - private: - BridgeClass &bridge; - String filename; - uint8_t mode; - uint8_t handle; - -}; - -class FileSystemClass { - public: - FileSystemClass() : bridge(Bridge) { } - FileSystemClass(BridgeClass &_b) : bridge(_b) { } - - boolean begin(); - - // Open the specified file/directory with the supplied mode (e.g. read or - // write, etc). Returns a File object for interacting with the file. - // Note that currently only one file can be open at a time. - File open(const char *filename, uint8_t mode = FILE_READ); - - // Methods to determine if the requested file path exists. - boolean exists(const char *filepath); - - // Create the requested directory hierarchy--if intermediate directories - // do not exist they will be created. - boolean mkdir(const char *filepath); - - // Delete the file. - boolean remove(const char *filepath); - - boolean rmdir(const char *filepath); - - private: - friend class File; - - BridgeClass &bridge; -}; - -extern FileSystemClass FileSystem; - -}; - -// We enclose File and FileSystem classes in namespace BridgeLib to avoid -// conflicts with legacy SD library. - -// This ensure compatibility with older sketches that uses only Bridge lib -// (the user can still use File instead of BridgeFile) -using namespace BridgeLib; - -// This allows sketches to use BridgeLib::File together with SD library -// (you must use BridgeFile instead of File when needed to disambiguate) -typedef BridgeLib::File BridgeFile; -typedef BridgeLib::FileSystemClass BridgeFileSystemClass; -#define BridgeFileSystem BridgeLib::FileSystem - -#endif diff --git a/libraries/Bridge/src/HttpClient.cpp b/libraries/Bridge/src/HttpClient.cpp deleted file mode 100644 index 14553e6ea41..00000000000 --- a/libraries/Bridge/src/HttpClient.cpp +++ /dev/null @@ -1,132 +0,0 @@ -/* - Copyright (c) 2013-2014 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include "HttpClient.h" - -HttpClient::HttpClient() : - insecure(false) { - // Empty -} - -unsigned int HttpClient::get(String &url) { - begin("curl"); - if (insecure) { - addParameter("-k"); - } - addHeader(); - addParameter(url); - return run(); -} - -unsigned int HttpClient::get(const char *url) { - begin("curl"); - if (insecure) { - addParameter("-k"); - } - addHeader(); - addParameter(url); - return run(); -} - -void HttpClient::getAsynchronously(String &url) { - begin("curl"); - if (insecure) { - addParameter("-k"); - } - addHeader(); - addParameter(url); - runAsynchronously(); -} - -void HttpClient::getAsynchronously(const char *url) { - begin("curl"); - if (insecure) { - addParameter("-k"); - } - addHeader(); - addParameter(url); - runAsynchronously(); -} - -unsigned int HttpClient::post(String &url, String &data) { - return post(url.c_str(), data.c_str()); -} - -unsigned int HttpClient::post(const char *url, const char *data) { - begin("curl"); - if (insecure) { - addParameter("-k"); - } - addParameter("--request"); - addParameter("POST"); - addParameter("--data"); - addParameter(data); - addHeader(); - addParameter(url); - return run(); -} - -void HttpClient::postAsynchronously(String &url, String &data) { - postAsynchronously(url.c_str(), data.c_str()); -} - -void HttpClient::postAsynchronously(const char *url, const char *data) { - begin("curl"); - if (insecure) { - addParameter("-k"); - } - addParameter("--request"); - addParameter("POST"); - addParameter("--data"); - addParameter(data); - addHeader(); - addParameter(url); - runAsynchronously(); -} - -boolean HttpClient::ready() { - return !running(); -} - -unsigned int HttpClient::getResult() { - return exitValue(); -} - -void HttpClient::noCheckSSL() { - insecure = true; -} - -void HttpClient::checkSSL() { - insecure = false; -} - -void HttpClient::setHeader(String &header) { - this->header = header; -} - -void HttpClient::setHeader(const char * header) { - this->header = String(header); -} - -void HttpClient::addHeader() { - if (header.length() > 0) { - addParameter("--header"); - addParameter(header); - } -} - diff --git a/libraries/Bridge/src/HttpClient.h b/libraries/Bridge/src/HttpClient.h deleted file mode 100644 index 4a3165f0141..00000000000 --- a/libraries/Bridge/src/HttpClient.h +++ /dev/null @@ -1,51 +0,0 @@ -/* - Copyright (c) 2013-2014 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef HTTPCLIENT_H_ -#define HTTPCLIENT_H_ - -#include - -class HttpClient : public Process { - public: - HttpClient(); - - unsigned int get(String &url); - unsigned int get(const char * url); - void getAsynchronously(String &url); - void getAsynchronously(const char * url); - unsigned int post(String &url, String &data); - unsigned int post(const char * url, const char * data); - void postAsynchronously(String &url, String &data); - void postAsynchronously(const char * url, const char * data); - void setHeader(String &header); - void setHeader(const char * header); - boolean ready(); - unsigned int getResult(); - void noCheckSSL(); - void checkSSL(); - - private: - boolean insecure; - - private: - void addHeader(); - String header; -}; - -#endif /* HTTPCLIENT_H_ */ diff --git a/libraries/Bridge/src/Mailbox.cpp b/libraries/Bridge/src/Mailbox.cpp deleted file mode 100644 index 0c571f73a33..00000000000 --- a/libraries/Bridge/src/Mailbox.cpp +++ /dev/null @@ -1,56 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include - -unsigned int MailboxClass::readMessage(uint8_t *buff, unsigned int size) { - uint8_t tmp[] = { 'm' }; - return bridge.transfer(tmp, 1, buff, size); -} - -void MailboxClass::readMessage(String &str, unsigned int maxLength) { - uint8_t tmp[] = { 'm' }; - // XXX: Is there a better way to create the string? - uint8_t buff[maxLength + 1]; - int l = bridge.transfer(tmp, 1, buff, maxLength); - buff[l] = 0; - str = (const char *)buff; -} - -void MailboxClass::writeMessage(const uint8_t *buff, unsigned int size) { - uint8_t cmd[] = {'M'}; - bridge.transfer(cmd, 1, buff, size, NULL, 0); -} - -void MailboxClass::writeMessage(const String& str) { - writeMessage((uint8_t*) str.c_str(), str.length()); -} - -void MailboxClass::writeJSON(const String& str) { - uint8_t cmd[] = {'J'}; - bridge.transfer(cmd, 1, (uint8_t*) str.c_str(), str.length(), NULL, 0); -} - -unsigned int MailboxClass::messageAvailable() { - uint8_t tmp[] = {'n'}; - uint8_t res[2]; - bridge.transfer(tmp, 1, res, 2); - return (res[0] << 8) + res[1]; -} - -MailboxClass Mailbox(Bridge); diff --git a/libraries/Bridge/src/Mailbox.h b/libraries/Bridge/src/Mailbox.h deleted file mode 100644 index b2e383308a3..00000000000 --- a/libraries/Bridge/src/Mailbox.h +++ /dev/null @@ -1,53 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef _MAILBOX_CLASS_H_INCLUDED_ -#define _MAILBOX_CLASS_H_INCLUDED_ - -#include - -class MailboxClass { - public: - MailboxClass(BridgeClass &b = Bridge) : bridge(b) { } - - void begin() { } - void end() { } - - // Receive a message and store it inside a buffer - unsigned int readMessage(uint8_t *buffer, unsigned int size); - // Receive a message and store it inside a String - void readMessage(String &str, unsigned int maxLength = 128); - - // Send a message - void writeMessage(const uint8_t *buffer, unsigned int size); - // Send a message - void writeMessage(const String& str); - // Send a JSON message - void writeJSON(const String& str); - - // Return the size of the next available message, 0 if there are - // no messages in queue. - unsigned int messageAvailable(); - - private: - BridgeClass &bridge; -}; - -extern MailboxClass Mailbox; - -#endif // _MAILBOX_CLASS_H_INCLUDED_ diff --git a/libraries/Bridge/src/Process.cpp b/libraries/Bridge/src/Process.cpp deleted file mode 100644 index 987f0b8ac16..00000000000 --- a/libraries/Bridge/src/Process.cpp +++ /dev/null @@ -1,142 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#include - -Process::~Process() { - close(); -} - -size_t Process::write(uint8_t c) { - uint8_t cmd[] = {'I', handle, c}; - bridge.transfer(cmd, 3); - return 1; -} - -void Process::flush() { -} - -int Process::available() { - // Look if there is new data available - doBuffer(); - return buffered; -} - -int Process::read() { - doBuffer(); - if (buffered == 0) - return -1; // no chars available - else { - buffered--; - return buffer[readPos++]; - } -} - -int Process::peek() { - doBuffer(); - if (buffered == 0) - return -1; // no chars available - else - return buffer[readPos]; -} - -void Process::doBuffer() { - // If there are already char in buffer exit - if (buffered > 0) - return; - - // Try to buffer up to 32 characters - readPos = 0; - uint8_t cmd[] = {'O', handle, sizeof(buffer)}; - buffered = bridge.transfer(cmd, 3, buffer, sizeof(buffer)); -} - -void Process::begin(const String &command) { - close(); - cmdline = new String(command); -} - -void Process::addParameter(const String ¶m) { - *cmdline += "\xFE"; - *cmdline += param; -} - -void Process::runAsynchronously() { - uint8_t cmd[] = {'R'}; - uint8_t res[2]; - bridge.transfer(cmd, 1, (uint8_t*)cmdline->c_str(), cmdline->length(), res, 2); - handle = res[1]; - - delete cmdline; - cmdline = NULL; - - if (res[0] == 0) // res[0] contains error code - started = true; -} - -boolean Process::running() { - uint8_t cmd[] = {'r', handle}; - uint8_t res[1]; - bridge.transfer(cmd, 2, res, 1); - return (res[0] == 1); -} - -unsigned int Process::exitValue() { - uint8_t cmd[] = {'W', handle}; - uint8_t res[2]; - bridge.transfer(cmd, 2, res, 2); - return (res[0] << 8) + res[1]; -} - -unsigned int Process::run() { - runAsynchronously(); - while (running()) - delay(100); - return exitValue(); -} - -void Process::close() { - if (started) { - uint8_t cmd[] = {'w', handle}; - bridge.transfer(cmd, 2); - } - started = false; -} - -unsigned int Process::runShellCommand(const String &command) { - runShellCommandAsynchronously(command); - while (running()) - delay(100); - return exitValue(); -} - -void Process::runShellCommandAsynchronously(const String &command) { - begin("/bin/ash"); - addParameter("-c"); - addParameter(command); - runAsynchronously(); -} - -// This method is currently unused -//static unsigned int __commandOutputAvailable(uint8_t handle) { -// uint8_t cmd[] = {'o', handle}; -// uint8_t res[1]; -// Bridge.transfer(cmd, 2, res, 1); -// return res[0]; -//} - diff --git a/libraries/Bridge/src/Process.h b/libraries/Bridge/src/Process.h deleted file mode 100644 index c4052e5325a..00000000000 --- a/libraries/Bridge/src/Process.h +++ /dev/null @@ -1,71 +0,0 @@ -/* - Copyright (c) 2013 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef PROCESS_H_ -#define PROCESS_H_ - -#include - -class Process : public Stream { - public: - // Constructor with a user provided BridgeClass instance - Process(BridgeClass &_b = Bridge) : - bridge(_b), started(false), buffered(0), readPos(0) { } - ~Process(); - - void begin(const String &command); - void addParameter(const String ¶m); - unsigned int run(); - void runAsynchronously(); - boolean running(); - unsigned int exitValue(); - void close(); - - unsigned int runShellCommand(const String &command); - void runShellCommandAsynchronously(const String &command); - - operator bool () { - return started; - } - - // Stream methods - // (read from process stdout) - int available(); - int read(); - int peek(); - // (write to process stdin) - size_t write(uint8_t); - void flush(); - // TODO: add optimized function for block write - - private: - BridgeClass &bridge; - unsigned int handle; - String *cmdline; - boolean started; - - private: - void doBuffer(); - uint8_t buffered; - uint8_t readPos; - static const int BUFFER_SIZE = 64; - uint8_t buffer[BUFFER_SIZE]; - -}; - -#endif diff --git a/libraries/Bridge/src/YunClient.h b/libraries/Bridge/src/YunClient.h deleted file mode 100644 index faff247c9b4..00000000000 --- a/libraries/Bridge/src/YunClient.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - Copyright (c) 2014 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef _YUN_CLIENT_H_ -#define _YUN_CLIENT_H_ - -#include - -#warning "The use of YunClient is deprecated. Use BridgeClient instead!" -typedef BridgeClient YunClient; - -#endif // _YUN_CLIENT_H_ diff --git a/libraries/Bridge/src/YunServer.h b/libraries/Bridge/src/YunServer.h deleted file mode 100644 index 95d05cd71e5..00000000000 --- a/libraries/Bridge/src/YunServer.h +++ /dev/null @@ -1,27 +0,0 @@ -/* - Copyright (c) 2014 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef _YUN_SERVER_H_ -#define _YUN_SERVER_H_ - -#include - -#warning "The use of YunServer is deprecated. Use BridgeServer instead!" -typedef BridgeServer YunServer; - -#endif // _YUN_SERVER_H_ diff --git a/libraries/Esplora/README.adoc b/libraries/Esplora/README.adoc deleted file mode 100644 index a24a480b23b..00000000000 --- a/libraries/Esplora/README.adoc +++ /dev/null @@ -1,24 +0,0 @@ -= Esplora Library for Arduino = - -The library offers easy access to the data from the onboard Esplora's sensors, and provides the ability to change the state of the outputs. - -For more information about this library please visit us at -http://www.arduino.cc/en/Reference/EsploraLibrary - -== License == - -Copyright (c) 2012 Arduino LLC. All right reserved. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Esplora/examples/Beginners/EsploraAccelerometer/EsploraAccelerometer.ino b/libraries/Esplora/examples/Beginners/EsploraAccelerometer/EsploraAccelerometer.ino deleted file mode 100644 index ffb24b5dc7a..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraAccelerometer/EsploraAccelerometer.ino +++ /dev/null @@ -1,36 +0,0 @@ -/* - Esplora Accelerometer - - This sketch shows you how to read the values from the accelerometer. - To see it in action, open the serial monitor and tilt the board. You'll see - the accelerometer values for each axis change when you tilt the board - on that axis. - - Created on 22 Dec 2012 - by Tom Igoe - - This example is in the public domain. - */ - -#include - -void setup() { - Serial.begin(9600); // initialize serial communications with your computer -} - -void loop() { - int xAxis = Esplora.readAccelerometer(X_AXIS); // read the X axis - int yAxis = Esplora.readAccelerometer(Y_AXIS); // read the Y axis - int zAxis = Esplora.readAccelerometer(Z_AXIS); // read the Z axis - - Serial.print("x: "); // print the label for X - Serial.print(xAxis); // print the value for the X axis - Serial.print("\ty: "); // print a tab character, then the label for Y - Serial.print(yAxis); // print the value for the Y axis - Serial.print("\tz: "); // print a tab character, then the label for Z - Serial.println(zAxis); // print the value for the Z axis - - delay(500); // wait half a second (500 milliseconds) -} - - diff --git a/libraries/Esplora/examples/Beginners/EsploraBlink/EsploraBlink.ino b/libraries/Esplora/examples/Beginners/EsploraBlink/EsploraBlink.ino deleted file mode 100644 index 0af16cc923b..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraBlink/EsploraBlink.ino +++ /dev/null @@ -1,42 +0,0 @@ - -/* - Esplora Blink - - This sketch blinks the Esplora's RGB LED. It goes through - all three primary colors (red, green, blue), then it - combines them for secondary colors(yellow, cyan, magenta), then - it turns on all the colors for white. - For best results cover the LED with a piece of white paper to see the colors. - - Created on 22 Dec 2012 - by Tom Igoe - - This example is in the public domain. - */ - -#include - - -void setup() { - // There's nothing to set up for this sketch -} - -void loop() { - Esplora.writeRGB(255, 0, 0); // make the LED red - delay(1000); // wait 1 second - Esplora.writeRGB(0, 255, 0); // make the LED green - delay(1000); // wait 1 second - Esplora.writeRGB(0, 0, 255); // make the LED blue - delay(1000); // wait 1 second - Esplora.writeRGB(255, 255, 0); // make the LED yellow - delay(1000); // wait 1 second - Esplora.writeRGB(0, 255, 255); // make the LED cyan - delay(1000); // wait 1 second - Esplora.writeRGB(255, 0, 255); // make the LED magenta - delay(1000); // wait 1 second - Esplora.writeRGB(255, 255, 255); // make the LED white - delay(1000); // wait 1 second - -} - - diff --git a/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino b/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino deleted file mode 100644 index 626e1475f98..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraJoystickMouse/EsploraJoystickMouse.ino +++ /dev/null @@ -1,58 +0,0 @@ -/* - Esplora Joystick Mouse - - This sketch shows you how to read the joystick and use it to control the movement - of the cursor on your computer. You're making your Esplora into a mouse! - - WARNING: this sketch will take over your mouse movement. If you lose control - of your mouse do the following: - 1) unplug the Esplora. - 2) open the EsploraBlink sketch - 3) hold the reset button down while plugging your Esplora back in - 4) while holding reset, click "Upload" - 5) when you see the message "Done compiling", release the reset button. - - This will stop your Esplora from controlling your mouse while you upload a sketch - that doesn't take control of the mouse. - - Created on 22 Dec 2012 - by Tom Igoe - Updated 8 March 2014 - by Scott Fitzgerald - - http://www.arduino.cc/en/Reference/EsploraReadJoystickSwitch - - This example is in the public domain. - */ - -#include - -void setup() { - Serial.begin(9600); // initialize serial communication with your computer - Mouse.begin(); // take control of the mouse -} - -void loop() { - int xValue = Esplora.readJoystickX(); // read the joystick's X position - int yValue = Esplora.readJoystickY(); // read the joystick's Y position - int button = Esplora.readJoystickSwitch(); // read the joystick pushbutton - Serial.print("Joystick X: "); // print a label for the X value - Serial.print(xValue); // print the X value - Serial.print("\tY: "); // print a tab character and a label for the Y value - Serial.print(yValue); // print the Y value - Serial.print("\tButton: "); // print a tab character and a label for the button - Serial.print(button); // print the button value - - int mouseX = map(xValue, -512, 512, 10, -10); // map the X value to a range of movement for the mouse X - int mouseY = map(yValue, -512, 512, -10, 10); // map the Y value to a range of movement for the mouse Y - Mouse.move(mouseX, mouseY, 0); // move the mouse - - if (button == 0) { // if the joystick button is pressed - Mouse.press(); // send a mouse click - } else { - Mouse.release(); // if it's not pressed, release the mouse button - } - - delay(10); // a short delay before moving again -} - diff --git a/libraries/Esplora/examples/Beginners/EsploraLedShow/EsploraLedShow.ino b/libraries/Esplora/examples/Beginners/EsploraLedShow/EsploraLedShow.ino deleted file mode 100644 index 5503628a6a3..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraLedShow/EsploraLedShow.ino +++ /dev/null @@ -1,42 +0,0 @@ -/* - Esplora LED Show - - Makes the RGB LED bright and glow as the joystick or the - slider are moved. - - Created on 22 november 2012 - By Enrico Gueli - Modified 22 Dec 2012 - by Tom Igoe -*/ -#include - -void setup() { - // initialize the serial communication: - Serial.begin(9600); -} - -void loop() { - // read the sensors into variables: - int xAxis = Esplora.readJoystickX(); - int yAxis = Esplora.readJoystickY(); - int slider = Esplora.readSlider(); - - // convert the sensor readings to light levels: - byte red = map(xAxis, -512, 512, 0, 255); - byte green = map(yAxis, -512, 512, 0, 255); - byte blue = slider / 4; - - // print the light levels: - Serial.print(red); - Serial.print(' '); - Serial.print(green); - Serial.print(' '); - Serial.println(blue); - - // write the light levels to the LED. - Esplora.writeRGB(red, green, blue); - - // add a delay to keep the LED from flickering: - delay(10); -} diff --git a/libraries/Esplora/examples/Beginners/EsploraLedShow2/EsploraLedShow2.ino b/libraries/Esplora/examples/Beginners/EsploraLedShow2/EsploraLedShow2.ino deleted file mode 100644 index 6a383ae3d9a..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraLedShow2/EsploraLedShow2.ino +++ /dev/null @@ -1,55 +0,0 @@ -/* - Esplora Led/Microphone - - This simple sketch reads the microphone, light sensor, and slider. - Then it uses those readings to set the brightness of red, green and blue - channels of the RGB LED. The red channel will change with the loudness - "heared" by the microphone, the green channel changes as the - amount of light in the room and the blue channel will change - with the position of the slider. - - Created on 22 november 2012 - By Enrico Gueli - Modified 24 Nov 2012 - by Tom Igoe -*/ - -#include - -void setup() { - // initialize the serial communication: - Serial.begin(9600); -} - -int lowLight = 400; // the light sensor reading when it's covered -int highLight = 1023; // the maximum light sensor reading -int minGreen = 0; // minimum brightness of the green LED -int maxGreen = 100; // maximum brightness of the green LED - -void loop() { - // read the sensors into variables: - int mic = Esplora.readMicrophone(); - int light = Esplora.readLightSensor(); - int slider = Esplora.readSlider(); - - // convert the sensor readings to light levels: - byte red = constrain(mic, 0, 255); - byte green = constrain( - map(light, lowLight, highLight, minGreen, maxGreen), - 0, 255); - byte blue = slider / 4; - - // print the light levels (to see what's going on): - Serial.print(red); - Serial.print(' '); - Serial.print(green); - Serial.print(' '); - Serial.println(blue); - - // write the light levels to the LED. - // note that the green value is always 0: - Esplora.writeRGB(red, green, blue); - - // add a delay to keep the LED from flickering: - delay(10); -} diff --git a/libraries/Esplora/examples/Beginners/EsploraLightCalibrator/EsploraLightCalibrator.ino b/libraries/Esplora/examples/Beginners/EsploraLightCalibrator/EsploraLightCalibrator.ino deleted file mode 100644 index 97412737d5b..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraLightCalibrator/EsploraLightCalibrator.ino +++ /dev/null @@ -1,91 +0,0 @@ -/* - Esplora Led calibration - - This sketch shows you how to read and calibrate the light sensor. - Because light levels vary from one location to another, you need to calibrate the - sensor for each location. To do this, you read the sensor for a few seconds, - and save the highest and lowest readings as maximum and minimum. - Then, when you're using the sensor's reading (for example, to set the brightness - of the LED), you map the sensor's reading to a range between the minimum - and the maximum. - - Created on 22 Dec 2012 - by Tom Igoe - - This example is in the public domain. - */ - -#include - -// variables: -int lightMin = 1023; // minimum sensor value -int lightMax = 0; // maximum sensor value -boolean calibrated = false; // whether the sensor's been calibrated yet - -void setup() { - // initialize the serial communication: - Serial.begin(9600); - - // print an intial message - Serial.println("To calibrate the light sensor, press and hold Switch 1"); -} - -void loop() { - // if switch 1 is pressed, go to the calibration function again: - if (Esplora.readButton(1) == LOW) { - calibrate(); - } - // read the sensor into a variable: - int light = Esplora.readLightSensor(); - - // map the light level to a brightness level for the LED - // using the calibration min and max: - int brightness = map(light, lightMin, lightMax, 0, 255); - // limit the brightness to a range from 0 to 255: - brightness = constrain(brightness, 0, 255); - // write the brightness to the blue LED. - Esplora.writeBlue(brightness); - - // if the calibration's been done, show the sensor and brightness - // levels in the serial monitor: - if (calibrated == true) { - // print the light sensor levels and the LED levels (to see what's going on): - Serial.print("light sensor level: "); - Serial.print(light); - Serial.print(" blue brightness: "); - Serial.println(brightness); - } - // add a delay to keep the LED from flickering: - delay(10); -} - -void calibrate() { - // tell the user what do to using the serial monitor: - Serial.println("While holding switch 1, shine a light on the light sensor, then cover it."); - - // calibrate while switch 1 is pressed: - while (Esplora.readButton(1) == LOW) { - // read the sensor value: - int light = Esplora.readLightSensor(); - - // record the maximum sensor value: - if (light > lightMax) { - lightMax = light; - } - - // record the minimum sensor value: - if (light < lightMin) { - lightMin = light; - } - // note that you're calibrated, for future reference: - calibrated = true; - } -} - - - - - - - - diff --git a/libraries/Esplora/examples/Beginners/EsploraMusic/EsploraMusic.ino b/libraries/Esplora/examples/Beginners/EsploraMusic/EsploraMusic.ino deleted file mode 100644 index 464a85e7661..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraMusic/EsploraMusic.ino +++ /dev/null @@ -1,52 +0,0 @@ -/* - Esplora Music - - This sketch turns the Esplora in a simple musical instrument. - Press the Switch 1 and move the slider to see how it works. - - Created on 22 november 2012 - By Enrico Gueli - modified 22 Dec 2012 - by Tom Igoe -*/ - - -#include - -// these are the frequencies for the notes from middle C -// to one octave above middle C: -const int note[] = { - 262, // C - 277, // C# - 294, // D - 311, // D# - 330, // E - 349, // F - 370, // F# - 392, // G - 415, // G# - 440, // A - 466, // A# - 494, // B - 523 // C next octave -}; - -void setup() { -} - -void loop() { - // read the button labeled SWITCH_DOWN. If it's low, - // then play a note: - if (Esplora.readButton(SWITCH_DOWN) == LOW) { - int slider = Esplora.readSlider(); - - // use map() to map the slider's range to the - // range of notes you have: - byte thisNote = map(slider, 0, 1023, 0, 13); - // play the note corresponding to the slider's position: - Esplora.tone(note[thisNote]); - } else { - // if the button isn't pressed, turn the note off: - Esplora.noTone(); - } -} diff --git a/libraries/Esplora/examples/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino b/libraries/Esplora/examples/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino deleted file mode 100644 index 6550dc7d3dc..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraSoundSensor/EsploraSoundSensor.ino +++ /dev/null @@ -1,41 +0,0 @@ -/* - Esplora Sound Sensor - - This sketch shows you how to read the microphone sensor. The microphone -will range from 0 (total silence) to 1023 (really loud). - When you're using the sensor's reading (for example, to set the brightness - of the LED), you map the sensor's reading to a range between the minimum - and the maximum. - - Created on 22 Dec 2012 - by Tom Igoe - - This example is in the public domain. - */ - -#include - -void setup() { - // initialize the serial communication: - Serial.begin(9600); -} - -void loop() { - // read the sensor into a variable: - int loudness = Esplora.readMicrophone(); - - // map the sound level to a brightness level for the LED: - int brightness = map(loudness, 0, 1023, 0, 255); - // write the brightness to the green LED: - Esplora.writeGreen(brightness); - - - // print the microphone levels and the LED levels (to see what's going on): - Serial.print("sound level: "); - Serial.print(loudness); - Serial.print(" Green brightness: "); - Serial.println(brightness); - // add a delay to keep the LED from flickering: - delay(10); -} - diff --git a/libraries/Esplora/examples/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino b/libraries/Esplora/examples/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino deleted file mode 100644 index 1db67699aa6..00000000000 --- a/libraries/Esplora/examples/Beginners/EsploraTemperatureSensor/EsploraTemperatureSensor.ino +++ /dev/null @@ -1,35 +0,0 @@ -/* - Esplora Temperature Sensor - - This sketch shows you how to read the Esplora's temperature sensor - You can read the temperature sensor in Farhenheit or Celsius. - - Created on 22 Dec 2012 - by Tom Igoe - - This example is in the public domain. - */ -#include - -void setup() { - Serial.begin(9600); // initialize serial communications with your computer -} - -void loop() { - // read the temperature sensor in Celsius, then Fahrenheit: - int celsius = Esplora.readTemperature(DEGREES_C); - int fahrenheit = Esplora.readTemperature(DEGREES_F); - - // print the results: - Serial.print("Temperature is: "); - Serial.print(celsius); - Serial.print(" degrees Celsius, or "); - Serial.print(fahrenheit); - Serial.println(" degrees Fahrenheit."); - Serial.println(" Fahrenheit = (9/5 * Celsius) + 32"); - - // wait a second before reading again: - delay(1000); -} - - diff --git a/libraries/Esplora/examples/Experts/EsploraKart/EsploraKart.ino b/libraries/Esplora/examples/Experts/EsploraKart/EsploraKart.ino deleted file mode 100644 index 106caedf3b4..00000000000 --- a/libraries/Esplora/examples/Experts/EsploraKart/EsploraKart.ino +++ /dev/null @@ -1,124 +0,0 @@ -/* - Esplora Kart - - This sketch turns the Esplora into a PC game pad. - - It uses the both the analog joystick and the four switches. - By moving the joystick in a direction or by pressing a switch, - the PC will "see" that a key is pressed. If the PC is running - a game that has keyboard input, the Esplora can control it. - - The default configuration is suitable for SuperTuxKart, an - open-source racing game. It can be downloaded from - http://supertuxkart.sourceforge.net/ . - - Created on 22 november 2012 - By Enrico Gueli -*/ - - -#include - -/* - You're going to handle eight different buttons. You'll use arrays, - which are ordered lists of variables with a fixed size. Each array - has an index (counting from 0) to keep track of the position - you're reading in the array, and each position can contain a number. - - This code uses three different arrays: one for the buttons you'll read; - a second to hold the current states of those buttons; and a third to hold - the keystrokes associated with each button. - */ - -/* - This array holds the last sensed state of each of the buttons - you're reading. - Later in the code, you'll read the button states, and compare them - to the previous states that are stored in this array. If the two - states are different, it means that the button was either - pressed or released. - */ -boolean buttonStates[8]; - -/* - This array holds the names of the buttons being read. - Later in the sketch, you'll use these names with - the method Esplora.readButton(x), where x - is one of these buttons. - */ -const byte buttons[] = { - JOYSTICK_DOWN, - JOYSTICK_LEFT, - JOYSTICK_UP, - JOYSTICK_RIGHT, - SWITCH_RIGHT, // fire - SWITCH_LEFT, // bend - SWITCH_UP, // nitro - SWITCH_DOWN, // look back -}; - -/* - This array tells what keystroke to send to the PC when a - button is pressed. - If you look at this array and the above one, you can see that - the "cursor down" keystroke is sent when the joystick is moved - down, the "cursor up" keystroke when the joystick is moved up - and so on. -*/ -const char keystrokes[] = { - KEY_DOWN_ARROW, - KEY_LEFT_ARROW, - KEY_UP_ARROW, - KEY_RIGHT_ARROW, - ' ', - 'V', - 'N', - 'B' -}; - -/* - This is code is run only at startup, to initialize the - virtual USB keyboard. -*/ -void setup() { - Keyboard.begin(); -} - -/* - After setup() is finished, this code is run continuously. - Here we continuously check if something happened with the - buttons. -*/ -void loop() { - - // Iterate through all the buttons: - for (byte thisButton = 0; thisButton < 8; thisButton++) { - boolean lastState = buttonStates[thisButton]; - boolean newState = Esplora.readButton(buttons[thisButton]); - if (lastState != newState) { // Something changed! - /* - The Keyboard library allows you to "press" and "release" the - keys as two distinct actions. These actions can be - linked to the buttons we're handling. - */ - if (newState == PRESSED) { - Keyboard.press(keystrokes[thisButton]); - } else if (newState == RELEASED) { - Keyboard.release(keystrokes[thisButton]); - } - } - - // Store the new button state, so you can sense a difference later: - buttonStates[thisButton] = newState; - } - - /* - Wait a little bit (50ms) between a check and another. - When a mechanical switch is pressed or released, the - contacts may bounce very rapidly. If the check is done too - fast, these bounces may be confused as multiple presses and - may lead to unexpected behaviour. - */ - delay(50); -} - diff --git a/libraries/Esplora/examples/Experts/EsploraPong/EsploraPong.ino b/libraries/Esplora/examples/Experts/EsploraPong/EsploraPong.ino deleted file mode 100644 index 945fdee26fb..00000000000 --- a/libraries/Esplora/examples/Experts/EsploraPong/EsploraPong.ino +++ /dev/null @@ -1,44 +0,0 @@ -/* - Esplora Pong - - This sketch connects serially to a Processing sketch to control a Pong game. - It sends the position of the slider and the states of three pushbuttons to the - Processing sketch serially, separated by commas. The Processing sketch uses that - data to control the graphics in the sketch. - - The slider sets a paddle's height - Switch 1 is resets the game - Switch 2 resets the ball to the center - Switch 3 reverses the players - - You can play this game with one or two Esploras. - - Created on 22 Dec 2012 - by Tom Igoe - - This example is in the public domain. - */ - -#include - -void setup() { - Serial.begin(9600); // initialize serial communication -} - -void loop() { - // read the slider and three of the buttons - int slider = Esplora.readSlider(); - int resetButton = Esplora.readButton(SWITCH_1); - int serveButton = Esplora.readButton(SWITCH_3); - int switchPlayerButton = Esplora.readButton(SWITCH_4); - - Serial.print(slider); // print the slider value - Serial.print(","); // add a comma - Serial.print(resetButton); // print the reset button value - Serial.print(","); // add another comma - Serial.print(serveButton); // print the serve button value - Serial.print(","); // add another comma - Serial.println(switchPlayerButton); // print the last button with a newline - delay(10); // delay before sending the next set -} - diff --git a/libraries/Esplora/examples/Experts/EsploraRemote/EsploraRemote.ino b/libraries/Esplora/examples/Experts/EsploraRemote/EsploraRemote.ino deleted file mode 100644 index 991821463fb..00000000000 --- a/libraries/Esplora/examples/Experts/EsploraRemote/EsploraRemote.ino +++ /dev/null @@ -1,117 +0,0 @@ -/* - Esplora Remote - - This sketch allows to test all the Esplora's peripherals. - It is also used with the ProcessingStart sketch (for Processing). - - When uploaded, you can open the Serial monitor and write one of - the following commands (without quotes) to get an answer: - - "D": prints the current value of all sensors, separated by a comma. - See the dumpInputs() function below to get the meaning of - each value. - - "Rxxx" - "Gxxx" - "Bxxx": set the color of the RGB led. For example, write "R255" - to turn on the red to full brightness, "G128" to turn - the green to half brightness, or "G0" to turn off - the green channel. - - "Txxxx": play a tone with the buzzer. The number is the - frequency, e.g. "T440" plays the central A note. - Write "T0" to turn off the buzzer. - - - Created on 22 november 2012 - By Enrico Gueli - Modified 23 Dec 2012 - by Tom Igoe - */ - -#include - -void setup() { - while (!Serial); // needed for Leonardo-based board like Esplora - Serial.begin(9600); -} - -void loop() { - if (Serial.available()) { - parseCommand(); - } -} - -/* - * This function reads a character from the serial line and - * decide what to do next. The "what to do" part is given by - * function it calls (e.g. dumpInputs(), setRed() and so on). - */ -void parseCommand() { - char cmd = Serial.read(); - switch (cmd) { - case 'D': - dumpInputs(); - break; - case 'R': - setRed(); - break; - case 'G': - setGreen(); - break; - case 'B': - setBlue(); - break; - case 'T': - setTone(); - break; - } -} - -void dumpInputs() { - Serial.print(Esplora.readButton(SWITCH_1)); - Serial.print(','); - Serial.print(Esplora.readButton(SWITCH_2)); - Serial.print(','); - Serial.print(Esplora.readButton(SWITCH_3)); - Serial.print(','); - Serial.print(Esplora.readButton(SWITCH_4)); - Serial.print(','); - Serial.print(Esplora.readSlider()); - Serial.print(','); - Serial.print(Esplora.readLightSensor()); - Serial.print(','); - Serial.print(Esplora.readTemperature(DEGREES_C)); - Serial.print(','); - Serial.print(Esplora.readMicrophone()); - Serial.print(','); - Serial.print(Esplora.readJoystickSwitch()); - Serial.print(','); - Serial.print(Esplora.readJoystickX()); - Serial.print(','); - Serial.print(Esplora.readJoystickY()); - Serial.print(','); - Serial.print(Esplora.readAccelerometer(X_AXIS)); - Serial.print(','); - Serial.print(Esplora.readAccelerometer(Y_AXIS)); - Serial.print(','); - Serial.print(Esplora.readAccelerometer(Z_AXIS)); - Serial.println(); -} - -void setRed() { - Esplora.writeRed(Serial.parseInt()); -} - -void setGreen() { - Esplora.writeGreen(Serial.parseInt()); -} - -void setBlue() { - Esplora.writeBlue(Serial.parseInt()); -} - -void setTone() { - Esplora.tone(Serial.parseInt()); -} - diff --git a/libraries/Esplora/examples/Experts/EsploraTable/EsploraTable.ino b/libraries/Esplora/examples/Experts/EsploraTable/EsploraTable.ino deleted file mode 100644 index 7ac1578e9c5..00000000000 --- a/libraries/Esplora/examples/Experts/EsploraTable/EsploraTable.ino +++ /dev/null @@ -1,216 +0,0 @@ -/* - Esplora Table - - Acts like a keyboard that prints sensor - data in a table-like text, row by row. - - At startup, it does nothing. It waits for you to open a - spreadsheet (e.g. Google Drive spreadsheet) so it can write - data. By pressing Switch 1, it starts printing the table - headers and the first row of data. It waits a bit, then it - will print another row, and so on. - - The amount of time between each row is determined by the slider. - If put to full left, the sketch will wait 10 seconds; at - full right position, it will wait 5 minutes. An intermediate - position will make the sketch wait for some time in-between. - - Clicking the Switch 1 at any time will stop the logging. - - The color LED shows what the sketch is doing: - blue = idle, waiting for you to press Switch 1 to start logging - green = active; will print soon - red = printing data to the PC - - Created on 22 november 2012 - By Enrico Gueli - modified 24 Nov 2012 - by Tom Igoe -*/ - -#include - -/* - * this variable tells if the data-logging is currently active. - */ -boolean active = false; - -/* - * this variable holds the time in the future when the sketch - * will "sample" the data (sampling is the act of reading some - * input at a known time). This variable is checked continuously - * against millis() to know when it's time to sample. - */ -unsigned long nextSampleAt = 0; - -/* - * This variable just holds the millis() value at the time the - * logging was activated. This is needed to enter the correct - * value in the "Time" column in the printed table. - */ -unsigned long startedAt = 0; - - -/* - * when the "active" variable is set to true, the same is done - * with this variable. This is needed because the code that does - * the "just-after-activation" stuff is run some time later than - * the code that says "be active now". - */ -boolean justActivated = false; - - -/* - * this variable holds the last sensed status of the switch press - * button. If the code sees a difference between the value of - * this variable and the current status of the switch, it means - * that the button was either pressed or released. - */ -boolean lastStartBtn = HIGH; - -/* - * Initialization code. The virtual USB keyboard must be - * initialized; the Serial class is needed just for debugging. - */ -void setup() { - Keyboard.begin(); - Serial.begin(9600); -} - -/* - * This code is run continuously. - */ -void loop() { - /* - * note: we don't use Arduino's delay() here, because we can't - * normally do anything while delaying. Our own version lets us - * check for button presses often enough to not miss any event. - */ - activeDelay(50); - - /* - * the justActivated variable may be set to true in the - * checkSwitchPress() function. Here we check its status to - * print the table headers and configure what's needed to. - */ - if (justActivated == true) { - justActivated = false; // do this just once - printHeaders(); - // do next sampling ASAP - nextSampleAt = startedAt = millis(); - } - - if (active == true) { - if (nextSampleAt < millis()) { - // it's time to sample! - int slider = Esplora.readSlider(); - // the row below maps the slider position to a range between - // 10 and 290 seconds. - int sampleInterval = map(slider, 0, 1023, 10, 290); - nextSampleAt = millis() + sampleInterval * 1000; - - logAndPrint(); - } - - // let the RGB led blink green once per second, for 200ms. - unsigned int ms = millis() % 1000; - if (ms < 200) { - Esplora.writeGreen(50); - } else { - Esplora.writeGreen(0); - } - - Esplora.writeBlue(0); - } else - // while not active, keep a reassuring blue color coming - // from the Esplora... - { - Esplora.writeBlue(20); - } - -} - -/* - * Print the table headers. - */ -void printHeaders() { - Keyboard.print("Time"); - Keyboard.write(KEY_TAB); - activeDelay(300); // Some spreadsheets are slow, e.g. Google - // Drive that wants to save every edit. - Keyboard.print("Accel X"); - Keyboard.write(KEY_TAB); - activeDelay(300); - Keyboard.print("Accel Y"); - Keyboard.write(KEY_TAB); - activeDelay(300); - Keyboard.print("Accel Z"); - Keyboard.println(); - activeDelay(300); -} - -void logAndPrint() { - // do all the samplings at once, because keystrokes have delays - unsigned long timeSecs = (millis() - startedAt) / 1000; - int xAxis = Esplora.readAccelerometer(X_AXIS); - int yAxis = Esplora.readAccelerometer(Y_AXIS); - int zAxis = Esplora.readAccelerometer(Z_AXIS); - - Esplora.writeRed(100); - - Keyboard.print(timeSecs); - Keyboard.write(KEY_TAB); - activeDelay(300); - Keyboard.print(xAxis); - Keyboard.write(KEY_TAB); - activeDelay(300); - Keyboard.print(yAxis); - Keyboard.write(KEY_TAB); - activeDelay(300); - Keyboard.print(zAxis); - Keyboard.println(); - activeDelay(300); - Keyboard.write(KEY_HOME); - - Esplora.writeRed(0); -} - -/** - * Similar to delay(), but allows the program to do something else - * in the meanwhile. In particular, it calls checkSwitchPress(). - * Note 1: it may wait longer than the specified amount, not less; - * Note 2: beware of data synchronization issues, e.g. if the - * activeDelay() function alters some variables used by the - * caller of this function. - */ -void activeDelay(unsigned long amount) { - unsigned long at = millis() + amount; - while (millis() < at) { - checkSwitchPress(); - } -} - -/* - * This function reads the status of the switch; if it sees that - * it was pressed, toggles the status of the "active" variable. - * If it's set to true, also the justActivated variable is set to - * true, so the loop() function above can do the right things. - * This function should be called as often as possible and do as - * little as possible, because it can be called while another - * function is running. - */ -void checkSwitchPress() { - boolean startBtn = Esplora.readButton(SWITCH_DOWN); - - if (startBtn != lastStartBtn) { - if (startBtn == HIGH) { // button released - active = !active; - if (active) { - justActivated = true; - } - } - - lastStartBtn = startBtn; - } -} - diff --git a/libraries/Esplora/keywords.txt b/libraries/Esplora/keywords.txt deleted file mode 100644 index afd5ecd1b0f..00000000000 --- a/libraries/Esplora/keywords.txt +++ /dev/null @@ -1,72 +0,0 @@ -####################################### -# Syntax Coloring Map For Esplora -####################################### -# Class -####################################### - -Esplora KEYWORD1 EsploraLibrary - -####################################### -# Methods and Functions -####################################### - -begin KEYWORD2 -readSlider KEYWORD2 -readLightSensor KEYWORD2 -readTemperature KEYWORD2 -readMicrophone KEYWORD2 -readJoystickSwitch KEYWORD2 -readJoystickButton KEYWORD2 -readJoystickX KEYWORD2 -readJoystickY KEYWORD2 -readAccelerometer KEYWORD2 -readButton KEYWORD2 -writeRGB KEYWORD2 -writeRed KEYWORD2 -writeGreen KEYWORD2 -writeBlue KEYWORD2 -readRed KEYWORD2 -readGreen KEYWORD2 -readBlue KEYWORD2 -readTinkerkitInput KEYWORD2 -readTinkerkitInputA KEYWORD2 -readTinkerkitInputB KEYWORD2 -tone KEYWORD2 -noTone KEYWORD2 - - -####################################### -# Constants -####################################### - -JOYSTICK_BASE LITERAL1 -MAX_CHANNELS LITERAL1 -CH_SWITCH_1 LITERAL1 -CH_SWITCH_2 LITERAL1 -CH_SWITCH_3 LITERAL1 -CH_SWITCH_4 LITERAL1 -CH_SLIDER LITERAL1 -CH_LIGHT LITERAL1 -CH_TEMPERATURE LITERAL1 -CH_MIC LITERAL1 -CH_JOYSTICK_SW LITERAL1 -CH_JOYSTICK_X LITERAL1 -CH_JOYSTICK_Y LITERAL1 -SWITCH_1 LITERAL1 -SWITCH_2 LITERAL1 -SWITCH_3 LITERAL1 -SWITCH_4 LITERAL1 -SWITCH_DOWN LITERAL1 -SWITCH_LEFT LITERAL1 -SWITCH_UP LITERAL1 -SWITCH_RIGHT LITERAL1 -JOYSTICK_DOWN LITERAL1 -JOYSTICK_LEFT LITERAL1 -JOYSTICK_UP LITERAL1 -PRESSED LITERAL1 -RELEASED LITERAL1 -DEGREES_C LITERAL1 -DEGREES_F LITERAL1 -X_AXIS LITERAL1 -Y_AXIS LITERAL1 -Z_AXIS LITERAL1 diff --git a/libraries/Esplora/library.properties b/libraries/Esplora/library.properties deleted file mode 100644 index 26ad29b1f32..00000000000 --- a/libraries/Esplora/library.properties +++ /dev/null @@ -1,9 +0,0 @@ -name=Esplora -version=1.0.4 -author=Arduino -maintainer=Arduino -sentence=Grants easy access to the various sensors and actuators of the Esplora. For Arduino Esplora only. -paragraph=The sensors available on the board are:2-Axis analog joystick with center push-button,4 push-buttons,microphone, light sensor, temperature sensor, 3-axis accelerometer, 2 TinkerKit input connectors.
The actuators available on the board are: bright RGB LED, piezo buzzer, 2 TinkerKit output connectors. -category=Device Control -url=http://www.arduino.cc/en/Reference/EsploraLibrary -architectures=avr diff --git a/libraries/Esplora/src/Esplora.cpp b/libraries/Esplora/src/Esplora.cpp deleted file mode 100644 index a808944467e..00000000000 --- a/libraries/Esplora/src/Esplora.cpp +++ /dev/null @@ -1,184 +0,0 @@ -/* - Esplora.cpp - Arduino Esplora board library - Written by Enrico Gueli - Copyright (c) 2012 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - - -#include "Esplora.h" - -_Esplora Esplora; - -/* - * The following constants tell, for each accelerometer - * axis, which values are returned when the axis measures - * zero acceleration. - */ -const int ACCEL_ZERO_X = 320; -const int ACCEL_ZERO_Y = 330; -const int ACCEL_ZERO_Z = 310; - -const byte MUX_ADDR_PINS[] = { A0, A1, A2, A3 }; -const byte MUX_COM_PIN = A4; - -const int JOYSTICK_DEAD_ZONE = 100; - -const byte RED_PIN = 5; -const byte BLUE_PIN = 9; -const byte GREEN_PIN = 10; - -const byte BUZZER_PIN = 6; - -// non-multiplexer Esplora pins: -// Accelerometer: x-A5, y-A11, z-A6 -// External outputs: D3, D11 -// Buzzer: D6 -// RGB Led: red-D5, green-D10, blue-D9 -// Led 13: D13 - -const byte ACCEL_X_PIN = A5; -const byte ACCEL_Y_PIN = A11; -const byte ACCEL_Z_PIN = A6; - -const byte LED_PIN = 13; - -_Esplora::_Esplora() { - for (byte p=0; p<4; p++) { - pinMode(MUX_ADDR_PINS[p], OUTPUT); - } - pinMode(RED_PIN, OUTPUT); - pinMode(GREEN_PIN, OUTPUT); - pinMode(BLUE_PIN, OUTPUT); -} - -unsigned int _Esplora::readChannel(byte channel) { - digitalWrite(MUX_ADDR_PINS[0], (channel & 1) ? HIGH : LOW); - digitalWrite(MUX_ADDR_PINS[1], (channel & 2) ? HIGH : LOW); - digitalWrite(MUX_ADDR_PINS[2], (channel & 4) ? HIGH : LOW); - digitalWrite(MUX_ADDR_PINS[3], (channel & 8) ? HIGH : LOW); - // workaround to cope with lack of pullup resistor on joystick switch - if (channel == CH_JOYSTICK_SW) { - pinMode(MUX_COM_PIN, INPUT_PULLUP); - unsigned int joystickSwitchState = (digitalRead(MUX_COM_PIN) == HIGH) ? 1023 : 0; - digitalWrite(MUX_COM_PIN, LOW); - return joystickSwitchState; - } - else - return analogRead(MUX_COM_PIN); -} - -boolean _Esplora::joyLowHalf(byte joyCh) { - return (readChannel(joyCh) < 512 - JOYSTICK_DEAD_ZONE) - ? LOW : HIGH; -} - -boolean _Esplora::joyHighHalf(byte joyCh) { - return (readChannel(joyCh) > 512 + JOYSTICK_DEAD_ZONE) - ? LOW : HIGH; -} - -boolean _Esplora::readButton(byte ch) { - if (ch >= SWITCH_1 && ch <= SWITCH_4) { - ch--; - } - - switch(ch) { - case JOYSTICK_RIGHT: - return joyLowHalf(CH_JOYSTICK_X); - case JOYSTICK_LEFT: - return joyHighHalf(CH_JOYSTICK_X); - case JOYSTICK_UP: - return joyLowHalf(CH_JOYSTICK_Y); - case JOYSTICK_DOWN: - return joyHighHalf(CH_JOYSTICK_Y); - } - - unsigned int val = readChannel(ch); - return (val > 512) ? HIGH : LOW; -} - -boolean _Esplora::readJoystickButton() { - if (readChannel(CH_JOYSTICK_SW) == 1023) { - return HIGH; - } else if (readChannel(CH_JOYSTICK_SW) == 0) { - return LOW; - } -} - - -void _Esplora::writeRGB(byte r, byte g, byte b) { - writeRed(r); - writeGreen(g); - writeBlue(b); -} - -#define RGB_FUNC(name, pin, lastVar) \ -void _Esplora::write##name(byte val) { \ - if (val == lastVar) \ - return; \ - analogWrite(pin, val); \ - lastVar = val; \ - delay(5); \ -} \ -\ -byte _Esplora::read##name() { \ - return lastVar; \ -} - -RGB_FUNC(Red, RED_PIN, lastRed) -RGB_FUNC(Green, GREEN_PIN, lastGreen) -RGB_FUNC(Blue, BLUE_PIN, lastBlue) - -void _Esplora::tone(unsigned int freq) { - if (freq > 0) - ::tone(BUZZER_PIN, freq); - else - ::noTone(BUZZER_PIN); -} - -void _Esplora::tone(unsigned int freq, unsigned long duration) { - if (freq > 0) - ::tone(BUZZER_PIN, freq, duration); - else - ::noTone(BUZZER_PIN); -} - -void _Esplora::noTone() { - ::noTone(BUZZER_PIN); -} - -int _Esplora::readTemperature(const byte scale) { - long rawT = readChannel(CH_TEMPERATURE); - if (scale == DEGREES_C) { - return (int)((rawT * 500 / 1024) - 50); - } - else if (scale == DEGREES_F) { - return (int)((rawT * 450 / 512 ) - 58); - } - else { - return readTemperature(DEGREES_C); - } -} - -int _Esplora::readAccelerometer(const byte axis) { - switch (axis) { - case X_AXIS: return analogRead(ACCEL_X_PIN) - ACCEL_ZERO_X; - case Y_AXIS: return analogRead(ACCEL_Y_PIN) - ACCEL_ZERO_Y; - case Z_AXIS: return analogRead(ACCEL_Z_PIN) - ACCEL_ZERO_Z; - default: return 0; - } -} diff --git a/libraries/Esplora/src/Esplora.h b/libraries/Esplora/src/Esplora.h deleted file mode 100644 index 4e59fbe08f4..00000000000 --- a/libraries/Esplora/src/Esplora.h +++ /dev/null @@ -1,177 +0,0 @@ -/* - Esplora.h - Arduino Esplora board library - Written by Enrico Gueli - Copyright (c) 2012 Arduino LLC. All right reserved. - - This library is free software; you can redistribute it and/or - modify it under the terms of the GNU Lesser General Public - License as published by the Free Software Foundation; either - version 2.1 of the License, or (at your option) any later version. - - This library is distributed in the hope that it will be useful, - but WITHOUT ANY WARRANTY; without even the implied warranty of - MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU - Lesser General Public License for more details. - - You should have received a copy of the GNU Lesser General Public - License along with this library; if not, write to the Free Software - Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA -*/ - -#ifndef ESPLORA_H_ -#define ESPLORA_H_ - -#include - -/* - * The following constants are used internally by the Esplora - * library code. - */ - -const byte JOYSTICK_BASE = 16; // it's a "virtual" channel: its ID won't conflict with real ones - -const byte MAX_CHANNELS = 13; - -const byte CH_SWITCH_1 = 0; -const byte CH_SWITCH_2 = 1; -const byte CH_SWITCH_3 = 2; -const byte CH_SWITCH_4 = 3; -const byte CH_SLIDER = 4; -const byte CH_LIGHT = 5; -const byte CH_TEMPERATURE = 6; -const byte CH_MIC = 7; -const byte CH_TINKERKIT_A = 8; -const byte CH_TINKERKIT_B = 9; -const byte CH_JOYSTICK_SW = 10; -const byte CH_JOYSTICK_X = 11; -const byte CH_JOYSTICK_Y = 12; - -/* - * The following constants can be used with the readButton() - * method. - */ - -const byte SWITCH_1 = 1; -const byte SWITCH_2 = 2; -const byte SWITCH_3 = 3; -const byte SWITCH_4 = 4; - -const byte SWITCH_DOWN = SWITCH_1; -const byte SWITCH_LEFT = SWITCH_2; -const byte SWITCH_UP = SWITCH_3; -const byte SWITCH_RIGHT = SWITCH_4; - -const byte JOYSTICK_DOWN = JOYSTICK_BASE; -const byte JOYSTICK_LEFT = JOYSTICK_BASE+1; -const byte JOYSTICK_UP = JOYSTICK_BASE+2; -const byte JOYSTICK_RIGHT = JOYSTICK_BASE+3; - -/* - * These constants can be use for comparison with the value returned - * by the readButton() method. - */ -const boolean PRESSED = LOW; -const boolean RELEASED = HIGH; - -/* - * The following constants can be used with the readTemperature() - * method to specify the desired scale. - */ -const byte DEGREES_C = 0; -const byte DEGREES_F = 1; - -/* - * The following constants can be used with the readAccelerometer() - * method to specify the desired axis to return. - */ -const byte X_AXIS = 0; -const byte Y_AXIS = 1; -const byte Z_AXIS = 2; - - -class _Esplora { -private: - byte lastRed; - byte lastGreen; - byte lastBlue; - - unsigned int readChannel(byte channel); - - boolean joyLowHalf(byte joyCh); - boolean joyHighHalf(byte joyCh); - -public: - _Esplora(); - - /* - * Returns a number corresponding to the position of the - * linear potentiometer. 0 means full right, 1023 means - * full left. - */ - inline unsigned int readSlider() { return readChannel(CH_SLIDER); } - - /* - * Returns a number corresponding to the amount of ambient - * light sensed by the light sensor. - */ - inline unsigned int readLightSensor() { return readChannel(CH_LIGHT); } - - /* - * Returns the current ambient temperature, expressed either in Celsius - * or Fahreneit scale. - */ - int readTemperature(const byte scale); - - /* - * Returns a number corresponding to the amount of ambient noise. - */ - inline unsigned int readMicrophone() { return readChannel(CH_MIC); } - - inline unsigned int readJoystickSwitch() { return readChannel(CH_JOYSTICK_SW); } - - inline int readJoystickX() { - return readChannel(CH_JOYSTICK_X) - 512; - } - inline int readJoystickY() { - return readChannel(CH_JOYSTICK_Y) - 512; - } - - int readAccelerometer(const byte axis); - - /* - * Reads the current state of a button. It will return - * LOW if the button is pressed, and HIGH otherwise. - */ - boolean readButton(byte channel); - - boolean readJoystickButton(); - - void writeRGB(byte red, byte green, byte blue); - void writeRed(byte red); - void writeGreen(byte green); - void writeBlue(byte blue); - - byte readRed(); - byte readGreen(); - byte readBlue(); - - void tone(unsigned int freq); - void tone(unsigned int freq, unsigned long duration); - void noTone(); - - inline unsigned int readTinkerkitInput(byte whichInput) { - return readChannel(whichInput + CH_TINKERKIT_A); - } - inline unsigned int readTinkerkitInputA() { - return readChannel(CH_TINKERKIT_A); - } - inline unsigned int readTinkerkitInputB() { - return readChannel(CH_TINKERKIT_B); - } -}; - - - -extern _Esplora Esplora; - -#endif // ESPLORA_H_ diff --git a/libraries/Ethernet/examples/AdvancedChatServer/AdvancedChatServer.ino b/libraries/Ethernet/examples/AdvancedChatServer/AdvancedChatServer.ino index 1c7ec4cabd8..3bcd3a1ecc9 100644 --- a/libraries/Ethernet/examples/AdvancedChatServer/AdvancedChatServer.ino +++ b/libraries/Ethernet/examples/AdvancedChatServer/AdvancedChatServer.ino @@ -30,6 +30,7 @@ byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; IPAddress ip(192, 168, 1, 177); +IPAddress myDns(192, 168, 1, 1); IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 0, 0); @@ -41,13 +42,13 @@ EthernetClient clients[4]; void setup() { // initialize the ethernet device - Ethernet.begin(mac, ip, gateway, subnet); + Ethernet.begin(mac, ip, myDns, 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino b/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino index f7439a039c3..c0a3298a9f2 100644 --- a/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino +++ b/libraries/Ethernet/examples/BarometricPressureWebServer/BarometricPressureWebServer.ino @@ -33,8 +33,6 @@ byte mac[] = { }; // 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 diff --git a/libraries/Ethernet/examples/ChatServer/ChatServer.ino b/libraries/Ethernet/examples/ChatServer/ChatServer.ino index 927a60e1be2..63f7c6b2add 100644 --- a/libraries/Ethernet/examples/ChatServer/ChatServer.ino +++ b/libraries/Ethernet/examples/ChatServer/ChatServer.ino @@ -27,6 +27,7 @@ byte mac[] = { 0xDE, 0xAD, 0xBE, 0xEF, 0xFE, 0xED }; IPAddress ip(192, 168, 1, 177); +IPAddress myDns(192,168,1, 1); IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 0, 0); @@ -37,13 +38,13 @@ boolean alreadyConnected = false; // whether or not the client was connected pre void setup() { // initialize the ethernet device - Ethernet.begin(mac, ip, gateway, subnet); + Ethernet.begin(mac, ip, myDns, 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino b/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino index a41b774039e..d527d257379 100644 --- a/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino +++ b/libraries/Ethernet/examples/DhcpAddressPrinter/DhcpAddressPrinter.ino @@ -1,18 +1,20 @@ /* 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. + 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 + Circuit: + Ethernet shield attached to pins 10, 11, 12, 13 - created 12 April 2011 - modified 9 Apr 2012 - by Tom Igoe + created 12 April 2011 + modified 9 Apr 2012 + by Tom Igoe + modified 02 Sept 2015 + by Arturo Guadalupi - */ +*/ #include #include @@ -33,7 +35,7 @@ void setup() { Serial.begin(9600); // this check is only needed on the Leonardo: while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } // start the Ethernet connection: @@ -44,17 +46,54 @@ void setup() { ; } // print your local IP address: + printIPAddress(); +} + +void loop() { + + switch (Ethernet.maintain()) + { + case 1: + //renewed fail + Serial.println("Error: renewed fail"); + break; + + case 2: + //renewed success + Serial.println("Renewed success"); + + //print your local IP address: + printIPAddress(); + break; + + case 3: + //rebind fail + Serial.println("Error: rebind fail"); + break; + + case 4: + //rebind success + Serial.println("Rebind success"); + + //print your local IP address: + printIPAddress(); + break; + + default: + //nothing happened + break; + + } +} + +void printIPAddress() +{ 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() { + Serial.println(); } - - diff --git a/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino b/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino index 73cde4bbbbe..bc93cdc436f 100644 --- a/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino +++ b/libraries/Ethernet/examples/DhcpChatServer/DhcpChatServer.ino @@ -14,6 +14,8 @@ created 21 May 2011 modified 9 Apr 2012 by Tom Igoe + modified 02 Sept 2015 + by Arturo Guadalupi Based on ChatServer example by David A. Mellis */ @@ -28,6 +30,7 @@ byte mac[] = { 0x00, 0xAA, 0xBB, 0xCC, 0xDE, 0x02 }; IPAddress ip(192, 168, 1, 177); +IPAddress myDns(192,168,1, 1); IPAddress gateway(192, 168, 1, 1); IPAddress subnet(255, 255, 0, 0); @@ -40,7 +43,7 @@ void setup() { Serial.begin(9600); // this check is only needed on the Leonardo: while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } @@ -49,7 +52,7 @@ void setup() { 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); + Ethernet.begin(mac, ip, myDns, gateway, subnet); } // print your local IP address: Serial.print("My IP address: "); @@ -83,6 +86,7 @@ void loop() { server.write(thisChar); // echo the bytes to the server as well: Serial.print(thisChar); + Ethernet.maintain(); } } diff --git a/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino b/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino index e663e01a819..350ce20725b 100644 --- a/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino +++ b/libraries/Ethernet/examples/TelnetClient/TelnetClient.ino @@ -43,7 +43,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino b/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino index 641ebf02c18..3b4bb34bc7f 100644 --- a/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino +++ b/libraries/Ethernet/examples/UdpNtpClient/UdpNtpClient.ino @@ -11,6 +11,8 @@ by Michael Margolis modified 9 Apr 2012 by Tom Igoe + modified 02 Sept 2015 + by Arturo Guadalupi This code is in the public domain. @@ -41,7 +43,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } @@ -103,6 +105,7 @@ void loop() { } // wait ten seconds before asking for the time again delay(10000); + Ethernet.maintain(); } // send an NTP request to the time server at the given address diff --git a/libraries/Ethernet/examples/WebClient/WebClient.ino b/libraries/Ethernet/examples/WebClient/WebClient.ino index 16c7ec42e0b..54927a0b999 100644 --- a/libraries/Ethernet/examples/WebClient/WebClient.ino +++ b/libraries/Ethernet/examples/WebClient/WebClient.ino @@ -37,7 +37,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // start the Ethernet connection: diff --git a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino index f4917d4b983..16fa32449f6 100644 --- a/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino +++ b/libraries/Ethernet/examples/WebClientRepeating/WebClientRepeating.ino @@ -51,7 +51,7 @@ void setup() { // start serial port: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } // give the ethernet module time to boot up: diff --git a/libraries/Ethernet/examples/WebServer/WebServer.ino b/libraries/Ethernet/examples/WebServer/WebServer.ino index 4a483af573a..e9f34e0c5b7 100644 --- a/libraries/Ethernet/examples/WebServer/WebServer.ino +++ b/libraries/Ethernet/examples/WebServer/WebServer.ino @@ -12,6 +12,8 @@ by David A. Mellis modified 9 Apr 2012 by Tom Igoe + modified 02 Sept 2015 + by Arturo Guadalupi */ @@ -34,7 +36,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } @@ -95,6 +97,7 @@ void loop() { // close the connection: client.stop(); Serial.println("client disconnected"); + Ethernet.maintain(); } } diff --git a/libraries/Ethernet/src/Dns.cpp b/libraries/Ethernet/src/Dns.cpp index 62e36f8a335..305eb2de03b 100644 --- a/libraries/Ethernet/src/Dns.cpp +++ b/libraries/Ethernet/src/Dns.cpp @@ -55,64 +55,46 @@ void DNSClient::begin(const IPAddress& aDNSServer) } -int DNSClient::inet_aton(const char* aIPAddrString, IPAddress& aResult) +int DNSClient::inet_aton(const char* address, IPAddress& result) { - // See if we've been given a valid IP address - const char* p =aIPAddrString; - while (*p && - ( (*p == '.') || (*p >= '0') || (*p <= '9') )) - { - p++; - } + // TODO: add support for "a", "a.b", "a.b.c" formats + + uint16_t acc = 0; // Accumulator + uint8_t dots = 0; - if (*p == '\0') + while (*address) { - // It's looking promising, we haven't found any invalid characters - p = aIPAddrString; - int segment =0; - int segmentValue =0; - while (*p && (segment < 4)) + char c = *address++; + if (c >= '0' && c <= '9') { - 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; - } + acc = acc * 10 + (c - '0'); + if (acc > 255) { + // Value out of [0..255] range + return 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)) + else if (c == '.') { - // You can't have IP address segments that don't fit in a byte, - // or more than four segments - return 0; + if (dots == 3) { + // Too much dots (there must be 3 dots) + return 0; + } + result[dots++] = acc; + acc = 0; } else { - aResult[segment] = (byte)segmentValue; - return 1; + // Invalid char + return 0; } } - else - { + + if (dots != 3) { + // Too few dots (there must be 3 dots) return 0; } + result[3] = acc; + return 1; } int DNSClient::getHostByName(const char* aHostname, IPAddress& aResult) diff --git a/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino b/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino index b471582e5f6..3abc4136ffb 100644 --- a/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino +++ b/libraries/GSM/examples/GsmWebClient/GsmWebClient.ino @@ -41,7 +41,7 @@ void setup() { // initialize serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } Serial.println("Starting Arduino web client."); diff --git a/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino b/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino index 44e004ba7a3..74fb572a1d1 100644 --- a/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino +++ b/libraries/GSM/examples/GsmWebServer/GsmWebServer.ino @@ -36,7 +36,7 @@ void setup() { // initialize serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } // connection state diff --git a/libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino b/libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino index 364698cc06a..5eaace0a77f 100644 --- a/libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino +++ b/libraries/GSM/examples/MakeVoiceCall/MakeVoiceCall.ino @@ -37,7 +37,7 @@ void setup() { // initialize serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } Serial.println("Make Voice Call"); diff --git a/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino b/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino index c81709c3a41..09546e51e39 100644 --- a/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino +++ b/libraries/GSM/examples/ReceiveSMS/ReceiveSMS.ino @@ -34,7 +34,7 @@ void setup() { // initialize serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } Serial.println("SMS Messages Receiver"); diff --git a/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino b/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino index fac94e67409..6ec09f75727 100644 --- a/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino +++ b/libraries/GSM/examples/ReceiveVoiceCall/ReceiveVoiceCall.ino @@ -38,7 +38,7 @@ void setup() { // initialize serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } Serial.println("Receive Voice Call"); diff --git a/libraries/GSM/examples/SendSMS/SendSMS.ino b/libraries/GSM/examples/SendSMS/SendSMS.ino index b07d286eeec..e49156ed966 100644 --- a/libraries/GSM/examples/SendSMS/SendSMS.ino +++ b/libraries/GSM/examples/SendSMS/SendSMS.ino @@ -34,7 +34,7 @@ void setup() { // initialize serial communications and wait for port to open: Serial.begin(9600); while (!Serial) { - ; // wait for serial port to connect. Needed for Leonardo only + ; // wait for serial port to connect. Needed for native USB port only } Serial.println("SMS Messages Sender"); diff --git a/libraries/Keyboard/src/Keyboard.cpp b/libraries/Keyboard/src/Keyboard.cpp index 73f4691193e..2663e6e6280 100644 --- a/libraries/Keyboard/src/Keyboard.cpp +++ b/libraries/Keyboard/src/Keyboard.cpp @@ -27,7 +27,7 @@ //================================================================================ // Keyboard -static const u8 _hidReportDescriptor[] PROGMEM = { +static const uint8_t _hidReportDescriptor[] PROGMEM = { // Keyboard 0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 47 @@ -62,11 +62,7 @@ static const u8 _hidReportDescriptor[] PROGMEM = { Keyboard_::Keyboard_(void) { - static HID_Descriptor cb = { - .length = sizeof(_hidReportDescriptor), - .descriptor = _hidReportDescriptor, - }; - static HIDDescriptorListNode node(&cb); + static HIDDescriptorListNode node(_hidReportDescriptor, sizeof(_hidReportDescriptor)); HID.AppendDescriptor(&node); } @@ -213,7 +209,7 @@ const uint8_t _asciimap[128] = 0x1b, // x 0x1c, // y 0x1d, // z - 0x2f|SHIFT, // + 0x2f|SHIFT, // { 0x31|SHIFT, // | 0x30|SHIFT, // } 0x35|SHIFT, // ~ diff --git a/libraries/LiquidCrystal/README.adoc b/libraries/LiquidCrystal/README.adoc index d51cee75717..7ec321928ad 100644 --- a/libraries/LiquidCrystal/README.adoc +++ b/libraries/LiquidCrystal/README.adoc @@ -7,7 +7,8 @@ http://www.arduino.cc/en/Reference/LiquidCrystal == License == -Copyright (c) Arduino LLC. All right reserved. +Copyright (C) 2006-2008 Hans-Christoph Steiner. All rights reserved. +Copyright (c) 2010 Arduino LLC. All right reserved. This library is free software; you can redistribute it and/or modify it under the terms of the GNU Lesser General Public diff --git a/libraries/Mouse/src/Mouse.cpp b/libraries/Mouse/src/Mouse.cpp index a0566811c28..0cb5b2908fb 100644 --- a/libraries/Mouse/src/Mouse.cpp +++ b/libraries/Mouse/src/Mouse.cpp @@ -23,7 +23,7 @@ #if defined(_USING_HID) -static const u8 _hidReportDescriptor[] PROGMEM = { +static const uint8_t _hidReportDescriptor[] PROGMEM = { // Mouse 0x05, 0x01, // USAGE_PAGE (Generic Desktop) // 54 @@ -62,11 +62,7 @@ static const u8 _hidReportDescriptor[] PROGMEM = { Mouse_::Mouse_(void) : _buttons(0) { - const static HID_Descriptor cb = { - .length = sizeof(_hidReportDescriptor), - .descriptor = _hidReportDescriptor, - }; - static HIDDescriptorListNode node(&cb); + static HIDDescriptorListNode node(_hidReportDescriptor, sizeof(_hidReportDescriptor)); HID.AppendDescriptor(&node); } @@ -88,7 +84,7 @@ void Mouse_::click(uint8_t b) void Mouse_::move(signed char x, signed char y, signed char wheel) { - u8 m[4]; + uint8_t m[4]; m[0] = _buttons; m[1] = x; m[2] = y; diff --git a/libraries/RobotIRremote/README.adoc b/libraries/RobotIRremote/README.adoc deleted file mode 100644 index fd27000f80c..00000000000 --- a/libraries/RobotIRremote/README.adoc +++ /dev/null @@ -1,31 +0,0 @@ -= Robot IR Remote Library for Arduino = - -The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality. - -For more information about this library please visit us at -http://www.arduino.cc/en/Reference/RobotLibrary - -== License == - -Copyright (c) Arduino LLC. All right reserved. -Copyright (c) Paul Stoffregen. All right reserved. -Copyright (c) Mitra Ardron. All right reserved. -Copyright (c) Joe Knapp. All right reserved. -Copyright (c) Mark Ivey. All right reserved. -Copyright (c) Kristian Lauszus. All right reserved. - -Copyright (c) 2009 Ken Shirriff. All right reserved. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/RobotIRremote/extras/LICENSE.txt b/libraries/RobotIRremote/extras/LICENSE.txt deleted file mode 100644 index 77cec6dd195..00000000000 --- a/libraries/RobotIRremote/extras/LICENSE.txt +++ /dev/null @@ -1,458 +0,0 @@ - - GNU LESSER GENERAL PUBLIC LICENSE - Version 2.1, February 1999 - - Copyright (C) 1991, 1999 Free Software Foundation, Inc. - 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA - Everyone is permitted to copy and distribute verbatim copies - of this license document, but changing it is not allowed. - -[This is the first released version of the Lesser GPL. It also counts - as the successor of the GNU Library Public License, version 2, hence - the version number 2.1.] - - Preamble - - The licenses for most software are designed to take away your -freedom to share and change it. By contrast, the GNU General Public -Licenses are intended to guarantee your freedom to share and change -free software--to make sure the software is free for all its users. - - This license, the Lesser General Public License, applies to some -specially designated software packages--typically libraries--of the -Free Software Foundation and other authors who decide to use it. You -can use it too, but we suggest you first think carefully about whether -this license or the ordinary General Public License is the better -strategy to use in any particular case, based on the explanations below. - - When we speak of free software, we are referring to freedom of use, -not price. Our General Public Licenses are designed to make sure that -you have the freedom to distribute copies of free software (and charge -for this service if you wish); that you receive source code or can get -it if you want it; that you can change the software and use pieces of -it in new free programs; and that you are informed that you can do -these things. - - To protect your rights, we need to make restrictions that forbid -distributors to deny you these rights or to ask you to surrender these -rights. These restrictions translate to certain responsibilities for -you if you distribute copies of the library or if you modify it. - - For example, if you distribute copies of the library, whether gratis -or for a fee, you must give the recipients all the rights that we gave -you. You must make sure that they, too, receive or can get the source -code. If you link other code with the library, you must provide -complete object files to the recipients, so that they can relink them -with the library after making changes to the library and recompiling -it. And you must show them these terms so they know their rights. - - We protect your rights with a two-step method: (1) we copyright the -library, and (2) we offer you this license, which gives you legal -permission to copy, distribute and/or modify the library. - - To protect each distributor, we want to make it very clear that -there is no warranty for the free library. Also, if the library is -modified by someone else and passed on, the recipients should know -that what they have is not the original version, so that the original -author's reputation will not be affected by problems that might be -introduced by others. - - Finally, software patents pose a constant threat to the existence of -any free program. We wish to make sure that a company cannot -effectively restrict the users of a free program by obtaining a -restrictive license from a patent holder. Therefore, we insist that -any patent license obtained for a version of the library must be -consistent with the full freedom of use specified in this license. - - Most GNU software, including some libraries, is covered by the -ordinary GNU General Public License. This license, the GNU Lesser -General Public License, applies to certain designated libraries, and -is quite different from the ordinary General Public License. We use -this license for certain libraries in order to permit linking those -libraries into non-free programs. - - When a program is linked with a library, whether statically or using -a shared library, the combination of the two is legally speaking a -combined work, a derivative of the original library. The ordinary -General Public License therefore permits such linking only if the -entire combination fits its criteria of freedom. The Lesser General -Public License permits more lax criteria for linking other code with -the library. - - We call this license the "Lesser" General Public License because it -does Less to protect the user's freedom than the ordinary General -Public License. It also provides other free software developers Less -of an advantage over competing non-free programs. These disadvantages -are the reason we use the ordinary General Public License for many -libraries. However, the Lesser license provides advantages in certain -special circumstances. - - For example, on rare occasions, there may be a special need to -encourage the widest possible use of a certain library, so that it becomes -a de-facto standard. To achieve this, non-free programs must be -allowed to use the library. A more frequent case is that a free -library does the same job as widely used non-free libraries. In this -case, there is little to gain by limiting the free library to free -software only, so we use the Lesser General Public License. - - In other cases, permission to use a particular library in non-free -programs enables a greater number of people to use a large body of -free software. For example, permission to use the GNU C Library in -non-free programs enables many more people to use the whole GNU -operating system, as well as its variant, the GNU/Linux operating -system. - - Although the Lesser General Public License is Less protective of the -users' freedom, it does ensure that the user of a program that is -linked with the Library has the freedom and the wherewithal to run -that program using a modified version of the Library. - - The precise terms and conditions for copying, distribution and -modification follow. Pay close attention to the difference between a -"work based on the library" and a "work that uses the library". The -former contains code derived from the library, whereas the latter must -be combined with the library in order to run. - - GNU LESSER GENERAL PUBLIC LICENSE - TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION - - 0. This License Agreement applies to any software library or other -program which contains a notice placed by the copyright holder or -other authorized party saying it may be distributed under the terms of -this Lesser General Public License (also called "this License"). -Each licensee is addressed as "you". - - A "library" means a collection of software functions and/or data -prepared so as to be conveniently linked with application programs -(which use some of those functions and data) to form executables. - - The "Library", below, refers to any such software library or work -which has been distributed under these terms. A "work based on the -Library" means either the Library or any derivative work under -copyright law: that is to say, a work containing the Library or a -portion of it, either verbatim or with modifications and/or translated -straightforwardly into another language. (Hereinafter, translation is -included without limitation in the term "modification".) - - "Source code" for a work means the preferred form of the work for -making modifications to it. For a library, complete source code means -all the source code for all modules it contains, plus any associated -interface definition files, plus the scripts used to control compilation -and installation of the library. - - Activities other than copying, distribution and modification are not -covered by this License; they are outside its scope. The act of -running a program using the Library is not restricted, and output from -such a program is covered only if its contents constitute a work based -on the Library (independent of the use of the Library in a tool for -writing it). Whether that is true depends on what the Library does -and what the program that uses the Library does. - - 1. You may copy and distribute verbatim copies of the Library's -complete source code as you receive it, in any medium, provided that -you conspicuously and appropriately publish on each copy an -appropriate copyright notice and disclaimer of warranty; keep intact -all the notices that refer to this License and to the absence of any -warranty; and distribute a copy of this License along with the -Library. - - You may charge a fee for the physical act of transferring a copy, -and you may at your option offer warranty protection in exchange for a -fee. - - 2. You may modify your copy or copies of the Library or any portion -of it, thus forming a work based on the Library, and copy and -distribute such modifications or work under the terms of Section 1 -above, provided that you also meet all of these conditions: - - a) The modified work must itself be a software library. - - b) You must cause the files modified to carry prominent notices - stating that you changed the files and the date of any change. - - c) You must cause the whole of the work to be licensed at no - charge to all third parties under the terms of this License. - - d) If a facility in the modified Library refers to a function or a - table of data to be supplied by an application program that uses - the facility, other than as an argument passed when the facility - is invoked, then you must make a good faith effort to ensure that, - in the event an application does not supply such function or - table, the facility still operates, and performs whatever part of - its purpose remains meaningful. - - (For example, a function in a library to compute square roots has - a purpose that is entirely well-defined independent of the - application. Therefore, Subsection 2d requires that any - application-supplied function or table used by this function must - be optional: if the application does not supply it, the square - root function must still compute square roots.) - -These requirements apply to the modified work as a whole. If -identifiable sections of that work are not derived from the Library, -and can be reasonably considered independent and separate works in -themselves, then this License, and its terms, do not apply to those -sections when you distribute them as separate works. But when you -distribute the same sections as part of a whole which is a work based -on the Library, the distribution of the whole must be on the terms of -this License, whose permissions for other licensees extend to the -entire whole, and thus to each and every part regardless of who wrote -it. - -Thus, it is not the intent of this section to claim rights or contest -your rights to work written entirely by you; rather, the intent is to -exercise the right to control the distribution of derivative or -collective works based on the Library. - -In addition, mere aggregation of another work not based on the Library -with the Library (or with a work based on the Library) on a volume of -a storage or distribution medium does not bring the other work under -the scope of this License. - - 3. You may opt to apply the terms of the ordinary GNU General Public -License instead of this License to a given copy of the Library. To do -this, you must alter all the notices that refer to this License, so -that they refer to the ordinary GNU General Public License, version 2, -instead of to this License. (If a newer version than version 2 of the -ordinary GNU General Public License has appeared, then you can specify -that version instead if you wish.) Do not make any other change in -these notices. - - Once this change is made in a given copy, it is irreversible for -that copy, so the ordinary GNU General Public License applies to all -subsequent copies and derivative works made from that copy. - - This option is useful when you wish to copy part of the code of -the Library into a program that is not a library. - - 4. You may copy and distribute the Library (or a portion or -derivative of it, under Section 2) in object code or executable form -under the terms of Sections 1 and 2 above provided that you accompany -it with the complete corresponding machine-readable source code, which -must be distributed under the terms of Sections 1 and 2 above on a -medium customarily used for software interchange. - - If distribution of object code is made by offering access to copy -from a designated place, then offering equivalent access to copy the -source code from the same place satisfies the requirement to -distribute the source code, even though third parties are not -compelled to copy the source along with the object code. - - 5. A program that contains no derivative of any portion of the -Library, but is designed to work with the Library by being compiled or -linked with it, is called a "work that uses the Library". Such a -work, in isolation, is not a derivative work of the Library, and -therefore falls outside the scope of this License. - - However, linking a "work that uses the Library" with the Library -creates an executable that is a derivative of the Library (because it -contains portions of the Library), rather than a "work that uses the -library". The executable is therefore covered by this License. -Section 6 states terms for distribution of such executables. - - When a "work that uses the Library" uses material from a header file -that is part of the Library, the object code for the work may be a -derivative work of the Library even though the source code is not. -Whether this is true is especially significant if the work can be -linked without the Library, or if the work is itself a library. The -threshold for this to be true is not precisely defined by law. - - If such an object file uses only numerical parameters, data -structure layouts and accessors, and small macros and small inline -functions (ten lines or less in length), then the use of the object -file is unrestricted, regardless of whether it is legally a derivative -work. (Executables containing this object code plus portions of the -Library will still fall under Section 6.) - - Otherwise, if the work is a derivative of the Library, you may -distribute the object code for the work under the terms of Section 6. -Any executables containing that work also fall under Section 6, -whether or not they are linked directly with the Library itself. - - 6. As an exception to the Sections above, you may also combine or -link a "work that uses the Library" with the Library to produce a -work containing portions of the Library, and distribute that work -under terms of your choice, provided that the terms permit -modification of the work for the customer's own use and reverse -engineering for debugging such modifications. - - You must give prominent notice with each copy of the work that the -Library is used in it and that the Library and its use are covered by -this License. You must supply a copy of this License. If the work -during execution displays copyright notices, you must include the -copyright notice for the Library among them, as well as a reference -directing the user to the copy of this License. Also, you must do one -of these things: - - a) Accompany the work with the complete corresponding - machine-readable source code for the Library including whatever - changes were used in the work (which must be distributed under - Sections 1 and 2 above); and, if the work is an executable linked - with the Library, with the complete machine-readable "work that - uses the Library", as object code and/or source code, so that the - user can modify the Library and then relink to produce a modified - executable containing the modified Library. (It is understood - that the user who changes the contents of definitions files in the - Library will not necessarily be able to recompile the application - to use the modified definitions.) - - b) Use a suitable shared library mechanism for linking with the - Library. A suitable mechanism is one that (1) uses at run time a - copy of the library already present on the user's computer system, - rather than copying library functions into the executable, and (2) - will operate properly with a modified version of the library, if - the user installs one, as long as the modified version is - interface-compatible with the version that the work was made with. - - c) Accompany the work with a written offer, valid for at - least three years, to give the same user the materials - specified in Subsection 6a, above, for a charge no more - than the cost of performing this distribution. - - d) If distribution of the work is made by offering access to copy - from a designated place, offer equivalent access to copy the above - specified materials from the same place. - - e) Verify that the user has already received a copy of these - materials or that you have already sent this user a copy. - - For an executable, the required form of the "work that uses the -Library" must include any data and utility programs needed for -reproducing the executable from it. However, as a special exception, -the materials to be distributed need not include anything that is -normally distributed (in either source or binary form) with the major -components (compiler, kernel, and so on) of the operating system on -which the executable runs, unless that component itself accompanies -the executable. - - It may happen that this requirement contradicts the license -restrictions of other proprietary libraries that do not normally -accompany the operating system. Such a contradiction means you cannot -use both them and the Library together in an executable that you -distribute. - - 7. You may place library facilities that are a work based on the -Library side-by-side in a single library together with other library -facilities not covered by this License, and distribute such a combined -library, provided that the separate distribution of the work based on -the Library and of the other library facilities is otherwise -permitted, and provided that you do these two things: - - a) Accompany the combined library with a copy of the same work - based on the Library, uncombined with any other library - facilities. This must be distributed under the terms of the - Sections above. - - b) Give prominent notice with the combined library of the fact - that part of it is a work based on the Library, and explaining - where to find the accompanying uncombined form of the same work. - - 8. You may not copy, modify, sublicense, link with, or distribute -the Library except as expressly provided under this License. Any -attempt otherwise to copy, modify, sublicense, link with, or -distribute the Library is void, and will automatically terminate your -rights under this License. However, parties who have received copies, -or rights, from you under this License will not have their licenses -terminated so long as such parties remain in full compliance. - - 9. You are not required to accept this License, since you have not -signed it. However, nothing else grants you permission to modify or -distribute the Library or its derivative works. These actions are -prohibited by law if you do not accept this License. Therefore, by -modifying or distributing the Library (or any work based on the -Library), you indicate your acceptance of this License to do so, and -all its terms and conditions for copying, distributing or modifying -the Library or works based on it. - - 10. Each time you redistribute the Library (or any work based on the -Library), the recipient automatically receives a license from the -original licensor to copy, distribute, link with or modify the Library -subject to these terms and conditions. You may not impose any further -restrictions on the recipients' exercise of the rights granted herein. -You are not responsible for enforcing compliance by third parties with -this License. - - 11. If, as a consequence of a court judgment or allegation of patent -infringement or for any other reason (not limited to patent issues), -conditions are imposed on you (whether by court order, agreement or -otherwise) that contradict the conditions of this License, they do not -excuse you from the conditions of this License. If you cannot -distribute so as to satisfy simultaneously your obligations under this -License and any other pertinent obligations, then as a consequence you -may not distribute the Library at all. For example, if a patent -license would not permit royalty-free redistribution of the Library by -all those who receive copies directly or indirectly through you, then -the only way you could satisfy both it and this License would be to -refrain entirely from distribution of the Library. - -If any portion of this section is held invalid or unenforceable under any -particular circumstance, the balance of the section is intended to apply, -and the section as a whole is intended to apply in other circumstances. - -It is not the purpose of this section to induce you to infringe any -patents or other property right claims or to contest validity of any -such claims; this section has the sole purpose of protecting the -integrity of the free software distribution system which is -implemented by public license practices. Many people have made -generous contributions to the wide range of software distributed -through that system in reliance on consistent application of that -system; it is up to the author/donor to decide if he or she is willing -to distribute software through any other system and a licensee cannot -impose that choice. - -This section is intended to make thoroughly clear what is believed to -be a consequence of the rest of this License. - - 12. If the distribution and/or use of the Library is restricted in -certain countries either by patents or by copyrighted interfaces, the -original copyright holder who places the Library under this License may add -an explicit geographical distribution limitation excluding those countries, -so that distribution is permitted only in or among countries not thus -excluded. In such case, this License incorporates the limitation as if -written in the body of this License. - - 13. The Free Software Foundation may publish revised and/or new -versions of the Lesser General Public License from time to time. -Such new versions will be similar in spirit to the present version, -but may differ in detail to address new problems or concerns. - -Each version is given a distinguishing version number. If the Library -specifies a version number of this License which applies to it and -"any later version", you have the option of following the terms and -conditions either of that version or of any later version published by -the Free Software Foundation. If the Library does not specify a -license version number, you may choose any version ever published by -the Free Software Foundation. - - 14. If you wish to incorporate parts of the Library into other free -programs whose distribution conditions are incompatible with these, -write to the author to ask for permission. For software which is -copyrighted by the Free Software Foundation, write to the Free -Software Foundation; we sometimes make exceptions for this. Our -decision will be guided by the two goals of preserving the free status -of all derivatives of our free software and of promoting the sharing -and reuse of software generally. - - NO WARRANTY - - 15. BECAUSE THE LIBRARY IS LICENSED FREE OF CHARGE, THERE IS NO -WARRANTY FOR THE LIBRARY, TO THE EXTENT PERMITTED BY APPLICABLE LAW. -EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR -OTHER PARTIES PROVIDE THE LIBRARY "AS IS" WITHOUT WARRANTY OF ANY -KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE -IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR -PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE -LIBRARY IS WITH YOU. SHOULD THE LIBRARY PROVE DEFECTIVE, YOU ASSUME -THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. - - 16. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN -WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY -AND/OR REDISTRIBUTE THE LIBRARY AS PERMITTED ABOVE, BE LIABLE TO YOU -FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR -CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE -LIBRARY (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING -RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A -FAILURE OF THE LIBRARY TO OPERATE WITH ANY OTHER SOFTWARE), EVEN IF -SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH -DAMAGES. - diff --git a/libraries/RobotIRremote/extras/readme b/libraries/RobotIRremote/extras/readme deleted file mode 100644 index 3de652611e7..00000000000 --- a/libraries/RobotIRremote/extras/readme +++ /dev/null @@ -1,14 +0,0 @@ -This is the IRremote library for the Arduino. - -To download from github (http://github.com/shirriff/Arduino-IRremote), click on the "Downloads" link in the upper right, click "Download as zip", and get a zip file. Unzip it and rename the directory shirriff-Arduino-IRremote-nnn to IRremote - -To install, move the downloaded IRremote directory to: -arduino-1.x/libraries/IRremote -where arduino-1.x is your Arduino installation directory - -After installation you should have files such as: -arduino-1.x/libraries/IRremote/IRremote.cpp - -For details on the library see the Wiki on github or the blog post http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html - -Copyright 2009-2012 Ken Shirriff diff --git a/libraries/RobotIRremote/keywords.txt b/libraries/RobotIRremote/keywords.txt deleted file mode 100644 index 74010c4193f..00000000000 --- a/libraries/RobotIRremote/keywords.txt +++ /dev/null @@ -1,50 +0,0 @@ -####################################### -# Syntax Coloring Map For IRremote -####################################### - -####################################### -# Datatypes (KEYWORD1) -####################################### - -decode_results KEYWORD1 -IRrecv KEYWORD1 -IRsend KEYWORD1 - -####################################### -# Methods and Functions (KEYWORD2) -####################################### - -blink13 KEYWORD2 -decode KEYWORD2 -enableIRIn KEYWORD2 -resume KEYWORD2 -enableIROut KEYWORD2 -sendNEC KEYWORD2 -sendSony KEYWORD2 -sendSanyo KEYWORD2 -sendMitsubishi KEYWORD2 -sendRaw KEYWORD2 -sendRC5 KEYWORD2 -sendRC6 KEYWORD2 -sendDISH KEYWORD2 -sendSharp KEYWORD2 -sendPanasonic KEYWORD2 -sendJVC KEYWORD2 - -# -####################################### -# Constants (LITERAL1) -####################################### - -NEC LITERAL1 -SONY LITERAL1 -SANYO LITERAL1 -MITSUBISHI LITERAL1 -RC5 LITERAL1 -RC6 LITERAL1 -DISH LITERAL1 -SHARP LITERAL1 -PANASONIC LITERAL1 -JVC LITERAL1 -UNKNOWN LITERAL1 -REPEAT LITERAL1 \ No newline at end of file diff --git a/libraries/RobotIRremote/library.properties b/libraries/RobotIRremote/library.properties deleted file mode 100644 index 9f3c426f612..00000000000 --- a/libraries/RobotIRremote/library.properties +++ /dev/null @@ -1,9 +0,0 @@ -name=Robot IR Remote -version=1.0.2 -author=Arduino -maintainer=Arduino -sentence=Allows controlling the Arduino Robot via an IR remote control. For Arduino Robot only. -paragraph= -category=Device Control -url=https://github.com/shirriff/Arduino-IRremote -architectures=avr diff --git a/libraries/RobotIRremote/src/IRremote.cpp b/libraries/RobotIRremote/src/IRremote.cpp deleted file mode 100644 index fb76cb64db9..00000000000 --- a/libraries/RobotIRremote/src/IRremote.cpp +++ /dev/null @@ -1,777 +0,0 @@ -/* - * IRremote - * Version 0.11 August, 2009 - * Copyright 2009 Ken Shirriff - * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html - * - * Modified by Paul Stoffregen to support other boards and timers - * Modified by Mitra Ardron - * Added Sanyo and Mitsubishi controllers - * Modified Sony to spot the repeat codes that some Sony's send - * - * Interrupt code based on NECIRrcv by Joe Knapp - * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556 - * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/ - * - * JVC and Panasonic protocol added by Kristian Lauszus (Thanks to zenwheel and other people at the original blog post) - */ - -#include "IRremote.h" -#include "IRremoteInt.h" - -// Provides ISR -#include - -volatile irparams_t irparams; - -// These versions of MATCH, MATCH_MARK, and MATCH_SPACE are only for debugging. -// To use them, set DEBUG in IRremoteInt.h -// Normally macros are used for efficiency -#ifdef DEBUG -int MATCH(int measured, int desired) { - Serial.print("Testing: "); - Serial.print(TICKS_LOW(desired), DEC); - Serial.print(" <= "); - Serial.print(measured, DEC); - Serial.print(" <= "); - Serial.println(TICKS_HIGH(desired), DEC); - return measured >= TICKS_LOW(desired) && measured <= TICKS_HIGH(desired); -} - -int MATCH_MARK(int measured_ticks, int desired_us) { - Serial.print("Testing mark "); - Serial.print(measured_ticks * USECPERTICK, DEC); - Serial.print(" vs "); - Serial.print(desired_us, DEC); - Serial.print(": "); - Serial.print(TICKS_LOW(desired_us + MARK_EXCESS), DEC); - Serial.print(" <= "); - Serial.print(measured_ticks, DEC); - Serial.print(" <= "); - Serial.println(TICKS_HIGH(desired_us + MARK_EXCESS), DEC); - return measured_ticks >= TICKS_LOW(desired_us + MARK_EXCESS) && measured_ticks <= TICKS_HIGH(desired_us + MARK_EXCESS); -} - -int MATCH_SPACE(int measured_ticks, int desired_us) { - Serial.print("Testing space "); - Serial.print(measured_ticks * USECPERTICK, DEC); - Serial.print(" vs "); - Serial.print(desired_us, DEC); - Serial.print(": "); - Serial.print(TICKS_LOW(desired_us - MARK_EXCESS), DEC); - Serial.print(" <= "); - Serial.print(measured_ticks, DEC); - Serial.print(" <= "); - Serial.println(TICKS_HIGH(desired_us - MARK_EXCESS), DEC); - return measured_ticks >= TICKS_LOW(desired_us - MARK_EXCESS) && measured_ticks <= TICKS_HIGH(desired_us - MARK_EXCESS); -} -#else -int MATCH(int measured, int desired) {return measured >= TICKS_LOW(desired) && measured <= TICKS_HIGH(desired);} -int MATCH_MARK(int measured_ticks, int desired_us) {return MATCH(measured_ticks, (desired_us + MARK_EXCESS));} -int MATCH_SPACE(int measured_ticks, int desired_us) {return MATCH(measured_ticks, (desired_us - MARK_EXCESS));} -#endif - -IRrecv::IRrecv(int recvpin) -{ - irparams.recvpin = recvpin; - irparams.blinkflag = 0; -} - -// initialization -void IRrecv::enableIRIn() { - cli(); - // setup pulse clock timer interrupt - //Prescale /8 (16M/8 = 0.5 microseconds per tick) - // Therefore, the timer interval can range from 0.5 to 128 microseconds - // depending on the reset value (255 to 0) - TIMER_CONFIG_NORMAL(); - - //Timer2 Overflow Interrupt Enable - TIMER_ENABLE_INTR; - - TIMER_RESET; - - sei(); // enable interrupts - - // initialize state machine variables - irparams.rcvstate = STATE_IDLE; - irparams.rawlen = 0; - - // set pin modes - pinMode(irparams.recvpin, INPUT); -} - -// enable/disable blinking of pin 13 on IR processing -void IRrecv::blink13(int blinkflag) -{ - irparams.blinkflag = blinkflag; - if (blinkflag) - pinMode(BLINKLED, OUTPUT); -} - -// TIMER2 interrupt code to collect raw data. -// Widths of alternating SPACE, MARK are recorded in rawbuf. -// Recorded in ticks of 50 microseconds. -// rawlen counts the number of entries recorded so far. -// First entry is the SPACE between transmissions. -// As soon as a SPACE gets long, ready is set, state switches to IDLE, timing of SPACE continues. -// As soon as first MARK arrives, gap width is recorded, ready is cleared, and new logging starts -ISR(TIMER_INTR_NAME) -{ - TIMER_RESET; - - uint8_t irdata = (uint8_t)digitalRead(irparams.recvpin); - - irparams.timer++; // One more 50us tick - if (irparams.rawlen >= RAWBUF) { - // Buffer overflow - irparams.rcvstate = STATE_STOP; - } - switch(irparams.rcvstate) { - case STATE_IDLE: // In the middle of a gap - if (irdata == MARK) { - if (irparams.timer < GAP_TICKS) { - // Not big enough to be a gap. - irparams.timer = 0; - } - else { - // gap just ended, record duration and start recording transmission - irparams.rawlen = 0; - irparams.rawbuf[irparams.rawlen++] = irparams.timer; - irparams.timer = 0; - irparams.rcvstate = STATE_MARK; - } - } - break; - case STATE_MARK: // timing MARK - if (irdata == SPACE) { // MARK ended, record time - irparams.rawbuf[irparams.rawlen++] = irparams.timer; - irparams.timer = 0; - irparams.rcvstate = STATE_SPACE; - } - break; - case STATE_SPACE: // timing SPACE - if (irdata == MARK) { // SPACE just ended, record it - irparams.rawbuf[irparams.rawlen++] = irparams.timer; - irparams.timer = 0; - irparams.rcvstate = STATE_MARK; - } - else { // SPACE - if (irparams.timer > GAP_TICKS) { - // big SPACE, indicates gap between codes - // Mark current code as ready for processing - // Switch to STOP - // Don't reset timer; keep counting space width - irparams.rcvstate = STATE_STOP; - } - } - break; - case STATE_STOP: // waiting, measuring gap - if (irdata == MARK) { // reset gap timer - irparams.timer = 0; - } - break; - } - - if (irparams.blinkflag) { - if (irdata == MARK) { - BLINKLED_ON(); // turn pin 13 LED on - } - else { - BLINKLED_OFF(); // turn pin 13 LED off - } - } -} - -void IRrecv::resume() { - irparams.rcvstate = STATE_IDLE; - irparams.rawlen = 0; -} - - - -// Decodes the received IR message -// Returns 0 if no data ready, 1 if data ready. -// Results of decoding are stored in results -int IRrecv::decode(decode_results *results) { - results->rawbuf = irparams.rawbuf; - results->rawlen = irparams.rawlen; - if (irparams.rcvstate != STATE_STOP) { - return ERR; - } - -#ifdef DEBUG - Serial.println("Attempting NEC decode"); -#endif - if (decodeNEC(results)) { - return DECODED; - } -/* -#ifdef DEBUG - Serial.println("Attempting Sony decode"); -#endif - if (decodeSony(results)) { - return DECODED; - }*/ -/* -#ifdef DEBUG - Serial.println("Attempting Sanyo decode"); -#endif - if (decodeSanyo(results)) { - return DECODED; - } - */ -/* -#ifdef DEBUG - Serial.println("Attempting Mitsubishi decode"); -#endif - if (decodeMitsubishi(results)) { - return DECODED; - }*/ -/* -#ifdef DEBUG - Serial.println("Attempting RC5 decode"); -#endif - if (decodeRC5(results)) { - return DECODED; - } - */ -/* -#ifdef DEBUG - Serial.println("Attempting RC6 decode"); -#endif - if (decodeRC6(results)) { - return DECODED; - } - */ -/* -#ifdef DEBUG - Serial.println("Attempting Panasonic decode"); -#endif - if (decodePanasonic(results)) { - return DECODED; - } - */ -/* -#ifdef DEBUG - Serial.println("Attempting JVC decode"); -#endif - if (decodeJVC(results)) { - return DECODED; - }*/ - // decodeHash returns a hash on any input. - // Thus, it needs to be last in the list. - // If you add any decodes, add them before this. - if (decodeHash(results)) { - return DECODED; - } - // Throw away and start over - resume(); - return ERR; -} - - -// NECs have a repeat only 4 items long -long IRrecv::decodeNEC(decode_results *results) { - long data = 0; - int offset = 1; // Skip first space - // Initial mark - if (!MATCH_MARK(results->rawbuf[offset], NEC_HDR_MARK)) { - return ERR; - } - offset++; - // Check for repeat - if (irparams.rawlen == 4 && - MATCH_SPACE(results->rawbuf[offset], NEC_RPT_SPACE) && - MATCH_MARK(results->rawbuf[offset+1], NEC_BIT_MARK)) { - results->bits = 0; - results->value = REPEAT; - results->decode_type = NEC; - return DECODED; - } - if (irparams.rawlen < 2 * NEC_BITS + 4) { - return ERR; - } - // Initial space - if (!MATCH_SPACE(results->rawbuf[offset], NEC_HDR_SPACE)) { - return ERR; - } - offset++; - for (int i = 0; i < NEC_BITS; i++) { - if (!MATCH_MARK(results->rawbuf[offset], NEC_BIT_MARK)) { - return ERR; - } - offset++; - if (MATCH_SPACE(results->rawbuf[offset], NEC_ONE_SPACE)) { - data = (data << 1) | 1; - } - else if (MATCH_SPACE(results->rawbuf[offset], NEC_ZERO_SPACE)) { - data <<= 1; - } - else { - return ERR; - } - offset++; - } - // Success - results->bits = NEC_BITS; - results->value = data; - results->decode_type = NEC; - return DECODED; -} -/* -long IRrecv::decodeSony(decode_results *results) { - long data = 0; - if (irparams.rawlen < 2 * SONY_BITS + 2) { - return ERR; - } - int offset = 0; // Dont skip first space, check its size - - // Some Sony's deliver repeats fast after first - // unfortunately can't spot difference from of repeat from two fast clicks - if (results->rawbuf[offset] < SONY_DOUBLE_SPACE_USECS) { - // Serial.print("IR Gap found: "); - results->bits = 0; - results->value = REPEAT; - results->decode_type = SANYO; - return DECODED; - } - offset++; - - // Initial mark - if (!MATCH_MARK(results->rawbuf[offset], SONY_HDR_MARK)) { - return ERR; - } - offset++; - - while (offset + 1 < irparams.rawlen) { - if (!MATCH_SPACE(results->rawbuf[offset], SONY_HDR_SPACE)) { - break; - } - offset++; - if (MATCH_MARK(results->rawbuf[offset], SONY_ONE_MARK)) { - data = (data << 1) | 1; - } - else if (MATCH_MARK(results->rawbuf[offset], SONY_ZERO_MARK)) { - data <<= 1; - } - else { - return ERR; - } - offset++; - } - - // Success - results->bits = (offset - 1) / 2; - if (results->bits < 12) { - results->bits = 0; - return ERR; - } - results->value = data; - results->decode_type = SONY; - return DECODED; -}*/ - -/* -// I think this is a Sanyo decoder - serial = SA 8650B -// Looks like Sony except for timings, 48 chars of data and time/space different -long IRrecv::decodeSanyo(decode_results *results) { - long data = 0; - if (irparams.rawlen < 2 * SANYO_BITS + 2) { - return ERR; - } - int offset = 0; // Skip first space - // Initial space - // Put this back in for debugging - note can't use #DEBUG as if Debug on we don't see the repeat cos of the delay - //Serial.print("IR Gap: "); - //Serial.println( results->rawbuf[offset]); - //Serial.println( "test against:"); - //Serial.println(results->rawbuf[offset]); - - if (results->rawbuf[offset] < SANYO_DOUBLE_SPACE_USECS) { - // Serial.print("IR Gap found: "); - results->bits = 0; - results->value = REPEAT; - results->decode_type = SANYO; - return DECODED; - } - offset++; - - // Initial mark - if (!MATCH_MARK(results->rawbuf[offset], SANYO_HDR_MARK)) { - return ERR; - } - offset++; - - // Skip Second Mark - if (!MATCH_MARK(results->rawbuf[offset], SANYO_HDR_MARK)) { - return ERR; - } - offset++; - - while (offset + 1 < irparams.rawlen) { - if (!MATCH_SPACE(results->rawbuf[offset], SANYO_HDR_SPACE)) { - break; - } - offset++; - if (MATCH_MARK(results->rawbuf[offset], SANYO_ONE_MARK)) { - data = (data << 1) | 1; - } - else if (MATCH_MARK(results->rawbuf[offset], SANYO_ZERO_MARK)) { - data <<= 1; - } - else { - return ERR; - } - offset++; - } - - // Success - results->bits = (offset - 1) / 2; - if (results->bits < 12) { - results->bits = 0; - return ERR; - } - results->value = data; - results->decode_type = SANYO; - return DECODED; -} -*/ -/* -// Looks like Sony except for timings, 48 chars of data and time/space different -long IRrecv::decodeMitsubishi(decode_results *results) { - // Serial.print("?!? decoding Mitsubishi:");Serial.print(irparams.rawlen); Serial.print(" want "); Serial.println( 2 * MITSUBISHI_BITS + 2); - long data = 0; - if (irparams.rawlen < 2 * MITSUBISHI_BITS + 2) { - return ERR; - } - int offset = 0; // Skip first space - // Initial space - // Put this back in for debugging - note can't use #DEBUG as if Debug on we don't see the repeat cos of the delay - //Serial.print("IR Gap: "); - //Serial.println( results->rawbuf[offset]); - //Serial.println( "test against:"); - //Serial.println(results->rawbuf[offset]); - - // Not seeing double keys from Mitsubishi - //if (results->rawbuf[offset] < MITSUBISHI_DOUBLE_SPACE_USECS) { - // Serial.print("IR Gap found: "); - // results->bits = 0; - // results->value = REPEAT; - // results->decode_type = MITSUBISHI; - // return DECODED; - //} - - offset++; - - // Typical - // 14200 7 41 7 42 7 42 7 17 7 17 7 18 7 41 7 18 7 17 7 17 7 18 7 41 8 17 7 17 7 18 7 17 7 - - // Initial Space - if (!MATCH_MARK(results->rawbuf[offset], MITSUBISHI_HDR_SPACE)) { - return ERR; - } - offset++; - while (offset + 1 < irparams.rawlen) { - if (MATCH_MARK(results->rawbuf[offset], MITSUBISHI_ONE_MARK)) { - data = (data << 1) | 1; - } - else if (MATCH_MARK(results->rawbuf[offset], MITSUBISHI_ZERO_MARK)) { - data <<= 1; - } - else { - // Serial.println("A"); Serial.println(offset); Serial.println(results->rawbuf[offset]); - return ERR; - } - offset++; - if (!MATCH_SPACE(results->rawbuf[offset], MITSUBISHI_HDR_SPACE)) { - // Serial.println("B"); Serial.println(offset); Serial.println(results->rawbuf[offset]); - break; - } - offset++; - } - - // Success - results->bits = (offset - 1) / 2; - if (results->bits < MITSUBISHI_BITS) { - results->bits = 0; - return ERR; - } - results->value = data; - results->decode_type = MITSUBISHI; - return DECODED; -}*/ - - -// Gets one undecoded level at a time from the raw buffer. -// The RC5/6 decoding is easier if the data is broken into time intervals. -// E.g. if the buffer has MARK for 2 time intervals and SPACE for 1, -// successive calls to getRClevel will return MARK, MARK, SPACE. -// offset and used are updated to keep track of the current position. -// t1 is the time interval for a single bit in microseconds. -// Returns -1 for error (measured time interval is not a multiple of t1). -int IRrecv::getRClevel(decode_results *results, int *offset, int *used, int t1) { - if (*offset >= results->rawlen) { - // After end of recorded buffer, assume SPACE. - return SPACE; - } - int width = results->rawbuf[*offset]; - int val = ((*offset) % 2) ? MARK : SPACE; - int correction = (val == MARK) ? MARK_EXCESS : - MARK_EXCESS; - - int avail; - if (MATCH(width, t1 + correction)) { - avail = 1; - } - else if (MATCH(width, 2*t1 + correction)) { - avail = 2; - } - else if (MATCH(width, 3*t1 + correction)) { - avail = 3; - } - else { - return -1; - } - - (*used)++; - if (*used >= avail) { - *used = 0; - (*offset)++; - } -#ifdef DEBUG - if (val == MARK) { - Serial.println("MARK"); - } - else { - Serial.println("SPACE"); - } -#endif - return val; -} -/* -long IRrecv::decodeRC5(decode_results *results) { - if (irparams.rawlen < MIN_RC5_SAMPLES + 2) { - return ERR; - } - int offset = 1; // Skip gap space - long data = 0; - int used = 0; - // Get start bits - if (getRClevel(results, &offset, &used, RC5_T1) != MARK) return ERR; - if (getRClevel(results, &offset, &used, RC5_T1) != SPACE) return ERR; - if (getRClevel(results, &offset, &used, RC5_T1) != MARK) return ERR; - int nbits; - for (nbits = 0; offset < irparams.rawlen; nbits++) { - int levelA = getRClevel(results, &offset, &used, RC5_T1); - int levelB = getRClevel(results, &offset, &used, RC5_T1); - if (levelA == SPACE && levelB == MARK) { - // 1 bit - data = (data << 1) | 1; - } - else if (levelA == MARK && levelB == SPACE) { - // zero bit - data <<= 1; - } - else { - return ERR; - } - } - - // Success - results->bits = nbits; - results->value = data; - results->decode_type = RC5; - return DECODED; -}*/ -/* -long IRrecv::decodeRC6(decode_results *results) { - if (results->rawlen < MIN_RC6_SAMPLES) { - return ERR; - } - int offset = 1; // Skip first space - // Initial mark - if (!MATCH_MARK(results->rawbuf[offset], RC6_HDR_MARK)) { - return ERR; - } - offset++; - if (!MATCH_SPACE(results->rawbuf[offset], RC6_HDR_SPACE)) { - return ERR; - } - offset++; - long data = 0; - int used = 0; - // Get start bit (1) - if (getRClevel(results, &offset, &used, RC6_T1) != MARK) return ERR; - if (getRClevel(results, &offset, &used, RC6_T1) != SPACE) return ERR; - int nbits; - for (nbits = 0; offset < results->rawlen; nbits++) { - int levelA, levelB; // Next two levels - levelA = getRClevel(results, &offset, &used, RC6_T1); - if (nbits == 3) { - // T bit is double wide; make sure second half matches - if (levelA != getRClevel(results, &offset, &used, RC6_T1)) return ERR; - } - levelB = getRClevel(results, &offset, &used, RC6_T1); - if (nbits == 3) { - // T bit is double wide; make sure second half matches - if (levelB != getRClevel(results, &offset, &used, RC6_T1)) return ERR; - } - if (levelA == MARK && levelB == SPACE) { // reversed compared to RC5 - // 1 bit - data = (data << 1) | 1; - } - else if (levelA == SPACE && levelB == MARK) { - // zero bit - data <<= 1; - } - else { - return ERR; // Error - } - } - // Success - results->bits = nbits; - results->value = data; - results->decode_type = RC6; - return DECODED; -}*/ -/* -long IRrecv::decodePanasonic(decode_results *results) { - unsigned long long data = 0; - int offset = 1; - - if (!MATCH_MARK(results->rawbuf[offset], PANASONIC_HDR_MARK)) { - return ERR; - } - offset++; - if (!MATCH_MARK(results->rawbuf[offset], PANASONIC_HDR_SPACE)) { - return ERR; - } - offset++; - - // decode address - for (int i = 0; i < PANASONIC_BITS; i++) { - if (!MATCH_MARK(results->rawbuf[offset++], PANASONIC_BIT_MARK)) { - return ERR; - } - if (MATCH_SPACE(results->rawbuf[offset],PANASONIC_ONE_SPACE)) { - data = (data << 1) | 1; - } else if (MATCH_SPACE(results->rawbuf[offset],PANASONIC_ZERO_SPACE)) { - data <<= 1; - } else { - return ERR; - } - offset++; - } - results->value = (unsigned long)data; - results->panasonicAddress = (unsigned int)(data >> 32); - results->decode_type = PANASONIC; - results->bits = PANASONIC_BITS; - return DECODED; -}*/ -/* -long IRrecv::decodeJVC(decode_results *results) { - long data = 0; - int offset = 1; // Skip first space - // Check for repeat - if (irparams.rawlen - 1 == 33 && - MATCH_MARK(results->rawbuf[offset], JVC_BIT_MARK) && - MATCH_MARK(results->rawbuf[irparams.rawlen-1], JVC_BIT_MARK)) { - results->bits = 0; - results->value = REPEAT; - results->decode_type = JVC; - return DECODED; - } - // Initial mark - if (!MATCH_MARK(results->rawbuf[offset], JVC_HDR_MARK)) { - return ERR; - } - offset++; - if (irparams.rawlen < 2 * JVC_BITS + 1 ) { - return ERR; - } - // Initial space - if (!MATCH_SPACE(results->rawbuf[offset], JVC_HDR_SPACE)) { - return ERR; - } - offset++; - for (int i = 0; i < JVC_BITS; i++) { - if (!MATCH_MARK(results->rawbuf[offset], JVC_BIT_MARK)) { - return ERR; - } - offset++; - if (MATCH_SPACE(results->rawbuf[offset], JVC_ONE_SPACE)) { - data = (data << 1) | 1; - } - else if (MATCH_SPACE(results->rawbuf[offset], JVC_ZERO_SPACE)) { - data <<= 1; - } - else { - return ERR; - } - offset++; - } - //Stop bit - if (!MATCH_MARK(results->rawbuf[offset], JVC_BIT_MARK)){ - return ERR; - } - // Success - results->bits = JVC_BITS; - results->value = data; - results->decode_type = JVC; - return DECODED; -}*/ - -/* ----------------------------------------------------------------------- - * hashdecode - decode an arbitrary IR code. - * Instead of decoding using a standard encoding scheme - * (e.g. Sony, NEC, RC5), the code is hashed to a 32-bit value. - * - * The algorithm: look at the sequence of MARK signals, and see if each one - * is shorter (0), the same length (1), or longer (2) than the previous. - * Do the same with the SPACE signals. Hszh the resulting sequence of 0's, - * 1's, and 2's to a 32-bit value. This will give a unique value for each - * different code (probably), for most code systems. - * - * http://arcfn.com/2010/01/using-arbitrary-remotes-with-arduino.html - */ - -// Compare two tick values, returning 0 if newval is shorter, -// 1 if newval is equal, and 2 if newval is longer -// Use a tolerance of 20% -int IRrecv::compare(unsigned int oldval, unsigned int newval) { - if (newval < oldval * .8) { - return 0; - } - else if (oldval < newval * .8) { - return 2; - } - else { - return 1; - } -} - -// Use FNV hash algorithm: http://isthe.com/chongo/tech/comp/fnv/#FNV-param -#define FNV_PRIME_32 16777619 -#define FNV_BASIS_32 2166136261 - -/* Converts the raw code values into a 32-bit hash code. - * Hopefully this code is unique for each button. - * This isn't a "real" decoding, just an arbitrary value. - */ -long IRrecv::decodeHash(decode_results *results) { - // Require at least 6 samples to prevent triggering on noise - if (results->rawlen < 6) { - return ERR; - } - long hash = FNV_BASIS_32; - for (int i = 1; i+2 < results->rawlen; i++) { - int value = compare(results->rawbuf[i], results->rawbuf[i+2]); - // Add value into the hash - hash = (hash * FNV_PRIME_32) ^ value; - } - results->value = hash; - results->bits = 32; - results->decode_type = UNKNOWN; - return DECODED; -} - diff --git a/libraries/RobotIRremote/src/IRremote.h b/libraries/RobotIRremote/src/IRremote.h deleted file mode 100644 index 56dc349b658..00000000000 --- a/libraries/RobotIRremote/src/IRremote.h +++ /dev/null @@ -1,94 +0,0 @@ -/* - * IRremote - * Version 0.1 July, 2009 - * Copyright 2009 Ken Shirriff - * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.htm http://arcfn.com - * Edited by Mitra to add new controller SANYO - * - * Interrupt code based on NECIRrcv by Joe Knapp - * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556 - * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/ - * - * JVC and Panasonic protocol added by Kristian Lauszus (Thanks to zenwheel and other people at the original blog post) - */ - -#ifndef IRremote_h -#define IRremote_h - -// The following are compile-time library options. -// If you change them, recompile the library. -// If DEBUG is defined, a lot of debugging output will be printed during decoding. -// TEST must be defined for the IRtest unittests to work. It will make some -// methods virtual, which will be slightly slower, which is why it is optional. -// #define DEBUG -// #define TEST - -// Results returned from the decoder -class decode_results { -public: - int decode_type; // NEC, SONY, RC5, UNKNOWN - unsigned int panasonicAddress; // This is only used for decoding Panasonic data - unsigned long value; // Decoded value - int bits; // Number of bits in decoded value - volatile unsigned int *rawbuf; // Raw intervals in .5 us ticks - int rawlen; // Number of records in rawbuf. -}; - -// Values for decode_type -#define NEC 1 -#define SONY 2 -#define RC5 3 -#define RC6 4 -#define DISH 5 -#define SHARP 6 -#define PANASONIC 7 -#define JVC 8 -#define SANYO 9 -#define MITSUBISHI 10 -#define UNKNOWN -1 - -// Decoded value for NEC when a repeat code is received -#define REPEAT 0xffffffff - -// main class for receiving IR -class IRrecv -{ -public: - IRrecv(int recvpin); - void blink13(int blinkflag); - int decode(decode_results *results); - void enableIRIn(); - void resume(); -private: - // These are called by decode - int getRClevel(decode_results *results, int *offset, int *used, int t1); - long decodeNEC(decode_results *results); - //long decodeSony(decode_results *results); - //long decodeSanyo(decode_results *results); - //long decodeMitsubishi(decode_results *results); - //long decodeRC5(decode_results *results); - //long decodeRC6(decode_results *results); - //long decodePanasonic(decode_results *results); - //long decodeJVC(decode_results *results); - long decodeHash(decode_results *results); - int compare(unsigned int oldval, unsigned int newval); - -} -; - -// Only used for testing; can remove virtual for shorter code -#ifdef TEST -#define VIRTUAL virtual -#else -#define VIRTUAL -#endif -// Some useful constants - -#define USECPERTICK 50 // microseconds per clock interrupt tick -#define RAWBUF 100 // Length of raw duration buffer - -// Marks tend to be 100us too long, and spaces 100us too short -// when received due to sensor lag. -#define MARK_EXCESS 100 - -#endif diff --git a/libraries/RobotIRremote/src/IRremoteInt.h b/libraries/RobotIRremote/src/IRremoteInt.h deleted file mode 100644 index 0efdbddd397..00000000000 --- a/libraries/RobotIRremote/src/IRremoteInt.h +++ /dev/null @@ -1,446 +0,0 @@ -/* - * IRremote - * Version 0.1 July, 2009 - * Copyright 2009 Ken Shirriff - * For details, see http://arcfn.com/2009/08/multi-protocol-infrared-remote-library.html - * - * Modified by Paul Stoffregen to support other boards and timers - * - * Interrupt code based on NECIRrcv by Joe Knapp - * http://www.arduino.cc/cgi-bin/yabb2/YaBB.pl?num=1210243556 - * Also influenced by http://zovirl.com/2008/11/12/building-a-universal-remote-with-an-arduino/ - * - * JVC and Panasonic protocol added by Kristian Lauszus (Thanks to zenwheel and other people at the original blog post) - */ - -#ifndef IRremoteint_h -#define IRremoteint_h - -#if defined(ARDUINO) && ARDUINO >= 100 -#include -#else -#include -#endif - -// define which timer to use -// -// Uncomment the timer you wish to use on your board. If you -// are using another library which uses timer2, you have options -// to switch IRremote to use a different timer. - -// Arduino Mega -#if defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) - //#define IR_USE_TIMER1 // tx = pin 11 - #define IR_USE_TIMER2 // tx = pin 9 - //#define IR_USE_TIMER3 // tx = pin 5 - //#define IR_USE_TIMER4 // tx = pin 6 - //#define IR_USE_TIMER5 // tx = pin 46 - -// Teensy 1.0 -#elif defined(__AVR_AT90USB162__) - #define IR_USE_TIMER1 // tx = pin 17 - -// Teensy 2.0 -#elif defined(__AVR_ATmega32U4__) - //#define IR_USE_TIMER1 // tx = pin 14 - //#define IR_USE_TIMER3 // tx = pin 9 - #define IR_USE_TIMER4_HS // tx = pin 10 - -// Teensy++ 1.0 & 2.0 -#elif defined(__AVR_AT90USB646__) || defined(__AVR_AT90USB1286__) - //#define IR_USE_TIMER1 // tx = pin 25 - #define IR_USE_TIMER2 // tx = pin 1 - //#define IR_USE_TIMER3 // tx = pin 16 - -// Sanguino -#elif defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644__) - //#define IR_USE_TIMER1 // tx = pin 13 - #define IR_USE_TIMER2 // tx = pin 14 - -// Atmega8 -#elif defined(__AVR_ATmega8P__) || defined(__AVR_ATmega8__) - #define IR_USE_TIMER1 // tx = pin 9 - -// Arduino Duemilanove, Diecimila, LilyPad, Mini, Fio, etc -#else - //#define IR_USE_TIMER1 // tx = pin 9 - #define IR_USE_TIMER2 // tx = pin 3 -#endif - - - -#ifdef F_CPU -#define SYSCLOCK F_CPU // main Arduino clock -#else -#define SYSCLOCK 16000000 // main Arduino clock -#endif - -#define ERR 0 -#define DECODED 1 - - -// defines for setting and clearing register bits -#ifndef cbi -#define cbi(sfr, bit) (_SFR_BYTE(sfr) &= ~_BV(bit)) -#endif -#ifndef sbi -#define sbi(sfr, bit) (_SFR_BYTE(sfr) |= _BV(bit)) -#endif - -// Pulse parms are *50-100 for the Mark and *50+100 for the space -// First MARK is the one after the long gap -// pulse parameters in usec -#define NEC_HDR_MARK 9000 -#define NEC_HDR_SPACE 4500 -#define NEC_BIT_MARK 560 -#define NEC_ONE_SPACE 1600 -#define NEC_ZERO_SPACE 560 -#define NEC_RPT_SPACE 2250 - -#define SONY_HDR_MARK 2400 -#define SONY_HDR_SPACE 600 -#define SONY_ONE_MARK 1200 -#define SONY_ZERO_MARK 600 -#define SONY_RPT_LENGTH 45000 -#define SONY_DOUBLE_SPACE_USECS 500 // usually ssee 713 - not using ticks as get number wrapround - -// SA 8650B -#define SANYO_HDR_MARK 3500 // seen range 3500 -#define SANYO_HDR_SPACE 950 // seen 950 -#define SANYO_ONE_MARK 2400 // seen 2400 -#define SANYO_ZERO_MARK 700 // seen 700 -#define SANYO_DOUBLE_SPACE_USECS 800 // usually ssee 713 - not using ticks as get number wrapround -#define SANYO_RPT_LENGTH 45000 - -// Mitsubishi RM 75501 -// 14200 7 41 7 42 7 42 7 17 7 17 7 18 7 41 7 18 7 17 7 17 7 18 7 41 8 17 7 17 7 18 7 17 7 - -// #define MITSUBISHI_HDR_MARK 250 // seen range 3500 -#define MITSUBISHI_HDR_SPACE 350 // 7*50+100 -#define MITSUBISHI_ONE_MARK 1950 // 41*50-100 -#define MITSUBISHI_ZERO_MARK 750 // 17*50-100 -// #define MITSUBISHI_DOUBLE_SPACE_USECS 800 // usually ssee 713 - not using ticks as get number wrapround -// #define MITSUBISHI_RPT_LENGTH 45000 - - -#define RC5_T1 889 -#define RC5_RPT_LENGTH 46000 - -#define RC6_HDR_MARK 2666 -#define RC6_HDR_SPACE 889 -#define RC6_T1 444 -#define RC6_RPT_LENGTH 46000 - -#define SHARP_BIT_MARK 245 -#define SHARP_ONE_SPACE 1805 -#define SHARP_ZERO_SPACE 795 -#define SHARP_GAP 600000 -#define SHARP_TOGGLE_MASK 0x3FF -#define SHARP_RPT_SPACE 3000 - -#define DISH_HDR_MARK 400 -#define DISH_HDR_SPACE 6100 -#define DISH_BIT_MARK 400 -#define DISH_ONE_SPACE 1700 -#define DISH_ZERO_SPACE 2800 -#define DISH_RPT_SPACE 6200 -#define DISH_TOP_BIT 0x8000 - -#define PANASONIC_HDR_MARK 3502 -#define PANASONIC_HDR_SPACE 1750 -#define PANASONIC_BIT_MARK 502 -#define PANASONIC_ONE_SPACE 1244 -#define PANASONIC_ZERO_SPACE 400 - -#define JVC_HDR_MARK 8000 -#define JVC_HDR_SPACE 4000 -#define JVC_BIT_MARK 600 -#define JVC_ONE_SPACE 1600 -#define JVC_ZERO_SPACE 550 -#define JVC_RPT_LENGTH 60000 - -#define SHARP_BITS 15 -#define DISH_BITS 16 - -#define TOLERANCE 25 // percent tolerance in measurements -#define LTOL (1.0 - TOLERANCE/100.) -#define UTOL (1.0 + TOLERANCE/100.) - -#define _GAP 5000 // Minimum map between transmissions -#define GAP_TICKS (_GAP/USECPERTICK) - -#define TICKS_LOW(us) (int) (((us)*LTOL/USECPERTICK)) -#define TICKS_HIGH(us) (int) (((us)*UTOL/USECPERTICK + 1)) - -// receiver states -#define STATE_IDLE 2 -#define STATE_MARK 3 -#define STATE_SPACE 4 -#define STATE_STOP 5 - -// information for the interrupt handler -typedef struct { - uint8_t recvpin; // pin for IR data from detector - uint8_t rcvstate; // state machine - uint8_t blinkflag; // TRUE to enable blinking of pin 13 on IR processing - unsigned int timer; // state timer, counts 50uS ticks. - unsigned int rawbuf[RAWBUF]; // raw data - uint8_t rawlen; // counter of entries in rawbuf -} -irparams_t; - -// Defined in IRremote.cpp -extern volatile irparams_t irparams; - -// IR detector output is active low -#define MARK 0 -#define SPACE 1 - -#define TOPBIT 0x80000000 - -#define NEC_BITS 32 -#define SONY_BITS 12 -#define SANYO_BITS 12 -#define MITSUBISHI_BITS 16 -#define MIN_RC5_SAMPLES 11 -#define MIN_RC6_SAMPLES 1 -#define PANASONIC_BITS 48 -#define JVC_BITS 16 - - - - -// defines for timer2 (8 bits) -#if defined(IR_USE_TIMER2) -#define TIMER_RESET -#define TIMER_ENABLE_PWM (TCCR2A |= _BV(COM2B1)) -#define TIMER_DISABLE_PWM (TCCR2A &= ~(_BV(COM2B1))) -#define TIMER_ENABLE_INTR (TIMSK2 = _BV(OCIE2A)) -#define TIMER_DISABLE_INTR (TIMSK2 = 0) -#define TIMER_INTR_NAME TIMER2_COMPA_vect -#define TIMER_CONFIG_KHZ(val) ({ \ - const uint8_t pwmval = SYSCLOCK / 2000 / (val); \ - TCCR2A = _BV(WGM20); \ - TCCR2B = _BV(WGM22) | _BV(CS20); \ - OCR2A = pwmval; \ - OCR2B = pwmval / 3; \ -}) -#define TIMER_COUNT_TOP (SYSCLOCK * USECPERTICK / 1000000) -#if (TIMER_COUNT_TOP < 256) -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR2A = _BV(WGM21); \ - TCCR2B = _BV(CS20); \ - OCR2A = TIMER_COUNT_TOP; \ - TCNT2 = 0; \ -}) -#else -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR2A = _BV(WGM21); \ - TCCR2B = _BV(CS21); \ - OCR2A = TIMER_COUNT_TOP / 8; \ - TCNT2 = 0; \ -}) -#endif -#if defined(CORE_OC2B_PIN) -#define TIMER_PWM_PIN CORE_OC2B_PIN /* Teensy */ -#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) -#define TIMER_PWM_PIN 9 /* Arduino Mega */ -#elif defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644__) -#define TIMER_PWM_PIN 14 /* Sanguino */ -#else -#define TIMER_PWM_PIN 3 /* Arduino Duemilanove, Diecimila, LilyPad, etc */ -#endif - - -// defines for timer1 (16 bits) -#elif defined(IR_USE_TIMER1) -#define TIMER_RESET -#define TIMER_ENABLE_PWM (TCCR1A |= _BV(COM1A1)) -#define TIMER_DISABLE_PWM (TCCR1A &= ~(_BV(COM1A1))) -#if defined(__AVR_ATmega8P__) || defined(__AVR_ATmega8__) - #define TIMER_ENABLE_INTR (TIMSK = _BV(OCIE1A)) - #define TIMER_DISABLE_INTR (TIMSK = 0) -#else - #define TIMER_ENABLE_INTR (TIMSK1 = _BV(OCIE1A)) - #define TIMER_DISABLE_INTR (TIMSK1 = 0) -#endif -#define TIMER_INTR_NAME TIMER1_COMPA_vect -#define TIMER_CONFIG_KHZ(val) ({ \ - const uint16_t pwmval = SYSCLOCK / 2000 / (val); \ - TCCR1A = _BV(WGM11); \ - TCCR1B = _BV(WGM13) | _BV(CS10); \ - ICR1 = pwmval; \ - OCR1A = pwmval / 3; \ -}) -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR1A = 0; \ - TCCR1B = _BV(WGM12) | _BV(CS10); \ - OCR1A = SYSCLOCK * USECPERTICK / 1000000; \ - TCNT1 = 0; \ -}) -#if defined(CORE_OC1A_PIN) -#define TIMER_PWM_PIN CORE_OC1A_PIN /* Teensy */ -#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) -#define TIMER_PWM_PIN 11 /* Arduino Mega */ -#elif defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644__) -#define TIMER_PWM_PIN 13 /* Sanguino */ -#else -#define TIMER_PWM_PIN 9 /* Arduino Duemilanove, Diecimila, LilyPad, etc */ -#endif - - -// defines for timer3 (16 bits) -#elif defined(IR_USE_TIMER3) -#define TIMER_RESET -#define TIMER_ENABLE_PWM (TCCR3A |= _BV(COM3A1)) -#define TIMER_DISABLE_PWM (TCCR3A &= ~(_BV(COM3A1))) -#define TIMER_ENABLE_INTR (TIMSK3 = _BV(OCIE3A)) -#define TIMER_DISABLE_INTR (TIMSK3 = 0) -#define TIMER_INTR_NAME TIMER3_COMPA_vect -#define TIMER_CONFIG_KHZ(val) ({ \ - const uint16_t pwmval = SYSCLOCK / 2000 / (val); \ - TCCR3A = _BV(WGM31); \ - TCCR3B = _BV(WGM33) | _BV(CS30); \ - ICR3 = pwmval; \ - OCR3A = pwmval / 3; \ -}) -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR3A = 0; \ - TCCR3B = _BV(WGM32) | _BV(CS30); \ - OCR3A = SYSCLOCK * USECPERTICK / 1000000; \ - TCNT3 = 0; \ -}) -#if defined(CORE_OC3A_PIN) -#define TIMER_PWM_PIN CORE_OC3A_PIN /* Teensy */ -#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) -#define TIMER_PWM_PIN 5 /* Arduino Mega */ -#else -#error "Please add OC3A pin number here\n" -#endif - - -// defines for timer4 (10 bits, high speed option) -#elif defined(IR_USE_TIMER4_HS) -#define TIMER_RESET -#define TIMER_ENABLE_PWM (TCCR4A |= _BV(COM4A1)) -#define TIMER_DISABLE_PWM (TCCR4A &= ~(_BV(COM4A1))) -#define TIMER_ENABLE_INTR (TIMSK4 = _BV(TOIE4)) -#define TIMER_DISABLE_INTR (TIMSK4 = 0) -#define TIMER_INTR_NAME TIMER4_OVF_vect -#define TIMER_CONFIG_KHZ(val) ({ \ - const uint16_t pwmval = SYSCLOCK / 2000 / (val); \ - TCCR4A = (1<> 8; \ - OCR4C = pwmval; \ - TC4H = (pwmval / 3) >> 8; \ - OCR4A = (pwmval / 3) & 255; \ -}) -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR4A = 0; \ - TCCR4B = _BV(CS40); \ - TCCR4C = 0; \ - TCCR4D = 0; \ - TCCR4E = 0; \ - TC4H = (SYSCLOCK * USECPERTICK / 1000000) >> 8; \ - OCR4C = (SYSCLOCK * USECPERTICK / 1000000) & 255; \ - TC4H = 0; \ - TCNT4 = 0; \ -}) -#if defined(CORE_OC4A_PIN) -#define TIMER_PWM_PIN CORE_OC4A_PIN /* Teensy */ -#elif defined(__AVR_ATmega32U4__) -#define TIMER_PWM_PIN 13 /* Leonardo */ -#else -#error "Please add OC4A pin number here\n" -#endif - - -// defines for timer4 (16 bits) -#elif defined(IR_USE_TIMER4) -#define TIMER_RESET -#define TIMER_ENABLE_PWM (TCCR4A |= _BV(COM4A1)) -#define TIMER_DISABLE_PWM (TCCR4A &= ~(_BV(COM4A1))) -#define TIMER_ENABLE_INTR (TIMSK4 = _BV(OCIE4A)) -#define TIMER_DISABLE_INTR (TIMSK4 = 0) -#define TIMER_INTR_NAME TIMER4_COMPA_vect -#define TIMER_CONFIG_KHZ(val) ({ \ - const uint16_t pwmval = SYSCLOCK / 2000 / (val); \ - TCCR4A = _BV(WGM41); \ - TCCR4B = _BV(WGM43) | _BV(CS40); \ - ICR4 = pwmval; \ - OCR4A = pwmval / 3; \ -}) -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR4A = 0; \ - TCCR4B = _BV(WGM42) | _BV(CS40); \ - OCR4A = SYSCLOCK * USECPERTICK / 1000000; \ - TCNT4 = 0; \ -}) -#if defined(CORE_OC4A_PIN) -#define TIMER_PWM_PIN CORE_OC4A_PIN -#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) -#define TIMER_PWM_PIN 6 /* Arduino Mega */ -#else -#error "Please add OC4A pin number here\n" -#endif - - -// defines for timer5 (16 bits) -#elif defined(IR_USE_TIMER5) -#define TIMER_RESET -#define TIMER_ENABLE_PWM (TCCR5A |= _BV(COM5A1)) -#define TIMER_DISABLE_PWM (TCCR5A &= ~(_BV(COM5A1))) -#define TIMER_ENABLE_INTR (TIMSK5 = _BV(OCIE5A)) -#define TIMER_DISABLE_INTR (TIMSK5 = 0) -#define TIMER_INTR_NAME TIMER5_COMPA_vect -#define TIMER_CONFIG_KHZ(val) ({ \ - const uint16_t pwmval = SYSCLOCK / 2000 / (val); \ - TCCR5A = _BV(WGM51); \ - TCCR5B = _BV(WGM53) | _BV(CS50); \ - ICR5 = pwmval; \ - OCR5A = pwmval / 3; \ -}) -#define TIMER_CONFIG_NORMAL() ({ \ - TCCR5A = 0; \ - TCCR5B = _BV(WGM52) | _BV(CS50); \ - OCR5A = SYSCLOCK * USECPERTICK / 1000000; \ - TCNT5 = 0; \ -}) -#if defined(CORE_OC5A_PIN) -#define TIMER_PWM_PIN CORE_OC5A_PIN -#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) -#define TIMER_PWM_PIN 46 /* Arduino Mega */ -#else -#error "Please add OC5A pin number here\n" -#endif - - -#else // unknown timer -#error "Internal code configuration error, no known IR_USE_TIMER# defined\n" -#endif - - -// defines for blinking the LED -#if defined(CORE_LED0_PIN) -#define BLINKLED CORE_LED0_PIN -#define BLINKLED_ON() (digitalWrite(CORE_LED0_PIN, HIGH)) -#define BLINKLED_OFF() (digitalWrite(CORE_LED0_PIN, LOW)) -#elif defined(__AVR_ATmega1280__) || defined(__AVR_ATmega2560__) -#define BLINKLED 13 -#define BLINKLED_ON() (PORTB |= B10000000) -#define BLINKLED_OFF() (PORTB &= B01111111) -#elif defined(__AVR_ATmega644P__) || defined(__AVR_ATmega644__) -#define BLINKLED 0 -#define BLINKLED_ON() (PORTD |= B00000001) -#define BLINKLED_OFF() (PORTD &= B11111110) -#else -#define BLINKLED 13 -#define BLINKLED_ON() (PORTB |= B00100000) -#define BLINKLED_OFF() (PORTB &= B11011111) -#endif - -#endif diff --git a/libraries/RobotIRremote/src/IRremoteTools.cpp b/libraries/RobotIRremote/src/IRremoteTools.cpp deleted file mode 100644 index 4cd6d569e6c..00000000000 --- a/libraries/RobotIRremote/src/IRremoteTools.cpp +++ /dev/null @@ -1,23 +0,0 @@ -#include "IRremote.h" -#include "IRremoteTools.h" -#include - -int RECV_PIN = TKD2; // the pin the IR receiver is connected to -IRrecv irrecv(RECV_PIN); // an instance of the IR receiver object -decode_results results; // container for received IR codes - -void beginIRremote(){ - irrecv.enableIRIn(); // Start the receiver -} - -bool IRrecived(){ - return irrecv.decode(&results); -} - -void resumeIRremote(){ - irrecv.resume(); // resume receiver -} - -unsigned long getIRresult(){ - return results.value; -} \ No newline at end of file diff --git a/libraries/RobotIRremote/src/IRremoteTools.h b/libraries/RobotIRremote/src/IRremoteTools.h deleted file mode 100644 index a61d4edfa48..00000000000 --- a/libraries/RobotIRremote/src/IRremoteTools.h +++ /dev/null @@ -1,12 +0,0 @@ -#ifndef IRREMOTETOOLS_H -#define IRREMOTETOOLS_H - -extern void beginIRremote(); - -extern bool IRrecived(); - -extern void resumeIRremote(); - -extern unsigned long getIRresult(); - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/README.adoc b/libraries/Robot_Control/README.adoc deleted file mode 100644 index b4858014301..00000000000 --- a/libraries/Robot_Control/README.adoc +++ /dev/null @@ -1,27 +0,0 @@ -= Robot Control Library for Arduino = - -The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality. - -For more information about this library please visit us at -http://www.arduino.cc/en/Reference/RobotLibrary - -== License == - -Copyright (c) Arduino LLC. All right reserved. -Copyright (c) Bill Porter. All right reserved. -Copyright (C) 2008 by William Greiman. All right reserved. -Copyright (c) 2013 Adafruit Industries. All rights reserved. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Robot_Control/examples/explore/R01_Logo/R01_Logo.ino b/libraries/Robot_Control/examples/explore/R01_Logo/R01_Logo.ino deleted file mode 100644 index 251bffa9c69..00000000000 --- a/libraries/Robot_Control/examples/explore/R01_Logo/R01_Logo.ino +++ /dev/null @@ -1,137 +0,0 @@ -/* Robot Logo - - This sketch demonstrates basic movement of the Robot. - When the sketch starts, press the on-board buttons to tell - the robot how to move. Pressing the middle button will - save the pattern, and the robot will follow accordingly. - You can record up to 20 commands. The robot will move for - one second per command. - - This example uses images on an SD card. It looks for - files named "lg0.bmp" and "lg1.bmp" and draws them on the - screen. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include // include the robot library -#include -#include - -int commands[20]; // array for storing commands - -void setup() { - // initialize the Robot, SD card, and display - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - - // draw "lg0.bmp" and "lg1.bmp" on the screen - Robot.displayLogos(); -} - -void loop() { - - Robot.drawBMP("intro.bmp", 0, 0); //display background image - - iniCommands(); // remove commands from the array - addCommands(); // add commands to the array - - delay(1000); // wait for a second - - executeCommands(); // follow orders - - Robot.stroke(0, 0, 0); - Robot.text("Done!", 5, 103); // write some text to the display - delay(1500); // wait for a moment -} - -// empty the commands array -void iniCommands() { - for (int i = 0; i < 20; i++) { - commands[i] = -1; - } -} - -// add commands to the array -void addCommands() { - Robot.stroke(0, 0, 0); - // display text on the screen - Robot.text("1. Press buttons to\n add commands.\n\n 2. Middle to finish.", 5, 5); - - // read the buttons' state - for (int i = 0; i < 20;) { //max 20 commands - int key = Robot.keyboardRead(); - if (key == BUTTON_MIDDLE) { //finish input - break; - } else if (key == BUTTON_NONE) { //if no button is pressed - continue; - } - commands[i] = key; // save the button to the array - PrintCommandI(i, 46); // print the command on the screen - delay(100); - i++; - } -} - -// run through the array and move the robot -void executeCommands() { - // print status to the screen - Robot.text("Excuting...", 5, 70); - - // read through the array and move accordingly - for (int i = 0; i < 20; i++) { - switch (commands[i]) { - case BUTTON_LEFT: - Robot.turn(-90); - break; - case BUTTON_RIGHT: - Robot.turn(90); - break; - case BUTTON_UP: - Robot.motorsWrite(255, 255); - break; - case BUTTON_DOWN: - Robot.motorsWrite(-255, -255); - break; - case BUTTON_NONE: - return; - } - // print the current command to the screen - Robot.stroke(255, 0, 0); - PrintCommandI(i, 86); - delay(1000); - - // stop moving for a second - Robot.motorsStop(); - delay(1000); - } -} - -// convert the button press to a single character -char keyToChar(int key) { - switch (key) { - case BUTTON_LEFT: - return '<'; - case BUTTON_RIGHT: - return '>'; - case BUTTON_UP: - return '^'; - case BUTTON_DOWN: - return 'v'; - } -} - -// display a command -void PrintCommandI(int i, int originY) { - Robot.text(keyToChar(commands[i]), i % 14 * 8 + 5, i / 14 * 10 + originY); -} - diff --git a/libraries/Robot_Control/examples/explore/R02_Line_Follow/R02_Line_Follow.ino b/libraries/Robot_Control/examples/explore/R02_Line_Follow/R02_Line_Follow.ino deleted file mode 100644 index 54823e73d51..00000000000 --- a/libraries/Robot_Control/examples/explore/R02_Line_Follow/R02_Line_Follow.ino +++ /dev/null @@ -1,76 +0,0 @@ -/* Robot Line Follow - - This sketch demonstrates the line following capabilities - of the Arduino Robot. On the floor, place some black - electrical tape along the path you wish the robot to follow. - To indicate a stopping point, place another piece of tape - perpendicular to the path. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include // include the robot library -#include -#include - -long timerOrigin; // used for counting elapsed time - -void setup() { - // initialize the Robot, SD card, display, and speaker - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - Robot.beginSpeaker(); - - // show the logots on the TFT screen - Robot.displayLogos(); - - Robot.drawBMP("lf.bmp", 0, 0); // display background image - - Robot.playFile("chase.sqm"); // play a song from the SD card - - // add the instructions - Robot.text("Line Following\n\n place the robot on\n the track and \n see it run", 5, 5); - Robot.text("Press the middle\n button to start...", 5, 61); - Robot.waitContinue(); - - // These are some general values that work for line following - // uncomment one or the other to see the different behaviors of the robot - //Robot.lineFollowConfig(14, 9, 50, 10); - Robot.lineFollowConfig(11, 7, 60, 5); - - - //set the motor board into line-follow mode - Robot.setMode(MODE_LINE_FOLLOW); - - // start - Robot.fill(255, 255, 255); - Robot.stroke(255, 255, 255); - Robot.rect(0, 0, 128, 80); // erase the previous text - Robot.stroke(0, 0, 0); - Robot.text("Start", 5, 5); - - Robot.stroke(0, 0, 0); // choose color for the text - Robot.text("Time passed:", 5, 21); // write some text to the screen - - timerOrigin = millis(); // keep track of the elapsed time - - while (!Robot.isActionDone()) { //wait for the finish signal - Robot.debugPrint(millis() - timerOrigin, 5, 29); // show how much time has passed - } - - Robot.stroke(0, 0, 0); - Robot.text("Done!", 5, 45); -} -void loop() { - //nothing here, the program only runs once. Reset the robot - //to do it again! -} diff --git a/libraries/Robot_Control/examples/explore/R03_Disco_Bot/R03_Disco_Bot.ino b/libraries/Robot_Control/examples/explore/R03_Disco_Bot/R03_Disco_Bot.ino deleted file mode 100644 index fd25261f563..00000000000 --- a/libraries/Robot_Control/examples/explore/R03_Disco_Bot/R03_Disco_Bot.ino +++ /dev/null @@ -1,183 +0,0 @@ -/* Disco Bot - - This sketch shows you how to use the melody playing - feature of the robot, with some really cool 8-bit music. - Music will play when the robot is turned on, and it - will show you some dance moves. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include // include the robot library -#include -#include - -/* Dancing steps: - S: stop - L: turn left - R: turn right - F: go forward - B: go backwards - - The number after each command determines how long - each step lasts. Each number is 1/2 second long. - - The "\0" indicates end of string -*/ -char danceScript[] = "S4L1R1S2F1B1S1\0"; - -int currentScript = 0; // what step are we at - -int currentSong = 0; // keep track of the current song -static const int SONGS_COUNT = 3; // number of songs - -// an array to hold the songs -char musics[][11] = { - "melody.sqm", - "menu.sqm", - "chase.sqm", -}; - -// variables for non-blocking delay -long waitFrom; -long waitTime = 0; - -void setup() { - // initialize the Robot, SD card, display, and speaker - Robot.begin(); - Robot.beginSpeaker(); - Robot.beginSD(); - Robot.beginTFT(); - - // draw "lg0.bmp" and "lg1.bmp" on the screen - Robot.displayLogos(); - - // Print instructions to the screen - Robot.text("1. Use left and\n right key to switch\n song", 5, 5); - Robot.text("2. Put robot on the\n ground to dance", 5, 33); - - // wait for a few soconds - delay(3000); - - setInterface(); // display the current song - play(0); //play the first song in the array - - resetWait(); //Initialize non-blocking delay -} - -void loop() { - // read the butttons on the robot - int key = Robot.keyboardRead(); - - // Right/left buttons play next/previous song - switch (key) { - case BUTTON_UP: - case BUTTON_LEFT: - play(-1); //play previous song - break; - case BUTTON_DOWN: - case BUTTON_RIGHT: - play(1); //play next song - break; - } - - // dance! - runScript(); -} - -// Dancing function -void runScript() { - if (!waiting()) { // if the previous instructions have finished - // get the next 2 commands (direction and duration) - parseCommand(danceScript[currentScript], danceScript[currentScript + 1]); - currentScript += 2; - if (danceScript[currentScript] == '\0') { // at the end of the array - currentScript = 0; // start again at the beginning - } - } -} - -// instead of delay, use this timer -boolean waiting() { - if (millis() - waitFrom >= waitTime) { - return false; - } else { - return true; - } -} - -// how long to wait -void wait(long t) { - resetWait(); - waitTime = t; -} - -// reset the timer -void resetWait() { - waitFrom = millis(); -} - -// read the direction and dirstion of the steps -void parseCommand(char dir, char duration) { - //convert the scripts to action - switch (dir) { - case 'L': - Robot.motorsWrite(-255, 255); - break; - case 'R': - Robot.motorsWrite(255, -255); - break; - case 'F': - Robot.motorsWrite(255, 255); - break; - case 'B': - Robot.motorsWrite(-255, -255); - break; - case 'S': - Robot.motorsStop(); - break; - } - //You can change "500" to change the pace of dancing - wait(500 * (duration - '0')); -} - -// display the song -void setInterface() { - Robot.clearScreen(); - Robot.stroke(0, 0, 0); - Robot.text(musics[0], 0, 0); -} - -// display the next song -void select(int seq, boolean onOff) { - if (onOff) { //select - Robot.stroke(0, 0, 0); - Robot.text(musics[seq], 0, 0); - } else { //deselect - Robot.stroke(255, 255, 255); - Robot.text(musics[seq], 0, 0); - } -} - -// play the slected song -void play(int seq) { - select(currentSong, false); - if (currentSong <= 0 && seq == -1) { //previous of 1st song? - currentSong = SONGS_COUNT - 1; //go to last song - } else if (currentSong >= SONGS_COUNT - 1 && seq == 1) { //next of last? - currentSong = 0; //go to 1st song - } else { - currentSong += seq; //next song - } - Robot.stopPlayFile(); - Robot.playFile(musics[currentSong]); - select(currentSong, true); //display the current song -} diff --git a/libraries/Robot_Control/examples/explore/R04_Compass/R04_Compass.ino b/libraries/Robot_Control/examples/explore/R04_Compass/R04_Compass.ino deleted file mode 100644 index 2415a30d384..00000000000 --- a/libraries/Robot_Control/examples/explore/R04_Compass/R04_Compass.ino +++ /dev/null @@ -1,73 +0,0 @@ -/* Robot Compass - - The robot has an on-board compass module, with - which it can tell the direction the robot is - facing. This sketch will make sure the robot - goes towards a certain direction. - - Beware, magnets will interfere with the compass - readings. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -// include the robot library -#include -#include -#include - -int speedLeft; -int speedRight; -int compassValue; -int direc = 180; //Direction the robot is heading - -void setup() { - // initialize the modules - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - Robot.displayLogos(); -} - -void loop() { - // read the compass orientation - compassValue = Robot.compassRead(); - - // how many degrees are we off - int diff = compassValue - direc; - - // modify degress - if (diff > 180) { - diff = -360 + diff; - } else if (diff < -180) { - diff = 360 + diff; - } - - // Make the robot turn to its proper orientation - diff = map(diff, -180, 180, -255, 255); - - if (diff > 0) { - // keep the right wheel spinning, - // change the speed of the left wheel - speedLeft = 255 - diff; - speedRight = 255; - } else { - // keep the right left spinning, - // change the speed of the left wheel - speedLeft = 255; - speedRight = 255 + diff; - } - // write out to the motors - Robot.motorsWrite(speedLeft, speedRight); - - // draw the orientation on the screen - Robot.drawCompass(compassValue); -} diff --git a/libraries/Robot_Control/examples/explore/R05_Inputs/R05_Inputs.ino b/libraries/Robot_Control/examples/explore/R05_Inputs/R05_Inputs.ino deleted file mode 100644 index 9226d0242ae..00000000000 --- a/libraries/Robot_Control/examples/explore/R05_Inputs/R05_Inputs.ino +++ /dev/null @@ -1,173 +0,0 @@ -/* Robot Inputs - - This sketch shows you how to use the on-board - potentiometer and buttons as inputs. - - Turning the potentiometer draws a clock-shaped - circle. The up and down buttons change the pitch, - while the left and right buttons change the tempo. - The middle button resets tempo and pitch. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -// default tempo and pitch of the music -int tempo = 60; -int pitch = 1000; - -void setup() { - // initialize the Robot, SD card, speaker, and display - Robot.begin(); - Robot.beginTFT(); - Robot.beginSpeaker(); - Robot.beginSD(); - - // draw "lg0.bmp" and "lg1.bmp" on the screen - Robot.displayLogos(); - - // play a sound file - Robot.playFile("Melody.sqm"); -} - -void loop() { - // check the value of the buttons - keyDown(Robot.keyboardRead()); - - // check the value of the pot - drawKnob(Robot.knobRead()); -} - -// Draw the basic interface -void renderUI() { - //fill the buttons blank - Robot.fill(255, 255, 255); - Robot.rect(53, 58, 13, 13); // left - Robot.rect(93, 58, 13, 13); // right - Robot.rect(73, 38, 13, 13); // up - Robot.circle(79, 64, 6); // middle - Robot.rect(73, 78, 13, 13); // down - - //draw the knob - Robot.noFill(); - Robot.circle(26, 116, 17); // knob - - //draw the vertical bargraph - int fullPart = map(pitch, 200, 2000, 0, 58); //length of filled bargraph - Robot.fill(255, 255, 255); - Robot.rect(21, 30, 13, 58 - fullPart); - Robot.fill(0, 0, 255); - Robot.rect(21, 88 - fullPart, 13, fullPart); //58-fullPart+30 - - //draw the horizontal bargraph - fullPart = map(tempo, 20, 100, 0, 58); // length of filled bargraph - Robot.fill(255, 190, 0); - Robot.rect(53, 110, fullPart, 13); - Robot.fill(255, 255, 255); - Robot.rect(53 + fullPart, 110, 58 - fullPart, 13); -} - -void keyDown(int keyCode) { - // use a static int so it is persistent over time - static int oldKey; - switch (keyCode) { - case BUTTON_LEFT: - //left button pressed, reduces tempo - tempo -= 5; - if (tempo < 20) { - tempo = 20; //lowest tempo 20 - } - Robot.fill(255, 190, 0); - - Robot.rect(53, 58, 13, 13); - break; - case BUTTON_RIGHT: - //right button pressed, increases tempo - tempo += 5; - if (tempo > 100) { - tempo = 100; //highest tempo 100 - } - Robot.fill(255, 190, 0); - Robot.rect(93, 58, 13, 13); - break; - case BUTTON_UP: - //up button pressed, increases pitch - pitch += 120; - if (pitch > 2000) { - pitch = 2000; - } - Robot.fill(0, 0, 255); - - Robot.rect(73, 38, 13, 13); - break; - case BUTTON_DOWN: - //down button pressed, reduces pitch - pitch -= 120; - if (pitch < 200) { - pitch = 200; - } - Robot.fill(0, 0, 255); - - Robot.rect(73, 78, 13, 13); - break; - case BUTTON_MIDDLE: - //middle button pressed, resets tempo and pitch - tempo = 60; - pitch = 1000; - Robot.fill(160, 160, 160); - - Robot.circle(79, 64, 6); - break; - case BUTTON_NONE: - //Only when the keys are released(thus BUTTON_NONE is - //encountered the first time), the interface will be - //re-drawn. - if (oldKey != BUTTON_NONE) { - renderUI(); - } - break; - } - if (oldKey != keyCode) { - // change the song's tempo - Robot.tempoWrite(tempo); - // change the song's pitch - Robot.tuneWrite(float(pitch / 1000.0)); - } - oldKey = keyCode; -} - -//Draw a circle according to value -//of the knob. -void drawKnob(int val) { - static int val_old; - int r = map(val, 0, 1023, 1, 15); - - //Only updates when the - //value changes. - if (val_old != r) { - Robot.noFill(); - - //erase the old circle - Robot.stroke(255, 255, 255); - Robot.circle(26, 116, r + 1); - - //draw the new circle - Robot.stroke(255, 0, 255); - Robot.circle(26, 116, r); - - Robot.stroke(0, 0, 0); - - val_old = r; - } -} diff --git a/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/R06_Wheel_Calibration.ino b/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/R06_Wheel_Calibration.ino deleted file mode 100644 index 278ca4700d1..00000000000 --- a/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/R06_Wheel_Calibration.ino +++ /dev/null @@ -1,40 +0,0 @@ -/* 6 Wheel Calibration -* -* Use this sketch to calibrate the wheels in your robot. -* Your robot should drive as straight as possible when -* putting both motors at the same speed. -* -* Run the software and follow the on-screen instructions. -* Use the trimmer on the bottom board to make sure the -* robot is working at its best! -* -* (c) 2013 X. Yang -*/ -#include "scripts_library.h" - -#include -#include -#include - -void setup() { - Serial.begin(9600); - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - - Robot.setTextWrap(false); - Robot.displayLogos(); - - writeAllScripts(); - -} -void loop() { - int val = map(Robot.knobRead(), 0, 1023, -255, 255); - Serial.println(val); - Robot.motorsWrite(val, val); - - int WC = map(Robot.trimRead(), 0, 1023, -20, 20); - Robot.debugPrint(WC, 108, 149); - delay(40); - -} diff --git a/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h b/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h deleted file mode 100644 index a6c12e75892..00000000000 --- a/libraries/Robot_Control/examples/explore/R06_Wheel_Calibration/scripts_library.h +++ /dev/null @@ -1,43 +0,0 @@ -#include -#include - -const char script1[] PROGMEM="Wheel Calibration\n"; -const char script2[] PROGMEM="1. Put Robot on a flat surface\n"; -const char script3[] PROGMEM="2. Adjust speed with the knob on top\n"; -const char script4[] PROGMEM="3. If robot goes straight, it's done\n"; -const char script5[] PROGMEM="4. Use screwdriver on the trim on bottom\n"; -const char script6[] PROGMEM="Robot turns left, screw it clockwise;\n"; -const char script7[] PROGMEM="Turns right, screw it ct-colockwise;\n"; -const char script8[] PROGMEM="5. Repeat 4 until going straight\n"; - -char buffer[42];//must be longer than text - -const char * const scripts[] PROGMEM = { - script1, - script2, - script3, - script4, - script5, - script6, - script7, - script8, -}; - -void getPGMtext(int seq){ - strcpy_P(buffer,(char*)pgm_read_word(&(scripts[seq]))); -} - -void writePGMtext(int seq){ - getPGMtext(seq); - Robot.print(buffer); -} - -void writeScript(int seq){ - writePGMtext(seq); -} - -void writeAllScripts(){ - for(int i=0;i<8;i++){ - writeScript(i); - } -} diff --git a/libraries/Robot_Control/examples/explore/R07_Runaway_Robot/R07_Runaway_Robot.ino b/libraries/Robot_Control/examples/explore/R07_Runaway_Robot/R07_Runaway_Robot.ino deleted file mode 100644 index 8c8926ed30b..00000000000 --- a/libraries/Robot_Control/examples/explore/R07_Runaway_Robot/R07_Runaway_Robot.ino +++ /dev/null @@ -1,80 +0,0 @@ -/* Runaway Robot - - Play tag with your robot! With an ultrasonic - distance sensor, it's capable of detecting and avoiding - obstacles, never bumping into walls again! - - You'll need to attach an untrasonic range finder to M1. - - Circuit: - * Arduino Robot - * US range finder like Maxbotix EZ10, with analog output - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -// include the robot library -#include -#include -#include - -int sensorPin = M1; // pin is used by the sensor - -void setup() { - // initialize the Robot, SD card, and display - Serial.begin(9600); - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - Robot.displayLogos(); - - // draw a face on the LCD screen - setFace(true); -} - -void loop() { - // If the robot is blocked, turn until free - while (getDistance() < 40) { // If an obstacle is less than 20cm away - setFace(false); //shows an unhappy face - Robot.motorsStop(); // stop the motors - delay(1000); // wait for a moment - Robot.turn(90); // turn to the right and try again - setFace(true); // happy face - } - // if there are no objects in the way, keep moving - Robot.motorsWrite(255, 255); - delay(100); -} - -// return the distance in cm -float getDistance() { - // read the value from the sensor - int sensorValue = Robot.analogRead(sensorPin); - //Convert the sensor input to cm. - float distance_cm = sensorValue * 1.27; - return distance_cm; -} - -// make a happy or sad face -void setFace(boolean onOff) { - if (onOff) { - // if true show a happy face - Robot.background(0, 0, 255); - Robot.setCursor(44, 60); - Robot.stroke(0, 255, 0); - Robot.setTextSize(4); - Robot.print(":)"); - } else { - // if false show an upset face - Robot.background(255, 0, 0); - Robot.setCursor(44, 60); - Robot.stroke(0, 255, 0); - Robot.setTextSize(4); - Robot.print("X("); - } -} diff --git a/libraries/Robot_Control/examples/explore/R08_Remote_Control/R08_Remote_Control.ino b/libraries/Robot_Control/examples/explore/R08_Remote_Control/R08_Remote_Control.ino deleted file mode 100644 index 15f743c89fb..00000000000 --- a/libraries/Robot_Control/examples/explore/R08_Remote_Control/R08_Remote_Control.ino +++ /dev/null @@ -1,93 +0,0 @@ -/* 08 Remote Control - - If you connect a IR receiver to the robot, - you can control it like a RC car. - Using the remote control comes with sensor - pack, You can make the robot move around - without even touching it! - - Circuit: - * Arduino Robot - * Connect the IRreceiver to D2 - * Remote control from Robot sensor pack - - based on the IRremote library - by Ken Shirriff - http://arcfn.com - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -// include the necessary libraries -#include -#include -#include -#include -#include - -// Define a few commands from your remote control -#define IR_CODE_FORWARD 284154405 -#define IR_CODE_BACKWARDS 284113605 -#define IR_CODE_TURN_LEFT 284129925 -#define IR_CODE_TURN_RIGHT 284127885 -#define IR_CODE_CONTINUE -1 - -boolean isActing = false; //If the robot is executing command from remote -long timer; -const long TIME_OUT = 150; - -void setup() { - // initialize the Robot, SD card, display, and speaker - Serial.begin(9600); - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - - // print some text to the screen - beginIRremote(); // Start the receiver -} - -void loop() { - // if there is an IR command, process it - if (IRrecived()) { - processResult(); - resumeIRremote(); // resume receiver - } - - //If the robot does not receive any command, stop it - if (isActing && (millis() - timer >= TIME_OUT)) { - Robot.motorsStop(); - isActing = false; - } -} -void processResult() { - unsigned long res = getIRresult(); - switch (res) { - case IR_CODE_FORWARD: - changeAction(1, 1); //Move the robot forward - break; - case IR_CODE_BACKWARDS: - changeAction(-1, -1); //Move the robot backwards - break; - case IR_CODE_TURN_LEFT: - changeAction(-0.5, 0.5); //Turn the robot left - break; - case IR_CODE_TURN_RIGHT: - changeAction(0.5, -0.5); //Turn the robot Right - break; - case IR_CODE_CONTINUE: - timer = millis(); //Continue the last action, reset timer - break; - } -} -void changeAction(float directionLeft, float directionRight) { - Robot.motorsWrite(255 * directionLeft, 255 * directionRight); - timer = millis(); - isActing = true; -} - diff --git a/libraries/Robot_Control/examples/explore/R09_Picture_Browser/R09_Picture_Browser.ino b/libraries/Robot_Control/examples/explore/R09_Picture_Browser/R09_Picture_Browser.ino deleted file mode 100644 index 02939e1f2e8..00000000000 --- a/libraries/Robot_Control/examples/explore/R09_Picture_Browser/R09_Picture_Browser.ino +++ /dev/null @@ -1,171 +0,0 @@ -/* Picture Browser - - You can make your own gallery/picture show with the - Robot. Put some pictures on the SD card, start the - sketch, they will diplay on the screen. - - Use the left/right buttons to navigate through the - previous and next images. - - Press up or down to enter a mode where you change - the pictures by rotating the robot. - - You can add your own pictures onto the SD card, and - view them in the Robot's gallery! - - Pictures must be uncompressed BMP, 24-bit color depth, - 160 pixels wide, and 128 pixels tall. - - They should be named as "picN.bmp". Replace 'N' with a - number between 0 and 9. - - The current code only supports 10 pictures. How would you - improve it to handle more? - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include // include the robot library -#include -#include - -const int NUM_PICS = 4; //Total number of pictures in Gallery - -// name the modes -const int CONTROL_MODE_KEY = 0; -const int CONTROL_MODE_COMPASS = 1; - -char buffer[] = "pic1.bmp"; // current file name -int i = 1; // Current gallery sequence counter -int mode = 0; // Current mode - -// text to display on screen -char modeNames[][9] = { "keyboard", "tilt " }; - -void setup() { - // initialize the Robot, SD card, display, and speaker - Robot.beginSD(); - Robot.beginTFT(); - Robot.begin(); - - // draw "lg0.bmp" and "lg1.bmp" on the screen - Robot.displayLogos(); - - // draw init3.bmp from the SD card on the screen - Robot.drawBMP("init3.bmp", 0, 0); - - // display instructions - Robot.stroke(0, 0, 0); - Robot.text("The gallery\n\n has 2 modes, in\n keyboard mode, L/R\n key for switching\n pictures, U/D key\n for changing modes", 5, 5); - delay(6000); - Robot.clearScreen(); - Robot.drawBMP("pb.bmp", 0, 0); - Robot.text("In tilt mode,\n quickly tilt the\n robot to switch\n pictures", 5, 5); - delay(4000); -} - -void loop() { - buffer[3] = '0' + i; // change filename of the img to be displayed - Robot.drawBMP(buffer, 0, 0); // draw the file on the screen - // change control modes - switch (mode) { - case CONTROL_MODE_COMPASS: - compassControl(3); - break; - case CONTROL_MODE_KEY: - keyboardControl(); - break; - } - delay(200); -} - -void keyboardControl() { - //Use buttons to control the gallery - while (true) { - int keyPressed = Robot.keyboardRead(); // read the button values - switch (keyPressed) { - case BUTTON_LEFT: // display previous picture - if (--i < 1) { - i = NUM_PICS; - } - return; - case BUTTON_MIDDLE: // do nothing - case BUTTON_RIGHT: // display next picture - if (++i > NUM_PICS) { - i = 1; - } - return; - case BUTTON_UP: // change mode - changeMode(-1); - return; - case BUTTON_DOWN: // change mode - changeMode(1); - return; - } - } -} - -// if controlling by the compass -void compassControl(int change) { - // Rotate the robot to change the pictures - while (true) { - // read the value of the compass - int oldV = Robot.compassRead(); - - //get the change of angle - int diff = Robot.compassRead() - oldV; - if (diff > 180) { - diff -= 360; - } else if (diff < -180) { - diff += 360; - } - - if (abs(diff) > change) { - if (++i > NUM_PICS) { - i = 1; - } - return; - } - - // chage modes, if buttons are pressed - int keyPressed = Robot.keyboardRead(); - switch (keyPressed) { - case BUTTON_UP: - changeMode(-1); - return; - case BUTTON_DOWN: - changeMode(1); - return; - } - delay(10); - } -} - -// Change the control mode and display it on the LCD -void changeMode(int changeDir) { - // alternate modes - mode += changeDir; - if (mode < 0) { - mode = 1; - } else if (mode > 1) { - mode = 0; - } - - // display the mode on screen - Robot.fill(255, 255, 255); - Robot.stroke(255, 255, 255); - Robot.rect(0, 0, 128, 12); - Robot.stroke(0, 0, 0); - Robot.text("Control:", 2, 2); - Robot.text(modeNames[mode], 52, 2); - delay(1000); -} - diff --git a/libraries/Robot_Control/examples/explore/R10_Rescue/R10_Rescue.ino b/libraries/Robot_Control/examples/explore/R10_Rescue/R10_Rescue.ino deleted file mode 100644 index 8024dda0df9..00000000000 --- a/libraries/Robot_Control/examples/explore/R10_Rescue/R10_Rescue.ino +++ /dev/null @@ -1,121 +0,0 @@ -/* Robot Rescue - - In this example, the robot enters the line following mode and - plays some music until it reaches its target. Once it finds the - target, it pushes it out of the track. It then returns to the - track and looks for a second target. - - You can make the robot push as many objects as you want to, just - add more to calls to the rescue function or even move that code - into the loop. - - Circuit: - * Arduino Robot - * some objects for the robot to push - * a line-following circuit - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include // include the robot library -#include -#include - -void setup() { - // initialize the Robot, SD card, display, and speaker - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - Robot.beginSpeaker(); - - // draw "lg0.bmp" and "lg1.bmp" on the screen - Robot.displayLogos(); - - // display the line following instructional image from the SD card - Robot.drawBMP("lf.bmp", 0, 0); - - // play the chase music file - Robot.playFile("chase.sqm"); - - // add the instructions - Robot.text("Rescue\n\n place the robot on\n the rescue track\n pushing the\n obstacles away", 5, 5); - Robot.text("Press the middle\n button to start...", 5, 61); - Robot.waitContinue(); - - // start - Robot.fill(255, 255, 255); - Robot.stroke(255, 255, 255); - Robot.rect(0, 0, 128, 80); // erase the previous text - Robot.stroke(0, 0, 0); - Robot.text("Start", 5, 5); - - // use this to calibrate the line following algorithm - // uncomment one or the other to see the different behaviors of the robot - // Robot.lineFollowConfig(14, 9, 50, 10); - Robot.lineFollowConfig(11, 7, 60, 5); - - // run the rescue sequence - rescueSequence(); - // find the track again - goToNext(); - // run the rescue sequence a second time - rescueSequence(); - - // here you could go on ... - - -} - -void loop() { - //nothing here, the program only runs once. -} - -// run the sequence -void rescueSequence() { - //set the motor board into line-follow mode - Robot.setMode(MODE_LINE_FOLLOW); - - while (!Robot.isActionDone()) { // wait until it is no longer following the line - } - delay(1000); - - // do the rescue operation - doRescue(); - delay(1000); -} - -void doRescue() { - // Reached the endline, engage the target - Robot.motorsWrite(200, 200); - delay(250); - Robot.motorsStop(); - delay(1000); - - // Turn the robot - Robot.turn(90); - Robot.motorsStop(); - delay(1000); - - // Move forward - Robot.motorsWrite(200, 200); - delay(500); - Robot.motorsStop(); - delay(1000); - - // move backwards, leave the target - Robot.motorsWrite(-200, -200); - delay(500); - Robot.motorsStop(); -} - -void goToNext() { - // Turn the robot - Robot.turn(-90); - Robot.motorsStop(); - delay(1000); -} diff --git a/libraries/Robot_Control/examples/explore/R11_Hello_User/R11_Hello_User.ino b/libraries/Robot_Control/examples/explore/R11_Hello_User/R11_Hello_User.ino deleted file mode 100644 index dcfb1ada7b3..00000000000 --- a/libraries/Robot_Control/examples/explore/R11_Hello_User/R11_Hello_User.ino +++ /dev/null @@ -1,180 +0,0 @@ -/* Hello User - - Hello User! This sketch is the first thing you see - when starting this robot. It gives you a warm welcome, - showing you some of the really amazing abilities of - the robot, and make itself really personal to you. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include // include the robot library -#include -#include - -// include the utility function for ths sketch -// see the details below -#include - -char buffer[20];//for storing user name - -void setup() { - //necessary initialization sequence - Robot.begin(); - Robot.beginTFT(); - Robot.beginSD(); - - // show the logos from the SD card - Robot.displayLogos(); - - // clear the screen - Robot.clearScreen(); - - // From now on, display different slides of - // text/pictures in sequence. The so-called - // scripts are strings of text stored in the - // robot's memory - - // these functions are explained below - - //Script 6 - textManager.writeScript(5, 4, 0); - textManager.writeScript(9, 10, 0); - Robot.waitContinue(); - delay(500); - Robot.clearScreen(); - - //Script 7 - textManager.writeScript(6, 4, 0); - textManager.writeScript(9, 10, 0); - Robot.waitContinue(); - delay(500); - Robot.clearScreen(); - - //Script 8 - // this function enables sound and images at once - textManager.showPicture("init2.bmp", 0, 0); - - textManager.writeScript(7, 2, 0); - textManager.writeScript(9, 7, 0); - Robot.waitContinue(); - delay(500); - Robot.clearScreen(); - - //Script 9 - textManager.showPicture("init3.bmp", 0, 0); - textManager.writeScript(8, 2, 0); - textManager.writeScript(9, 7, 0); - Robot.waitContinue(); - delay(500); - Robot.clearScreen(); - - //Script 11 - textManager.writeScript(10, 4, 0); - textManager.writeScript(9, 10, 0); - Robot.waitContinue(); - delay(500); - Robot.clearScreen(); - - //Input screen - textManager.writeScript(0, 1, 1); - textManager.input(3, 1, USERNAME); - - textManager.writeScript(1, 5, 1); - textManager.input(7, 1, ROBOTNAME); - - delay(1000); - Robot.clearScreen(); - - //last screen - textManager.showPicture("init4.bmp", 0, 0); - textManager.writeText(1, 2, "Hello"); - Robot.userNameRead(buffer); - textManager.writeText(3, 2, buffer); - - textManager.writeScript(4, 10, 0); - - Robot.waitContinue(BUTTON_LEFT); - Robot.waitContinue(BUTTON_RIGHT); - textManager.showPicture("kt1.bmp", 0, 0); -} - -void loop() { - // do nothing here -} - - -/** -textManager mostly contains helper functions for -R06_Wheel_Calibration and R01_Hello_User. - -The ones used in this example: - textManager.setMargin(margin_left, margin_top): - Configure the left and top margin for text - display. The margins will be used for - textManager.writeText(). - Parameters: - margin_left, margin_top: the margin values - from the top and left side of the screen. - Returns: - none - - textManager.writeScript(script_number,line,column): - Display a script of Hello User example. - Parameters: - script_number: an int value representing the - script to be displayed. - line, column: in which line,column is the script - displayed. Same as writeText(). - Returns: - none - - textManager.input(line,column,codename): - Print an input indicator(">") in the line and column, - dispaly and receive input from a virtual keyboard, - and save the value into EEPROM represented by codename - Parameters: - line,column: int values represents where the input - starts. Same as wirteText(). - codename: either USERNAME,ROBOTNAME,CITYNAME or - COUNTRYNAME. You can call Robot.userNameRead(), - robotNameRead(),cityNameRead() or countryNameRead() - to access the values later. - Returns: - none; - - textManager.writeText(line,column,text): - Display text on the specific line and column. - It's different from Robot.text() as the later - uses pixels for positioning the text. - Parameters: - line:in which line is the text displayed. Each line - is 10px high. - column:in which column is the text displayed. Each - column is 8px wide. - text:a char array(string) of the text to be displayed. - Returns: - none - - textManager.showPicture(filename, x, y): - It has the same functionality as Robot.drawPicture(), - while fixing the conflict between drawPicture() and - sound playing. Using Robot.drawPicture(), it'll have - glitches when playing sound at the same time. Using - showPicture(), it'll stop sound when displaying - picture, so preventing the problem. - Parameters: - filename:string, name of the bmp file in sd - x,y: int values, position of the picture - Returns: - none - -*/ diff --git a/libraries/Robot_Control/examples/learn/AllIOPorts/AllIOPorts.ino b/libraries/Robot_Control/examples/learn/AllIOPorts/AllIOPorts.ino deleted file mode 100644 index d1e333b0d26..00000000000 --- a/libraries/Robot_Control/examples/learn/AllIOPorts/AllIOPorts.ino +++ /dev/null @@ -1,151 +0,0 @@ -/* - All IO Ports - - This example goes through all the IO ports on your robot and - reads/writes from/to them. Uncomment the different lines inside - the loop to test the different possibilities. - - The M inputs on the Control Board are multiplexed and therefore - it is not recommended to use them as outputs. The D pins on the - Control Board as well as the D pins on the Motor Board go directly - to the microcontroller and therefore can be used both as inputs - and outputs. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -// use arrays to store the names of the pins to be read -uint8_t arr[] = { M0, M1, M2, M3, M4, M5, M6, M7 }; -uint8_t arr2[] = { D0, D1, D2, D3, D4, D5 }; -uint8_t arr3[] = { D7, D8, D9, D10 }; - -void setup() { - // initialize the robot - Robot.begin(); - - // open the serial port to send the information of what you are reading - Serial.begin(9600); -} - -void loop() { - // read all the D inputs at the Motor Board as analog - //analogReadB_Ds(); - - // read all the D inputs at the Motor Board as digital - //digitalReadB_Ds(); - - // read all the M inputs at the Control Board as analog - //analogReadMs(); - - // read all the M inputs at the Control Board as digital - //digitalReadMs(); - - // read all the D inputs at the Control Board as analog - analogReadT_Ds(); - - // read all the D inputs at the Control Board as digital - //digitalReadT_Ds(); - - // write all the D outputs at the Motor Board as digital - //digitalWriteB_Ds(); - - // write all the D outputs at the Control Board as digital - //digitalWriteT_Ds(); - delay(40); -} - -// read all M inputs on the Control Board as analog inputs -void analogReadMs() { - for (int i = 0; i < 8; i++) { - Serial.print(Robot.analogRead(arr[i])); - Serial.print(","); - } - Serial.println(""); -} - -// read all M inputs on the Control Board as digital inputs -void digitalReadMs() { - for (int i = 0; i < 8; i++) { - Serial.print(Robot.digitalRead(arr[i])); - Serial.print(","); - } - Serial.println(""); -} - -// read all D inputs on the Control Board as analog inputs -void analogReadT_Ds() { - for (int i = 0; i < 6; i++) { - Serial.print(Robot.analogRead(arr2[i])); - Serial.print(","); - } - Serial.println(""); -} - -// read all D inputs on the Control Board as digital inputs -void digitalReadT_Ds() { - for (int i = 0; i < 6; i++) { - Serial.print(Robot.digitalRead(arr2[i])); - Serial.print(","); - } - Serial.println(""); -} - -// write all D outputs on the Control Board as digital outputs -void digitalWriteT_Ds() { - // turn all the pins on - for (int i = 0; i < 6; i++) { - Robot.digitalWrite(arr2[i], HIGH); - } - delay(500); - - // turn all the pins off - for (int i = 0; i < 6; i++) { - Robot.digitalWrite(arr2[i], LOW); - } - delay(500); -} - -// write all D outputs on the Motor Board as digital outputs -void digitalWriteB_Ds() { - // turn all the pins on - for (int i = 0; i < 4; i++) { - Robot.digitalWrite(arr3[i], HIGH); - } - delay(500); - - // turn all the pins off - for (int i = 0; i < 4; i++) { - Robot.digitalWrite(arr3[i], LOW); - } - delay(500); -} - -// read all D inputs on the Motor Board as analog inputs -void analogReadB_Ds() { - for (int i = 0; i < 4; i++) { - Serial.print(Robot.analogRead(arr3[i])); - Serial.print(","); - } - Serial.println(""); -} - -// read all D inputs on the Motor Board as digital inputs -void digitalReadB_Ds() { - for (int i = 0; i < 4; i++) { - Serial.print(Robot.digitalRead(arr3[i])); - Serial.print(","); - } - Serial.println(""); -} diff --git a/libraries/Robot_Control/examples/learn/Beep/Beep.ino b/libraries/Robot_Control/examples/learn/Beep/Beep.ino deleted file mode 100644 index 0bec835e3ff..00000000000 --- a/libraries/Robot_Control/examples/learn/Beep/Beep.ino +++ /dev/null @@ -1,41 +0,0 @@ -/* - Beep - - Test different pre-configured beeps on - the robot's speaker. - - Possible beeps are: - - BEEP_SIMPLE - - BEEP_DOUBLE - - BEEP_LONG - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the sound speaker - Robot.beginSpeaker(); -} -void loop() { - Robot.beep(BEEP_SIMPLE); - delay(1000); - Robot.beep(BEEP_DOUBLE); - delay(1000); - Robot.beep(BEEP_LONG); - delay(1000); -} diff --git a/libraries/Robot_Control/examples/learn/CleanEEPROM/CleanEEPROM.ino b/libraries/Robot_Control/examples/learn/CleanEEPROM/CleanEEPROM.ino deleted file mode 100644 index 11632b04de0..00000000000 --- a/libraries/Robot_Control/examples/learn/CleanEEPROM/CleanEEPROM.ino +++ /dev/null @@ -1,43 +0,0 @@ -/* - Clean EEPROM - - This example erases the user information stored on the - external EEPROM memory chip on your robot. - - BEWARE, this will erase the following information: - - your name - - your robots name given by you - - your city and country if you configured them via software - - EEPROMs shouldn't be rewritten too often, therefore the - code runs only during setup and not inside loop. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // write empty strings for the different fields - Robot.userNameWrite(""); - Robot.robotNameWrite(""); - Robot.cityNameWrite(""); - Robot.countryNameWrite(""); -} - -void loop() { - // do nothing -} diff --git a/libraries/Robot_Control/examples/learn/Compass/Compass.ino b/libraries/Robot_Control/examples/learn/Compass/Compass.ino deleted file mode 100644 index 62ad6776700..00000000000 --- a/libraries/Robot_Control/examples/learn/Compass/Compass.ino +++ /dev/null @@ -1,43 +0,0 @@ -/* - Compass - - Try the compass both on the robot's TFT - and through the serial port. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the robot's screen - Robot.beginTFT(); - - // initialize the serial port - Serial.begin(9600); -} - -void loop() { - // read the compass - int compass = Robot.compassRead(); - - // print out the sensor's value - Serial.println(compass); - - // show the value on the robot's screen - Robot.drawCompass(compass); -} - diff --git a/libraries/Robot_Control/examples/learn/IRArray/IRArray.ino b/libraries/Robot_Control/examples/learn/IRArray/IRArray.ino deleted file mode 100644 index ceea81b0196..00000000000 --- a/libraries/Robot_Control/examples/learn/IRArray/IRArray.ino +++ /dev/null @@ -1,46 +0,0 @@ -/* - IR array - - Read the analog value of the IR sensors at the - bottom of the robot. The also-called line following - sensors are a series of pairs of IR sender/receiver - used to detect how dark it is underneath the robot. - - The information coming from the sensor array is stored - into the Robot.IRarray[] and updated using the Robot.updateIR() - method. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the serial port - Serial.begin(9600); -} - -void loop() { - // store the sensor information into the array - Robot.updateIR(); - - // iterate the array and print the data to the Serial port - for (int i = 0; i < 5; i++) { - Serial.print(Robot.IRarray[i]); - Serial.print(" "); - } - Serial.println(""); -} diff --git a/libraries/Robot_Control/examples/learn/LCDDebugPrint/LCDDebugPrint.ino b/libraries/Robot_Control/examples/learn/LCDDebugPrint/LCDDebugPrint.ino deleted file mode 100644 index 7954f894dc9..00000000000 --- a/libraries/Robot_Control/examples/learn/LCDDebugPrint/LCDDebugPrint.ino +++ /dev/null @@ -1,39 +0,0 @@ -/* - LCD Debug Print - - Use the Robot's library function debugPrint() to - quickly send a sensor reading to the robot's creen. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -int value; - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the screen - Robot.beginTFT(); -} -void loop() { - // read a value - value = analogRead(A4); - - // send the value to the screen - Robot.debugPrint(value); - - delay(40); -} diff --git a/libraries/Robot_Control/examples/learn/LCDPrint/LCDPrint.ino b/libraries/Robot_Control/examples/learn/LCDPrint/LCDPrint.ino deleted file mode 100644 index 1909ba3da97..00000000000 --- a/libraries/Robot_Control/examples/learn/LCDPrint/LCDPrint.ino +++ /dev/null @@ -1,46 +0,0 @@ -/* - LCD Print - - Print the reading from a sensor to the screen. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -int value; - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the robot's screen - Robot.beginTFT(); -} - -void loop() { - // read a analog port - value = Robot.analogRead(TK4); - - // write the sensor value on the screen - Robot.stroke(0, 255, 0); - Robot.textSize(1); - Robot.text(value, 0, 0); - - delay(500); - - // erase the previous text on the screen - Robot.stroke(255, 255, 255); - Robot.textSize(1); - Robot.text(value, 0, 0); -} diff --git a/libraries/Robot_Control/examples/learn/LCDWriteText/LCDWriteText.ino b/libraries/Robot_Control/examples/learn/LCDWriteText/LCDWriteText.ino deleted file mode 100644 index 739bb322fac..00000000000 --- a/libraries/Robot_Control/examples/learn/LCDWriteText/LCDWriteText.ino +++ /dev/null @@ -1,43 +0,0 @@ -/* - LCD Write Text - - Use the Robot's library function text() to - print out text to the robot's screen. Take - into account that you need to erase the - information before continuing writing. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the screen - Robot.beginTFT(); -} -void loop() { - Robot.stroke(0, 0, 0); // choose the color black - Robot.text("Hello World", 0, 0); // print the text - delay(2000); - Robot.stroke(255, 255, 255); // choose the color white - Robot.text("Hello World", 0, 0); // writing text in the same color as the BG erases the text! - - Robot.stroke(0, 0, 0); // choose the color black - Robot.text("I am a robot", 0, 0); // print the text - delay(3000); - Robot.stroke(255, 255, 255); // choose the color black - Robot.text("I am a robot", 0, 0); // print the text -} diff --git a/libraries/Robot_Control/examples/learn/LineFollowWithPause/LineFollowWithPause.ino b/libraries/Robot_Control/examples/learn/LineFollowWithPause/LineFollowWithPause.ino deleted file mode 100644 index 941dbe2e18a..00000000000 --- a/libraries/Robot_Control/examples/learn/LineFollowWithPause/LineFollowWithPause.ino +++ /dev/null @@ -1,51 +0,0 @@ -/* - Line Following with Pause - - As the robot has two processors, one to command the motors and one to - take care of the screen and user input, it is possible to write - programs that put one part of the robot to do something and get the - other half to control it. - - This example shows how the Control Board assigns the Motor one to - follow a line, but asks it to stop every 3 seconds. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the screen - Robot.beginTFT(); - - // get some time to place the robot on the ground - delay(3000); - - // set the robot in line following mode - Robot.setMode(MODE_LINE_FOLLOW); -} - -void loop() { - // tell the robot to take a break and stop - Robot.pauseMode(true); - Robot.debugPrint('p'); - delay(3000); - - // tell the robot to move on - Robot.pauseMode(false); - Robot.debugPrint('>'); - delay(3000); -} diff --git a/libraries/Robot_Control/examples/learn/Melody/Melody.ino b/libraries/Robot_Control/examples/learn/Melody/Melody.ino deleted file mode 100644 index 1f08d0ab1a5..00000000000 --- a/libraries/Robot_Control/examples/learn/Melody/Melody.ino +++ /dev/null @@ -1,64 +0,0 @@ -/* - Melody - - Plays a melody stored in a string. - - The notes and durations are encoded as follows: - - NOTES: - c play "C" - C play "#C" - d play "D" - D play "#D" - e play "E" - f play "F" - F play "#F" - g play "G" - G play "#G" - a play "A" - A play "#A" - b play "B" - - silence - - DURATIONS: - 1 Set as full note - 2 Set as half note - 4 Set as quarter note - 8 Set as eigth note - - SPECIAL NOTATION: - . Make the previous note 3/4 the length - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - - This code uses the Squawk sound library designed by STG. For - more information about it check: http://github.com/stg/squawk - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the sound library - Robot.beginSpeaker(); -} - -void loop() { - // array containing the melody - char aTinyMelody[] = "8eF-FFga4b.a.g.F.8beee-d2e.1-"; - - // play the melody - Robot.playMelody(aTinyMelody); -} diff --git a/libraries/Robot_Control/examples/learn/MotorTest/MotorTest.ino b/libraries/Robot_Control/examples/learn/MotorTest/MotorTest.ino deleted file mode 100644 index 98cd13001b9..00000000000 --- a/libraries/Robot_Control/examples/learn/MotorTest/MotorTest.ino +++ /dev/null @@ -1,43 +0,0 @@ -/* - Motor Test - - Just see if the robot can move and turn. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); -} - -void loop() { - Robot.motorsWrite(255, 255); // move forward - delay(2000); - Robot.motorsStop(); // fast stop - delay(1000); - Robot.motorsWrite(-255, -255); // backward - delay(1000); - Robot.motorsWrite(0, 0); // slow stop - delay(1000); - Robot.motorsWrite(-255, 255); // turn left - delay(2000); - Robot.motorsStop(); // fast stop - delay(1000); - Robot.motorsWrite(255, -255); // turn right - delay(2000); - Robot.motorsStop(); // fast stop - delay(1000); -} diff --git a/libraries/Robot_Control/examples/learn/SpeedByPotentiometer/SpeedByPotentiometer.ino b/libraries/Robot_Control/examples/learn/SpeedByPotentiometer/SpeedByPotentiometer.ino deleted file mode 100644 index 2e569b6b3a8..00000000000 --- a/libraries/Robot_Control/examples/learn/SpeedByPotentiometer/SpeedByPotentiometer.ino +++ /dev/null @@ -1,41 +0,0 @@ -/* - Speed by Potentiometer - - Control the robot's speed using the on-board - potentiometer. The speed will be printed on - the TFT screen. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); - - // initialize the screen - Robot.beginTFT(); -} - -void loop() { - // read the value of the potentiometer - int val = map(Robot.knobRead(), 0, 1023, -255, 255); - - // print the value to the TFT screen - Robot.debugPrint(val); - - // set the same speed on both of the robot's wheels - Robot.motorsWrite(val, val); - delay(10); -} diff --git a/libraries/Robot_Control/examples/learn/TurnTest/TurnTest.ino b/libraries/Robot_Control/examples/learn/TurnTest/TurnTest.ino deleted file mode 100644 index 702d733c6ca..00000000000 --- a/libraries/Robot_Control/examples/learn/TurnTest/TurnTest.ino +++ /dev/null @@ -1,34 +0,0 @@ -/* - Turn Test - - Check if the robot turns a certain amount of degrees. - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the robot - Robot.begin(); -} - -void loop() { - Robot.turn(50); //turn 50 degrees to the right - Robot.motorsStop(); - delay(1000); - - Robot.turn(-100); //turn 100 degrees to the left - Robot.motorsStop(); - delay(1000); -} diff --git a/libraries/Robot_Control/examples/learn/keyboardTest/keyboardTest.ino b/libraries/Robot_Control/examples/learn/keyboardTest/keyboardTest.ino deleted file mode 100644 index aa4eec54ffc..00000000000 --- a/libraries/Robot_Control/examples/learn/keyboardTest/keyboardTest.ino +++ /dev/null @@ -1,40 +0,0 @@ -/* - Keyboard Test - - Check how the robot's keyboard works. This example - sends the data about the key pressed through the - serial port. - - All the buttons on the Control Board are tied up to a - single analog input pin, in this way it is possible to multiplex a - whole series of buttons on one single pin. - - It is possible to recalibrate the thresholds of the buttons using - the Robot.keyboardCalibrate() function, that takes a 5 ints long - array as parameter - - Circuit: - * Arduino Robot - - created 1 May 2013 - by X. Yang - modified 12 May 2013 - by D. Cuartielles - - This example is in the public domain - */ - -#include -#include -#include - -void setup() { - // initialize the serial port - Serial.begin(9600); -} - -void loop() { - // print out the keyboard readings - Serial.println(Robot.keyboardRead()); - delay(100); -} diff --git a/libraries/Robot_Control/library.properties b/libraries/Robot_Control/library.properties deleted file mode 100644 index 8988767dd8e..00000000000 --- a/libraries/Robot_Control/library.properties +++ /dev/null @@ -1,9 +0,0 @@ -name=Robot Control -version=1.0.2 -author=Arduino -maintainer=Arduino -sentence=Enables easy access to the controls of the Arduino Robot Control board. For Arduino Robot only. -paragraph=The Arduino robot is made by two independent boards. The Control Board is the top board of the Arduino Robot, with this library you can easily write sketches to control the robot. -category=Device Control -url=http://www.arduino.cc/en/Reference/RobotLibrary -architectures=avr diff --git a/libraries/Robot_Control/src/ArduinoRobot.cpp b/libraries/Robot_Control/src/ArduinoRobot.cpp deleted file mode 100644 index 3adac73ba8a..00000000000 --- a/libraries/Robot_Control/src/ArduinoRobot.cpp +++ /dev/null @@ -1,40 +0,0 @@ -#include "ArduinoRobot.h" -#include "Multiplexer.h" -#include "Wire.h" -#include "EasyTransfer2.h" - -//RobotControl::RobotControl(){} - -RobotControl::RobotControl():Arduino_LCD(LCD_CS,DC_LCD,RST_LCD){ - -} - -void RobotControl::begin(){ - Wire.begin(); - //Compass - //nothing here - - //TK sensors - uint8_t MuxPins[]={MUXA,MUXB,MUXC,MUXD}; - Multiplexer::begin(MuxPins,MUX_IN,4); - - //piezo - pinMode(BUZZ,OUTPUT); - - //communication - Serial1.begin(9600); - messageOut.begin(&Serial1); - messageIn.begin(&Serial1); - - //TFT initialization - //Arduino_LCD::initR(INITR_GREENTAB); -} - -void RobotControl::setMode(uint8_t mode){ - messageOut.writeByte(COMMAND_SWITCH_MODE); - messageOut.writeByte(mode); - messageOut.sendData(); -} - - -RobotControl Robot=RobotControl(); \ No newline at end of file diff --git a/libraries/Robot_Control/src/ArduinoRobot.h b/libraries/Robot_Control/src/ArduinoRobot.h deleted file mode 100644 index 2b11a9484c5..00000000000 --- a/libraries/Robot_Control/src/ArduinoRobot.h +++ /dev/null @@ -1,374 +0,0 @@ -#ifndef ArduinoRobot_h -#define ArduinoRobot_h - -#include "Arduino_LCD.h" // Hardware-specific library -//#include "FormattedText.h" -#include "SquawkSD.h" -#include "Multiplexer.h" -#include "EasyTransfer2.h" -#include "EEPROM_I2C.h" -#include "Compass.h" -#include "Fat16.h" - -#if ARDUINO >= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - - -#define BUTTON_NONE -1 -#define BUTTON_LEFT 0 -#define BUTTON_DOWN 1 -#define BUTTON_UP 2 -#define BUTTON_RIGHT 3 -#define BUTTON_MIDDLE 4 -#define NUMBER_BUTTONS 5 - -//beep length -#define BEEP_SIMPLE 0 -#define BEEP_DOUBLE 1 -#define BEEP_LONG 2 - -// image locations on the EEPROM - #define HOME_BMP 0 -#define BATTERY_BMP 2048 -#define COMPASS_BMP 4096 -#define CONTROL_BMP 6144 -#define GEARS_BMP 8192 -#define LIGHT_BMP 10240 -#define OSCILLO_BMP 12288 -#define VOLT_BMP 14336 -#define INICIO_BMP 16384 // this is a full screen splash - -//Command code -#define COMMAND_SWITCH_MODE 0 -#define COMMAND_RUN 10 -#define COMMAND_MOTORS_STOP 11 -#define COMMAND_ANALOG_WRITE 20 -#define COMMAND_DIGITAL_WRITE 30 -#define COMMAND_ANALOG_READ 40 -#define COMMAND_ANALOG_READ_RE 41 -#define COMMAND_DIGITAL_READ 50 -#define COMMAND_DIGITAL_READ_RE 51 -#define COMMAND_READ_IR 60 -#define COMMAND_READ_IR_RE 61 -#define COMMAND_ACTION_DONE 70 -#define COMMAND_READ_TRIM 80 -#define COMMAND_READ_TRIM_RE 81 -#define COMMAND_PAUSE_MODE 90 -#define COMMAND_LINE_FOLLOW_CONFIG 100 - -//component codename -#define CN_LEFT_MOTOR 0 -#define CN_RIGHT_MOTOR 1 -#define CN_IR 2 - -//motor board modes -#define MODE_SIMPLE 0 -#define MODE_LINE_FOLLOW 1 -#define MODE_ADJUST_MOTOR 2 -#define MODE_IR_CONTROL 3 - -//port types, for R/W -#define TYPE_TOP_TK 0 -#define TYPE_TOP_TKD 1 -#define TYPE_BOTTOM_TK 2 - -//top TKs -#define TK0 100 -#define TK1 101 -#define TK2 102 -#define TK3 103 -#define TK4 104 -#define TK5 105 -#define TK6 106 -#define TK7 107 - -#define M0 TK0 -#define M1 TK1 -#define M2 TK2 -#define M3 TK3 -#define M4 TK4 -#define M5 TK5 -#define M6 TK6 -#define M7 TK7 - -//bottom TKs, just for communication purpose -#define B_TK1 201 -#define B_TK2 202 -#define B_TK3 203 -#define B_TK4 204 - -#define D10 B_TK1 -#define D9 B_TK2 -#define D8 B_TK4 -#define D7 B_TK3 - -//bottom IRs, for communication purpose -#define B_IR0 210 -#define B_IR1 211 -#define B_IR2 212 -#define B_IR3 213 -#define B_IR4 214 - -#ifndef LED1 -#define LED1 17 -#endif - -//320 - 337 username, -#define ADDRESS_USERNAME 320 -//338 - 355 robotname, -#define ADDRESS_ROBOTNAME 338 -//356 - 373 cityname, -#define ADDRESS_CITYNAME 356 - //374- 391 countryname, -#define ADDRESS_COUNTRYNAME 374 -//508-511 robot info -#define ADDRESS_ROBOTINFO 508 - -#define BLACK ILI9163C_BLACK -#define BLUE ILI9163C_BLUE -#define RED ILI9163C_RED -#define GREEN ILI9163C_GREEN -#define CYAN ILI9163C_CYAN -#define MAGENTA ILI9163C_MAGENTA -#define YELLOW ILI9163C_YELLOW -#define WHITE ILI9163C_WHITE - -//A data structure for storing the current state of motor board -struct MOTOR_BOARD_DATA{ - int _B_TK1; - int _B_TK2; - int _B_TK3; - int _B_TK4; - - /*int _B_IR0; - int _B_IR1; - int _B_IR2; - int _B_IR3; - int _B_IR4;*/ -}; - -/* -A message structure will be: -switch mode: - byte COMMAND_SWITCH_MODE, byte mode -run: - byte COMMAND_RUN, int speedL, int speedR -analogWrite: - byte COMMAND_ANALOG_WRITE, byte codename, byte value; -digitalWrite: - byte COMMAND_DIGITAL_WRITE, byte codename, byte value; -analogRead: - byte COMMAND_ANALOG_READ, byte codename; -analogRead return: - byte COMMAND_ANALOG_READ_RE, byte codename, int value; -digitalRead return: - byte COMMAND_DIGITAL_READ_RE, byte codename, byte value; -read IR: - byte COMMAND_READ_IR, int valueA, int valueB, int valueC, int valueD; - - -*/ -#define NUM_EEPROM_BMP 10 -struct EEPROM_BMP{ - char name[8]; - uint8_t width; - uint8_t height; - uint16_t address; -}; - -//if you call #undef USE_SQUAWK_SYNTH_SD at the beginning of your sketch, -//it's going to remove anything regarding sound playing - -class RobotControl:public Multiplexer, -public EEPROM_I2C, -public Compass, -public SquawkSynthSD, -//public FormattedText -public Arduino_LCD -{ - public: - RobotControl(); - void begin(); - void setMode(uint8_t mode); - - //Read & Write, TK0 - TK7, TKD0 - TKD1, bottom TK0 - TK4 - bool digitalRead(uint8_t port); - int analogRead(uint8_t port); - void digitalWrite(uint8_t port, bool value); - void analogWrite(uint8_t port, uint8_t value);//It's not available, as there's no pin can be used for analog write - - //IR sensors from the bottom board - //define an array as "int arr[4];", and supply the arry name here - uint16_t IRarray[5]; - void updateIR(); - - //on board Potentiometor - int knobRead(); - //Potentiometor of the motor board - int trimRead(); - - //on board piezo - void beginSpeaker(uint16_t frequency=44100); - void playMelody(char* script); - void playFile(char* filename); - void stopPlayFile(); - void beep(int beep_length=BEEP_SIMPLE); - void tempoWrite(int tempo); - void tuneWrite(float tune); - - //compass - uint16_t compassRead(); - void drawCompass(uint16_t value); - void drawBase(); - void drawDire(int16_t dire); - - //keyboard - void keyboardCalibrate(int *vals); - int8_t keyboardRead();//return the key that is being pressed?Has been pressed(with _processKeyboard)? - - //movement - void moveForward(int speed); - void moveBackward(int speed); - void turnLeft(int speed); - void turnRight(int speed); - void motorsStop(); - void motorsWritePct(int speedLeftPct, int speedRightPct); - - void motorsWrite(int speedLeft,int speedRight); - void pointTo(int degrees);//turn to an absolute angle from the compass - void turn(int degress);//turn certain degrees from the current heading - - //Line Following - void lineFollowConfig(uint8_t KP, uint8_t KD, uint8_t robotSpeed, uint8_t intergrationTime);//default 11 5 50 10 - - //TFT LCD - //use the same commands as Arduino_LCD - void beginTFT(uint16_t foreGround=BLACK, uint16_t background=WHITE); - /*void text(int value, uint8_t posX, uint8_t posY, bool EW); - void text(long value, uint8_t posX, uint8_t posY, bool EW); - void text(char* value, uint8_t posX, uint8_t posY, bool EW); - void text(char value, uint8_t posX, uint8_t posY, bool EW);*/ - void debugPrint(long value, uint8_t x=0, uint8_t y=0); - void clearScreen(); - - void drawBMP(char* filename, uint8_t x, uint8_t y);//detect if draw with EEPROM or SD, and draw it - void _drawBMP(uint32_t iconOffset, uint8_t x, uint8_t y, uint8_t width, uint8_t height);//draw from EEPROM - void _drawBMP(char* filename, uint8_t x, uint8_t y);//draw from SD - void beginBMPFromEEPROM(); - void endBMPFromEEPROM(); - - uint16_t foreGround;//foreground color - uint16_t backGround;//background color - - - //SD card - void beginSD(); - - //Information - void userNameRead(char* container); - void robotNameRead(char* container); - void cityNameRead(char* container); - void countryNameRead(char* container); - - void userNameWrite(char* text); - void robotNameWrite(char* text); - void cityNameWrite(char* text); - void countryNameWrite(char* text); - - //Others - bool isActionDone(); - void pauseMode(uint8_t onOff); - void displayLogos(); - void waitContinue(uint8_t key=BUTTON_MIDDLE); - - private: - //Read & Write - uint8_t _getTypeCode(uint8_t port);//different ports need different actions - uint8_t _portToTopMux(uint8_t port);//get the number for multiplexer within top TKs - uint8_t _topDPortToAPort(uint8_t port);//get the corrensponding analogIn pin for top TKDs - - bool _digitalReadTopMux(uint8_t port);//TK0 - TK7 - int _analogReadTopMux(uint8_t port); - - bool _digitalReadTopPin(uint8_t port); - int _analogReadTopPin(uint8_t port); - void _digitalWriteTopPin(uint8_t port, bool value); - - MOTOR_BOARD_DATA motorBoardData; - int* parseMBDPort(uint8_t port); - int get_motorBoardData(uint8_t port); - void set_motorBoardData(uint8_t port, int value); - - bool _requestDigitalRead(uint8_t port); - int _requestAnalogRead(uint8_t port); - void _requestDigitalWrite(uint8_t port, uint8_t value); - - //LCD - void _enableLCD(); - void _setWrite(uint8_t posX, uint8_t posY); - void _setErase(uint8_t posX, uint8_t posY); - - - //SD - SdCard card; - Fat16 file; - Fat16 melody; - void _enableSD(); - - //keyboard - void _processKeyboard(); //need to run in loop, detect if the key is actually pressed - int averageAnalogInput(int pinNum); - - //Ultrasonic ranger - //uint8_t pinTrigger_UR; - //uint8_t pinEcho_UR; - - //Melody - void playNote(byte period, word length, char modifier); - - //Communication - - EasyTransfer2 messageOut; - EasyTransfer2 messageIn; - - //TFT LCD - bool _isEEPROM_BMP_Allocated; - EEPROM_BMP * _eeprom_bmp; - void _drawBMP_EEPROM(uint16_t address, uint8_t width, uint8_t height); - void _drawBMP_SD(char* filename, uint8_t x, uint8_t y); - - -}; - -inline void RobotControl::userNameRead(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_USERNAME,(uint8_t*)container,18); -} -inline void RobotControl::robotNameRead(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_ROBOTNAME,(uint8_t*)container,18); -} -inline void RobotControl::cityNameRead(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_CITYNAME,(uint8_t*)container,18); -} -inline void RobotControl::countryNameRead(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_COUNTRYNAME,(uint8_t*)container,18); -} - -inline void RobotControl::userNameWrite(char* text){ - EEPROM_I2C::writePage(ADDRESS_USERNAME,(uint8_t*)text,18); -} -inline void RobotControl::robotNameWrite(char* text){ - EEPROM_I2C::writePage(ADDRESS_ROBOTNAME,(uint8_t*)text,18); -} -inline void RobotControl::cityNameWrite(char* text){ - EEPROM_I2C::writePage(ADDRESS_CITYNAME,(uint8_t*)text,18); -} -inline void RobotControl::countryNameWrite(char* text){ - EEPROM_I2C::writePage(ADDRESS_COUNTRYNAME,(uint8_t*)text,18); -} - -extern RobotControl Robot; - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/Arduino_LCD.cpp b/libraries/Robot_Control/src/Arduino_LCD.cpp deleted file mode 100644 index 3f6aeb8639b..00000000000 --- a/libraries/Robot_Control/src/Arduino_LCD.cpp +++ /dev/null @@ -1,707 +0,0 @@ -/*************************************************** - This is a library for the Adafruit 1.8" SPI display. - This library works with the Adafruit 1.8" TFT Breakout w/SD card - ----> http://www.adafruit.com/products/358 - as well as Adafruit raw 1.8" TFT display - ----> http://www.adafruit.com/products/618 - - Check out the links above for our tutorials and wiring diagrams - These displays use SPI to communicate, 4 or 5 pins are required to - interface (RST is optional) - Adafruit invests time and resources providing this open source code, - please support Adafruit and open-source hardware by purchasing - products from Adafruit! - - Written by Limor Fried/Ladyada for Adafruit Industries. - MIT license, all text above must be included in any redistribution - ****************************************************/ - -#include "Arduino_LCD.h" -//#include -#include -//#include "pins_arduino.h" -#include "wiring_private.h" -#include - - -// Constructor when using software SPI. All output pins are configurable. -Arduino_LCD::Arduino_LCD(uint8_t cs, uint8_t rs, uint8_t sid, uint8_t sclk, - uint8_t rst) : Adafruit_GFX(ILI9163C_TFTWIDTH, ILI9163C_TFTHEIGHT) -{ - _cs = cs; - _rs = rs; - _sid = sid; - _sclk = sclk; - _rst = rst; - hwSPI = false; -} - - -// Constructor when using hardware SPI. Faster, but must use SPI pins -// specific to each board type (e.g. 11,13 for Uno, 51,52 for Mega, etc.) -Arduino_LCD::Arduino_LCD(uint8_t cs, uint8_t rs, uint8_t rst) : - Adafruit_GFX(ILI9163C_TFTWIDTH, ILI9163C_TFTHEIGHT) { - _cs = cs; - _rs = rs; - _rst = rst; - hwSPI = true; - _sid = _sclk = 0; -} - - -inline void Arduino_LCD::spiwrite(uint8_t c) { - - //Serial.println(c, HEX); - -/* if (hwSPI) { - SPDR = c; - while(!(SPSR & _BV(SPIF))); - } else { - // Fast SPI bitbang swiped from LPD8806 library - for(uint8_t bit = 0x80; bit; bit >>= 1) { - if(c & bit) *dataport |= datapinmask; - else *dataport &= ~datapinmask; - *clkport |= clkpinmask; - *clkport &= ~clkpinmask; - } - } -*/ -SPI.transfer(c); -} - - -void Arduino_LCD::writecommand(uint8_t c) { -// *rsport &= ~rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, LOW); -digitalWrite(_cs, LOW); - - //Serial.print("C "); - spiwrite(c); -//SPI.transfer(c); -// *csport |= cspinmask; -digitalWrite(_cs, HIGH); -} - - -void Arduino_LCD::writedata(uint8_t c) { -// *rsport &= ~rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); -digitalWrite(_cs, LOW); - - //Serial.print("D "); - spiwrite(c); -//SPI.transfer(c); -// *csport |= cspinmask; -digitalWrite(_cs, HIGH); -} - - -// Rather than a bazillion writecommand() and writedata() calls, screen -// initialization commands and arguments are organized in these tables -// stored in PROGMEM. The table may look bulky, but that's mostly the -// formatting -- storage-wise this is hundreds of bytes more compact -// than the equivalent code. Companion function follows. -#define DELAY 0x80 -//PROGMEM static prog_uchar -/*uint8_t - Bcmd[] = { // Initialization commands for 7735B screens - 18, // 18 commands in list: - ILI9163C_SWRESET, DELAY, // 1: Software reset, no args, w/delay - 50, // 50 ms delay - ILI9163C_SLPOUT , DELAY, // 2: Out of sleep mode, no args, w/delay - 255, // 255 = 500 ms delay - ILI9163C_COLMOD , 1+DELAY, // 3: Set color mode, 1 arg + delay: // I THINK THERE WAS SOMETHING HERE BECAUSE THE COMMAND IS CALLED 3A on Adafruits - 0x05, // 16-bit color - 10, // 10 ms delay - ILI9163C_FRMCTR1, 3+DELAY, // 4: Frame rate control, 3 args + delay: - 0x00, // fastest refresh - 0x06, // 6 lines front porch - 0x03, // 3 lines back porch - 10, // 10 ms delay - ILI9163C_MADCTL , 1 , // 5: Memory access ctrl (directions), 1 arg: - 0x08, // Row addr/col addr, bottom to top refresh - ILI9163C_DISSET5, 2 , // 6: Display settings #5, 2 args, no delay: - 0x15, // 1 clk cycle nonoverlap, 2 cycle gate - // rise, 3 cycle osc equalize - 0x02, // Fix on VTL - ILI9163C_INVCTR , 1 , // 7: Display inversion control, 1 arg: - 0x0, // Line inversion - ILI9163C_PWCTR1 , 2+DELAY, // 8: Power control, 2 args + delay: - 0x02, // GVDD = 4.7V - 0x70, // 1.0uA - 10, // 10 ms delay - ILI9163C_PWCTR2 , 1 , // 9: Power control, 1 arg, no delay: - 0x05, // VGH = 14.7V, VGL = -7.35V - ILI9163C_PWCTR3 , 2 , // 10: Power control, 2 args, no delay: - 0x01, // Opamp current small - 0x02, // Boost frequency - ILI9163C_VMCTR1 , 2+DELAY, // 11: Power control, 2 args + delay: - 0x3C, // VCOMH = 4V - 0x38, // VCOML = -1.1V - 10, // 10 ms delay - ILI9163C_PWCTR6 , 2 , // 12: Power control, 2 args, no delay: - 0x11, 0x15, - ILI9163C_GMCTRP1,16 , // 13: Magical unicorn dust, 16 args, no delay: - 0x09, 0x16, 0x09, 0x20, // (seriously though, not sure what - 0x21, 0x1B, 0x13, 0x19, // these config values represent) - 0x17, 0x15, 0x1E, 0x2B, - 0x04, 0x05, 0x02, 0x0E, - ILI9163C_GMCTRN1,16+DELAY, // 14: Sparkles and rainbows, 16 args + delay: - 0x0B, 0x14, 0x08, 0x1E, // (ditto) - 0x22, 0x1D, 0x18, 0x1E, - 0x1B, 0x1A, 0x24, 0x2B, - 0x06, 0x06, 0x02, 0x0F, - 10, // 10 ms delay - ILI9163C_CASET , 4 , // 15: Column addr set, 4 args, no delay: - 0x00, 0x02, // XSTART = 2 - 0x00, 0x81, // XEND = 129 - ILI9163C_RASET , 4 , // 16: Row addr set, 4 args, no delay: - 0x00, 0x02, // XSTART = 1 - 0x00, 0x81, // XEND = 160 - ILI9163C_NORON , DELAY, // 17: Normal display on, no args, w/delay - 10, // 10 ms delay - ILI9163C_DISPON , DELAY, // 18: Main screen turn on, no args, w/delay - 255 }, // 255 = 500 ms delay -*/ -uint8_t - Bcmd[] = { // Initialization commands for 7735B screens - 19, // 19 commands in list: - ILI9163C_SWRESET, DELAY, // 1: Software reset, no args, w/delay - 50, // 50 ms delay - 0x11 , DELAY, // 2: Out of sleep mode, no args, w/delay - 100, // 255 = 500 ms delay - 0x26 , 1, // 3: Set default gamma - 0x04, // 16-bit color - 0xb1, 2, // 4: Frame Rate - 0x0b, - 0x14, - 0xc0, 2, // 5: VRH1[4:0] & VC[2:0] - 0x08, - 0x00, - 0xc1, 1, // 6: BT[2:0] - 0x05, - 0xc5, 2, // 7: VMH[6:0] & VML[6:0] - 0x41, - 0x30, - 0xc7, 1, // 8: LCD Driving control - 0xc1, - 0xEC, 1, // 9: Set pumping color freq - 0x1b, - 0x3a , 1 + DELAY, // 10: Set color format - 0x55, // 16-bit color - 100, - 0x2a, 4, // 11: Set Column Address - 0x00, - 0x00, - 0x00, - 0x7f, - 0x2b, 4, // 12: Set Page Address - 0x00, - 0x00, - 0x00, - 0x9f, - 0x36, 1, // 12+1: Set Scanning Direction - 0xc8, - 0xb7, 1, // 14: Set Source Output Direciton - 0x00, - 0xf2, 1, // 15: Enable Gamma bit - 0x01, - 0xe0, 15 + DELAY, // 16: magic - 0x28, 0x24, 0x22, 0x31, - 0x2b, 0x0e, 0x53, 0xa5, - 0x42, 0x16, 0x18, 0x12, - 0x1a, 0x14, 0x03, - 50, - 0xe1, 15 + DELAY, // 17: more magic - 0x17, 0x1b, 0x1d, 0x0e, - 0x14, 0x11, 0x2c, 0xa5, - 0x3d, 0x09, 0x27, 0x2d, - 0x25, 0x2b, 0x3c, - 50, - ILI9163C_NORON , DELAY, // 18: Normal display on, no args, w/delay - 10, // 10 ms delay - ILI9163C_DISPON , DELAY, // 19: Main screen turn on, no args w/delay - 100 }, // 100 ms delay -Rcmd1[] = { // Init for 7735R, part 1 (red or green tab) - 15, // 15 commands in list: - ILI9163C_SWRESET, DELAY, // 1: Software reset, 0 args, w/delay - 150, // 150 ms delay - ILI9163C_SLPOUT , DELAY, // 2: Out of sleep mode, 0 args, w/delay - 255, // 500 ms delay - ILI9163C_FRMCTR1, 3 , // 3: Frame rate ctrl - normal mode, 3 args: - 0x01, 0x2C, 0x2D, // Rate = fosc/(1x2+40) * (LINE+2C+2D) - ILI9163C_FRMCTR2, 3 , // 4: Frame rate control - idle mode, 3 args: - 0x01, 0x2C, 0x2D, // Rate = fosc/(1x2+40) * (LINE+2C+2D) - ILI9163C_FRMCTR3, 6 , // 5: Frame rate ctrl - partial mode, 6 args: - 0x01, 0x2C, 0x2D, // Dot inversion mode - 0x01, 0x2C, 0x2D, // Line inversion mode - ILI9163C_INVCTR , 1 , // 6: Display inversion ctrl, 1 arg, no delay: - 0x07, // No inversion - ILI9163C_PWCTR1 , 3 , // 7: Power control, 3 args, no delay: - 0xA2, - 0x02, // -4.6V - 0x84, // AUTO mode - ILI9163C_PWCTR2 , 1 , // 8: Power control, 1 arg, no delay: - 0xC5, // VGH25 = 2.4C VGSEL = -10 VGH = 3 * AVDD - ILI9163C_PWCTR3 , 2 , // 9: Power control, 2 args, no delay: - 0x0A, // Opamp current small - 0x00, // Boost frequency - ILI9163C_PWCTR4 , 2 , // 10: Power control, 2 args, no delay: - 0x8A, // BCLK/2, Opamp current small & Medium low - 0x2A, - ILI9163C_PWCTR5 , 2 , // 11: Power control, 2 args, no delay: - 0x8A, 0xEE, - ILI9163C_VMCTR1 , 1 , // 12: Power control, 1 arg, no delay: - 0x0E, - ILI9163C_INVOFF , 0 , // 13: Don't invert display, no args, no delay - ILI9163C_MADCTL , 1 , // 14: Memory access control (directions), 1 arg: - 0xC8, // row addr/col addr, bottom to top refresh - ILI9163C_COLMOD , 1 , // 15: set color mode, 1 arg, no delay: - 0x05 }, // 16-bit color - - Rcmd2green[] = { // Init for 7735R, part 2 (green tab only) - 2, // 2 commands in list: - ILI9163C_CASET , 4 , // 1: Column addr set, 4 args, no delay: - 0x00, 0x02, // XSTART = 0 - 0x00, 0x7F+0x02, // XEND = 127 - ILI9163C_RASET , 4 , // 2: Row addr set, 4 args, no delay: - 0x00, 0x01, // XSTART = 0 - 0x00, 0x9F+0x01 }, // XEND = 159 - Rcmd2red[] = { // Init for 7735R, part 2 (red tab only) - 2, // 2 commands in list: - ILI9163C_CASET , 4 , // 1: Column addr set, 4 args, no delay: - 0x00, 0x00, // XSTART = 0 - 0x00, 0x7F, // XEND = 127 - ILI9163C_RASET , 4 , // 2: Row addr set, 4 args, no delay: - 0x00, 0x00, // XSTART = 0 - 0x00, 0x9F }, // XEND = 159 - - Rcmd3[] = { // Init for 7735R, part 3 (red or green tab) - 4, // 4 commands in list: - ILI9163C_GMCTRP1, 16 , // 1: Magical unicorn dust, 16 args, no delay: - 0x02, 0x1c, 0x07, 0x12, - 0x37, 0x32, 0x29, 0x2d, - 0x29, 0x25, 0x2B, 0x39, - 0x00, 0x01, 0x03, 0x10, - ILI9163C_GMCTRN1, 16 , // 2: Sparkles and rainbows, 16 args, no delay: - 0x03, 0x1d, 0x07, 0x06, - 0x2E, 0x2C, 0x29, 0x2D, - 0x2E, 0x2E, 0x37, 0x3F, - 0x00, 0x00, 0x02, 0x10, - ILI9163C_NORON , DELAY, // 3: Normal display on, no args, w/delay - 10, // 10 ms delay - ILI9163C_DISPON , DELAY, // 4: Main screen turn on, no args w/delay - 100 }; // 100 ms delay - - -// Companion code to the above tables. Reads and issues -// a series of LCD commands stored in PROGMEM byte array. -//void Arduino_LCD::commandList(prog_uchar *addr) { -void Arduino_LCD::commandList(uint8_t *addr) { - - uint8_t numCommands, numArgs; - uint16_t ms; - - numCommands = *addr++; // Number of commands to follow - while(numCommands--) { // For each command... - writecommand(*addr++); // Read, issue command - numArgs = *addr++; // Number of args to follow - ms = numArgs & DELAY; // If hibit set, delay follows args - numArgs &= ~DELAY; // Mask out delay bit - while(numArgs--) { // For each argument... - writedata(*addr++); // Read, issue argument - } - - if(ms) { - ms = *addr++; // Read post-command delay time (ms) - if(ms == 255) ms = 500; // If 255, delay for 500 ms - delay(ms); - } - } -} - - -// Initialization code common to both 'B' and 'R' type displays -//void Arduino_LCD::commonInit(prog_uchar *cmdList) { -void Arduino_LCD::commonInit(uint8_t *cmdList) { - - colstart = rowstart = 0; // May be overridden in init func - - pinMode(_rs, OUTPUT); - pinMode(_cs, OUTPUT); -/* - csport = portOutputRegister(digitalPinToPort(_cs)); - cspinmask = digitalPinToBitMask(_cs); - rsport = portOutputRegister(digitalPinToPort(_rs)); - rspinmask = digitalPinToBitMask(_rs); -*/ - -// if(hwSPI) { // Using hardware SPI - SPI.begin(); - SPI.setClockDivider(21); // 4 MHz (half speed) -// SPI.setClockDivider(SPI_CLOCK_DIV4); // 4 MHz (half speed) -// SPI.setBitOrder(MSBFIRST); -// there is no setBitOrder on the SPI library for the Due - SPI.setDataMode(SPI_MODE0); -/* - } else { - pinMode(_sclk, OUTPUT); - pinMode(_sid , OUTPUT); - clkport = portOutputRegister(digitalPinToPort(_sclk)); - clkpinmask = digitalPinToBitMask(_sclk); - dataport = portOutputRegister(digitalPinToPort(_sid)); - datapinmask = digitalPinToBitMask(_sid); - *clkport &= ~clkpinmask; - *dataport &= ~datapinmask; - } -*/ - - // toggle RST low to reset; CS low so it'll listen to us -// *csport &= ~cspinmask; - digitalWrite(_cs, LOW); - if (_rst) { - pinMode(_rst, OUTPUT); - digitalWrite(_rst, HIGH); - delay(500); - digitalWrite(_rst, LOW); - delay(500); - digitalWrite(_rst, HIGH); - delay(500); - } - - if(cmdList) commandList(cmdList); -} - - -// Initialization for ST7735B screens -void Arduino_LCD::initB(void) { - commonInit(Bcmd); - commandList(Rcmd3); -} - - -// Initialization for ST7735R screens (green or red tabs) -void Arduino_LCD::initR(uint8_t options) { - commonInit(Rcmd1); - if(options == INITR_GREENTAB) { - commandList(Rcmd2green); - colstart = 2; - rowstart = 1; - } else { - // colstart, rowstart left at default '0' values - commandList(Rcmd2red); - } - commandList(Rcmd3); -} - - -void Arduino_LCD::setAddrWindow(uint8_t x0, uint8_t y0, uint8_t x1, - uint8_t y1) { - - writecommand(ILI9163C_CASET); // Column addr set - writedata(0x00); - writedata(x0+colstart); // XSTART - writedata(0x00); - writedata(x1+colstart); // XEND - - writecommand(ILI9163C_RASET); // Row addr set - writedata(0x00); - writedata(y0+rowstart); // YSTART - writedata(0x00); - writedata(y1+rowstart); // YEND - - writecommand(ILI9163C_RAMWR); // write to RAM -} - - -void Arduino_LCD::fillScreen(uint16_t color) { - - uint8_t x, y, hi = color >> 8, lo = color; - - setAddrWindow(0, 0, _width-1, _height-1); - -// *rsport |= rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); - digitalWrite(_cs, LOW); - - for(y=_height; y>0; y--) { - for(x=_width; x>0; x--) { -//SPI.transfer(hi); -//SPI.transfer(lo); - spiwrite(hi); - spiwrite(lo); - } - } - -// *csport |= cspinmask; - digitalWrite(_cs, HIGH); -} - - -void Arduino_LCD::pushColor(uint16_t color) { -// *rsport |= rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); - digitalWrite(_cs, LOW); - - spiwrite(color >> 8); - spiwrite(color); -//SPI.transfer(color>>8); -//SPI.transfer(color); - -// *csport |= cspinmask; - digitalWrite(_cs, HIGH); -} - - -void Arduino_LCD::drawPixel(int16_t x, int16_t y, uint16_t color) { - - if((x < 0) ||(x >= _width) || (y < 0) || (y >= _height)) return; - - setAddrWindow(x,y,x+1,y+1); - -// *rsport |= rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); - digitalWrite(_cs, LOW); - - spiwrite(color >> 8); - spiwrite(color); -//SPI.transfer(color>>8); -//SPI.transfer(color); - -// *csport |= cspinmask; - digitalWrite(_cs, HIGH); -} - - -void Arduino_LCD::drawFastVLine(int16_t x, int16_t y, int16_t h, - uint16_t color) { - - // Rudimentary clipping - if((x >= _width) || (y >= _height)) return; - if((y+h-1) >= _height) h = _height-y; - setAddrWindow(x, y, x, y+h-1); - - uint8_t hi = color >> 8, lo = color; -// *rsport |= rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); - digitalWrite(_cs, LOW); - while (h--) { - spiwrite(hi); - spiwrite(lo); -//SPI.transfer(hi); -//SPI.transfer(lo); - } -// *csport |= cspinmask; - digitalWrite(_cs, HIGH); -} - - -void Arduino_LCD::drawFastHLine(int16_t x, int16_t y, int16_t w, - uint16_t color) { - - // Rudimentary clipping - if((x >= _width) || (y >= _height)) return; - if((x+w-1) >= _width) w = _width-x; - setAddrWindow(x, y, x+w-1, y); - - uint8_t hi = color >> 8, lo = color; -// *rsport |= rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); - digitalWrite(_cs, LOW); - while (w--) { - spiwrite(hi); - spiwrite(lo); -//SPI.transfer(hi); -//SPI.transfer(lo); - } -// *csport |= cspinmask; - digitalWrite(_cs, HIGH); -} - - -// fill a rectangle -void Arduino_LCD::fillRect(int16_t x, int16_t y, int16_t w, int16_t h, - uint16_t color) { - - // rudimentary clipping (drawChar w/big text requires this) - if((x >= _width) || (y >= _height)) return; - if((x + w - 1) >= _width) w = _width - x; - if((y + h - 1) >= _height) h = _height - y; - - setAddrWindow(x, y, x+w-1, y+h-1); - - uint8_t hi = color >> 8, lo = color; -// *rsport |= rspinmask; -// *csport &= ~cspinmask; -digitalWrite(_rs, HIGH); -digitalWrite(_cs, LOW); - for(y=h; y>0; y--) { - for(x=w; x>0; x--) { - spiwrite(hi); - spiwrite(lo); -//SPI.transfer(hi); -//SPI.transfer(lo); - } - } - -// *csport |= cspinmask; -digitalWrite(_cs, HIGH); -} - - -// Pass 8-bit (each) R,G,B, get back 16-bit packed color -uint16_t Arduino_LCD::Color565(uint8_t r, uint8_t g, uint8_t b) { - return ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3); -} - - -#define MADCTL_MY 0x80 -#define MADCTL_MX 0x40 -#define MADCTL_MV 0x20 -#define MADCTL_ML 0x10 -#define MADCTL_RGB 0x08 -#define MADCTL_MH 0x04 - -void Arduino_LCD::setRotation(uint8_t m) { - - writecommand(ILI9163C_MADCTL); - rotation = m % 4; // can't be higher than 3 - switch (rotation) { - case 0: - writedata(MADCTL_MX | MADCTL_MY | MADCTL_RGB); - _width = ILI9163C_TFTWIDTH; - _height = ILI9163C_TFTHEIGHT; - break; - case 1: - writedata(MADCTL_MY | MADCTL_MV | MADCTL_RGB); - _width = ILI9163C_TFTHEIGHT; - _height = ILI9163C_TFTWIDTH; - break; - case 2: - writedata(MADCTL_RGB); - _width = ILI9163C_TFTWIDTH; - _height = ILI9163C_TFTHEIGHT; - break; - case 3: - writedata(MADCTL_MX | MADCTL_MV | MADCTL_RGB); - _width = ILI9163C_TFTHEIGHT; - _height = ILI9163C_TFTWIDTH; - break; - } -} - - -void Arduino_LCD::invertDisplay(boolean i) { - writecommand(i ? ILI9163C_INVON : ILI9163C_INVOFF); -} - -/* - 18, // there are 17 commands - ILI9163C_SWRESET, DELAY, // 1: Software reset, no args, w/delay - 50, // 50 ms delay - - 0x11, //Exit Sleep - DELAY,50, - - 0x26, //Set Default Gamma - 0x104, - - //0xF2, //E0h & E1h Enable/Disable - //0x100, - - 0xB1, - 0x10C, - 0x114, - - 0xC0, //Set VRH1[4:0] & VC[2:0] for VCI1 & GVDD - 0x10C, - 0x105, - - 0xC1, //Set BT[2:0] for AVDD & VCL & VGH & VGL - 0x102, - - 0xC5, //Set VMH[6:0] & VML[6:0] for VOMH & VCOML - 0x129, - 0x143, - - 0xC7, - 0x140, - - 0x3a, //Set Color Format - 0x105, - - 0x2A, //Set Column Address - 0x100, - 0x100, - 0x100, - 0x17F, - - 0x2B, //Set Page Address - 0x100, - 0x100, - 0x100, - 0x19F, - - 0x36, //Set Scanning Direction, RGB - 0x1C0, - - 0xB7, //Set Source Output Direction - 0x100, - - 0xf2, //Enable Gamma bit - 0x101, - - 0xE0, - 0x136,//p1 - 0x129,//p2 - 0x112,//p3 - 0x122,//p4 - 0x11C,//p5 - 0x115,//p6 - 0x142,//p7 - 0x1B7,//p8 - 0x12F,//p9 - 0x113,//p10 - 0x112,//p11 - 0x10A,//p12 - 0x111,//p13 - 0x10B,//p14 - 0x106,//p15 - - 0xE1, - 0x109,//p1 - 0x116,//p2 - 0x12D,//p3 - 0x10D,//p4 - 0x113,//p5 - 0x115,//p6 - 0x140,//p7 - 0x148,//p8 - 0x153,//p9 - 0x10C,//p10 - 0x11D,//p11 - 0x125,//p12 - 0x12E,//p13 - 0x134,//p14 - 0x139,//p15 - - 0x33, // scroll setup - 0x100, - 0x100, - 0x100, - 0x1C1, - 0x100, - 0x100, - - 0x29, // Display On - 0x2C}, // write gram - -*/ - diff --git a/libraries/Robot_Control/src/Arduino_LCD.h b/libraries/Robot_Control/src/Arduino_LCD.h deleted file mode 100644 index 954251e30d6..00000000000 --- a/libraries/Robot_Control/src/Arduino_LCD.h +++ /dev/null @@ -1,141 +0,0 @@ -/*************************************************** - This is a library for the Adafruit 1.8" SPI display. - This library works with the Adafruit 1.8" TFT Breakout w/SD card - ----> http://www.adafruit.com/products/358 - as well as Adafruit raw 1.8" TFT display - ----> http://www.adafruit.com/products/618 - - Check out the links above for our tutorials and wiring diagrams - These displays use SPI to communicate, 4 or 5 pins are required to - interface (RST is optional) - Adafruit invests time and resources providing this open source code, - please support Adafruit and open-source hardware by purchasing - products from Adafruit! - - Written by Limor Fried/Ladyada for Adafruit Industries. - MIT license, all text above must be included in any redistribution - ****************************************************/ - -#ifndef _ARDUINO_LCDH_ -#define _ARDUINO_LCDH_ - -#if ARDUINO >= 100 - #include "Arduino.h" - #include "Print.h" -#else - #include "WProgram.h" -#endif -#include "utility/Adafruit_GFX.h" -//#include - -// some flags for initR() :( -#define INITR_GREENTAB 0x0 -#define INITR_REDTAB 0x1 - -#define ILI9163C_TFTWIDTH 128 -#define ILI9163C_TFTHEIGHT 160 - -#define ILI9163C_NOP 0x00 -#define ILI9163C_SWRESET 0x01 -#define ILI9163C_RDDID 0x04 -#define ILI9163C_RDDST 0x09 - -#define ILI9163C_SLPIN 0x10 -#define ILI9163C_SLPOUT 0x11 -#define ILI9163C_PTLON 0x12 -#define ILI9163C_NORON 0x13 - -#define ILI9163C_INVOFF 0x20 -#define ILI9163C_INVON 0x21 -#define ILI9163C_DISPOFF 0x28 -#define ILI9163C_DISPON 0x29 -#define ILI9163C_CASET 0x2A -#define ILI9163C_RASET 0x2B -#define ILI9163C_RAMWR 0x2C -#define ILI9163C_RAMRD 0x2E - -#define ILI9163C_PTLAR 0x30 -#define ILI9163C_COLMOD 0x3A // this is interface pixel format, this might be the issue -#define ILI9163C_MADCTL 0x36 - -#define ILI9163C_FRMCTR1 0xB1 -#define ILI9163C_FRMCTR2 0xB2 -#define ILI9163C_FRMCTR3 0xB3 -#define ILI9163C_INVCTR 0xB4 -#define ILI9163C_DISSET5 0xB6 - -#define ILI9163C_PWCTR1 0xC0 -#define ILI9163C_PWCTR2 0xC1 -#define ILI9163C_PWCTR3 0xC2 -#define ILI9163C_PWCTR4 0xC3 -#define ILI9163C_PWCTR5 0xC4 -#define ILI9163C_VMCTR1 0xC5 - -#define ILI9163C_RDID1 0xDA -#define ILI9163C_RDID2 0xDB -#define ILI9163C_RDID3 0xDC -#define ILI9163C_RDID4 0xDD - -#define ILI9163C_PWCTR6 0xFC - -#define ILI9163C_GMCTRP1 0xE0 -#define ILI9163C_GMCTRN1 0xE1 - -// Color definitions -#define ILI9163C_BLACK 0x0000 -#define ILI9163C_BLUE 0x001F -#define ILI9163C_RED 0xF800 -#define ILI9163C_GREEN 0x07E0 -#define ILI9163C_CYAN 0x07FF -#define ILI9163C_MAGENTA 0xF81F -#define ILI9163C_YELLOW 0xFFE0 -#define ILI9163C_WHITE 0xFFFF - - -class Arduino_LCD : public Adafruit_GFX { - - public: - - Arduino_LCD(uint8_t CS, uint8_t RS, uint8_t SID, uint8_t SCLK, uint8_t RST); - Arduino_LCD(uint8_t CS, uint8_t RS, uint8_t RST); - - void initB(void), // for ST7735B displays - initR(uint8_t options = INITR_GREENTAB), // for ST7735R - setAddrWindow(uint8_t x0, uint8_t y0, uint8_t x1, uint8_t y1), - pushColor(uint16_t color), - fillScreen(uint16_t color), - drawPixel(int16_t x, int16_t y, uint16_t color), - drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color), - drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color), - fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color), - setRotation(uint8_t r), - invertDisplay(boolean i); - uint16_t Color565(uint8_t r, uint8_t g, uint8_t b); - - /* These are not for current use, 8-bit protocol only! - uint8_t readdata(void), - readcommand8(uint8_t); - uint16_t readcommand16(uint8_t); - uint32_t readcommand32(uint8_t); - void dummyclock(void); - */ - - private: - - void spiwrite(uint8_t), - writecommand(uint8_t c), - writedata(uint8_t d), -// commandList(prog_uchar *addr), -// commonInit(prog_uchar *cmdList); - commandList(uint8_t *addr), - commonInit(uint8_t *cmdList); -//uint8_t spiread(void); - - boolean hwSPI; - volatile uint8_t *dataport, *clkport, *csport, *rsport; - uint8_t _cs, _rs, _rst, _sid, _sclk, - datapinmask, clkpinmask, cspinmask, rspinmask, - colstart, rowstart; // some displays need this changed -}; - -#endif diff --git a/libraries/Robot_Control/src/Compass.cpp b/libraries/Robot_Control/src/Compass.cpp deleted file mode 100644 index 1b1ef3149ab..00000000000 --- a/libraries/Robot_Control/src/Compass.cpp +++ /dev/null @@ -1,34 +0,0 @@ -#include "Compass.h" -#include - -void Compass::begin(){ - Wire.begin(); -} -float Compass::getReading(){ - _beginTransmission(); - _endTransmission(); - - //time delays required by HMC6352 upon receipt of the command - //Get Data. Compensate and Calculate New Heading : 6ms - delay(6); - - Wire.requestFrom(HMC6352SlaveAddress, 2); //get the two data bytes, MSB and LSB - - //"The heading output data will be the value in tenths of degrees - //from zero to 3599 and provided in binary format over the two bytes." - byte MSB = Wire.read(); - byte LSB = Wire.read(); - - float headingSum = (MSB << 8) + LSB; //(MSB / LSB sum) - float headingInt = headingSum / 10; - - return headingInt; -} - -void Compass::_beginTransmission(){ - Wire.beginTransmission(HMC6352SlaveAddress); - Wire.write(HMC6352ReadAddress); -} -void Compass::_endTransmission(){ - Wire.endTransmission(); -} \ No newline at end of file diff --git a/libraries/Robot_Control/src/Compass.h b/libraries/Robot_Control/src/Compass.h deleted file mode 100644 index aa085a98a80..00000000000 --- a/libraries/Robot_Control/src/Compass.h +++ /dev/null @@ -1,24 +0,0 @@ -#ifndef Compass_h -#define Compass_h - -#if ARDUINO >= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - -//0x21==0x42>>1, from bildr's code -#define HMC6352SlaveAddress 0x21 -#define HMC6352ReadAddress 0x41 - -class Compass{ - public: - void begin(); - float getReading(); - private: - void _beginTransmission(); - void _endTransmission(); - -}; - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/EEPROM_I2C.cpp b/libraries/Robot_Control/src/EEPROM_I2C.cpp deleted file mode 100644 index dd12695f14b..00000000000 --- a/libraries/Robot_Control/src/EEPROM_I2C.cpp +++ /dev/null @@ -1,62 +0,0 @@ -#include "EEPROM_I2C.h" -#include - -#if ARDUINO >= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - -void EEPROM_I2C::begin(){ - Wire.begin(); -} - -void EEPROM_I2C::writeByte(unsigned int eeaddress, byte data){ - int rdata = data; - this->_beginTransmission(eeaddress); - Wire.write(rdata); - this->_endTransmission(); -} - -byte EEPROM_I2C::readByte(unsigned int eeaddress){ - int rdata; - this->_beginTransmission(eeaddress); - this->_endTransmission(); - - Wire.requestFrom(DEVICEADDRESS,1); - if (Wire.available()) rdata = Wire.read(); - return rdata; -} - -void EEPROM_I2C::writePage(unsigned int eeaddress, byte* data, byte length ){ - this->_beginTransmission(eeaddress); - - byte c; - - for ( c = 0; c < length; c++) - Wire.write(data[c]); - - this->_endTransmission(); - - delay(10); // need some delay -} - -void EEPROM_I2C::readBuffer(unsigned int eeaddress, byte *buffer, int length ){ - this->_beginTransmission(eeaddress); - this->_endTransmission(); - Wire.requestFrom(DEVICEADDRESS,length); - - for ( int c = 0; c < length; c++ ) - if (Wire.available()) buffer[c] = Wire.read(); -} - - - -void EEPROM_I2C::_beginTransmission(unsigned int eeaddress){ - Wire.beginTransmission(DEVICEADDRESS); - Wire.write((eeaddress >> 8)); // Address High Byte - Wire.write((eeaddress & 0xFF)); // Address Low Byte -} -void EEPROM_I2C::_endTransmission(){ - Wire.endTransmission(); -} \ No newline at end of file diff --git a/libraries/Robot_Control/src/EEPROM_I2C.h b/libraries/Robot_Control/src/EEPROM_I2C.h deleted file mode 100644 index 9bd0f6af63b..00000000000 --- a/libraries/Robot_Control/src/EEPROM_I2C.h +++ /dev/null @@ -1,31 +0,0 @@ -#ifndef EEPROM_I2C_h -#define EEPROM_I2C_h - -#if ARDUINO >= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - -#define EE24LC512MAXBYTES 64000 -#define DEVICEADDRESS 0x50 - -class EEPROM_I2C{ - public: - void begin(); - - void writeByte(unsigned int eeaddresspage, byte data); - byte readByte(unsigned int eeaddresspage); - - void writePage(unsigned int eeaddresspage, byte* data, byte length ); - void readBuffer(unsigned int eeaddress, byte *buffer, int length ); - - //uint16_t readPixel(uint16_t theMemoryAddress); - //void readImage(uint16_t theMemoryAddress, int width, int height); - - protected: - void _beginTransmission(unsigned int eeaddress); - void _endTransmission(); -}; - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/EasyTransfer2.cpp b/libraries/Robot_Control/src/EasyTransfer2.cpp deleted file mode 100644 index 24427cc6e71..00000000000 --- a/libraries/Robot_Control/src/EasyTransfer2.cpp +++ /dev/null @@ -1,152 +0,0 @@ -#include "EasyTransfer2.h" - - - - -//Captures address and size of struct -void EasyTransfer2::begin(HardwareSerial *theSerial){ - _serial = theSerial; - - //dynamic creation of rx parsing buffer in RAM - //rx_buffer = (uint8_t*) malloc(size); - - resetData(); -} - -void EasyTransfer2::writeByte(uint8_t dat){ - if(position<20) - data[position++]=dat; - size++; -} -void EasyTransfer2::writeInt(int dat){ - if(position<19){ - data[position++]=dat>>8; - data[position++]=dat; - size+=2; - } -} -uint8_t EasyTransfer2::readByte(){ - if(position>=size)return 0; - return data[position++]; -} -int EasyTransfer2::readInt(){ - if(position+1>=size)return 0; - int dat_1=data[position++]<<8; - int dat_2=data[position++]; - int dat= dat_1 | dat_2; - return dat; -} - -void EasyTransfer2::resetData(){ - for(int i=0;i<20;i++){ - data[i]=0; - } - size=0; - position=0; -} - -//Sends out struct in binary, with header, length info and checksum -void EasyTransfer2::sendData(){ - uint8_t CS = size; - _serial->write(0x06); - _serial->write(0x85); - _serial->write(size); - for(int i = 0; iwrite(*(data+i)); - //Serial.print(*(data+i)); - //Serial.print(","); - } - //Serial.println(""); - _serial->write(CS); - - resetData(); -} - -boolean EasyTransfer2::receiveData(){ - - //start off by looking for the header bytes. If they were already found in a previous call, skip it. - if(rx_len == 0){ - //this size check may be redundant due to the size check below, but for now I'll leave it the way it is. - if(_serial->available() >= 3){ - //this will block until a 0x06 is found or buffer size becomes less then 3. - while(_serial->read() != 0x06) { - //This will trash any preamble junk in the serial buffer - //but we need to make sure there is enough in the buffer to process while we trash the rest - //if the buffer becomes too empty, we will escape and try again on the next call - if(_serial->available() < 3) - return false; - } - //Serial.println("head"); - if (_serial->read() == 0x85){ - rx_len = _serial->read(); - //Serial.print("rx_len:"); - //Serial.println(rx_len); - resetData(); - - //make sure the binary structs on both Arduinos are the same size. - /*if(rx_len != size){ - rx_len = 0; - return false; - }*/ - } - } - //Serial.println("nothing"); - } - - //we get here if we already found the header bytes, the struct size matched what we know, and now we are byte aligned. - if(rx_len != 0){ - - while(_serial->available() && rx_array_inx <= rx_len){ - data[rx_array_inx++] = _serial->read(); - } - - if(rx_len == (rx_array_inx-1)){ - //seem to have got whole message - //last uint8_t is CS - calc_CS = rx_len; - //Serial.print("len:"); - //Serial.println(rx_len); - for (int i = 0; i -* -*This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. -*To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or -*send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. -******************************************************************/ -#ifndef EasyTransfer2_h -#define EasyTransfer2_h - - -//make it a little prettier on the front end. -#define details(name) (byte*)&name,sizeof(name) - -//Not neccessary, but just in case. -#if ARDUINO > 22 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif -#include "HardwareSerial.h" -//#include -#include -#include -#include -#include - -class EasyTransfer2 { -public: -void begin(HardwareSerial *theSerial); -//void begin(uint8_t *, uint8_t, NewSoftSerial *theSerial); -void sendData(); -boolean receiveData(); - -void writeByte(uint8_t dat); -void writeInt(int dat); -uint8_t readByte(); -int readInt(); - - -private: -HardwareSerial *_serial; - -void resetData(); - -uint8_t data[20]; //data storage, for both read and send -uint8_t position; -uint8_t size; //size of data in bytes. Both for read and send -//uint8_t * address; //address of struct -//uint8_t size; //size of struct -//uint8_t * rx_buffer; //address for temporary storage and parsing buffer -//uint8_t rx_buffer[20]; -uint8_t rx_array_inx; //index for RX parsing buffer -uint8_t rx_len; //RX packet length according to the packet -uint8_t calc_CS; //calculated Chacksum -}; - - - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/Fat16.cpp b/libraries/Robot_Control/src/Fat16.cpp deleted file mode 100644 index aa8f585e95c..00000000000 --- a/libraries/Robot_Control/src/Fat16.cpp +++ /dev/null @@ -1,990 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -#include -#if ARDUINO < 100 -#include -#else // ARDUINO -#include -#endif // ARDUINO -#include -//----------------------------------------------------------------------------- -// volume info -uint8_t Fat16::volumeInitialized_ = 0; // true if FAT16 volume is valid -uint8_t Fat16::fatCount_; // number of file allocation tables -uint8_t Fat16::blocksPerCluster_; // must be power of 2 -uint16_t Fat16::rootDirEntryCount_; // should be 512 for FAT16 -fat_t Fat16::blocksPerFat_; // number of blocks in one FAT -fat_t Fat16::clusterCount_; // total clusters in volume -uint32_t Fat16::fatStartBlock_; // start of first FAT -uint32_t Fat16::rootDirStartBlock_; // start of root dir -uint32_t Fat16::dataStartBlock_; // start of data clusters -//------------------------------------------------------------------------------ -// raw block cache -SdCard *Fat16::rawDev_ = 0; // class for block read and write -uint32_t Fat16::cacheBlockNumber_ = 0XFFFFFFFF; // init to invalid block number -cache16_t Fat16::cacheBuffer_; // 512 byte cache for SdCard -uint8_t Fat16::cacheDirty_ = 0; // cacheFlush() will write block if true -uint32_t Fat16::cacheMirrorBlock_ = 0; // mirror block for second FAT -//------------------------------------------------------------------------------ -// callback function for date/time -void (*Fat16::dateTime_)(uint16_t* date, uint16_t* time) = NULL; - -#if ALLOW_DEPRECATED_FUNCTIONS -void (*Fat16::oldDateTime_)(uint16_t& date, uint16_t& time) = NULL; // NOLINT -#endif // ALLOW_DEPRECATED_FUNCTIONS -//------------------------------------------------------------------------------ -// format 8.3 name for directory entry -static uint8_t make83Name(const char* str, uint8_t* name) { - uint8_t c; - uint8_t n = 7; // max index for part before dot - uint8_t i = 0; - // blank fill name and extension - while (i < 11) name[i++] = ' '; - i = 0; - while ((c = *str++) != '\0') { - if (c == '.') { - if (n == 10) return false; // only one dot allowed - n = 10; // max index for full 8.3 name - i = 8; // place for extension - } else { - // illegal FAT characters - PGM_P p = PSTR("|<>^+=?/[];,*\"\\"); - uint8_t b; - while ((b = pgm_read_byte(p++))) if (b == c) return false; - // check length and only allow ASCII printable characters - if (i > n || c < 0X21 || c > 0X7E) return false; - // only upper case allowed in 8.3 names - convert lower to upper - name[i++] = c < 'a' || c > 'z' ? c : c + ('A' - 'a'); - } - } - // must have a file name, extension is optional - return name[0] != ' '; -} -//============================================================================== -// Fat16 member functions -//------------------------------------------------------------------------------ -uint8_t Fat16::addCluster(void) { - // start search after last cluster of file or at cluster two in FAT - fat_t freeCluster = curCluster_ ? curCluster_ : 1; - for (fat_t i = 0; ; i++) { - // return no free clusters - if (i >= clusterCount_) return false; - // Fat has clusterCount + 2 entries - if (freeCluster > clusterCount_) freeCluster = 1; - freeCluster++; - fat_t value; - if (!fatGet(freeCluster, &value)) return false; - if (value == 0) break; - } - // mark cluster allocated - if (!fatPut(freeCluster, FAT16EOC)) return false; - - if (curCluster_ != 0) { - // link cluster to chain - if (!fatPut(curCluster_, freeCluster)) return false; - } else { - // first cluster of file so update directory entry - flags_ |= F_FILE_DIR_DIRTY; - firstCluster_ = freeCluster; - } - curCluster_ = freeCluster; - return true; -} -//------------------------------------------------------------------------------ -// -dir_t* Fat16::cacheDirEntry(uint16_t index, uint8_t action) { - if (index >= rootDirEntryCount_) return NULL; - if (!cacheRawBlock(rootDirStartBlock_ + (index >> 4), action)) return NULL; - return &cacheBuffer_.dir[index & 0XF]; -} -//------------------------------------------------------------------------------ -// -uint8_t Fat16::cacheFlush(void) { - if (cacheDirty_) { - if (!rawDev_->writeBlock(cacheBlockNumber_, cacheBuffer_.data)) { - return false; - } - // mirror FAT tables - if (cacheMirrorBlock_) { - if (!rawDev_->writeBlock(cacheMirrorBlock_, cacheBuffer_.data)) { - return false; - } - cacheMirrorBlock_ = 0; - } - cacheDirty_ = 0; - } - return true; -} -//------------------------------------------------------------------------------ -// -uint8_t Fat16::cacheRawBlock(uint32_t blockNumber, uint8_t action) { - if (cacheBlockNumber_ != blockNumber) { - if (!cacheFlush()) return false; - if (!rawDev_->readBlock(blockNumber, cacheBuffer_.data)) return false; - cacheBlockNumber_ = blockNumber; - } - cacheDirty_ |= action; - return true; -} -//------------------------------------------------------------------------------ -/** - * Close a file and force cached data and directory information - * to be written to the storage device. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include no file is open or an I/O error. - */ -uint8_t Fat16::close(void) { - if (!sync()) return false; - flags_ = 0; - return true; -} -//------------------------------------------------------------------------------ -/** - * Return a files directory entry - * - * \param[out] dir Location for return of the files directory entry. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - */ -uint8_t Fat16::dirEntry(dir_t* dir) { - if (!sync()) return false; - dir_t* p = cacheDirEntry(dirEntryIndex_, CACHE_FOR_WRITE); - if (!p) return false; - memcpy(dir, p, sizeof(dir_t)); - return true; -} -//------------------------------------------------------------------------------ -uint8_t Fat16::fatGet(fat_t cluster, fat_t* value) { - if (cluster > (clusterCount_ + 1)) return false; - uint32_t lba = fatStartBlock_ + (cluster >> 8); - if (lba != cacheBlockNumber_) { - if (!cacheRawBlock(lba)) return false; - } - *value = cacheBuffer_.fat[cluster & 0XFF]; - return true; -} -//------------------------------------------------------------------------------ -uint8_t Fat16::fatPut(fat_t cluster, fat_t value) { - if (cluster < 2) return false; - if (cluster > (clusterCount_ + 1)) return false; - uint32_t lba = fatStartBlock_ + (cluster >> 8); - if (lba != cacheBlockNumber_) { - if (!cacheRawBlock(lba)) return false; - } - cacheBuffer_.fat[cluster & 0XFF] = value; - cacheSetDirty(); - // mirror second FAT - if (fatCount_ > 1) cacheMirrorBlock_ = lba + blocksPerFat_; - return true; -} -//------------------------------------------------------------------------------ -// free a cluster chain -uint8_t Fat16::freeChain(fat_t cluster) { - while (1) { - fat_t next; - if (!fatGet(cluster, &next)) return false; - if (!fatPut(cluster, 0)) return false; - if (isEOC(next)) return true; - cluster = next; - } -} -//------------------------------------------------------------------------------ -/** - * Initialize a FAT16 volume. - * - * \param[in] dev The SdCard where the volume is located. - * - * \param[in] part The partition to be used. Legal values for \a part are - * 1-4 to use the corresponding partition on a device formatted with - * a MBR, Master Boot Record, or zero if the device is formatted as - * a super floppy with the FAT boot sector in block zero. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. reasons for - * failure include not finding a valid FAT16 file system in the - * specified partition, a call to init() after a volume has - * been successful initialized or an I/O error. - * - */ -uint8_t Fat16::init(SdCard* dev, uint8_t part) { - // error if invalid partition - if (part > 4) return false; - rawDev_ = dev; - uint32_t volumeStartBlock = 0; - // if part == 0 assume super floppy with FAT16 boot sector in block zero - // if part > 0 assume mbr volume with partition table - if (part) { - if (!cacheRawBlock(volumeStartBlock)) return false; - volumeStartBlock = cacheBuffer_.mbr.part[part - 1].firstSector; - } - if (!cacheRawBlock(volumeStartBlock)) return false; - // check boot block signature - if (cacheBuffer_.data[510] != BOOTSIG0 || - cacheBuffer_.data[511] != BOOTSIG1) return false; - bpb_t* bpb = &cacheBuffer_.fbs.bpb; - fatCount_ = bpb->fatCount; - blocksPerCluster_ = bpb->sectorsPerCluster; - blocksPerFat_ = bpb->sectorsPerFat16; - rootDirEntryCount_ = bpb->rootDirEntryCount; - fatStartBlock_ = volumeStartBlock + bpb->reservedSectorCount; - rootDirStartBlock_ = fatStartBlock_ + bpb->fatCount*bpb->sectorsPerFat16; - dataStartBlock_ = rootDirStartBlock_ - + ((32*bpb->rootDirEntryCount + 511)/512); - uint32_t totalBlocks = bpb->totalSectors16 ? - bpb->totalSectors16 : bpb->totalSectors32; - clusterCount_ = (totalBlocks - (dataStartBlock_ - volumeStartBlock)) - /bpb->sectorsPerCluster; - // verify valid FAT16 volume - if (bpb->bytesPerSector != 512 // only allow 512 byte blocks - || bpb->sectorsPerFat16 == 0 // zero for FAT32 - || clusterCount_ < 4085 // FAT12 if true - || totalBlocks > 0X800000 // Max size for FAT16 volume - || bpb->reservedSectorCount == 0 // invalid volume - || bpb->fatCount == 0 // invalid volume - || bpb->sectorsPerFat16 < (clusterCount_ >> 8) // invalid volume - || bpb->sectorsPerCluster == 0 // invalid volume - // power of 2 test - || bpb->sectorsPerCluster & (bpb->sectorsPerCluster - 1)) { - // not a usable FAT16 bpb - return false; - } - volumeInitialized_ = 1; - return true; -} -//------------------------------------------------------------------------------ -/** List directory contents to Serial. - * - * \param[in] flags The inclusive OR of - * - * LS_DATE - %Print file modification date - * - * LS_SIZE - %Print file size. - */ -void Fat16::ls(uint8_t flags) { - dir_t d; - for (uint16_t index = 0; readDir(&d, &index, DIR_ATT_VOLUME_ID); index++) { - // print file name with possible blank fill - printDirName(d, flags & (LS_DATE | LS_SIZE) ? 14 : 0); - - // print modify date/time if requested - if (flags & LS_DATE) { - printFatDate(d.lastWriteDate); - Serial.write(' '); - printFatTime(d.lastWriteTime); - } - - // print size if requested - if (DIR_IS_FILE(&d) && (flags & LS_SIZE)) { - Serial.write(' '); - Serial.print(d.fileSize); - } - Serial.println(); - } -} -//------------------------------------------------------------------------------ -/** - * Open a file by file name. - * - * \note The file must be in the root directory and must have a DOS - * 8.3 name. - * - * \param[in] fileName A valid 8.3 DOS name for a file in the root directory. - * - * \param[in] oflag Values for \a oflag are constructed by a bitwise-inclusive - * OR of flags from the following list - * - * O_READ - Open for reading. - * - * O_RDONLY - Same as O_READ. - * - * O_WRITE - Open for writing. - * - * O_WRONLY - Same as O_WRITE. - * - * O_RDWR - Open for reading and writing. - * - * O_APPEND - If set, the file offset shall be set to the end of the - * file prior to each write. - * - * O_CREAT - If the file exists, this flag has no effect except as noted - * under O_EXCL below. Otherwise, the file shall be created - * - * O_EXCL - If O_CREAT and O_EXCL are set, open() shall fail if the file exists. - * - * O_SYNC - Call sync() after each write. This flag should not be used with - * write(uint8_t), write_P(PGM_P), writeln_P(PGM_P), or the Arduino Print class. - * These functions do character a time writes so sync() will be called - * after each byte. - * - * O_TRUNC - If the file exists and is a regular file, and the file is - * successfully opened and is not read only, its length shall be truncated to 0. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include the FAT volume has not been initialized, - * a file is already open, \a fileName is invalid, the file does not exist, - * is a directory, or can't be opened in the access mode specified by oflag. - */ -uint8_t Fat16::open(const char* fileName, uint8_t oflag) { - uint8_t dname[11]; // name formated for dir entry - int16_t empty = -1; // index of empty slot - dir_t* p; // pointer to cached dir entry - - if (!volumeInitialized_ || isOpen()) return false; - - // error if invalid name - if (!make83Name(fileName, dname)) return false; - - for (uint16_t index = 0; index < rootDirEntryCount_; index++) { - if (!(p = cacheDirEntry(index))) return false; - if (p->name[0] == DIR_NAME_FREE || p->name[0] == DIR_NAME_DELETED) { - // remember first empty slot - if (empty < 0) empty = index; - // done if no entries follow - if (p->name[0] == DIR_NAME_FREE) break; - } else if (!memcmp(dname, p->name, 11)) { - // don't open existing file if O_CREAT and O_EXCL - if ((oflag & (O_CREAT | O_EXCL)) == (O_CREAT | O_EXCL)) return false; - - // open existing file - return open(index, oflag); - } - } - // error if directory is full - if (empty < 0) return false; - - // only create file if O_CREAT and O_WRITE - if ((oflag & (O_CREAT | O_WRITE)) != (O_CREAT | O_WRITE)) return false; - - if (!(p = cacheDirEntry(empty, CACHE_FOR_WRITE))) return false; - - // initialize as empty file - memset(p, 0, sizeof(dir_t)); - memcpy(p->name, dname, 11); - - // set timestamps - if (dateTime_) { - // call user function - dateTime_(&p->creationDate, &p->creationTime); - } else { - // use default date/time - p->creationDate = FAT_DEFAULT_DATE; - p->creationTime = FAT_DEFAULT_TIME; - } - p->lastAccessDate = p->creationDate; - p->lastWriteDate = p->creationDate; - p->lastWriteTime = p->creationTime; - - // insure created directory entry will be written to storage device - if (!cacheFlush()) return false; - - // open entry - return open(empty, oflag); -} -//------------------------------------------------------------------------------ -/** - * Open a file by file index. - * - * \param[in] index The root directory index of the file to be opened. See \link - * Fat16::readDir() readDir()\endlink. - * - * \param[in] oflag See \link Fat16::open(const char*, uint8_t)\endlink. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include the FAT volume has not been initialized, - * a file is already open, \a index is invalid or is not the index of a - * file or the file cannot be opened in the access mode specified by oflag. - */ -uint8_t Fat16::open(uint16_t index, uint8_t oflag) { - if (!volumeInitialized_ || isOpen()) return false; - if ((oflag & O_TRUNC) && !(oflag & O_WRITE)) return false; - dir_t* d = cacheDirEntry(index); - // if bad file index or I/O error - if (!d) return false; - - // error if unused entry - if (d->name[0] == DIR_NAME_FREE || d->name[0] == DIR_NAME_DELETED) { - return false; - } - // error if long name, volume label or subdirectory - if ((d->attributes & (DIR_ATT_VOLUME_ID | DIR_ATT_DIRECTORY)) != 0) { - return false; - } - // don't allow write or truncate if read-only - if (d->attributes & DIR_ATT_READ_ONLY) { - if (oflag & (O_WRITE | O_TRUNC)) return false; - } - - curCluster_ = 0; - curPosition_ = 0; - dirEntryIndex_ = index; - fileSize_ = d->fileSize; - firstCluster_ = d->firstClusterLow; - flags_ = oflag & (O_ACCMODE | O_SYNC | O_APPEND); - - if (oflag & O_TRUNC ) return truncate(0); - return true; -} -//------------------------------------------------------------------------------ -/** %Print the name field of a directory entry in 8.3 format to Serial. - * - * \param[in] dir The directory structure containing the name. - * \param[in] width Blank fill name if length is less than \a width. - */ -void Fat16::printDirName(const dir_t& dir, uint8_t width) { - uint8_t w = 0; - for (uint8_t i = 0; i < 11; i++) { - if (dir.name[i] == ' ') continue; - if (i == 8) { - Serial.write('.'); - w++; - } - Serial.write(dir.name[i]); - w++; - } - if (DIR_IS_SUBDIR(&dir)) { - Serial.write('/'); - w++; - } - while (w < width) { - Serial.write(' '); - w++; - } -} -//------------------------------------------------------------------------------ -/** %Print a directory date field to Serial. - * - * Format is yyyy-mm-dd. - * - * \param[in] fatDate The date field from a directory entry. - */ -void Fat16::printFatDate(uint16_t fatDate) { - Serial.print(FAT_YEAR(fatDate)); - Serial.write('-'); - printTwoDigits(FAT_MONTH(fatDate)); - Serial.write('-'); - printTwoDigits(FAT_DAY(fatDate)); -} -//------------------------------------------------------------------------------ -/** %Print a directory time field to Serial. - * - * Format is hh:mm:ss. - * - * \param[in] fatTime The time field from a directory entry. - */ -void Fat16::printFatTime(uint16_t fatTime) { - printTwoDigits(FAT_HOUR(fatTime)); - Serial.write(':'); - printTwoDigits(FAT_MINUTE(fatTime)); - Serial.write(':'); - printTwoDigits(FAT_SECOND(fatTime)); -} - -//------------------------------------------------------------------------------ -/** %Print a value as two digits to Serial. - * - * \param[in] v Value to be printed, 0 <= \a v <= 99 - */ -void Fat16::printTwoDigits(uint8_t v) { - char str[3]; - str[0] = '0' + v/10; - str[1] = '0' + v % 10; - str[2] = 0; - Serial.print(str); -} -//------------------------------------------------------------------------------ -/** - * Read the next byte from a file. - * - * \return For success read returns the next byte in the file as an int. - * If an error occurs or end of file is reached -1 is returned. - */ -int16_t Fat16::read(void) { - uint8_t b; - return read(&b, 1) == 1 ? b : -1; -} -//------------------------------------------------------------------------------ -/** - * Read data from a file at starting at the current file position. - * - * \param[out] buf Pointer to the location that will receive the data. - * - * \param[in] nbyte Maximum number of bytes to read. - * - * \return For success read returns the number of bytes read. - * A value less than \a nbyte, including zero, may be returned - * if end of file is reached. - * If an error occurs, read returns -1. Possible errors include - * read called before a file has been opened, the file has not been opened in - * read mode, a corrupt file system, or an I/O error. - */ -int16_t Fat16::read(void* buf, uint16_t nbyte) { - // convert void pointer to uin8_t pointer - uint8_t* dst = reinterpret_cast(buf); - - // error if not open for read - if (!(flags_ & O_READ)) return -1; - - // don't read beyond end of file - if ((curPosition_ + nbyte) > fileSize_) nbyte = fileSize_ - curPosition_; - - // bytes left to read in loop - uint16_t nToRead = nbyte; - while (nToRead > 0) { - uint8_t blkOfCluster = blockOfCluster(curPosition_); - uint16_t blockOffset = cacheDataOffset(curPosition_); - if (blkOfCluster == 0 && blockOffset == 0) { - // start next cluster - if (curCluster_ == 0) { - curCluster_ = firstCluster_; - } else { - if (!fatGet(curCluster_, &curCluster_)) return -1; - } - // return error if bad cluster chain - if (curCluster_ < 2 || isEOC(curCluster_)) return -1; - } - // cache data block - if (!cacheRawBlock(dataBlockLba(curCluster_, blkOfCluster))) return -1; - - // location of data in cache - uint8_t* src = cacheBuffer_.data + blockOffset; - - // max number of byte available in block - uint16_t n = 512 - blockOffset; - - // lesser of available and amount to read - if (n > nToRead) n = nToRead; - - // copy data to caller - memcpy(dst, src, n); - - curPosition_ += n; - dst += n; - nToRead -= n; - } - return nbyte; -} -//------------------------------------------------------------------------------ -/** - * Read the next short, 8.3, directory entry. - * - * Unused entries and entries for long names are skipped. - * - * \param[out] dir Location that will receive the entry. - * - * \param[in,out] index The search starts at \a index and \a index is - * updated with the root directory index of the found directory entry. - * If the entry is a file, it may be opened by calling - * \link Fat16::open(uint16_t, uint8_t) \endlink. - * - * \param[in] skip Skip entries that have these attributes. If \a skip - * is not specified, the default is to skip the volume label and directories. - * - * \return The value one, true, is returned for success and the value zero, - * false, is returned if an error occurs or the end of the root directory is - * reached. On success, \a entry is set to the index of the found directory - * entry. - */ -uint8_t Fat16::readDir(dir_t* dir, uint16_t* index, uint8_t skip) { - dir_t* p; - for (uint16_t i = *index; ; i++) { - if (i >= rootDirEntryCount_) return false; - if (!(p = cacheDirEntry(i))) return false; - - // done if beyond last used entry - if (p->name[0] == DIR_NAME_FREE) return false; - - // skip deleted entry - if (p->name[0] == DIR_NAME_DELETED) continue; - - // skip long names - if ((p->attributes & DIR_ATT_LONG_NAME_MASK) == DIR_ATT_LONG_NAME) continue; - - // skip if attribute match - if (p->attributes & skip) continue; - - // return found index - *index = i; - break; - } - memcpy(dir, p, sizeof(dir_t)); - return true; -} -//------------------------------------------------------------------------------ -/** - * Remove a file. The directory entry and all data for the file are deleted. - * - * \note This function should not be used to delete the 8.3 version of a - * file that has a long name. For example if a file has the long name - * "New Text Document.txt" you should not delete the 8.3 name "NEWTEX~1.TXT". - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include the file is not open for write - * or an I/O error occurred. - */ -uint8_t Fat16::remove(void) { - // error if file is not open for write - if (!(flags_ & O_WRITE)) return false; - if (firstCluster_) { - if (!freeChain(firstCluster_)) return false; - } - dir_t* d = cacheDirEntry(dirEntryIndex_, CACHE_FOR_WRITE); - if (!d) return false; - d->name[0] = DIR_NAME_DELETED; - flags_ = 0; - return cacheFlush(); -} -//------------------------------------------------------------------------------ -/** - * Remove a file. - * - * The directory entry and all data for the file are deleted. - * - * \param[in] fileName The name of the file to be removed. - * - * \note This function should not be used to delete the 8.3 version of a - * file that has a long name. For example if a file has the long name - * "New Text Document.txt" you should not delete the 8.3 name "NEWTEX~1.TXT". - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include the file is read only, \a fileName is not found - * or an I/O error occurred. - */ -uint8_t Fat16::remove(const char* fileName) { - Fat16 file; - if (!file.open(fileName, O_WRITE)) return false; - return file.remove(); -} -//------------------------------------------------------------------------------ -/** - * Sets the file's read/write position. - * - * \param[in] pos The new position in bytes from the beginning of the file. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - */ -uint8_t Fat16::seekSet(uint32_t pos) { - // error if file not open or seek past end of file - if (!isOpen() || pos > fileSize_) return false; - if (pos == 0) { - // set position to start of file - curCluster_ = 0; - curPosition_ = 0; - return true; - } - fat_t n = ((pos - 1) >> 9)/blocksPerCluster_; - if (pos < curPosition_ || curPosition_ == 0) { - // must follow chain from first cluster - curCluster_ = firstCluster_; - } else { - // advance from curPosition - n -= ((curPosition_ - 1) >> 9)/blocksPerCluster_; - } - while (n--) { - if (!fatGet(curCluster_, &curCluster_)) return false; - } - curPosition_ = pos; - return true; -} -//------------------------------------------------------------------------------ -/** - * The sync() call causes all modified data and directory fields - * to be written to the storage device. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include a call to sync() before a file has been - * opened or an I/O error. - */ -uint8_t Fat16::sync(void) { - if (flags_ & F_FILE_DIR_DIRTY) { - // cache directory entry - dir_t* d = cacheDirEntry(dirEntryIndex_, CACHE_FOR_WRITE); - if (!d) return false; - - // update file size and first cluster - d->fileSize = fileSize_; - d->firstClusterLow = firstCluster_; - - // set modify time if user supplied a callback date/time function - if (dateTime_) { - dateTime_(&d->lastWriteDate, &d->lastWriteTime); - d->lastAccessDate = d->lastWriteDate; - } - flags_ &= ~F_FILE_DIR_DIRTY; - } - return cacheFlush(); -} -//------------------------------------------------------------------------------ -/** - * The timestamp() call sets a file's timestamps in its directory entry. - * - * \param[in] flags Values for \a flags are constructed by a bitwise-inclusive - * OR of flags from the following list - * - * T_ACCESS - Set the file's last access date. - * - * T_CREATE - Set the file's creation date and time. - * - * T_WRITE - Set the file's last write/modification date and time. - * - * \param[in] year Valid range 1980 - 2107 inclusive. - * - * \param[in] month Valid range 1 - 12 inclusive. - * - * \param[in] day Valid range 1 - 31 inclusive. - * - * \param[in] hour Valid range 0 - 23 inclusive. - * - * \param[in] minute Valid range 0 - 59 inclusive. - * - * \param[in] second Valid range 0 - 59 inclusive - * - * \note It is possible to set an invalid date since there is no check for - * the number of days in a month. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - */ -uint8_t Fat16::timestamp(uint8_t flags, uint16_t year, uint8_t month, - uint8_t day, uint8_t hour, uint8_t minute, uint8_t second) { - if (!isOpen() - || year < 1980 - || year > 2107 - || month < 1 - || month > 12 - || day < 1 - || day > 31 - || hour > 23 - || minute > 59 - || second > 59) { - return false; - } - dir_t* d = cacheDirEntry(dirEntryIndex_, CACHE_FOR_WRITE); - if (!d) return false; - uint16_t dirDate = FAT_DATE(year, month, day); - uint16_t dirTime = FAT_TIME(hour, minute, second); - if (flags & T_ACCESS) { - d->lastAccessDate = dirDate; - } - if (flags & T_CREATE) { - d->creationDate = dirDate; - d->creationTime = dirTime; - // seems to be units of 1/100 second not 1/10 as Microsoft standard states - d->creationTimeTenths = second & 1 ? 100 : 0; - } - if (flags & T_WRITE) { - d->lastWriteDate = dirDate; - d->lastWriteTime = dirTime; - } - cacheSetDirty(); - return sync(); -} -//------------------------------------------------------------------------------ -/** - * Truncate a file to a specified length. The current file position - * will be maintained if it is less than or equal to \a length otherwise - * it will be set to end of file. - * - * \param[in] length The desired length for the file. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * Reasons for failure include file is read only, file is a directory, - * \a length is greater than the current file size or an I/O error occurs. - */ -uint8_t Fat16::truncate(uint32_t length) { - // error if file is not open for write - if (!(flags_ & O_WRITE)) return false; - - if (length > fileSize_) return false; - - // fileSize and length are zero - nothing to do - if (fileSize_ == 0) return true; - uint32_t newPos = curPosition_ > length ? length : curPosition_; - if (length == 0) { - // free all clusters - if (!freeChain(firstCluster_)) return false; - curCluster_ = firstCluster_ = 0; - } else { - fat_t toFree; - if (!seekSet(length)) return false; - if (!fatGet(curCluster_, &toFree)) return false; - if (!isEOC(toFree)) { - // free extra clusters - if (!fatPut(curCluster_, FAT16EOC)) return false; - if (!freeChain(toFree)) return false; - } - } - fileSize_ = length; - flags_ |= F_FILE_DIR_DIRTY; - if (!sync()) return false; - return seekSet(newPos); -} -//------------------------------------------------------------------------------ -/** - * Write data at the current position of an open file. - * - * \note Data is moved to the cache but may not be written to the - * storage device until sync() is called. - * - * \param[in] buf Pointer to the location of the data to be written. - * - * \param[in] nbyte Number of bytes to write. - * - * \return For success write() returns the number of bytes written, always - * \a nbyte. If an error occurs, write() returns -1. Possible errors include - * write() is called before a file has been opened, the file has not been opened - * for write, device is full, a corrupt file system or an I/O error. - * - */ -int16_t Fat16::write(const void* buf, uint16_t nbyte) { - uint16_t nToWrite = nbyte; - const uint8_t* src = reinterpret_cast(buf); - - // error if file is not open for write - if (!(flags_ & O_WRITE)) goto writeErrorReturn; - - // go to end of file if O_APPEND - if ((flags_ & O_APPEND) && curPosition_ != fileSize_) { - if (!seekEnd()) goto writeErrorReturn; - } - while (nToWrite > 0) { - uint8_t blkOfCluster = blockOfCluster(curPosition_); - uint16_t blockOffset = cacheDataOffset(curPosition_); - if (blkOfCluster == 0 && blockOffset == 0) { - // start of new cluster - if (curCluster_ == 0) { - if (firstCluster_ == 0) { - // allocate first cluster of file - if (!addCluster()) goto writeErrorReturn; - } else { - curCluster_ = firstCluster_; - } - } else { - fat_t next; - if (!fatGet(curCluster_, &next)) goto writeErrorReturn; - if (isEOC(next)) { - // add cluster if at end of chain - if (!addCluster()) goto writeErrorReturn; - } else { - curCluster_ = next; - } - } - } - uint32_t lba = dataBlockLba(curCluster_, blkOfCluster); - if (blockOffset == 0 && curPosition_ >= fileSize_) { - // start of new block don't need to read into cache - if (!cacheFlush()) goto writeErrorReturn; - cacheBlockNumber_ = lba; - cacheSetDirty(); - } else { - // rewrite part of block - if (!cacheRawBlock(lba, CACHE_FOR_WRITE)) return -1; - } - uint8_t* dst = cacheBuffer_.data + blockOffset; - - // max space in block - uint16_t n = 512 - blockOffset; - - // lesser of space and amount to write - if (n > nToWrite) n = nToWrite; - - // copy data to cache - memcpy(dst, src, n); - - curPosition_ += n; - nToWrite -= n; - src += n; - } - if (curPosition_ > fileSize_) { - // update fileSize and insure sync will update dir entry - fileSize_ = curPosition_; - flags_ |= F_FILE_DIR_DIRTY; - } else if (dateTime_ && nbyte) { - // insure sync will update modified date and time - flags_ |= F_FILE_DIR_DIRTY; - } - - if (flags_ & O_SYNC) { - if (!sync()) goto writeErrorReturn; - } - return nbyte; - - writeErrorReturn: - writeError = true; - return -1; -} -//------------------------------------------------------------------------------ -/** - * Write a byte to a file. Required by the Arduino Print class. - * - * Use Fat16::writeError to check for errors. - */ -#if ARDUINO < 100 -void Fat16::write(uint8_t b) { - write(&b, 1); -} -#else // ARDUINO < 100 -size_t Fat16::write(uint8_t b) { - return write(&b, 1) == 1 ? 1 : 0; -} -#endif // ARDUINO < 100 -//------------------------------------------------------------------------------ -/** - * Write a string to a file. Used by the Arduino Print class. - * - * Use Fat16::writeError to check for errors. - */ -#if ARDUINO < 100 -void Fat16::write(const char* str) { - write(str, strlen(str)); -} -#else // ARDUINO < 100 -int16_t Fat16::write(const char* str) { - return write(str, strlen(str)); -} -#endif // ARDUINO < 100 -//------------------------------------------------------------------------------ -/** - * Write a PROGMEM string to a file. - * - * Use Fat16::writeError to check for errors. - */ -void Fat16::write_P(PGM_P str) { - for (uint8_t c; (c = pgm_read_byte(str)); str++) write(c); -} -//------------------------------------------------------------------------------ -/** - * Write a PROGMEM string followed by CR/LF to a file. - * - * Use Fat16::writeError to check for errors. - */ -void Fat16::writeln_P(PGM_P str) { - write_P(str); - println(); -} diff --git a/libraries/Robot_Control/src/Fat16.h b/libraries/Robot_Control/src/Fat16.h deleted file mode 100644 index 935b9b048f7..00000000000 --- a/libraries/Robot_Control/src/Fat16.h +++ /dev/null @@ -1,378 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -#ifndef Fat16_h -#define Fat16_h -/** - * \file - * Fat16 class - */ -#include -#include -#include -#include -#include -#include -//------------------------------------------------------------------------------ -/** Fat16 version YYYYMMDD */ -#define FAT16_VERSION 20111205 -//------------------------------------------------------------------------------ -// flags for ls() -/** ls() flag to print modify date */ -uint8_t const LS_DATE = 1; -/** ls() flag to print file size */ -uint8_t const LS_SIZE = 2; - -// use the gnu style oflags -/** open for reading */ -uint8_t const O_READ = 0X01; -/** same as O_READ */ -uint8_t const O_RDONLY = O_READ; -/** open for write */ -uint8_t const O_WRITE = 0X02; -/** same as O_WRITE */ -uint8_t const O_WRONLY = O_WRITE; -/** open for reading and writing */ -uint8_t const O_RDWR = O_READ | O_WRITE; -/** mask for access modes */ -uint8_t const O_ACCMODE = O_READ | O_WRITE; -/** The file offset shall be set to the end of the file prior to each write. */ -uint8_t const O_APPEND = 0X04; -/** synchronous writes - call sync() after each write */ -uint8_t const O_SYNC = 0X08; -/** create the file if nonexistent */ -uint8_t const O_CREAT = 0X10; -/** If O_CREAT and O_EXCL are set, open() shall fail if the file exists */ -uint8_t const O_EXCL = 0X20; -/** truncate the file to zero length */ -uint8_t const O_TRUNC = 0X40; - -// flags for timestamp -/** set the file's last access date */ -uint8_t const T_ACCESS = 1; -/** set the file's creation date and time */ -uint8_t const T_CREATE = 2; -/** Set the file's write date and time */ -uint8_t const T_WRITE = 4; - -/** date field for FAT directory entry */ -static inline uint16_t FAT_DATE(uint16_t year, uint8_t month, uint8_t day) { - return (year - 1980) << 9 | month << 5 | day; -} -/** year part of FAT directory date field */ -static inline uint16_t FAT_YEAR(uint16_t fatDate) { - return 1980 + (fatDate >> 9); -} -/** month part of FAT directory date field */ -static inline uint8_t FAT_MONTH(uint16_t fatDate) { - return (fatDate >> 5) & 0XF; -} -/** day part of FAT directory date field */ -static inline uint8_t FAT_DAY(uint16_t fatDate) { - return fatDate & 0X1F; -} -/** time field for FAT directory entry */ -static inline uint16_t FAT_TIME(uint8_t hour, uint8_t minute, uint8_t second) { - return hour << 11 | minute << 5 | second >> 1; -} -/** hour part of FAT directory time field */ -static inline uint8_t FAT_HOUR(uint16_t fatTime) { - return fatTime >> 11; -} -/** minute part of FAT directory time field */ -static inline uint8_t FAT_MINUTE(uint16_t fatTime) { - return(fatTime >> 5) & 0X3F; -} -/** second part of FAT directory time field */ -static inline uint8_t FAT_SECOND(uint16_t fatTime) { - return 2*(fatTime & 0X1F); -} -/** Default date for file timestamps is 1 Jan 2000 */ -uint16_t const FAT_DEFAULT_DATE = ((2000 - 1980) << 9) | (1 << 5) | 1; -/** Default time for file timestamp is 1 am */ -uint16_t const FAT_DEFAULT_TIME = (1 << 11); -//------------------------------------------------------------------------------ -/** - * \typedef fat_t - * - * \brief Type for FAT16 entry - */ -typedef uint16_t fat_t; -/** - * \union cache16_t - * - * \brief Cache buffer data type - * - */ -union cache16_t { - /** Used to access cached file data blocks. */ - uint8_t data[512]; - /** Used to access cached FAT entries. */ - fat_t fat[256]; - /** Used to access cached directory entries. */ - dir_t dir[16]; - /** Used to access a cached Master Boot Record. */ - mbr_t mbr; - /** Used to access to a cached FAT16 boot sector. */ - fbs_t fbs; -}; -//------------------------------------------------------------------------------ -/** \class Fat16 - * \brief Fat16 implements a minimal Arduino FAT16 Library - * - * Fat16 does not support subdirectories or long file names. - */ -class Fat16 : public Print { - public: - /* - * Public functions - */ - /** create with file closed */ - Fat16(void) : flags_(0) {} - /** \return The current cluster number. */ - fat_t curCluster(void) const {return curCluster_;} - uint8_t close(void); - /** \return The count of clusters in the FAT16 volume. */ - static fat_t clusterCount(void) {return clusterCount_;} - /** \return The number of 512 byte blocks in a cluster */ - static uint8_t clusterSize(void) {return blocksPerCluster_;} - /** \return The current file position. */ - uint32_t curPosition(void) const {return curPosition_;} - /** - * Set the date/time callback function - * - * \param[in] dateTime The user's callback function. The callback - * function is of the form: - * - * \code - * void dateTime(uint16_t* date, uint16_t* time) { - * uint16_t year; - * uint8_t month, day, hour, minute, second; - * - * // User gets date and time from GPS or real-time clock here - * - * // return date using FAT_DATE macro to format fields - * *date = FAT_DATE(year, month, day); - * - * // return time using FAT_TIME macro to format fields - * *time = FAT_TIME(hour, minute, second); - * } - * \endcode - * - * Sets the function that is called when a file is created or when - * a file's directory entry is modified by sync(). All timestamps, - * access, creation, and modify, are set when a file is created. - * sync() maintains the last access date and last modify date/time. - * - * See the timestamp() function. - */ - static void dateTimeCallback( - void (*dateTime)(uint16_t* date, uint16_t* time)) { - dateTime_ = dateTime; - } - /** - * Cancel the date/time callback function. - */ - static void dateTimeCallbackCancel(void) {dateTime_ = NULL;} - uint8_t dirEntry(dir_t* dir); - - /** \return The file's size in bytes. */ - uint32_t fileSize(void) const {return fileSize_;} - static uint8_t init(SdCard* dev, uint8_t part); - /** - * Initialize a FAT16 volume. - * - * First try partition 1 then try super floppy format. - * - * \param[in] dev The SdCard where the volume is located. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. reasons for - * failure include not finding a valid FAT16 file system, a call - * to init() after a volume has been successful initialized or - * an I/O error. - * - */ - static uint8_t init(SdCard* dev) { - return init(dev, 1) ? true : init(dev, 0); - } - /** - * Checks the file's open/closed status for this instance of Fat16. - * \return The value true if a file is open otherwise false; - */ - uint8_t isOpen(void) const {return (flags_ & O_ACCMODE) != 0;} - static void ls(uint8_t flags = 0); - uint8_t open(const char* fileName, uint8_t oflag); - uint8_t open(uint16_t entry, uint8_t oflag); - static void printDirName(const dir_t& dir, uint8_t width); - static void printFatDate(uint16_t fatDate); - static void printFatTime(uint16_t fatTime); - static void printTwoDigits(uint8_t v); - int16_t read(void); - int16_t read(void* buf, uint16_t nbyte); - static uint8_t readDir(dir_t* dir, uint16_t* index, - uint8_t skip = (DIR_ATT_VOLUME_ID | DIR_ATT_DIRECTORY)); - - uint8_t remove(void); - static uint8_t remove(const char* fileName); - /** Sets the file's current position to zero. */ - void rewind(void) {curPosition_ = curCluster_ = 0;} - /** \return The number of entries in the root directory. */ - static uint16_t rootDirEntryCount(void) {return rootDirEntryCount_;} - /** Seek to current position plus \a pos bytes. See Fat16::seekSet(). */ - uint8_t seekCur(uint32_t pos) {return seekSet(curPosition_ + pos);} - /** Seek to end of file. See Fat16::seekSet(). */ - uint8_t seekEnd(void) {return seekSet(fileSize_);} - uint8_t seekSet(uint32_t pos); - uint8_t sync(void); - uint8_t timestamp(uint8_t flag, uint16_t year, uint8_t month, uint8_t day, - uint8_t hour, uint8_t minute, uint8_t second); - uint8_t truncate(uint32_t size); - /** Fat16::writeError is set to true if an error occurs during a write(). - * Set Fat16::writeError to false before calling print() and/or write() and check - * for true after calls to write() and/or print(). - */ - bool writeError; - int16_t write(const void *buf, uint16_t nbyte); -#if ARDUINO < 100 - void write(uint8_t b); - void write(const char* str); -#else // ARDUINO < 100 - size_t write(uint8_t b); - int16_t write(const char* str); -#endif // ARDUINO < 100 - void write_P(PGM_P str); - void writeln_P(PGM_P str); -//------------------------------------------------------------------------------ -#if FAT16_DEBUG_SUPPORT - /** For debug only. Do not use in applications. */ - static cache16_t* dbgBufAdd(void) {return &cacheBuffer_;} - /** For debug only. Do not use in applications. */ - static void dbgSetDev(SdCard* dev) {rawDev_ = dev;} - /** For debug only. Do not use in applications. */ - static uint8_t* dbgCacheBlock(uint32_t blockNumber) { - return cacheRawBlock(blockNumber) ? cacheBuffer_.data : 0; } - /** For debug only. Do not use in applications. */ - static dir_t* dbgCacheDir(uint16_t index) { - return cacheDirEntry(index);} -#endif // FAT16_DEBUG_SUPPORT -//------------------------------------------------------------------------------ -#if ALLOW_DEPRECATED_FUNCTIONS -// Deprecated functions - suppress cpplint messages with NOLINT comment - public: - /** - * Deprecated - Use: - * static void Fat16::dateTimeCallback( - * void (*dateTime)(uint16_t* date, uint16_t* time)); - */ - static void dateTimeCallback( - void (*dateTime)(uint16_t& date, uint16_t& time)) { // NOLINT - oldDateTime_ = dateTime; - dateTime_ = dateTime ? oldToNew : 0; - } - /** Deprecated - Use: uint8_t Fat16::dirEntry(dir_t* dir); */ - uint8_t dirEntry(dir_t& dir) { // NOLINT - return dirEntry(&dir); - } - /** Deprecated - Use: static uint8_t Fat16::init(SdCard *dev); */ - static uint8_t init(SdCard& dev) {return init(&dev);} // NOLINT - - /** Deprecated - Use: static uint8_t Fat16::init(SdCard *dev, uint8_t part) */ - static uint8_t init(SdCard& dev, uint8_t part) { // NOLINT - return init(&dev, part); - } - /** - * Deprecated - Use: - * uint8_t Fat16::readDir(dir_t* dir, uint16_t* index, uint8_t skip); - */ - static uint8_t readDir(dir_t& dir, uint16_t& index, // NOLINT - uint8_t skip = (DIR_ATT_VOLUME_ID | DIR_ATT_DIRECTORY)) { - return readDir(&dir, &index, skip); - } -//------------------------------------------------------------------------------ - private: - static void (*oldDateTime_)(uint16_t& date, uint16_t& time); // NOLINT - static void oldToNew(uint16_t *date, uint16_t *time) { - uint16_t d; - uint16_t t; - oldDateTime_(d, t); - *date = d; - *time = t; - } -#endif // ALLOW_DEPRECATED_FUNCTIONS -//------------------------------------------------------------------------------ - private: - // Volume info - static uint8_t volumeInitialized_; // true if volume has been initialized - static uint8_t fatCount_; // number of FATs - static uint8_t blocksPerCluster_; // must be power of 2 - static uint16_t rootDirEntryCount_; // should be 512 for FAT16 - static fat_t blocksPerFat_; // number of blocks in one FAT - static fat_t clusterCount_; // total clusters in volume - static uint32_t fatStartBlock_; // start of first FAT - static uint32_t rootDirStartBlock_; // start of root dir - static uint32_t dataStartBlock_; // start of data clusters - - // block cache - static uint8_t const CACHE_FOR_READ = 0; // cache a block for read - static uint8_t const CACHE_FOR_WRITE = 1; // cache a block and set dirty - static SdCard *rawDev_; // Device - static cache16_t cacheBuffer_; // 512 byte cache for raw blocks - static uint32_t cacheBlockNumber_; // Logical number of block in the cache - static uint8_t cacheDirty_; // cacheFlush() will write block if true - static uint32_t cacheMirrorBlock_; // mirror block for second FAT - - // callback function for date/time - static void (*dateTime_)(uint16_t* date, uint16_t* time); - - // define fields in flags_ - static uint8_t const F_OFLAG = O_ACCMODE | O_APPEND | O_SYNC; - static uint8_t const F_FILE_DIR_DIRTY = 0X80; // require sync directory entry - - uint8_t flags_; // see above for bit definitions - int16_t dirEntryIndex_; // index of directory entry for open file - fat_t firstCluster_; // first cluster of file - uint32_t fileSize_; // fileSize - fat_t curCluster_; // current cluster - uint32_t curPosition_; // current byte offset - - // private functions for cache - static uint8_t blockOfCluster(uint32_t position) { - // depends on blocks per cluster being power of two - return (position >> 9) & (blocksPerCluster_ - 1); - } - static uint16_t cacheDataOffset(uint32_t position) {return position & 0X1FF;} - static dir_t* cacheDirEntry(uint16_t index, uint8_t action = 0); - static uint8_t cacheRawBlock(uint32_t blockNumber, uint8_t action = 0); - static uint8_t cacheFlush(void); - static void cacheSetDirty(void) {cacheDirty_ |= CACHE_FOR_WRITE;} - static uint32_t dataBlockLba(fat_t cluster, uint8_t blockOfCluster) { - return dataStartBlock_ + (uint32_t)(cluster - 2) * blocksPerCluster_ - + blockOfCluster; - } - static uint8_t fatGet(fat_t cluster, fat_t* value); - static uint8_t fatPut(fat_t cluster, fat_t value); - // end of chain test - static uint8_t isEOC(fat_t cluster) {return cluster >= 0XFFF8;} - // allocate a cluster to a file - uint8_t addCluster(void); - // free a cluster chain - uint8_t freeChain(fat_t cluster); -}; -#endif // Fat16_h diff --git a/libraries/Robot_Control/src/Fat16Config.h b/libraries/Robot_Control/src/Fat16Config.h deleted file mode 100644 index d598b56093e..00000000000 --- a/libraries/Robot_Control/src/Fat16Config.h +++ /dev/null @@ -1,38 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ - /** - * \file - * Configuration file - */ -#ifndef Fat16Config_h -#define Fat16Config_h -/** - * Allow use of deprecated functions if non-zero - */ -#define ALLOW_DEPRECATED_FUNCTIONS 1 -/** - * SdCard::writeBlock will protect block zero if set non-zero - */ -#define SD_PROTECT_BLOCK_ZERO 1 -/** - * Set non-zero to allow access to Fat16 internals by cardInfo debug sketch - */ -#define FAT16_DEBUG_SUPPORT 1 -#endif // Fat16Config_h diff --git a/libraries/Robot_Control/src/Fat16mainpage.h b/libraries/Robot_Control/src/Fat16mainpage.h deleted file mode 100644 index 2c4f773b3c7..00000000000 --- a/libraries/Robot_Control/src/Fat16mainpage.h +++ /dev/null @@ -1,208 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ - -/** -\mainpage Arduino Fat16 Library -
Copyright © 2008 by William Greiman -
- -\section Intro Introduction -The Arduino Fat16 Library is a minimal implementation of the FAT16 file system -on standard SD flash memory cards. Fat16 supports read, write, file -creation, deletion, and truncation. - -The Fat16 class only supports access to files in the root directory and only -supports short 8.3 names. Directory time and date fields for creation -and modification can be maintained by providing a date/time callback -function \link Fat16::dateTimeCallback() dateTimeCallback()\endlink -or calling \link Fat16::timestamp() timestamp()\endlink. - -Fat16 was designed to use the Arduino Print class which -allows files to be written with \link Print::print() print() \endlink and -\link Print::println() println()\endlink. - -\section comment Bugs and Comments - -If you wish to report bugs or have comments, send email to fat16lib@sbcglobal.net. - - -\section SDcard SD Cards - -Arduinos access SD cards using the cards SPI protocol. PCs, Macs, and -most consumer devices use the 4-bit parallel SD protocol. A card that -functions well on A PC or Mac may not work well on the Arduino. - -Most cards have good SPI read performance but cards vary widely in SPI -write performance. Write performance is limited by how efficiently the -card manages internal erase/remapping operations. The Arduino cannot -optimize writes to reduce erase operations because of its limit RAM. - -SanDisk cards generally have good write performance. They seem to have -more internal RAM buffering than other cards and therefore can limit -the number of flash erase operations that the Arduino forces due to its -limited RAM. - -Some Dane-Elec cards have a write speed that is only 20% as fast as -a good SanDisk card. - - -\section Hardware Hardware Configuration -Fat16 was developed using an Adafruit Industries - GPS Shield. - -The hardware interface to the SD card should not use a resistor based level -shifter. SdCard::init() sets the SPI bus frequency to 8 MHz which results in -signal rise times that are too slow for the edge detectors in many newer SD card -controllers when resistor voltage dividers are used. - -The 5 to 3.3 V level shifter for 5 V arduinos should be IC based like the -74HC4050N based circuit shown in the file SdLevel.png. The Adafruit Wave Shield -uses a 74AHC125N. Gravitech sells SD and MicroSD Card Adapters based on the -74LCX245. - -If you are using a resistor based level shifter and are having problems try -setting the SPI bus frequency to 4 MHz. This can be done by using -card.init(true) to initialize the SD card. - - -\section Fat16Class Fat16 Usage - -The class Fat16 is a minimal implementation of FAT16 on standard SD cards. -High Capacity SD cards, SDHC, are not supported. It should work on all -standard cards from 8MB to 2GB formatted with a FAT16 file system. - -\note - The Arduino Print class uses character -at a time writes so it was necessary to use a \link Fat16::sync() sync() \endlink -function to control when data is written to the SD card. - -\par -An application which writes to a file using \link Print::print() print()\endlink, -\link Print::println() println() \endlink -or \link Fat16::write write() \endlink must call \link Fat16::sync() sync() \endlink -at the appropriate time to force data and directory information to be written -to the SD Card. Data and directory information are also written to the SD card -when \link Fat16::close() close() \endlink is called. - -\par -Applications must use care calling \link Fat16::sync() sync() \endlink -since 2048 bytes of I/O is required to update file and -directory information. This includes writing the current data block, reading -the block that contains the directory entry for update, writing the directory -block back and reading back the current data block. - -Fat16 only supports access to files in the root directory and only supports -short 8.3 names. - -It is possible to open a file with two or more instances of Fat16. A file may -be corrupted if data is written to the file by more than one instance of Fat16. - -Short names are limited to 8 characters followed by an optional period (.) -and extension of up to 3 characters. The characters may be any combination -of letters and digits. The following special characters are also allowed: - -$ % ' - _ @ ~ ` ! ( ) { } ^ # & - -Short names are always converted to upper case and their original case -value is lost. - -Fat16 uses a slightly restricted form of short names. -Only printable ASCII characters are supported. No characters with code point -values greater than 127 are allowed. Space is not allowed even though space -was allowed in the API of early versions of DOS. - -Fat16 has been optimized for The Arduino ATmega168. Minimizing RAM use is the -highest priority goal followed by flash use and finally performance. -Most SD cards only support 512 byte block write operations so a 512 byte -cache buffer is used by Fat16. This is the main use of RAM. A small -amount of RAM is used to store key volume and file information. -Flash memory usage can be controlled by selecting options in Fat16Config.h. - -\section HowTo How to format SD Cards as FAT16 Volumes - -Microsoft operating systems support removable media formatted with a -Master Boot Record, MBR, or formatted as a super floppy with a FAT Boot Sector -in block zero. - -Microsoft operating systems expect MBR formatted removable media -to have only one partition. The first partition should be used. - -Microsoft operating systems do not support partitioning SD flash cards. -If you erase an SD card with a program like KillDisk, Most versions of -Windows will format the card as a super floppy. - -The best way to restore an SD card's MBR is to use SDFormatter -which can be downloaded from: - -http://www.sdcard.org/consumers/formatter/ - -SDFormatter does not have an option for FAT type so it may format -small cards as FAT12. - -After the MBR is restored by SDFormatter you may need to reformat small -cards that have been formatted FAT12 to force the volume type to be FAT16. - -The FAT type, FAT12, FAT16, or FAT32, is determined by the count -of clusters on the volume and nothing else. - -Microsoft published the following code for determining FAT type: - -\code -if (CountOfClusters < 4085) { - // Volume is FAT12 -} -else if (CountOfClusters < 65525) { - // Volume is FAT16 -} -else { - // Volume is FAT32 -} - -\endcode -If you format a FAT volume with an OS utility , choose a cluster size that -will result in: - -4084 < CountOfClusters && CountOfClusters < 65525 - -The volume will then be FAT16. - -If you are formatting an SD card on OS X or Linux, be sure to use the first -partition. Format this partition with a cluster count in above range. - -\section References References - -The Arduino site: - -http://www.arduino.cc/ - -For more information about FAT file systems see: - -http://www.microsoft.com/whdc/system/platform/firmware/fatgen.mspx - -For information about using SD cards as SPI devices see: - -http://www.sdcard.org/developers/tech/sdcard/pls/Simplified_Physical_Layer_Spec.pdf - -The ATmega328 datasheet: - -http://www.atmel.com/dyn/resources/prod_documents/doc8161.pdf - - - */ \ No newline at end of file diff --git a/libraries/Robot_Control/src/Fat16util.h b/libraries/Robot_Control/src/Fat16util.h deleted file mode 100644 index 1fea068ecc6..00000000000 --- a/libraries/Robot_Control/src/Fat16util.h +++ /dev/null @@ -1,74 +0,0 @@ -#ifndef Fat16util_h -#define Fat16util_h -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -/** - * \file - * Useful utility functions. - */ -#if ARDUINO < 100 -#include -#else // ARDUINO -#include -#endif // ARDUINO -#include -/** Store and print a string in flash memory.*/ -#define PgmPrint(x) SerialPrint_P(PSTR(x)) -/** Store and print a string in flash memory followed by a CR/LF.*/ -#define PgmPrintln(x) SerialPrintln_P(PSTR(x)) -/** Defined so doxygen works for function definitions. */ -#define NOINLINE __attribute__((noinline)) -//------------------------------------------------------------------------------ -/** Return the number of bytes currently free in RAM. */ -static int FreeRam(void) { - extern int __bss_end; - extern int* __brkval; - int free_memory; - if (reinterpret_cast(__brkval) == 0) { - // if no heap use from end of bss section - free_memory = reinterpret_cast(&free_memory) - - reinterpret_cast(&__bss_end); - } else { - // use from top of stack to heap - free_memory = reinterpret_cast(&free_memory) - - reinterpret_cast(__brkval); - } - return free_memory; -} -//------------------------------------------------------------------------------ -/** - * %Print a string in flash memory to the serial port. - * - * \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.write(c); -} -//------------------------------------------------------------------------------ -/** - * %Print a string in flash memory followed by a CR/LF. - * - * \param[in] str Pointer to string stored in flash memory. - */ -static NOINLINE void SerialPrintln_P(PGM_P str) { - SerialPrint_P(str); - Serial.println(); -} -#endif // #define Fat16util_h diff --git a/libraries/Robot_Control/src/FatStructs.h b/libraries/Robot_Control/src/FatStructs.h deleted file mode 100644 index 431bf307712..00000000000 --- a/libraries/Robot_Control/src/FatStructs.h +++ /dev/null @@ -1,418 +0,0 @@ -/* Arduino Fat16 Library - * Copyright (C) 2009 by William Greiman - * - * This file is part of the Arduino Fat16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - * - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -#ifndef FatStructs_h -#define FatStructs_h -/** - * \file - * FAT file structures - */ -/* - * mostly from Microsoft document fatgen103.doc - * http://www.microsoft.com/whdc/system/platform/firmware/fatgen.mspx - */ -//------------------------------------------------------------------------------ -/** Value for byte 510 of boot block or MBR */ -uint8_t const BOOTSIG0 = 0X55; -/** Value for byte 511 of boot block or MBR */ -uint8_t const BOOTSIG1 = 0XAA; -//------------------------------------------------------------------------------ -/** - * \struct partitionTable - * \brief MBR partition table entry - * - * A partition table entry for a MBR formatted storage device. - * The MBR partition table has four entries. - */ -struct partitionTable { - /** - * Boot Indicator . Indicates whether the volume is the active - * partition. Legal values include: 0X00. Do not use for booting. - * 0X80 Active partition. - */ - uint8_t boot; - /** - * Head part of Cylinder-head-sector address of the first block in - * the partition. Legal values are 0-255. Only used in old PC BIOS. - */ - uint8_t beginHead; - /** - * Sector part of Cylinder-head-sector address of the first block in - * the partition. Legal values are 1-63. Only used in old PC BIOS. - */ - unsigned beginSector : 6; - /** High bits cylinder for first block in partition. */ - unsigned beginCylinderHigh : 2; - /** - * Combine beginCylinderLow with beginCylinderHigh. Legal values - * are 0-1023. Only used in old PC BIOS. - */ - uint8_t beginCylinderLow; - /** - * Partition type. See defines that begin with PART_TYPE_ for - * some Microsoft partition types. - */ - uint8_t type; - /** - * head part of cylinder-head-sector address of the last sector in the - * partition. Legal values are 0-255. Only used in old PC BIOS. - */ - uint8_t endHead; - /** - * Sector part of cylinder-head-sector address of the last sector in - * the partition. Legal values are 1-63. Only used in old PC BIOS. - */ - unsigned endSector : 6; - /** High bits of end cylinder */ - unsigned endCylinderHigh : 2; - /** - * Combine endCylinderLow with endCylinderHigh. Legal values - * are 0-1023. Only used in old PC BIOS. - */ - uint8_t endCylinderLow; - /** Logical block address of the first block in the partition. */ - uint32_t firstSector; - /** Length of the partition, in blocks. */ - uint32_t totalSectors; -}; -/** Type name for partitionTable */ -typedef struct partitionTable part_t; -//------------------------------------------------------------------------------ -/** - * \struct masterBootRecord - * - * \brief Master Boot Record - * - * The first block of a storage device that is formatted with a MBR. - */ -struct masterBootRecord { - /** Code Area for master boot program. */ - uint8_t codeArea[440]; - /** Optional WindowsNT disk signature. May contain more boot code. */ - uint32_t diskSignature; - /** Usually zero but may be more boot code. */ - uint16_t usuallyZero; - /** Partition tables. */ - part_t part[4]; - /** First MBR signature byte. Must be 0X55 */ - uint8_t mbrSig0; - /** Second MBR signature byte. Must be 0XAA */ - uint8_t mbrSig1; -}; -/** Type name for masterBootRecord */ -typedef struct masterBootRecord mbr_t; -//------------------------------------------------------------------------------ -/** - * \struct biosParmBlock - * - * \brief BIOS parameter block - * - * The BIOS parameter block describes the physical layout of a FAT volume. - */ -struct biosParmBlock { - /** - * Count of bytes per sector. This value may take on only the - * following values: 512, 1024, 2048 or 4096 - */ - uint16_t bytesPerSector; - /** - * Number of sectors per allocation unit. This value must be a - * power of 2 that is greater than 0. The legal values are - * 1, 2, 4, 8, 16, 32, 64, and 128. - */ - uint8_t sectorsPerCluster; - /** - * Number of sectors before the first FAT. - * This value must not be zero. - */ - uint16_t reservedSectorCount; - /** The count of FAT data structures on the volume. This field should - * always contain the value 2 for any FAT volume of any type. - */ - uint8_t fatCount; - /** - * For FAT12 and FAT16 volumes, this field contains the count of - * 32-byte directory entries in the root directory. For FAT32 volumes, - * this field must be set to 0. For FAT12 and FAT16 volumes, this - * value should always specify a count that when multiplied by 32 - * results in a multiple of bytesPerSector. FAT16 volumes should - * use the value 512. - */ - uint16_t rootDirEntryCount; - /** - * This field is the old 16-bit total count of sectors on the volume. - * This count includes the count of all sectors in all four regions - * of the volume. This field can be 0; if it is 0, then totalSectors32 - * must be non-zero. For FAT32 volumes, this field must be 0. For - * FAT12 and FAT16 volumes, this field contains the sector count, and - * totalSectors32 is 0 if the total sector count fits - * (is less than 0x10000). - */ - uint16_t totalSectors16; - /** - * This dates back to the old MS-DOS 1.x media determination and is - * no longer usually used for anything. 0xF8 is the standard value - * for fixed (non-removable) media. For removable media, 0xF0 is - * frequently used. Legal values are 0xF0 or 0xF8-0xFF. - */ - uint8_t mediaType; - /** - * Count of sectors occupied by one FAT on FAT12/FAT16 volumes. - * On FAT32 volumes this field must be 0, and sectorsPerFat32 - * contains the FAT size count. - */ - uint16_t sectorsPerFat16; - /** Sectors per track for interrupt 0x13. Not used otherwise. */ - uint16_t sectorsPerTrtack; - /** Number of heads for interrupt 0x13. Not used otherwise. */ - uint16_t headCount; - /** - * Count of hidden sectors preceding the partition that contains this - * FAT volume. This field is generally only relevant for media - * visible on interrupt 0x13. - */ - uint32_t hidddenSectors; - /** - * This field is the new 32-bit total count of sectors on the volume. - * This count includes the count of all sectors in all four regions - * of the volume. This field can be 0; if it is 0, then - * totalSectors16 must be non-zero. - */ - uint32_t totalSectors32; - /** - * Count of sectors occupied by one FAT on FAT32 volumes. - */ - uint32_t sectorsPerFat32; - /** - * This field is only defined for FAT32 media and does not exist on - * FAT12 and FAT16 media. - * Bits 0-3 -- Zero-based number of active FAT. - * Only valid if mirroring is disabled. - * Bits 4-6 -- Reserved. - * Bit 7 -- 0 means the FAT is mirrored at runtime into all FATs. - * -- 1 means only one FAT is active; it is the one referenced in bits 0-3. - * Bits 8-15 -- Reserved. - */ - uint16_t fat32Flags; - /** - * FAT32 version. High byte is major revision number. - * Low byte is minor revision number. Only 0.0 define. - */ - uint16_t fat32Version; - /** - * Cluster number of the first cluster of the root directory for FAT32. - * This usually 2 but not required to be 2. - */ - uint32_t fat32RootCluster; - /** - * Sector number of FSINFO structure in the reserved area of the - * FAT32 volume. Usually 1. - */ - uint16_t fat32FSInfo; - /** - * If non-zero, indicates the sector number in the reserved area - * of the volume of a copy of the boot record. Usually 6. - * No value other than 6 is recommended. - */ - uint16_t fat32BackBootBlock; - /** - * Reserved for future expansion. Code that formats FAT32 volumes - * should always set all of the bytes of this field to 0. - */ - uint8_t fat32Reserved[12]; -}; -/** Type name for biosParmBlock */ -typedef struct biosParmBlock bpb_t; -//------------------------------------------------------------------------------ -/** - * \struct fat32BootSector - * - * \brief Boot sector for a FAT16 or FAT32 volume. - * - */ -struct fat32BootSector { - /** X86 jmp to boot program */ - uint8_t jmpToBootCode[3]; - /** informational only - don't depend on it */ - char oemName[8]; - /** BIOS Parameter Block */ - bpb_t bpb; - /** for int0x13 use value 0X80 for hard drive */ - uint8_t driveNumber; - /** used by Windows NT - should be zero for FAT */ - uint8_t reserved1; - /** 0X29 if next three fields are valid */ - uint8_t bootSignature; - /** usually generated by combining date and time */ - uint32_t volumeSerialNumber; - /** should match volume label in root dir */ - char volumeLabel[11]; - /** informational only - don't depend on it */ - char fileSystemType[8]; - /** X86 boot code */ - uint8_t bootCode[420]; - /** must be 0X55 */ - uint8_t bootSectorSig0; - /** must be 0XAA */ - uint8_t bootSectorSig1; -}; -//------------------------------------------------------------------------------ -// End Of Chain values for FAT entries -/** FAT16 end of chain value used by Microsoft. */ -uint16_t const FAT16EOC = 0XFFFF; -/** Minimum value for FAT16 EOC. Use to test for EOC. */ -uint16_t const FAT16EOC_MIN = 0XFFF8; -/** FAT32 end of chain value used by Microsoft. */ -uint32_t const FAT32EOC = 0X0FFFFFFF; -/** Minimum value for FAT32 EOC. Use to test for EOC. */ -uint32_t const FAT32EOC_MIN = 0X0FFFFFF8; -/** Mask a for FAT32 entry. Entries are 28 bits. */ -uint32_t const FAT32MASK = 0X0FFFFFFF; - -/** Type name for fat32BootSector */ -typedef struct fat32BootSector fbs_t; -//------------------------------------------------------------------------------ -/** - * \struct directoryEntry - * \brief FAT short directory entry - * - * Short means short 8.3 name, not the entry size. - * - * Date Format. A FAT directory entry date stamp is a 16-bit field that is - * basically a date relative to the MS-DOS epoch of 01/01/1980. Here is the - * format (bit 0 is the LSB of the 16-bit word, bit 15 is the MSB of the - * 16-bit word): - * - * Bits 9-15: Count of years from 1980, valid value range 0-127 - * inclusive (1980-2107). - * - * Bits 5-8: Month of year, 1 = January, valid value range 1-12 inclusive. - * - * Bits 0-4: Day of month, valid value range 1-31 inclusive. - * - * Time Format. A FAT directory entry time stamp is a 16-bit field that has - * a granularity of 2 seconds. Here is the format (bit 0 is the LSB of the - * 16-bit word, bit 15 is the MSB of the 16-bit word). - * - * Bits 11-15: Hours, valid value range 0-23 inclusive. - * - * Bits 5-10: Minutes, valid value range 0-59 inclusive. - * - * Bits 0-4: 2-second count, valid value range 0-29 inclusive (0 - 58 seconds). - * - * The valid time range is from Midnight 00:00:00 to 23:59:58. - */ -struct directoryEntry { - /** - * Short 8.3 name. - * The first eight bytes contain the file name with blank fill. - * The last three bytes contain the file extension with blank fill. - */ - uint8_t name[11]; - /** Entry attributes. - * - * The upper two bits of the attribute byte are reserved and should - * always be set to 0 when a file is created and never modified or - * looked at after that. See defines that begin with DIR_ATT_. - */ - uint8_t attributes; - /** - * Reserved for use by Windows NT. Set value to 0 when a file is - * created and never modify or look at it after that. - */ - uint8_t reservedNT; - /** - * The granularity of the seconds part of creationTime is 2 seconds - * so this field is a count of tenths of a second and its valid - * value range is 0-199 inclusive. (WHG note - seems to be hundredths) - */ - uint8_t creationTimeTenths; - /** Time file was created. */ - uint16_t creationTime; - /** Date file was created. */ - uint16_t creationDate; - /** - * Last access date. Note that there is no last access time, only - * a date. This is the date of last read or write. In the case of - * a write, this should be set to the same date as lastWriteDate. - */ - uint16_t lastAccessDate; - /** - * High word of this entry's first cluster number (always 0 for a - * FAT12 or FAT16 volume). - */ - uint16_t firstClusterHigh; - /** Time of last write. File creation is considered a write. */ - uint16_t lastWriteTime; - /** Date of last write. File creation is considered a write. */ - uint16_t lastWriteDate; - /** Low word of this entry's first cluster number. */ - uint16_t firstClusterLow; - /** 32-bit unsigned holding this file's size in bytes. */ - uint32_t fileSize; -}; -//------------------------------------------------------------------------------ -// Definitions for directory entries -// -/** Type name for directoryEntry */ -typedef struct directoryEntry dir_t; -/** escape for name[0] = 0XE5 */ -uint8_t const DIR_NAME_0XE5 = 0X05; -/** name[0] value for entry that is free after being "deleted" */ -uint8_t const DIR_NAME_DELETED = 0XE5; -/** name[0] value for entry that is free and no allocated entries follow */ -uint8_t const DIR_NAME_FREE = 0X00; -/** file is read-only */ -uint8_t const DIR_ATT_READ_ONLY = 0X01; -/** File should hidden in directory listings */ -uint8_t const DIR_ATT_HIDDEN = 0X02; -/** Entry is for a system file */ -uint8_t const DIR_ATT_SYSTEM = 0X04; -/** Directory entry contains the volume label */ -uint8_t const DIR_ATT_VOLUME_ID = 0X08; -/** Entry is for a directory */ -uint8_t const DIR_ATT_DIRECTORY = 0X10; -/** Old DOS archive bit for backup support */ -uint8_t const DIR_ATT_ARCHIVE = 0X20; -/** Test value for long name entry. Test is - (d->attributes & DIR_ATT_LONG_NAME_MASK) == DIR_ATT_LONG_NAME. */ -uint8_t const DIR_ATT_LONG_NAME = 0X0F; -/** Test mask for long name entry */ -uint8_t const DIR_ATT_LONG_NAME_MASK = 0X3F; -/** defined attribute bits */ -uint8_t const DIR_ATT_DEFINED_BITS = 0X3F; -/** Directory entry is part of a long name */ -static inline uint8_t DIR_IS_LONG_NAME(const dir_t* dir) { - return (dir->attributes & DIR_ATT_LONG_NAME_MASK) == DIR_ATT_LONG_NAME; -} -/** Mask for file/subdirectory tests */ -uint8_t const DIR_ATT_FILE_TYPE_MASK = (DIR_ATT_VOLUME_ID | DIR_ATT_DIRECTORY); -/** Directory entry is for a file */ -static inline uint8_t DIR_IS_FILE(const dir_t* dir) { - return (dir->attributes & DIR_ATT_FILE_TYPE_MASK) == 0; -} -/** Directory entry is for a subdirectory */ -static inline uint8_t DIR_IS_SUBDIR(const dir_t* dir) { - return (dir->attributes & DIR_ATT_FILE_TYPE_MASK) == DIR_ATT_DIRECTORY; -} -/** Directory entry is for a file or subdirectory */ -static inline uint8_t DIR_IS_FILE_OR_SUBDIR(const dir_t* dir) { - return (dir->attributes & DIR_ATT_VOLUME_ID) == 0; -} -#endif // FatStructs_h diff --git a/libraries/Robot_Control/src/Melody.cpp b/libraries/Robot_Control/src/Melody.cpp deleted file mode 100644 index 9ef964631be..00000000000 --- a/libraries/Robot_Control/src/Melody.cpp +++ /dev/null @@ -1,100 +0,0 @@ -#include "ArduinoRobot.h" -#include "SquawkSD.h" -#include "Fat16.h" - - - -SQUAWK_CONSTRUCT_ISR(SQUAWK_PWM_PIN5); - - -void RobotControl::beginSpeaker(uint16_t frequency){ - SquawkSynth::begin(frequency); - SquawkSynth::play(); - osc[2].vol = 0x7F; -} - -void RobotControl::playNote(byte period, word length, char modifier) { - // Modifier . makes note length 2/3 - if(modifier == '.') length = (length * 2) / 3; - // Set up the play frequency, 352800 is [sample_rate]=44100 * [tuning]=8.0 - osc[2].freq = 352800 / period; - // Delay, silence, delay - delay(length); - osc[2].freq = 0; - delay(length); -} - -void RobotControl::playMelody(char* script){ - // Find length of play string - word length = strlen(script); - // Set the default note time - word time = 500; - // Loop through each character in the play string - for(int n = 0; n < length; n++) { - // Fetch the character AFTER the current one - it may contain a modifier - char modifier = script[n + 1]; - // Fetch the current character and branch accordingly - switch(script[n]) { - // Notes - case 'c': playNote(214, time, modifier); break; // Play a C - case 'C': playNote(202, time, modifier); break; // Play a C# - case 'd': playNote(190, time, modifier); break; // Play a D - case 'D': playNote(180, time, modifier); break; // Play a D# - case 'e': playNote(170, time, modifier); break; // Play an E - case 'f': playNote(160, time, modifier); break; // Play an F - case 'F': playNote(151, time, modifier); break; // Play an F# - case 'g': playNote(143, time, modifier); break; // Play a G - case 'G': playNote(135, time, modifier); break; // Play a G# - case 'a': playNote(127, time, modifier); break; // Play an A - case 'A': playNote(120, time, modifier); break; // Play an A# - case 'b': playNote(113, time, modifier); break; // Play a B - // Delay - case '-': playNote(0, time, modifier); break; // Play a quiet note - // Note lengths - case '1': time = 1000; break; // Full note - case '2': time = 500; break; // Half note - case '4': time = 250; break; // Quarter note - case '8': time = 50; break; // Eigth note - // Modifier '.' makes note length 2/3 - - } - } -} - -void RobotControl::beep(int beep_length){ - char scr1[]="8F"; - char scr2[]="8Fe"; - char scr3[]="1F"; - - switch (beep_length) - { - case BEEP_SIMPLE: - default: - playMelody(scr1); - break; - - case BEEP_DOUBLE: - playMelody(scr2); - break; - - case BEEP_LONG: - playMelody(scr3); - } - -} - -void RobotControl::tempoWrite(int tempo){ - SquawkSynthSD::tempo(tempo); -} -void RobotControl::tuneWrite(float tune){ - SquawkSynthSD::tune(tune); -} - -void RobotControl::playFile(char* filename){ - melody.open(filename,O_READ); - SquawkSynthSD::play(melody); -} - -void RobotControl::stopPlayFile(){ - melody.close(); -} diff --git a/libraries/Robot_Control/src/Motors.cpp b/libraries/Robot_Control/src/Motors.cpp deleted file mode 100644 index 3555886a22e..00000000000 --- a/libraries/Robot_Control/src/Motors.cpp +++ /dev/null @@ -1,113 +0,0 @@ -#include "ArduinoRobot.h" -#include "EasyTransfer2.h" - - -void RobotControl::motorsStop(){ - messageOut.writeByte(COMMAND_MOTORS_STOP); - messageOut.sendData(); -} -void RobotControl::motorsWrite(int speedLeft,int speedRight){ - messageOut.writeByte(COMMAND_RUN); - messageOut.writeInt(speedLeft); - messageOut.writeInt(speedRight); - messageOut.sendData(); -} -void RobotControl::motorsWritePct(int speedLeftPct, int speedRightPct){ - int16_t speedLeft=255*speedLeftPct/100.0; - int16_t speedRight=255*speedRightPct/100.0; - motorsWrite(speedLeft,speedRight); -} -void RobotControl::pointTo(int angle){ - int target=angle; - uint8_t speed=80; - target=target%360; - if(target<0){ - target+=360; - } - int direction=angle; - while(1){ - int currentAngle=compassRead(); - int diff=target-currentAngle; - direction=180-(diff+360)%360; - if(direction>0){ - motorsWrite(speed,-speed);//right - delay(10); - }else{ - motorsWrite(-speed,speed);//left - delay(10); - } - //if(diff<-180) - // diff += 360; - //else if(diff> 180) - // diff -= 360; - //direction=-diff; - - if(abs(diff)<5){ - motorsStop(); - return; - } - } -} -void RobotControl::turn(int angle){ - int originalAngle=compassRead(); - int target=originalAngle+angle; - pointTo(target); - /*uint8_t speed=80; - target=target%360; - if(target<0){ - target+=360; - } - int direction=angle; - while(1){ - if(direction>0){ - motorsWrite(speed,speed);//right - delay(10); - }else{ - motorsWrite(-speed,-speed);//left - delay(10); - } - int currentAngle=compassRead(); - int diff=target-currentAngle; - if(diff<-180) - diff += 360; - else if(diff> 180) - diff -= 360; - direction=-diff; - - if(abs(diff)<5){ - motorsWrite(0,0); - return; - } - }*/ -} - -void RobotControl::moveForward(int speed){ - motorsWrite(speed,speed); -} -void RobotControl::moveBackward(int speed){ - motorsWrite(speed,speed); -} -void RobotControl::turnLeft(int speed){ - motorsWrite(speed,255); -} -void RobotControl::turnRight(int speed){ - motorsWrite(255,speed); -} - - - -/* -int RobotControl::getIRrecvResult(){ - messageOut.writeByte(COMMAND_GET_IRRECV); - messageOut.sendData(); - //delay(10); - while(!messageIn.receiveData()); - - if(messageIn.readByte()==COMMAND_GET_IRRECV_RE){ - return messageIn.readInt(); - } - - - return -1; -} -*/ \ No newline at end of file diff --git a/libraries/Robot_Control/src/Multiplexer.cpp b/libraries/Robot_Control/src/Multiplexer.cpp deleted file mode 100644 index 8f7d30e852f..00000000000 --- a/libraries/Robot_Control/src/Multiplexer.cpp +++ /dev/null @@ -1,37 +0,0 @@ -#include "Multiplexer.h" - -void Multiplexer::begin(uint8_t* selectors, uint8_t Z, uint8_t length){ - for(uint8_t i=0;iselectors[i]=selectors[i]; - pinMode(selectors[i],OUTPUT); - } - this->length=length; - this->pin_Z=Z; - pinMode(pin_Z,INPUT); -} - -void Multiplexer::selectPin(uint8_t num){ - for(uint8_t i=0;i= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - -class Multiplexer{ - public: - void begin(uint8_t* selectors, uint8_t Z, uint8_t length); - void selectPin(uint8_t num); - int getAnalogValue(); - int getAnalogValueAt(uint8_t num); - bool getDigitalValue(); - bool getDigitalValueAt(uint8_t num); - private: - uint8_t selectors[4]; - uint8_t pin_Z; - uint8_t length; -}; - -#endif diff --git a/libraries/Robot_Control/src/RobotSdCard.cpp b/libraries/Robot_Control/src/RobotSdCard.cpp deleted file mode 100644 index df833d2c70f..00000000000 --- a/libraries/Robot_Control/src/RobotSdCard.cpp +++ /dev/null @@ -1,22 +0,0 @@ -#include - -void RobotControl::beginSD(){ - card.init(); - file.init(&card); - melody.init(&card); -} - -void RobotControl::_enableSD(){ - DDRB = DDRB & 0xDF; //pinMode(CS_LCD,INPUT); - DDRB = DDRB | 0x10; //pinMode(CS_SD,OUTPUT); -} - -/* -void RobotControl::sdTest(){ - file.open("Infor.txt",O_READ); - uint8_t buf[7]; - char n; - while ((n = file.read(buf, sizeof(buf))) > 0) { - for (uint8_t i = 0; i < n; i++) Serial.write(buf[i]); - } -}*/ \ No newline at end of file diff --git a/libraries/Robot_Control/src/SdCard.cpp b/libraries/Robot_Control/src/SdCard.cpp deleted file mode 100644 index fbbd8bc7ae9..00000000000 --- a/libraries/Robot_Control/src/SdCard.cpp +++ /dev/null @@ -1,279 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -#include -#if ARDUINO < 100 -#include -#else // ARDUINO -#include -#endif // ARDUINO -#include -#include -//------------------------------------------------------------------------------ -// r1 status values -uint8_t const R1_READY_STATE = 0; -uint8_t const R1_IDLE_STATE = 1; -// start data token for read or write -uint8_t const DATA_START_BLOCK = 0XFE; -// data response tokens for write block -uint8_t const DATA_RES_MASK = 0X1F; -uint8_t const DATA_RES_ACCEPTED = 0X05; -uint8_t const DATA_RES_CRC_ERROR = 0X0B; -uint8_t const DATA_RES_WRITE_ERROR = 0X0D; -// -// stop compiler from inlining where speed optimization is not required -#define STATIC_NOINLINE static __attribute__((noinline)) -//------------------------------------------------------------------------------ -// SPI static functions -// -// clock byte in -STATIC_NOINLINE uint8_t spiRec(void) { - SPDR = 0xff; - while (!(SPSR & (1 << SPIF))); - return SPDR; -} -// clock byte out -STATIC_NOINLINE void spiSend(uint8_t b) { - SPDR = b; - while (!(SPSR & (1 << SPIF))); -} -//------------------------------------------------------------------------------ -// wait for card to go not busy -// return false if timeout -static uint8_t waitForToken(uint8_t token, uint16_t timeoutMillis) { - uint16_t t0 = millis(); - while (spiRec() != token) { - if (((uint16_t)millis() - t0) > timeoutMillis) return false; - } - return true; -} -//------------------------------------------------------------------------------ -uint8_t SdCard::cardCommand(uint8_t cmd, uint32_t arg) { - uint8_t r1; - - // select card - chipSelectLow(); - - // wait if busy - waitForToken(0XFF, SD_COMMAND_TIMEOUT); - - // send command - spiSend(cmd | 0x40); - - // send argument - for (int8_t s = 24; s >= 0; s -= 8) spiSend(arg >> s); - - // send CRC - must send valid CRC for CMD0 - spiSend(cmd == CMD0 ? 0x95 : 0XFF); - - // wait for not busy - for (uint8_t retry = 0; (0X80 & (r1 = spiRec())) && retry != 0XFF; retry++); - return r1; -} -//------------------------------------------------------------------------------ -uint8_t SdCard::cardAcmd(uint8_t cmd, uint32_t arg) { - cardCommand(CMD55, 0); - return cardCommand(cmd, arg); -} -//============================================================================== -// SdCard member functions -//------------------------------------------------------------------------------ -/** - * Determine the size of a standard SD flash memory card - * \return The number of 512 byte data blocks in the card - */ -uint32_t SdCard::cardSize(void) { - uint16_t c_size; - csd_t csd; - if (!readReg(CMD9, &csd)) return 0; - uint8_t read_bl_len = csd.read_bl_len; - c_size = (csd.c_size_high << 10) | (csd.c_size_mid << 2) | csd.c_size_low; - uint8_t c_size_mult = (csd.c_size_mult_high << 1) | csd.c_size_mult_low; - return (uint32_t)(c_size+1) << (c_size_mult + read_bl_len - 7); -} -//------------------------------------------------------------------------------ -void SdCard::chipSelectHigh(void) { - digitalWrite(chipSelectPin_, HIGH); - // make sure MISO goes high impedance - spiSend(0XFF); -} -//------------------------------------------------------------------------------ -void SdCard::chipSelectLow(void) { - // Enable SPI, Master, clock rate F_CPU/4 - SPCR = (1 << SPE) | (1 << MSTR); - - // Doubled Clock Frequency to F_CPU/2 unless speed_ is nonzero - if (!speed_) SPSR |= (1 << SPI2X); - - digitalWrite(chipSelectPin_, LOW); -} -//------------------------------------------------------------------------------ -void SdCard::error(uint8_t code, uint8_t data) { - errorData = data; - error(code); -} -//------------------------------------------------------------------------------ -void SdCard::error(uint8_t code) { - errorCode = code; - chipSelectHigh(); -} -//------------------------------------------------------------------------------ -/** - * Initialize a SD flash memory card. - * - * \param[in] speed Set SPI Frequency to F_CPU/2 if speed = 0 or F_CPU/4 - * if speed = 1. - * \param[in] chipSelectPin SD chip select pin number. - * - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - * - */ -uint8_t SdCard::init(uint8_t speed, uint8_t chipSelectPin) { - if (speed > 1) { - error(SD_ERROR_SPI_SPEED); - return false; - } - speed_ = speed; - chipSelectPin_ = chipSelectPin; - errorCode = 0; - uint8_t r; - // 16-bit init start time allows over a minute - uint16_t t0 = (uint16_t)millis(); - - pinMode(chipSelectPin_, OUTPUT); - digitalWrite(chipSelectPin_, HIGH); - pinMode(SPI_MISO_PIN, INPUT); - pinMode(SPI_SS_PIN, OUTPUT); - pinMode(SPI_MOSI_PIN, OUTPUT); - pinMode(SPI_SCK_PIN, OUTPUT); - - // Enable SPI, Master, clock rate F_CPU/128 - SPCR = (1 << SPE) | (1 << MSTR) | (1 << SPR1) | (1 << SPR0); - - // must supply min of 74 clock cycles with CS high. - for (uint8_t i = 0; i < 10; i++) spiSend(0XFF); - digitalWrite(chipSelectPin_, LOW); - - // command to go idle in SPI mode - while ((r = cardCommand(CMD0, 0)) != R1_IDLE_STATE) { - if (((uint16_t)millis() - t0) > SD_INIT_TIMEOUT) { - error(SD_ERROR_CMD0, r); - return false; - } - } - // start initialization and wait for completed initialization - while ((r = cardAcmd(ACMD41, 0)) != R1_READY_STATE) { - if (((uint16_t)millis() - t0) > SD_INIT_TIMEOUT) { - error(SD_ERROR_ACMD41, r); - return false; - } - } - chipSelectHigh(); - return true; -} -//------------------------------------------------------------------------------ -/** - * Reads a 512 byte block from a storage device. - * - * \param[in] blockNumber Logical block to be read. - * \param[out] dst Pointer to the location that will receive the data. - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - */ -uint8_t SdCard::readBlock(uint32_t blockNumber, uint8_t* dst) { - if (cardCommand(CMD17, blockNumber << 9)) { - error(SD_ERROR_CMD17); - return false; - } - return readTransfer(dst, 512); -} -//------------------------------------------------------------------------------ -uint8_t SdCard::readReg(uint8_t cmd, void* buf) { - uint8_t* dst = reinterpret_cast(buf); - if (cardCommand(cmd, 0)) { - chipSelectHigh(); - return false; - } - return readTransfer(dst, 16); -} -//------------------------------------------------------------------------------ -uint8_t SdCard::readTransfer(uint8_t* dst, uint16_t count) { - // wait for start of data - if (!waitForToken(DATA_START_BLOCK, SD_READ_TIMEOUT)) { - error(SD_ERROR_READ_TIMEOUT); - } - // start first spi transfer - SPDR = 0XFF; - for (uint16_t i = 0; i < count; i++) { - while (!(SPSR & (1 << SPIF))); - dst[i] = SPDR; - SPDR = 0XFF; - } - // wait for first CRC byte - while (!(SPSR & (1 << SPIF))); - spiRec(); // second CRC byte - chipSelectHigh(); - return true; -} -//------------------------------------------------------------------------------ -/** - * Writes a 512 byte block to a storage device. - * - * \param[in] blockNumber Logical block to be written. - * \param[in] src Pointer to the location of the data to be written. - * \return The value one, true, is returned for success and - * the value zero, false, is returned for failure. - */ -uint8_t SdCard::writeBlock(uint32_t blockNumber, const uint8_t* src) { - uint32_t address = blockNumber << 9; -#if SD_PROTECT_BLOCK_ZERO - // don't allow write to first block - if (address == 0) { - error(SD_ERROR_BLOCK_ZERO_WRITE); - return false; - } -#endif // SD_PROTECT_BLOCK_ZERO - if (cardCommand(CMD24, address)) { - error(SD_ERROR_CMD24); - return false; - } - // optimize write loop - SPDR = DATA_START_BLOCK; - for (uint16_t i = 0; i < 512; i++) { - while (!(SPSR & (1 << SPIF))); - SPDR = src[i]; - } - while (!(SPSR & (1 << SPIF))); // wait for last data byte - spiSend(0xFF); // dummy crc - spiSend(0xFF); // dummy crc - - // get write response - uint8_t r1 = spiRec(); - if ((r1 & DATA_RES_MASK) != DATA_RES_ACCEPTED) { - error(SD_ERROR_WRITE_RESPONSE, r1); - return false; - } - // wait for card to complete write programming - if (!waitForToken(0XFF, SD_WRITE_TIMEOUT)) { - error(SD_ERROR_WRITE_TIMEOUT); - } - chipSelectHigh(); - return true; -} diff --git a/libraries/Robot_Control/src/SdCard.h b/libraries/Robot_Control/src/SdCard.h deleted file mode 100644 index c03e6ab1c74..00000000000 --- a/libraries/Robot_Control/src/SdCard.h +++ /dev/null @@ -1,192 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -#ifndef SdCard_h -#define SdCard_h - /** - * \file - * SdCard class - */ -#include -//------------------------------------------------------------------------------ -// Warning only SD_CHIP_SELECT_PIN, the SD card select pin, may be redefined. -// define hardware SPI pins -#if defined(__AVR_ATmega168__)\ -||defined(__AVR_ATmega168P__)\ -||defined(__AVR_ATmega328P__) -// 168 and 328 Arduinos -/** Slave Select pin */ -uint8_t const SPI_SS_PIN = 10; -/** Master Out Slave In pin */ -uint8_t const SPI_MOSI_PIN = 11; -/** Master In Slave Out pin */ -uint8_t const SPI_MISO_PIN = 12; -/** Serial Clock */ -uint8_t const SPI_SCK_PIN = 13; -//------------------------------------------------------------------------------ -#elif defined(__AVR_ATmega1280__)\ -|| defined(__AVR_ATmega2560__) -// pins for Arduino Mega -uint8_t const SPI_SS_PIN = 53; -uint8_t const SPI_MOSI_PIN = 51; -uint8_t const SPI_MISO_PIN = 50; -uint8_t const SPI_SCK_PIN = 52; -//------------------------------------------------------------------------------ -#elif defined(__AVR_ATmega644P__)\ -|| defined(__AVR_ATmega644__)\ -|| defined(__AVR_ATmega1284P__) -// pins for Sanguino -uint8_t const SPI_SS_PIN = 4; -uint8_t const SPI_MOSI_PIN = 5; -uint8_t const SPI_MISO_PIN = 6; -uint8_t const SPI_SCK_PIN = 7; -//------------------------------------------------------------------------------ -#elif defined(__AVR_ATmega32U4__) -// pins for Teensy 2.0 -uint8_t const SPI_SS_PIN = 8; -uint8_t const SPI_MOSI_PIN = 16; -uint8_t const SPI_MISO_PIN = 14; -uint8_t const SPI_SCK_PIN = 15; -//------------------------------------------------------------------------------ -#elif defined(__AVR_AT90USB646__)\ -|| defined(__AVR_AT90USB1286__) -// pins for Teensy++ 1.0 & 2.0 -uint8_t const SPI_SS_PIN = 20; -uint8_t const SPI_MOSI_PIN = 22; -uint8_t const SPI_MISO_PIN = 23; -uint8_t const SPI_SCK_PIN = 21; -//------------------------------------------------------------------------------ -#else // SPI pins -#error unknown CPU -#endif // SPI pins -//------------------------------------------------------------------------------ -/** - * SD Chip Select pin - * - * Warning if this pin is redefined the hardware SS pin will be enabled - * as an output by init(). An avr processor will not function as an SPI - * master unless SS is set to output mode. - * - * For example to set SD_CHIP_SELECT_PIN to 8 for the SparkFun microSD shield: - * uint8_t const SD_CHIP_SELECT_PIN = 8; - * - * The default chip select pin for the SD card is SS. - */ -uint8_t const SD_CHIP_SELECT_PIN = SPI_SS_PIN; -//------------------------------------------------------------------------------ -/** command timeout ms */ -uint16_t const SD_COMMAND_TIMEOUT = 300; -/** init timeout ms */ -uint16_t const SD_INIT_TIMEOUT = 2000; -/** read timeout ms */ -uint16_t const SD_READ_TIMEOUT = 300; -/** write timeout ms */ -uint16_t const SD_WRITE_TIMEOUT = 600; -//------------------------------------------------------------------------------ -// error codes -/** Card did not go into SPI mode */ -uint8_t const SD_ERROR_CMD0 = 1; -/** Card did not go ready */ -uint8_t const SD_ERROR_ACMD41 = 2; -/** Write command not accepted */ -uint8_t const SD_ERROR_CMD24 = 3; -/** Read command not accepted */ -uint8_t const SD_ERROR_CMD17 = 4; -/** timeout waiting for read data */ -uint8_t const SD_ERROR_READ_TIMEOUT = 5; -/** write error occurred */ -uint8_t const SD_ERROR_WRITE_RESPONSE = 6; -/** timeout waiting for write status */ -uint8_t const SD_ERROR_WRITE_TIMEOUT = 7; -/** attempt to write block zero */ -uint8_t const SD_ERROR_BLOCK_ZERO_WRITE = 8; -/** card returned an error to a CMD13 status check after a write */ -uint8_t const SD_ERROR_WRITE_PROGRAMMING = 9; -/** invalid SPI speed in init() call */ -uint8_t const SD_ERROR_SPI_SPEED = 10; -//------------------------------------------------------------------------------ -// SD command codes -/** SEND OPERATING CONDITIONS */ -uint8_t const ACMD41 = 0X29; -/** GO_IDLE_STATE - init card in spi mode if CS low */ -uint8_t const CMD0 = 0X00; -/** SEND_CSD - Card Specific Data */ -uint8_t const CMD9 = 0X09; -/** SEND_CID - Card IDentification */ -uint8_t const CMD10 = 0X0A; -/** SEND_STATUS - read the card status register */ -uint8_t const CMD13 = 0X0D; -/** READ_BLOCK */ -uint8_t const CMD17 = 0X11; -/** WRITE_BLOCK */ -uint8_t const CMD24 = 0X18; -/** APP_CMD - escape for application specific command */ -uint8_t const CMD55 = 0X37; -//------------------------------------------------------------------------------ -/** - * \class SdCard - * \brief Hardware access class for SD flash cards - * - * Supports raw access to a standard SD flash memory card. - * - */ -class SdCard { - public: - /** Code for a SD error. See SdCard.h for definitions. */ - uint8_t errorCode; - /** Data that may be helpful in determining the cause of an error */ - uint8_t errorData; - uint32_t cardSize(void); - /** - * Initialize an SD flash memory card with default clock rate and chip - * select pin. See SdCard::init(uint8_t sckRateID, uint8_t chipSelectPin). - */ - uint8_t init(void) { - return init(0, SD_CHIP_SELECT_PIN); - } - /** - * Initialize an SD flash memory card with the selected SPI clock rate - * and the default SD chip select pin. - * See SdCard::init(uint8_t slow, uint8_t chipSelectPin). - */ - uint8_t init(uint8_t speed) { - return init(speed, SD_CHIP_SELECT_PIN); - } - uint8_t init(uint8_t speed, uint8_t chipselectPin); - uint8_t readBlock(uint32_t block, uint8_t* dst); - /** Read the CID register which contains info about the card. - * This includes Manufacturer ID, OEM ID, product name, version, - * serial number, and manufacturing date. */ - uint8_t readCID(cid_t* cid) { - return readReg(CMD10, cid); - } - uint8_t writeBlock(uint32_t block, const uint8_t* src); - private: - uint8_t cardAcmd(uint8_t cmd, uint32_t arg); - uint8_t cardCommand(uint8_t cmd, uint32_t arg); - uint8_t chipSelectPin_; - uint8_t speed_; - void chipSelectHigh(void); - void chipSelectLow(void); - void error(uint8_t code, uint8_t data); - void error(uint8_t code); - uint8_t readReg(uint8_t cmd, void* buf); - uint8_t readTransfer(uint8_t* dst, uint16_t count); -}; -#endif // SdCard_h diff --git a/libraries/Robot_Control/src/SdInfo.h b/libraries/Robot_Control/src/SdInfo.h deleted file mode 100644 index 4c82e0b1edb..00000000000 --- a/libraries/Robot_Control/src/SdInfo.h +++ /dev/null @@ -1,117 +0,0 @@ -/* Arduino FAT16 Library - * Copyright (C) 2008 by William Greiman - * - * This file is part of the Arduino FAT16 Library - * - * This Library is free software: you can redistribute it and/or modify - * it under the terms of the GNU General Public License as published by - * the Free Software Foundation, either version 3 of the License, or - * (at your option) any later version. - * - * This 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 General Public License for more details. - - * You should have received a copy of the GNU General Public License - * along with the Arduino Fat16 Library. If not, see - * . - */ -#ifndef SdInfo_h -#define SdInfo_h -#include -// Based on the document: -// -// SD Specifications -// Part 1 -// Physical Layer -// Simplified Specification -// Version 2.00 -// September 25, 2006 -// -// www.sdcard.org/developers/tech/sdcard/pls/Simplified_Physical_Layer_Spec.pdf -// -// Card IDentification (CID) register -typedef struct CID { - // byte 0 - uint8_t mid; // Manufacturer ID - // byte 1-2 - char oid[2]; // OEM/Application ID - // byte 3-7 - char pnm[5]; // Product name - // byte 8 - unsigned prv_m : 4; // Product revision n.m - unsigned prv_n : 4; - // byte 9-12 - uint32_t psn; // Product serial number - // byte 13 - unsigned mdt_year_high : 4; // Manufacturing date - unsigned reserved : 4; - // byte 14 - unsigned mdt_month : 4; - unsigned mdt_year_low :4; - // byte 15 - unsigned always1 : 1; - unsigned crc : 7; -}cid_t; -// Card-Specific Data register -typedef struct CSD { - // byte 0 - unsigned reserved1 : 6; - unsigned csd_ver : 2; - // byte 1 - uint8_t taac; - // byte 2 - uint8_t nsac; - // byte 3 - uint8_t tran_speed; - // byte 4 - uint8_t ccc_high; - // byte 5 - unsigned read_bl_len : 4; - unsigned ccc_low : 4; - // byte 6 - unsigned c_size_high : 2; - unsigned reserved2 : 2; - unsigned dsr_imp : 1; - unsigned read_blk_misalign :1; - unsigned write_blk_misalign : 1; - unsigned read_bl_partial : 1; - // byte 7 - uint8_t c_size_mid; - // byte 8 - unsigned vdd_r_curr_max : 3; - unsigned vdd_r_curr_min : 3; - unsigned c_size_low :2; - // byte 9 - unsigned c_size_mult_high : 2; - unsigned vdd_w_cur_max : 3; - unsigned vdd_w_curr_min : 3; - // byte 10 - unsigned sector_size_high : 6; - unsigned erase_blk_en : 1; - unsigned c_size_mult_low : 1; - // byte 11 - unsigned wp_grp_size : 7; - unsigned sector_size_low : 1; - // byte 12 - unsigned write_bl_len_high : 2; - unsigned r2w_factor : 3; - unsigned reserved3 : 2; - unsigned wp_grp_enable : 1; - // byte 13 - unsigned reserved4 : 5; - unsigned write_partial : 1; - unsigned write_bl_len_low : 2; - // byte 14 - unsigned reserved5: 2; - unsigned file_format : 2; - unsigned tmp_write_protect : 1; - unsigned perm_write_protect : 1; - unsigned copy : 1; - unsigned file_format_grp : 1; - // byte 15 - unsigned always1 : 1; - unsigned crc : 7; -}csd_t; -#endif // SdInfo_h diff --git a/libraries/Robot_Control/src/Sensors.cpp b/libraries/Robot_Control/src/Sensors.cpp deleted file mode 100644 index b651c28a4c5..00000000000 --- a/libraries/Robot_Control/src/Sensors.cpp +++ /dev/null @@ -1,274 +0,0 @@ -#include "ArduinoRobot.h" -#include "Multiplexer.h" -#include "Wire.h" -bool RobotControl::digitalRead(uint8_t port){ - uint8_t type=_getTypeCode(port); - switch(type){ - case TYPE_TOP_TK: - return _digitalReadTopMux(port); - break; - case TYPE_TOP_TKD: - return _digitalReadTopPin(port); - break; - case TYPE_BOTTOM_TK: - return _requestDigitalRead(port); - break; - } -} -int RobotControl::analogRead(uint8_t port){ - uint8_t type=_getTypeCode(port); - switch(type){ - case TYPE_TOP_TK: - return _analogReadTopMux(port); - break; - case TYPE_TOP_TKD: - return _analogReadTopPin(port); - break; - case TYPE_BOTTOM_TK: - return _requestAnalogRead(port); - break; - } -} -void RobotControl::digitalWrite(uint8_t port, bool value){ - uint8_t type=_getTypeCode(port); - switch(type){ - case TYPE_TOP_TK: - //Top TKs can't use digitalWrite? - break; - case TYPE_TOP_TKD: - _digitalWriteTopPin(port, value); - break; - case TYPE_BOTTOM_TK: - _requestDigitalWrite(port, value); - break; - } -} -void RobotControl::analogWrite(uint8_t port, uint8_t value){ - if(port==TKD4) - ::analogWrite(port,value); -} - -uint8_t RobotControl::_getTypeCode(uint8_t port){ - switch(port){ - case TK0: - case TK1: - case TK2: - case TK3: - case TK4: - case TK5: - case TK6: - case TK7: - return TYPE_TOP_TK; - break; - - case TKD0: - case TKD1: - case TKD2: - case TKD3: - case TKD4: - case TKD5: - case LED1: - return TYPE_TOP_TKD; - break; - - case B_TK1: - case B_TK2: - case B_TK3: - case B_TK4: - return TYPE_BOTTOM_TK; - break; - } -} -uint8_t RobotControl::_portToTopMux(uint8_t port){ - switch(port){ - case TK0: - return 0; - case TK1: - return 1; - case TK2: - return 2; - case TK3: - return 3; - case TK4: - return 4; - case TK5: - return 5; - case TK6: - return 6; - case TK7: - return 7; - } -} -uint8_t RobotControl::_topDPortToAPort(uint8_t port){ - switch(port){ - case TKD0: - return A1; - case TKD1: - return A2; - case TKD2: - return A3; - case TKD3: - return A4; - case TKD4: - return A7; - case TKD5: - return A11; - } -} -int* RobotControl::parseMBDPort(uint8_t port){ - //Serial.println(port); - switch(port){ - case B_TK1: - return &motorBoardData._B_TK1; - case B_TK2: - return &motorBoardData._B_TK2; - case B_TK3: - return &motorBoardData._B_TK3; - case B_TK4: - return &motorBoardData._B_TK4; - - /* - case B_IR0: - return &motorBoardData._B_IR0; - case B_IR1: - return &motorBoardData._B_IR1; - case B_IR2: - return &motorBoardData._B_IR2; - case B_IR3: - return &motorBoardData._B_IR3; - case B_IR4: - return &motorBoardData._B_IR4;*/ - } -} -int RobotControl::get_motorBoardData(uint8_t port){ - return *parseMBDPort(port); -} -void RobotControl::set_motorBoardData(uint8_t port, int data){ - *parseMBDPort(port)=data; -} - -bool RobotControl::_digitalReadTopMux(uint8_t port){ - uint8_t num=_portToTopMux(port); - return Multiplexer::getDigitalValueAt(num); -} - -int RobotControl::_analogReadTopMux(uint8_t port){ - uint8_t num=_portToTopMux(port); - return Multiplexer::getAnalogValueAt(num); -} - -bool RobotControl::_digitalReadTopPin(uint8_t port){ - return ::digitalRead(port); -} -int RobotControl::_analogReadTopPin(uint8_t port){ - uint8_t aPin=_topDPortToAPort(port); - return ::analogRead(aPin); -} -void RobotControl::_digitalWriteTopPin(uint8_t port, bool value){ - ::digitalWrite(port, value); -} - -bool RobotControl::_requestDigitalRead(uint8_t port){ - messageOut.writeByte(COMMAND_DIGITAL_READ); - messageOut.writeByte(port);//B_TK1 - B_TK4 - messageOut.sendData(); - delay(10); - if(messageIn.receiveData()){ - //Serial.println("*************"); - uint8_t cmd=messageIn.readByte(); - //Serial.print("cmd: "); - //Serial.println(cmd); - if(!(cmd==COMMAND_DIGITAL_READ_RE)) - return false; - - uint8_t pt=messageIn.readByte(); //Bottom TK port codename - //Serial.print("pt: "); - //Serial.println(pt); - set_motorBoardData(pt,messageIn.readByte()); - return get_motorBoardData(port); - } -} -int RobotControl::_requestAnalogRead(uint8_t port){ - messageOut.writeByte(COMMAND_ANALOG_READ); - messageOut.writeByte(port);//B_TK1 - B_TK4 - messageOut.sendData(); - delay(10); - if(messageIn.receiveData()){ - uint8_t cmd=messageIn.readByte(); - //Serial.println("*************"); - //Serial.print("cmd: "); - //Serial.println(cmd); - if(!(cmd==COMMAND_ANALOG_READ_RE)) - return false; - - uint8_t pt=messageIn.readByte(); - //Serial.print("pt: "); - //Serial.println(pt); - set_motorBoardData(pt,messageIn.readInt()); - return get_motorBoardData(port); - } -} -void RobotControl::_requestDigitalWrite(uint8_t selector, uint8_t value){ - messageOut.writeByte(COMMAND_DIGITAL_WRITE); - messageOut.writeByte(selector);//B_TK1 - B_TK4 - messageOut.writeByte(value); - messageOut.sendData(); -} - - - - - -void RobotControl::updateIR(){ - messageOut.writeByte(COMMAND_READ_IR); - messageOut.sendData(); - delay(10); - if(messageIn.receiveData()){ - if(messageIn.readByte()==COMMAND_READ_IR_RE){ - for(int i=0;i<5;i++){ - IRarray[i]=messageIn.readInt(); - } - } - } -} - -int RobotControl::knobRead(){ - return ::analogRead(POT); -} - -int RobotControl::trimRead(){ - messageOut.writeByte(COMMAND_READ_TRIM); - messageOut.sendData(); - delay(10); - if(messageIn.receiveData()){ - uint8_t cmd=messageIn.readByte(); - if(!(cmd==COMMAND_READ_TRIM_RE)) - return false; - - uint16_t pt=messageIn.readInt(); - return pt; - } -} - -uint16_t RobotControl::compassRead(){ - return Compass::getReading(); -} - -/* -void RobotControl::beginUR(uint8_t pinTrigger, uint8_t pinEcho){ - pinTrigger_UR=pinTrigger; - pinEcho_UR=pinEcho; - - pinMode(pinEcho_UR, INPUT); - pinMode(pinTrigger_UR, OUTPUT); -} -uint16_t RobotControl::getDistance(){ - digitalWrite(pinTrigger_UR, LOW); // Set the trigger pin to low for 2uS - delayMicroseconds(2); - digitalWrite(pinTrigger_UR, HIGH); // Send a 10uS high to trigger ranging - delayMicroseconds(10); - digitalWrite(pinTrigger_UR, LOW); // Send pin low again - uint16_t distance = pulseIn(pinEcho_UR, HIGH); // Read in times pulse - distance= distance/58; // Calculate distance from time of pulse - return distance; -}*/ \ No newline at end of file diff --git a/libraries/Robot_Control/src/Squawk.cpp b/libraries/Robot_Control/src/Squawk.cpp deleted file mode 100644 index 55b6b995c11..00000000000 --- a/libraries/Robot_Control/src/Squawk.cpp +++ /dev/null @@ -1,601 +0,0 @@ -// Squawk Soft-Synthesizer Library for Arduino -// -// Davey Taylor 2013 -// d.taylor@arduino.cc - -#include "Squawk.h" - -// Period range, used for clamping -#define PERIOD_MIN 28 -#define PERIOD_MAX 3424 - -// Convenience macros -#define LO4(V) ((V) & 0x0F) -#define HI4(V) (((V) & 0xF0) >> 4) -#define MIN(A, B) ((A) < (B) ? (A) : (B)) -#define MAX(A, B) ((A) > (B) ? (A) : (B)) -#define FREQ(PERIOD) (tuning_long / (PERIOD)) - -// SquawkStream class for PROGMEM data -class StreamROM : public SquawkStream { - private: - uint8_t *p_start; - uint8_t *p_cursor; - public: - StreamROM(const uint8_t *p_rom = NULL) { p_start = p_cursor = (uint8_t*)p_rom; } - uint8_t read() { return pgm_read_byte(p_cursor++); } - void seek(size_t offset) { p_cursor = p_start + offset; } -}; - -// Oscillator memory -typedef struct { - uint8_t fxp; - uint8_t offset; - uint8_t mode; -} pto_t; - -// Deconstructed cell -typedef struct { - uint8_t fxc, fxp, ixp; -} cel_t; - -// Effect memory -typedef struct { - int8_t volume; - uint8_t port_speed; - uint16_t port_target; - bool glissando; - pto_t vibr; - pto_t trem; - uint16_t period; - uint8_t param; -} fxm_t; - -// Locals -static uint8_t order_count; -static uint8_t order[64]; -static uint8_t speed; -static uint8_t tick; -static uint8_t ix_row; -static uint8_t ix_order; -static uint8_t ix_nextrow; -static uint8_t ix_nextorder; -static uint8_t row_delay; -static fxm_t fxm[4]; -static cel_t cel[4]; -static uint32_t tuning_long; -static uint16_t sample_rate; -static float tuning = 1.0; -static uint16_t tick_rate = 50; - -static SquawkStream *stream; -static uint16_t stream_base; -static StreamROM rom; - -// Imports -extern intptr_t squawk_register; -extern uint16_t cia; - -// Exports -osc_t osc[4]; -uint8_t pcm = 128; - -// ProTracker period tables -const uint16_t period_tbl[84] PROGMEM = { - 3424, 3232, 3048, 2880, 2712, 2560, 2416, 2280, 2152, 2032, 1920, 1814, - 1712, 1616, 1524, 1440, 1356, 1280, 1208, 1140, 1076, 1016, 960, 907, - 856, 808, 762, 720, 678, 640, 604, 570, 538, 508, 480, 453, - 428, 404, 381, 360, 339, 320, 302, 285, 269, 254, 240, 226, - 214, 202, 190, 180, 170, 160, 151, 143, 135, 127, 120, 113, - 107, 101, 95, 90, 85, 80, 75, 71, 67, 63, 60, 56, - 53, 50, 47, 45, 42, 40, 37, 35, 33, 31, 30, 28, -}; - -// ProTracker sine table -const int8_t sine_tbl[32] PROGMEM = { - 0x00, 0x0C, 0x18, 0x25, 0x30, 0x3C, 0x47, 0x51, 0x5A, 0x62, 0x6A, 0x70, 0x76, 0x7A, 0x7D, 0x7F, - 0x7F, 0x7F, 0x7D, 0x7A, 0x76, 0x70, 0x6A, 0x62, 0x5A, 0x51, 0x47, 0x3C, 0x30, 0x25, 0x18, 0x0C, -}; - -// Squawk object -SquawkSynth Squawk; - -// Look up or generate waveform for ProTracker vibrato/tremolo oscillator -static int8_t do_osc(pto_t *p_osc) { - int8_t sample = 0; - int16_t mul; - switch(p_osc->mode & 0x03) { - case 0: // Sine - sample = pgm_read_byte(&sine_tbl[(p_osc->offset) & 0x1F]); - if(p_osc->offset & 0x20) sample = -sample; - break; - case 1: // Square - sample = (p_osc->offset & 0x20) ? 127 : -128; - break; - case 2: // Saw - sample = -(p_osc->offset << 2); - break; - case 3: // Noise (random) - sample = rand(); - break; - } - mul = sample * LO4(p_osc->fxp); - p_osc->offset = (p_osc->offset + HI4(p_osc->fxp)); - return mul >> 6; -} - -// Calculates and returns arpeggio period -// Essentially finds period of current note + halftones -static inline uint16_t arpeggio(uint8_t ch, uint8_t halftones) { - uint8_t n; - for(n = 0; n != 47; n++) { - if(fxm[ch].period >= pgm_read_word(&period_tbl[n])) break; - } - return pgm_read_word(&period_tbl[MIN(n + halftones, 47)]); -} - -// Calculates and returns glissando period -// Essentially snaps a sliding frequency to the closest note -static inline uint16_t glissando(uint8_t ch) { - uint8_t n; - uint16_t period_h, period_l; - for(n = 0; n != 47; n++) { - period_l = pgm_read_word(&period_tbl[n]); - period_h = pgm_read_word(&period_tbl[n + 1]); - if(fxm[ch].period < period_l && fxm[ch].period >= period_h) { - if(period_l - fxm[ch].period <= fxm[ch].period - period_h) { - period_h = period_l; - } - break; - } - } - return period_h; -} - -// Tunes Squawk to a different frequency -void SquawkSynth::tune(float new_tuning) { - tuning = new_tuning; - tuning_long = (long)(((double)3669213184.0 / (double)sample_rate) * (double)tuning); - -} - -// Sets tempo -void SquawkSynth::tempo(uint16_t new_tempo) { - tick_rate = new_tempo; - cia = sample_rate / tick_rate; // not atomic? -} - -// Initializes Squawk -// Sets up the selected port, and the sample grinding ISR -void SquawkSynth::begin(uint16_t hz) { - word isr_rr; - - sample_rate = hz; - tuning_long = (long)(((double)3669213184.0 / (double)sample_rate) * (double)tuning); - cia = sample_rate / tick_rate; - - if(squawk_register == (intptr_t)&OCR0A) { - // Squawk uses PWM on OCR0A/PD5(ATMega328/168)/PB7(ATMega32U4) -#ifdef __AVR_ATmega32U4__ - DDRB |= 0b10000000; // TODO: FAIL on 32U4 -#else - DDRD |= 0b01000000; -#endif - TCCR0A = 0b10000011; // Fast-PWM 8-bit - TCCR0B = 0b00000001; // 62500Hz - OCR0A = 0x7F; - } else if(squawk_register == (intptr_t)&OCR0B) { - // Squawk uses PWM on OCR0B/PC5(ATMega328/168)/PD0(ATMega32U4) -#ifdef __AVR_ATmega32U4__ - DDRD |= 0b00000001; -#else - DDRD |= 0b00100000; -#endif // Set timer mode to - TCCR0A = 0b00100011; // Fast-PWM 8-bit - TCCR0B = 0b00000001; // 62500Hz - OCR0B = 0x7F; -#ifdef OCR2A - } else if(squawk_register == (intptr_t)&OCR2A) { - // Squawk uses PWM on OCR2A/PB3 - DDRB |= 0b00001000; // Set timer mode to - TCCR2A = 0b10000011; // Fast-PWM 8-bit - TCCR2B = 0b00000001; // 62500Hz - OCR2A = 0x7F; -#endif -#ifdef OCR2B - } else if(squawk_register == (intptr_t)&OCR2B) { - // Squawk uses PWM on OCR2B/PD3 - DDRD |= 0b00001000; // Set timer mode to - TCCR2A = 0b00100011; // Fast-PWM 8-bit - TCCR2B = 0b00000001; // 62500Hz - OCR2B = 0x7F; -#endif -#ifdef OCR3AL - } else if(squawk_register == (intptr_t)&OCR3AL) { - // Squawk uses PWM on OCR3AL/PC6 - DDRC |= 0b01000000; // Set timer mode to - TCCR3A = 0b10000001; // Fast-PWM 8-bit - TCCR3B = 0b00001001; // 62500Hz - OCR3AH = 0x00; - OCR3AL = 0x7F; -#endif - } else if(squawk_register == (intptr_t)&SPDR) { - // NOT YET SUPPORTED - // Squawk uses external DAC via SPI - // TODO: Configure SPI - // TODO: Needs SS toggle in sample grinder - } else if(squawk_register == (intptr_t)&PORTB) { - // NOT YET SUPPORTED - // Squawk uses resistor ladder on PORTB - // TODO: Needs shift right in sample grinder - DDRB = 0b11111111; - } else if(squawk_register == (intptr_t)&PORTC) { - // NOT YET SUPPORTED - // Squawk uses resistor ladder on PORTC - // TODO: Needs shift right in sample grinder - DDRC = 0b11111111; - } - - // Seed LFSR (needed for noise) - osc[3].freq = 0x2000; - - // Set up ISR to run at sample_rate (may not be exact) - isr_rr = F_CPU / sample_rate; - TCCR1A = 0b00000000; // Set timer mode - TCCR1B = 0b00001001; - OCR1AH = isr_rr >> 8; // Set freq - OCR1AL = isr_rr & 0xFF; -} - -// Decrunches a 9 byte row into a useful data -static void decrunch_row() { - uint8_t data; - - // Initial decrunch - stream->seek(stream_base + ((order[ix_order] << 6) + ix_row) * 9); - data = stream->read(); cel[0].fxc = data << 0x04; - cel[1].fxc = data & 0xF0; - data = stream->read(); cel[0].fxp = data; - data = stream->read(); cel[1].fxp = data; - data = stream->read(); cel[2].fxc = data << 0x04; - cel[3].fxc = data >> 0x04; - data = stream->read(); cel[2].fxp = data; - data = stream->read(); cel[3].fxp = data; - data = stream->read(); cel[0].ixp = data; - data = stream->read(); cel[1].ixp = data; - data = stream->read(); cel[2].ixp = data; - - // Decrunch extended effects - if(cel[0].fxc == 0xE0) { cel[0].fxc |= cel[0].fxp >> 4; cel[0].fxp &= 0x0F; } - if(cel[1].fxc == 0xE0) { cel[1].fxc |= cel[1].fxp >> 4; cel[1].fxp &= 0x0F; } - if(cel[2].fxc == 0xE0) { cel[2].fxc |= cel[2].fxp >> 4; cel[2].fxp &= 0x0F; } - - // Decrunch cell 3 ghetto-style - cel[3].ixp = ((cel[3].fxp & 0x80) ? 0x00 : 0x7F) | ((cel[3].fxp & 0x40) ? 0x80 : 0x00); - cel[3].fxp &= 0x3F; - switch(cel[3].fxc) { - case 0x02: - case 0x03: if(cel[3].fxc & 0x01) cel[3].fxp |= 0x40; cel[3].fxp = (cel[3].fxp >> 4) | (cel[3].fxp << 4); cel[3].fxc = 0x70; break; - case 0x01: if(cel[3].fxp & 0x08) cel[3].fxp = (cel[3].fxp & 0x07) << 4; cel[3].fxc = 0xA0; break; - case 0x04: cel[3].fxc = 0xC0; break; - case 0x05: cel[3].fxc = 0xB0; break; - case 0x06: cel[3].fxc = 0xD0; break; - case 0x07: cel[3].fxc = 0xF0; break; - case 0x08: cel[3].fxc = 0xE7; break; - case 0x09: cel[3].fxc = 0xE9; break; - case 0x0A: cel[3].fxc = (cel[3].fxp & 0x08) ? 0xEA : 0xEB; cel[3].fxp &= 0x07; break; - case 0x0B: cel[3].fxc = (cel[3].fxp & 0x10) ? 0xED : 0xEC; cel[3].fxp &= 0x0F; break; - case 0x0C: cel[3].fxc = 0xEE; break; - } - - // Apply generic effect parameter memory - uint8_t ch; - cel_t *p_cel = cel; - fxm_t *p_fxm = fxm; - for(ch = 0; ch != 4; ch++) { - uint8_t fx = p_cel->fxc; - if(fx == 0x10 || fx == 0x20 || fx == 0xE1 || fx == 0xE2 || fx == 0x50 || fx == 0x60 || fx == 0xA0) { - if(p_cel->fxp) { - p_fxm->param = p_cel->fxp; - } else { - p_cel->fxp = p_fxm->param; - } - } - p_cel++; p_fxm++; - } -} - -// Resets playback -static void playroutine_reset() { - memset(fxm, 0, sizeof(fxm)); - tick = 0; - ix_row = 0; - ix_order = 0; - ix_nextrow = 0xFF; - ix_nextorder = 0xFF; - row_delay = 0; - speed = 6; - decrunch_row(); -} - -// Start grinding samples -void SquawkSynth::play() { - TIMSK1 = 1 << OCIE1A; // Enable interrupt -} - -// Load a melody stream and start grinding samples -void SquawkSynth::play(SquawkStream *melody) { - uint8_t n; - pause(); - stream = melody; - stream->seek(0); - n = stream->read(); - if(n == 'S') { - // Squawk SD file - stream->seek(4); - stream_base = stream->read() << 8; - stream_base |= stream->read(); - stream_base += 6; - } else { - // Squawk ROM array - stream_base = 1; - } - stream->seek(stream_base); - order_count = stream->read(); - if(order_count <= 64) { - stream_base += order_count + 1; - for(n = 0; n < order_count; n++) order[n] = stream->read(); - playroutine_reset(); - play(); - } else { - order_count = 0; - } -} - -// Load a melody in PROGMEM and start grinding samples -void SquawkSynth::play(const uint8_t *melody) { - pause(); - rom = StreamROM(melody); - play(&rom); -} - -// Pause playback -void SquawkSynth::pause() { - TIMSK1 = 0; // Disable interrupt -} - -// Stop playing, unload melody -void SquawkSynth::stop() { - pause(); - order_count = 0; // Unload melody -} - -// Progress module by one tick -void squawk_playroutine() { - static bool lockout = false; - - if(!order_count) return; - - // Protect from re-entry via ISR - cli(); - if(lockout) { - sei(); - return; - } - lockout = true; - sei(); - - // Handle row delay - if(row_delay) { - if(tick == 0) row_delay--; - // Advance tick - if(++tick == speed) tick = 0; - } else { - - // Quick pointer access - fxm_t *p_fxm = fxm; - osc_t *p_osc = osc; - cel_t *p_cel = cel; - - // Temps - uint8_t ch, fx, fxp; - bool pattern_jump = false; - uint8_t ix_period; - - for(ch = 0; ch != 4; ch++) { - uint8_t temp; - - // Local register copy - fx = p_cel->fxc; - fxp = p_cel->fxp; - ix_period = p_cel->ixp; - - // If first tick - if(tick == (fx == 0xED ? fxp : 0)) { - - // Reset volume - if(ix_period & 0x80) p_osc->vol = p_fxm->volume = 0x20; - - if((ix_period & 0x7F) != 0x7F) { - - // Reset oscillators (unless continous flag set) - if((p_fxm->vibr.mode & 0x4) == 0x0) p_fxm->vibr.offset = 0; - if((p_fxm->trem.mode & 0x4) == 0x0) p_fxm->trem.offset = 0; - - // Cell has note - if(fx == 0x30 || fx == 0x50) { - - // Tone-portamento effect setup - p_fxm->port_target = pgm_read_word(&period_tbl[ix_period & 0x7F]); - } else { - - // Set required effect memory parameters - p_fxm->period = pgm_read_word(&period_tbl[ix_period & 0x7F]); - - // Start note - if(ch != 3) p_osc->freq = FREQ(p_fxm->period); - - } - } - - // Effects processed when tick = 0 - switch(fx) { - case 0x30: // Portamento - if(fxp) p_fxm->port_speed = fxp; - break; - case 0xB0: // Jump to pattern - ix_nextorder = (fxp >= order_count ? 0x00 : fxp); - ix_nextrow = 0; - pattern_jump = true; - break; - case 0xC0: // Set volume - p_osc->vol = p_fxm->volume = MIN(fxp, 0x20); - break; - case 0xD0: // Jump to row - if(!pattern_jump) ix_nextorder = ((ix_order + 1) >= order_count ? 0x00 : ix_order + 1); - pattern_jump = true; - ix_nextrow = (fxp > 63 ? 0 : fxp); - break; - case 0xF0: // Set speed, BPM(CIA) not supported - if(fxp <= 0x20) speed = fxp; - break; - case 0x40: // Vibrato - if(fxp) p_fxm->vibr.fxp = fxp; - break; - case 0x70: // Tremolo - if(fxp) p_fxm->trem.fxp = fxp; - break; - case 0xE1: // Fine slide up - if(ch != 3) { - p_fxm->period = MAX(p_fxm->period - fxp, PERIOD_MIN); - p_osc->freq = FREQ(p_fxm->period); - } - break; - case 0xE2: // Fine slide down - if(ch != 3) { - p_fxm->period = MIN(p_fxm->period + fxp, PERIOD_MAX); - p_osc->freq = FREQ(p_fxm->period); - } - break; - case 0xE3: // Glissando control - p_fxm->glissando = (fxp != 0); - break; - case 0xE4: // Set vibrato waveform - p_fxm->vibr.mode = fxp; - break; - case 0xE7: // Set tremolo waveform - p_fxm->trem.mode = fxp; - break; - case 0xEA: // Fine volume slide up - p_osc->vol = p_fxm->volume = MIN(p_fxm->volume + fxp, 0x20); - break; - case 0xEB: // Fine volume slide down - p_osc->vol = p_fxm->volume = MAX(p_fxm->volume - fxp, 0); - break; - case 0xEE: // Delay - row_delay = fxp; - break; - } - } else { - - // Effects processed when tick > 0 - switch(fx) { - case 0x10: // Slide up - if(ch != 3) { - p_fxm->period = MAX(p_fxm->period - fxp, PERIOD_MIN); - p_osc->freq = FREQ(p_fxm->period); - } - break; - case 0x20: // Slide down - if(ch != 3) { - p_fxm->period = MIN(p_fxm->period + fxp, PERIOD_MAX); - p_osc->freq = FREQ(p_fxm->period); - } - break; -/* - // Just feels... ugly - case 0xE9: // Retrigger note - temp = tick; while(temp >= fxp) temp -= fxp; - if(!temp) { - if(ch == 3) { - p_osc->freq = p_osc->phase = 0x2000; - } else { - p_osc->phase = 0; - } - } - break; -*/ - case 0xEC: // Note cut - if(fxp == tick) p_osc->vol = 0x00; - break; - default: // Multi-effect processing - - // Portamento - if(ch != 3 && (fx == 0x30 || fx == 0x50)) { - if(p_fxm->period < p_fxm->port_target) p_fxm->period = MIN(p_fxm->period + p_fxm->port_speed, p_fxm->port_target); - else p_fxm->period = MAX(p_fxm->period - p_fxm->port_speed, p_fxm->port_target); - if(p_fxm->glissando) p_osc->freq = FREQ(glissando(ch)); - else p_osc->freq = FREQ(p_fxm->period); - } - - // Volume slide - if(fx == 0x50 || fx == 0x60 || fx == 0xA0) { - if((fxp & 0xF0) == 0) p_fxm->volume -= (LO4(fxp)); - if((fxp & 0x0F) == 0) p_fxm->volume += (HI4(fxp)); - p_osc->vol = p_fxm->volume = MAX(MIN(p_fxm->volume, 0x20), 0); - } - } - } - - // Normal play and arpeggio - if(fx == 0x00) { - if(ch != 3) { - temp = tick; while(temp > 2) temp -= 2; - if(temp == 0) { - - // Reset - p_osc->freq = FREQ(p_fxm->period); - } else if(fxp) { - - // Arpeggio - p_osc->freq = FREQ(arpeggio(ch, (temp == 1 ? HI4(fxp) : LO4(fxp)))); - } - } - } else if(fx == 0x40 || fx == 0x60) { - - // Vibrato - if(ch != 3) p_osc->freq = FREQ((p_fxm->period + do_osc(&p_fxm->vibr))); - } else if(fx == 0x70) { - int8_t trem = p_fxm->volume + do_osc(&p_fxm->trem); - p_osc->vol = MAX(MIN(trem, 0x20), 0); - } - - // Next channel - p_fxm++; p_cel++; p_osc++; - } - - // Advance tick - if(++tick == speed) tick = 0; - - // Advance playback - if(tick == 0) { - if(++ix_row == 64) { - ix_row = 0; - if(++ix_order >= order_count) ix_order = 0; - } - // Forced order/row - if( ix_nextorder != 0xFF ) { - ix_order = ix_nextorder; - ix_nextorder = 0xFF; - } - if( ix_nextrow != 0xFF ) { - ix_row = ix_nextrow; - ix_nextrow = 0xFF; - } - decrunch_row(); - } - - } - - lockout = false; -} diff --git a/libraries/Robot_Control/src/Squawk.h b/libraries/Robot_Control/src/Squawk.h deleted file mode 100644 index 3481acfa7e9..00000000000 --- a/libraries/Robot_Control/src/Squawk.h +++ /dev/null @@ -1,265 +0,0 @@ -// Squawk Soft-Synthesizer Library for Arduino -// -// Davey Taylor 2013 -// d.taylor@arduino.cc - -#ifndef _SQUAWK_H_ -#define _SQUAWK_H_ -#include -#include -#include "Arduino.h" - -#define Melody const uint8_t PROGMEM - -class SquawkStream { - public: - virtual ~SquawkStream() = 0; - virtual uint8_t read() = 0; - virtual void seek(size_t offset) = 0; -}; -inline SquawkStream::~SquawkStream() { } - -class SquawkSynth { - -protected: - // Load and play specified melody - void play(SquawkStream *melody); - -public: - SquawkSynth() {}; - - // Initialize Squawk to generate samples at sample_rate Hz - void begin(uint16_t sample_rate); - - // Load and play specified melody - // melody needs to point to PROGMEM data - void play(const uint8_t *melody); - - // Resume currently loaded melody (or enable direct osc manipulation by sketch) - void play(); - - // Pause playback - void pause(); - - // Stop playback (unloads song) - void stop(); - - // Tune Squawk to a different frequency - default is 1.0 - void tune(float tuning); - - // Change the tempo - default is 50 - void tempo(uint16_t tempo); -}; - -extern SquawkSynth Squawk; - -// oscillator structure -typedef struct { - uint8_t vol; - uint16_t freq; - uint16_t phase; -} osc_t; - -typedef osc_t Oscillator; - -// oscillator memory -extern osc_t osc[4]; -extern uint8_t pcm; -// channel 0 is pulse wave @ 25% duty -// channel 1 is square wave -// channel 2 is triangle wave -// channel 3 is noise - -// For channel 3, freq is used as part of its LFSR and should not be changed. -// LFSR: Linear feedback shift register, a method of producing a -// pseudo-random bit sequence, used to generate nasty noise. - -#ifdef __AVR_ATmega32U4__ -// Supported configurations for ATmega32U4 -#define SQUAWK_PWM_PIN5 OCR3AL -#define SQUAWK_PWM_PIN11 OCR0A -#define SQUAWK_PWM_PIN3 OCR0B -/* -// NOT SUPPORTED YET -#define SQUAWK_PWM_PIN6 OCR4D -#define SQUAWK_PWM_PIN9 OCR4B -#define SQUAWK_PWM_PIN10 OCR4B -*/ -#endif - -#ifdef __AVR_ATmega168__ -// Supported configurations for ATmega168 -#define SQUAWK_PWM_PIN6 OCR0A -#define SQUAWK_PWM_PIN5 OCR0B -#define SQUAWK_PWM_PIN11 OCR2A -#define SQUAWK_PWM_PIN3 OCR2B -#endif - -#ifdef __AVR_ATmega328P__ -// Supported configurations for ATmega328P -#define SQUAWK_PWM_PIN6 OCR0A -#define SQUAWK_PWM_PIN5 OCR0B -#define SQUAWK_PWM_PIN11 OCR2A -#define SQUAWK_PWM_PIN3 OCR2B -#endif - -/* -// NOT SUPPORTED YET -#define SQUAWK_SPI SPDR -#define SQUAWK_RLD_PORTB PORTB -#define SQUAWK_RLD_PORTC PORTC -*/ - -extern void squawk_playroutine() asm("squawk_playroutine"); - -// SAMPLE GRINDER -// generates samples and updates oscillators -// uses 132 cycles (not counting playroutine) -// ~1/3 CPU @ 44kHz on 16MHz -#define SQUAWK_CONSTRUCT_ISR(TARGET_REGISTER) \ -uint16_t cia, cia_count; \ -intptr_t squawk_register = (intptr_t)&TARGET_REGISTER; \ -ISR(TIMER1_COMPA_vect, ISR_NAKED) { \ - asm volatile( \ - "push r2 " "\n\t" \ - "in r2, __SREG__ " "\n\t" \ - "push r18 " "\n\t" \ - "push r27 " "\n\t" \ - "push r26 " "\n\t" \ - "push r0 " "\n\t" \ - "push r1 " "\n\t" \ -\ - "lds r18, osc+2*%[mul]+%[fre] " "\n\t" \ - "lds r0, osc+2*%[mul]+%[pha] " "\n\t" \ - "add r0, r18 " "\n\t" \ - "sts osc+2*%[mul]+%[pha], r0 " "\n\t" \ - "lds r18, osc+2*%[mul]+%[fre]+1" "\n\t" \ - "lds r1, osc+2*%[mul]+%[pha]+1" "\n\t" \ - "adc r1, r18 " "\n\t" \ - "sts osc+2*%[mul]+%[pha]+1, r1 " "\n\t" \ -\ - "mov r27, r1 " "\n\t" \ - "sbrc r27, 7 " "\n\t" \ - "com r27 " "\n\t" \ - "lsl r27 " "\n\t" \ - "lds r26, osc+2*%[mul]+%[vol] " "\n\t" \ - "subi r27, 128 " "\n\t" \ - "muls r27, r26 " "\n\t" \ - "lsl r1 " "\n\t" \ - "mov r26, r1 " "\n\t" \ -\ - "lds r18, osc+0*%[mul]+%[fre] " "\n\t" \ - "lds r0, osc+0*%[mul]+%[pha] " "\n\t" \ - "add r0, r18 " "\n\t" \ - "sts osc+0*%[mul]+%[pha], r0 " "\n\t" \ - "lds r18, osc+0*%[mul]+%[fre]+1" "\n\t" \ - "lds r1, osc+0*%[mul]+%[pha]+1" "\n\t" \ - "adc r1, r18 " "\n\t" \ - "sts osc+0*%[mul]+%[pha]+1, r1 " "\n\t" \ -\ - "mov r18, r1 " "\n\t" \ - "lsl r18 " "\n\t" \ - "and r18, r1 " "\n\t" \ - "lds r27, osc+0*%[mul]+%[vol] " "\n\t" \ - "sbrc r18, 7 " "\n\t" \ - "neg r27 " "\n\t" \ - "add r26, r27 " "\n\t" \ -\ - "lds r18, osc+1*%[mul]+%[fre] " "\n\t" \ - "lds r0, osc+1*%[mul]+%[pha] " "\n\t" \ - "add r0, r18 " "\n\t" \ - "sts osc+1*%[mul]+%[pha], r0 " "\n\t" \ - "lds r18, osc+1*%[mul]+%[fre]+1" "\n\t" \ - "lds r1, osc+1*%[mul]+%[pha]+1" "\n\t" \ - "adc r1, r18 " "\n\t" \ - "sts osc+1*%[mul]+%[pha]+1, r1 " "\n\t" \ -\ - "lds r27, osc+1*%[mul]+%[vol] " "\n\t" \ - "sbrc r1, 7 " "\n\t" \ - "neg r27 " "\n\t" \ - "add r26, r27 " "\n\t" \ -\ - "ldi r27, 1 " "\n\t" \ - "lds r0, osc+3*%[mul]+%[fre] " "\n\t" \ - "lds r1, osc+3*%[mul]+%[fre]+1" "\n\t" \ - "add r0, r0 " "\n\t" \ - "adc r1, r1 " "\n\t" \ - "sbrc r1, 7 " "\n\t" \ - "eor r0, r27 " "\n\t" \ - "sbrc r1, 6 " "\n\t" \ - "eor r0, r27 " "\n\t" \ - "sts osc+3*%[mul]+%[fre], r0 " "\n\t" \ - "sts osc+3*%[mul]+%[fre]+1, r1 " "\n\t" \ -\ - "lds r27, osc+3*%[mul]+%[vol] " "\n\t" \ - "sbrc r1, 7 " "\n\t" \ - "neg r27 " "\n\t" \ - "add r26, r27 " "\n\t" \ -\ - "lds r27, pcm " "\n\t" \ - "add r26, r27 " "\n\t" \ - "sts %[reg], r26 " "\n\t" \ -\ - "lds r27, cia_count+1 " "\n\t" \ - "lds r26, cia_count " "\n\t" \ - "sbiw r26, 1 " "\n\t" \ - "breq call_playroutine " "\n\t" \ - "sts cia_count+1, r27 " "\n\t" \ - "sts cia_count, r26 " "\n\t" \ - "pop r1 " "\n\t" \ - "pop r0 " "\n\t" \ - "pop r26 " "\n\t" \ - "pop r27 " "\n\t" \ - "pop r18 " "\n\t" \ - "out __SREG__, r2 " "\n\t" \ - "pop r2 " "\n\t" \ - "reti " "\n\t" \ - "call_playroutine: " "\n\t" \ -\ - "lds r27, cia+1 " "\n\t" \ - "lds r26, cia " "\n\t" \ - "sts cia_count+1, r27 " "\n\t" \ - "sts cia_count, r26 " "\n\t" \ -\ - "sei " "\n\t" \ - "push r19 " "\n\t" \ - "push r20 " "\n\t" \ - "push r21 " "\n\t" \ - "push r22 " "\n\t" \ - "push r23 " "\n\t" \ - "push r24 " "\n\t" \ - "push r25 " "\n\t" \ - "push r30 " "\n\t" \ - "push r31 " "\n\t" \ -\ - "clr r1 " "\n\t" \ - "call squawk_playroutine " "\n\t" \ -\ - "pop r31 " "\n\t" \ - "pop r30 " "\n\t" \ - "pop r25 " "\n\t" \ - "pop r24 " "\n\t" \ - "pop r23 " "\n\t" \ - "pop r22 " "\n\t" \ - "pop r21 " "\n\t" \ - "pop r20 " "\n\t" \ - "pop r19 " "\n\t" \ -\ - "pop r1 " "\n\t" \ - "pop r0 " "\n\t" \ - "pop r26 " "\n\t" \ - "pop r27 " "\n\t" \ - "pop r18 " "\n\t" \ - "out __SREG__, r2 " "\n\t" \ - "pop r2 " "\n\t" \ - "reti " "\n\t" \ - : \ - : [reg] "M" _SFR_MEM_ADDR(TARGET_REGISTER), \ - [mul] "M" (sizeof(Oscillator)), \ - [pha] "M" (offsetof(Oscillator, phase)), \ - [fre] "M" (offsetof(Oscillator, freq)), \ - [vol] "M" (offsetof(Oscillator, vol)) \ - ); \ -} - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/SquawkSD.cpp b/libraries/Robot_Control/src/SquawkSD.cpp deleted file mode 100644 index 336c9a36613..00000000000 --- a/libraries/Robot_Control/src/SquawkSD.cpp +++ /dev/null @@ -1,182 +0,0 @@ -#include - -SquawkSynthSD SquawkSD; - -class StreamFile : public SquawkStream { - private: - Fat16 f; - public: - StreamFile(Fat16 file = Fat16()) { f = file; } - uint8_t read() { return f.read(); } - void seek(size_t offset) { f.seekSet(offset); } -}; - -static StreamFile file; - -extern const uint16_t period_tbl[84] PROGMEM; - -void SquawkSynthSD::play(Fat16 melody) { - SquawkSynth::pause(); - file = StreamFile(melody); - SquawkSynth::play(&file); -} - -/* -void SquawkSynthSD::convert(Fat16 in, Fat16 out) { - unsigned int n; - uint8_t patterns = 0, order_count; - unsigned int ptn, row, chn; - uint8_t temp; - - uint8_t fxc[4], fxp[4], note[4], sample[4]; - uint16_t period; - - out.write('S'); // ID - out.write('Q'); - out.write('M'); - out.write('1'); - out.write((uint8_t)0); // No meta data - out.write((uint8_t)0); - - // Write order list, count patterns - in.seek(0x3B6); - order_count = in.read(); - out.write(order_count); - in.seek(0x3B8); - for(n = 0; n < order_count; n++) { - temp = in.read(); - if(temp >= patterns) patterns = temp + 1; - out.write(temp); - } - - // Write patterns - in.seek(0x43C); - for(ptn = 0; ptn < patterns; ptn++) { - for(row = 0; row < 64; row++) { - for(chn = 0; chn < 4; chn++) { - - // Basic extraction - temp = in.read(); // sample.msb and period.msb - period = (temp & 0x0F) << 8; - sample[chn] = temp & 0xF0; - period |= in.read(); // period.lsb - temp = in.read(); // sample.lsb and effect - sample[chn] |= temp >> 4; - fxc[chn] = (temp & 0x0F) << 4; - fxp[chn] = in.read(); // parameters - if(fxc[chn] == 0xE0) { - fxc[chn] |= fxp[chn] >> 4; // extended parameters - fxp[chn] &= 0x0F; - } - - #define DIF(A, B) ((A) > (B) ? ((int32_t)(A) - (int32_t)(B)) : ((int32_t)(B) - (int32_t)(A))) - // Find closest matching period - if(period == 0) { - note[chn] = 0x7F; - } else { - int16_t best = DIF(period, pgm_read_word(&period_tbl[0])); - note[chn] = 0; - for(n = 0; n < sizeof(period_tbl) / sizeof(uint16_t); n++) { - if(DIF(period, pgm_read_word(&period_tbl[n])) < best) { - note[chn] = n; - best = DIF(period, pgm_read_word(&period_tbl[n])); - } - } - } - - // Crunch volume/decimal commands - if(fxc[chn] == 0x50 || fxc[chn] == 0x60 || fxc[chn] == 0xA0) { - fxp[chn] = (fxp[chn] >> 1) & 0x77; - } else if(fxc[chn] == 0x70) { - fxp[chn] = (fxp[chn] & 0xF0) | ((fxp[chn] & 0x0F) >> 1); - } else if(fxc[chn] == 0xC0 || fxc[chn] == 0xEA || fxc[chn] == 0xEB) { - fxp[chn] >>= 1; - } else if(fxc[chn] == 0xD0) { - fxp[chn] = ((fxp[chn] >> 4) * 10) | (fxp[chn] & 0x0F); - } - - // Re-nibblify - it's a word! - if(chn != 3) { - if((fxc[chn] & 0xF0) == 0xE0) fxp[chn] |= fxc[chn] << 4; - fxc[chn] >>= 4; - } - - } - - // Ghetto crunch the last channel to save a byte - switch(fxc[3]) { - case 0x50: case 0x60: case 0xA0: - fxc[3] = 0x1; - if((fxp[3] >> 4) >= (fxp[3] & 0x0F)) { - fxp[3] = 0x80 + ((fxp[3] >> 4) - (fxp[3] & 0x0F)); - } else { - fxp[3] = ((fxp[3] & 0x0F) - (fxp[3] >> 4)); - } - break; - case 0x70: - fxc[3] = (fxp[3] & 0x4) ? 0x3 : 0x2; - fxp[3] = (fxp[3] >> 4) | ((fxp[3] & 0x03) << 4); - break; - case 0xC0: - fxc[3] = 0x4; - fxp[3] &= 0x1F; - break; - case 0xB0: - fxc[3] = 0x5; - fxp[3] &= 0x1F; - break; - case 0xD0: - fxc[3] = 0x6; - if(fxp[3] > 63) fxp[3] = 0; - break; - case 0xF0: - if(fxp[3] > 0x20) { - fxc[3] = 0x0; - fxp[3] = 0x00; - } else { - fxc[3] = 0x7; - } - break; - case 0xE7: - fxc[3] = 0x8; - break; - case 0xE9: - fxc[3] = 0x9; - break; - case 0xEA: - fxc[3] = 0xA; - fxp[3] |= 0x08; - break; - case 0xEB: - fxc[3] = 0xA; - break; - case 0xEC: - fxc[3] = 0xB; - break; - case 0xED: - fxc[3] = 0xB; - fxp[3] |= 0x10; - break; - case 0xEE: - fxc[3] = 0xC; - break; - default: - fxc[3] = 0; - fxp[3] = 0; - } - if(note[3] != 0x7F) fxp[3] |= 0x80; - if(sample[3]) fxp[3] |= 0x40; - - // Write out - out.write((fxc[0]) | fxc[1] << 4); - out.write(fxp[0]); - out.write(fxp[1]); - out.write((fxc[2]) | fxc[3] << 4); - out.write(fxp[2]); - out.write(fxp[3]); - out.write(note[0] | (sample[0] == 0 ? 0x00 : 0x80)); - out.write(note[1] | (sample[1] == 0 ? 0x00 : 0x80)); - out.write(note[2] | (sample[2] == 0 ? 0x00 : 0x80)); - } - } -}*/ diff --git a/libraries/Robot_Control/src/SquawkSD.h b/libraries/Robot_Control/src/SquawkSD.h deleted file mode 100644 index 89d46a59a25..00000000000 --- a/libraries/Robot_Control/src/SquawkSD.h +++ /dev/null @@ -1,17 +0,0 @@ -#ifndef _SQUAWKSD_H_ -#define _SQUAWKSD_H_ -#include -#include "Fat16.h" - -class SquawkSynthSD : public SquawkSynth { - private: - Fat16 f; - public: - inline void play() { Squawk.play(); }; - void play(Fat16 file); - //void convert(Fat16 in, Fat16 out); -}; - -extern SquawkSynthSD SquawkSD; - -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/communication.cpp b/libraries/Robot_Control/src/communication.cpp deleted file mode 100644 index 9e796c373b3..00000000000 --- a/libraries/Robot_Control/src/communication.cpp +++ /dev/null @@ -1,29 +0,0 @@ -#include - -bool RobotControl::isActionDone(){ - if(messageIn.receiveData()){ - if(messageIn.readByte()==COMMAND_ACTION_DONE){ - return true; - } - } - return false; -} - -void RobotControl::pauseMode(uint8_t onOff){ - messageOut.writeByte(COMMAND_PAUSE_MODE); - if(onOff){ - messageOut.writeByte(true); - }else{ - messageOut.writeByte(false); - } - messageOut.sendData(); -} - -void RobotControl::lineFollowConfig(uint8_t KP, uint8_t KD, uint8_t robotSpeed, uint8_t intergrationTime){ - messageOut.writeByte(COMMAND_LINE_FOLLOW_CONFIG); - messageOut.writeByte(KP); - messageOut.writeByte(KD); - messageOut.writeByte(robotSpeed); - messageOut.writeByte(intergrationTime); - messageOut.sendData(); -} diff --git a/libraries/Robot_Control/src/glcdfont.c b/libraries/Robot_Control/src/glcdfont.c deleted file mode 100644 index 31017308a16..00000000000 --- a/libraries/Robot_Control/src/glcdfont.c +++ /dev/null @@ -1,266 +0,0 @@ -#include -#include - -#ifndef FONT5X7_H -#define FONT5X7_H - -// standard ascii 5x7 font - -static const unsigned char font[] PROGMEM = { - 0x00, 0x00, 0x00, 0x00, 0x00, - 0x3E, 0x5B, 0x4F, 0x5B, 0x3E, - 0x3E, 0x6B, 0x4F, 0x6B, 0x3E, - 0x1C, 0x3E, 0x7C, 0x3E, 0x1C, - 0x18, 0x3C, 0x7E, 0x3C, 0x18, - 0x1C, 0x57, 0x7D, 0x57, 0x1C, - 0x1C, 0x5E, 0x7F, 0x5E, 0x1C, - 0x00, 0x18, 0x3C, 0x18, 0x00, - 0xFF, 0xE7, 0xC3, 0xE7, 0xFF, - 0x00, 0x18, 0x24, 0x18, 0x00, - 0xFF, 0xE7, 0xDB, 0xE7, 0xFF, - 0x30, 0x48, 0x3A, 0x06, 0x0E, - 0x26, 0x29, 0x79, 0x29, 0x26, - 0x40, 0x7F, 0x05, 0x05, 0x07, - 0x40, 0x7F, 0x05, 0x25, 0x3F, - 0x5A, 0x3C, 0xE7, 0x3C, 0x5A, - 0x7F, 0x3E, 0x1C, 0x1C, 0x08, - 0x08, 0x1C, 0x1C, 0x3E, 0x7F, - 0x14, 0x22, 0x7F, 0x22, 0x14, - 0x5F, 0x5F, 0x00, 0x5F, 0x5F, - 0x06, 0x09, 0x7F, 0x01, 0x7F, - 0x00, 0x66, 0x89, 0x95, 0x6A, - 0x60, 0x60, 0x60, 0x60, 0x60, - 0x94, 0xA2, 0xFF, 0xA2, 0x94, - 0x08, 0x04, 0x7E, 0x04, 0x08, - 0x10, 0x20, 0x7E, 0x20, 0x10, - 0x08, 0x08, 0x2A, 0x1C, 0x08, - 0x08, 0x1C, 0x2A, 0x08, 0x08, - 0x1E, 0x10, 0x10, 0x10, 0x10, - 0x0C, 0x1E, 0x0C, 0x1E, 0x0C, - 0x30, 0x38, 0x3E, 0x38, 0x30, - 0x06, 0x0E, 0x3E, 0x0E, 0x06, - 0x00, 0x00, 0x00, 0x00, 0x00, - 0x00, 0x00, 0x5F, 0x00, 0x00, - 0x00, 0x07, 0x00, 0x07, 0x00, - 0x14, 0x7F, 0x14, 0x7F, 0x14, - 0x24, 0x2A, 0x7F, 0x2A, 0x12, - 0x23, 0x13, 0x08, 0x64, 0x62, - 0x36, 0x49, 0x56, 0x20, 0x50, - 0x00, 0x08, 0x07, 0x03, 0x00, - 0x00, 0x1C, 0x22, 0x41, 0x00, - 0x00, 0x41, 0x22, 0x1C, 0x00, - 0x2A, 0x1C, 0x7F, 0x1C, 0x2A, - 0x08, 0x08, 0x3E, 0x08, 0x08, - 0x00, 0x80, 0x70, 0x30, 0x00, - 0x08, 0x08, 0x08, 0x08, 0x08, - 0x00, 0x00, 0x60, 0x60, 0x00, - 0x20, 0x10, 0x08, 0x04, 0x02, - 0x3E, 0x51, 0x49, 0x45, 0x3E, - 0x00, 0x42, 0x7F, 0x40, 0x00, - 0x72, 0x49, 0x49, 0x49, 0x46, - 0x21, 0x41, 0x49, 0x4D, 0x33, - 0x18, 0x14, 0x12, 0x7F, 0x10, - 0x27, 0x45, 0x45, 0x45, 0x39, - 0x3C, 0x4A, 0x49, 0x49, 0x31, - 0x41, 0x21, 0x11, 0x09, 0x07, - 0x36, 0x49, 0x49, 0x49, 0x36, - 0x46, 0x49, 0x49, 0x29, 0x1E, - 0x00, 0x00, 0x14, 0x00, 0x00, - 0x00, 0x40, 0x34, 0x00, 0x00, - 0x00, 0x08, 0x14, 0x22, 0x41, - 0x14, 0x14, 0x14, 0x14, 0x14, - 0x00, 0x41, 0x22, 0x14, 0x08, - 0x02, 0x01, 0x59, 0x09, 0x06, - 0x3E, 0x41, 0x5D, 0x59, 0x4E, - 0x7C, 0x12, 0x11, 0x12, 0x7C, - 0x7F, 0x49, 0x49, 0x49, 0x36, - 0x3E, 0x41, 0x41, 0x41, 0x22, - 0x7F, 0x41, 0x41, 0x41, 0x3E, - 0x7F, 0x49, 0x49, 0x49, 0x41, - 0x7F, 0x09, 0x09, 0x09, 0x01, - 0x3E, 0x41, 0x41, 0x51, 0x73, - 0x7F, 0x08, 0x08, 0x08, 0x7F, - 0x00, 0x41, 0x7F, 0x41, 0x00, - 0x20, 0x40, 0x41, 0x3F, 0x01, - 0x7F, 0x08, 0x14, 0x22, 0x41, - 0x7F, 0x40, 0x40, 0x40, 0x40, - 0x7F, 0x02, 0x1C, 0x02, 0x7F, - 0x7F, 0x04, 0x08, 0x10, 0x7F, - 0x3E, 0x41, 0x41, 0x41, 0x3E, - 0x7F, 0x09, 0x09, 0x09, 0x06, - 0x3E, 0x41, 0x51, 0x21, 0x5E, - 0x7F, 0x09, 0x19, 0x29, 0x46, - 0x26, 0x49, 0x49, 0x49, 0x32, - 0x03, 0x01, 0x7F, 0x01, 0x03, - 0x3F, 0x40, 0x40, 0x40, 0x3F, - 0x1F, 0x20, 0x40, 0x20, 0x1F, - 0x3F, 0x40, 0x38, 0x40, 0x3F, - 0x63, 0x14, 0x08, 0x14, 0x63, - 0x03, 0x04, 0x78, 0x04, 0x03, - 0x61, 0x59, 0x49, 0x4D, 0x43, - 0x00, 0x7F, 0x41, 0x41, 0x41, - 0x02, 0x04, 0x08, 0x10, 0x20, - 0x00, 0x41, 0x41, 0x41, 0x7F, - 0x04, 0x02, 0x01, 0x02, 0x04, - 0x40, 0x40, 0x40, 0x40, 0x40, - 0x00, 0x03, 0x07, 0x08, 0x00, - 0x20, 0x54, 0x54, 0x78, 0x40, - 0x7F, 0x28, 0x44, 0x44, 0x38, - 0x38, 0x44, 0x44, 0x44, 0x28, - 0x38, 0x44, 0x44, 0x28, 0x7F, - 0x38, 0x54, 0x54, 0x54, 0x18, - 0x00, 0x08, 0x7E, 0x09, 0x02, - 0x18, 0xA4, 0xA4, 0x9C, 0x78, - 0x7F, 0x08, 0x04, 0x04, 0x78, - 0x00, 0x44, 0x7D, 0x40, 0x00, - 0x20, 0x40, 0x40, 0x3D, 0x00, - 0x7F, 0x10, 0x28, 0x44, 0x00, - 0x00, 0x41, 0x7F, 0x40, 0x00, - 0x7C, 0x04, 0x78, 0x04, 0x78, - 0x7C, 0x08, 0x04, 0x04, 0x78, - 0x38, 0x44, 0x44, 0x44, 0x38, - 0xFC, 0x18, 0x24, 0x24, 0x18, - 0x18, 0x24, 0x24, 0x18, 0xFC, - 0x7C, 0x08, 0x04, 0x04, 0x08, - 0x48, 0x54, 0x54, 0x54, 0x24, - 0x04, 0x04, 0x3F, 0x44, 0x24, - 0x3C, 0x40, 0x40, 0x20, 0x7C, - 0x1C, 0x20, 0x40, 0x20, 0x1C, - 0x3C, 0x40, 0x30, 0x40, 0x3C, - 0x44, 0x28, 0x10, 0x28, 0x44, - 0x4C, 0x90, 0x90, 0x90, 0x7C, - 0x44, 0x64, 0x54, 0x4C, 0x44, - 0x00, 0x08, 0x36, 0x41, 0x00, - 0x00, 0x00, 0x77, 0x00, 0x00, - 0x00, 0x41, 0x36, 0x08, 0x00, - 0x02, 0x01, 0x02, 0x04, 0x02, - 0x3C, 0x26, 0x23, 0x26, 0x3C, - 0x1E, 0xA1, 0xA1, 0x61, 0x12, - 0x3A, 0x40, 0x40, 0x20, 0x7A, - 0x38, 0x54, 0x54, 0x55, 0x59, - 0x21, 0x55, 0x55, 0x79, 0x41, - 0x21, 0x54, 0x54, 0x78, 0x41, - 0x21, 0x55, 0x54, 0x78, 0x40, - 0x20, 0x54, 0x55, 0x79, 0x40, - 0x0C, 0x1E, 0x52, 0x72, 0x12, - 0x39, 0x55, 0x55, 0x55, 0x59, - 0x39, 0x54, 0x54, 0x54, 0x59, - 0x39, 0x55, 0x54, 0x54, 0x58, - 0x00, 0x00, 0x45, 0x7C, 0x41, - 0x00, 0x02, 0x45, 0x7D, 0x42, - 0x00, 0x01, 0x45, 0x7C, 0x40, - 0xF0, 0x29, 0x24, 0x29, 0xF0, - 0xF0, 0x28, 0x25, 0x28, 0xF0, - 0x7C, 0x54, 0x55, 0x45, 0x00, - 0x20, 0x54, 0x54, 0x7C, 0x54, - 0x7C, 0x0A, 0x09, 0x7F, 0x49, - 0x32, 0x49, 0x49, 0x49, 0x32, - 0x32, 0x48, 0x48, 0x48, 0x32, - 0x32, 0x4A, 0x48, 0x48, 0x30, - 0x3A, 0x41, 0x41, 0x21, 0x7A, - 0x3A, 0x42, 0x40, 0x20, 0x78, - 0x00, 0x9D, 0xA0, 0xA0, 0x7D, - 0x39, 0x44, 0x44, 0x44, 0x39, - 0x3D, 0x40, 0x40, 0x40, 0x3D, - 0x3C, 0x24, 0xFF, 0x24, 0x24, - 0x48, 0x7E, 0x49, 0x43, 0x66, - 0x2B, 0x2F, 0xFC, 0x2F, 0x2B, - 0xFF, 0x09, 0x29, 0xF6, 0x20, - 0xC0, 0x88, 0x7E, 0x09, 0x03, - 0x20, 0x54, 0x54, 0x79, 0x41, - 0x00, 0x00, 0x44, 0x7D, 0x41, - 0x30, 0x48, 0x48, 0x4A, 0x32, - 0x38, 0x40, 0x40, 0x22, 0x7A, - 0x00, 0x7A, 0x0A, 0x0A, 0x72, - 0x7D, 0x0D, 0x19, 0x31, 0x7D, - 0x26, 0x29, 0x29, 0x2F, 0x28, - 0x26, 0x29, 0x29, 0x29, 0x26, - 0x30, 0x48, 0x4D, 0x40, 0x20, - 0x38, 0x08, 0x08, 0x08, 0x08, - 0x08, 0x08, 0x08, 0x08, 0x38, - 0x2F, 0x10, 0xC8, 0xAC, 0xBA, - 0x2F, 0x10, 0x28, 0x34, 0xFA, - 0x00, 0x00, 0x7B, 0x00, 0x00, - 0x08, 0x14, 0x2A, 0x14, 0x22, - 0x22, 0x14, 0x2A, 0x14, 0x08, - 0xAA, 0x00, 0x55, 0x00, 0xAA, - 0xAA, 0x55, 0xAA, 0x55, 0xAA, - 0x00, 0x00, 0x00, 0xFF, 0x00, - 0x10, 0x10, 0x10, 0xFF, 0x00, - 0x14, 0x14, 0x14, 0xFF, 0x00, - 0x10, 0x10, 0xFF, 0x00, 0xFF, - 0x10, 0x10, 0xF0, 0x10, 0xF0, - 0x14, 0x14, 0x14, 0xFC, 0x00, - 0x14, 0x14, 0xF7, 0x00, 0xFF, - 0x00, 0x00, 0xFF, 0x00, 0xFF, - 0x14, 0x14, 0xF4, 0x04, 0xFC, - 0x14, 0x14, 0x17, 0x10, 0x1F, - 0x10, 0x10, 0x1F, 0x10, 0x1F, - 0x14, 0x14, 0x14, 0x1F, 0x00, - 0x10, 0x10, 0x10, 0xF0, 0x00, - 0x00, 0x00, 0x00, 0x1F, 0x10, - 0x10, 0x10, 0x10, 0x1F, 0x10, - 0x10, 0x10, 0x10, 0xF0, 0x10, - 0x00, 0x00, 0x00, 0xFF, 0x10, - 0x10, 0x10, 0x10, 0x10, 0x10, - 0x10, 0x10, 0x10, 0xFF, 0x10, - 0x00, 0x00, 0x00, 0xFF, 0x14, - 0x00, 0x00, 0xFF, 0x00, 0xFF, - 0x00, 0x00, 0x1F, 0x10, 0x17, - 0x00, 0x00, 0xFC, 0x04, 0xF4, - 0x14, 0x14, 0x17, 0x10, 0x17, - 0x14, 0x14, 0xF4, 0x04, 0xF4, - 0x00, 0x00, 0xFF, 0x00, 0xF7, - 0x14, 0x14, 0x14, 0x14, 0x14, - 0x14, 0x14, 0xF7, 0x00, 0xF7, - 0x14, 0x14, 0x14, 0x17, 0x14, - 0x10, 0x10, 0x1F, 0x10, 0x1F, - 0x14, 0x14, 0x14, 0xF4, 0x14, - 0x10, 0x10, 0xF0, 0x10, 0xF0, - 0x00, 0x00, 0x1F, 0x10, 0x1F, - 0x00, 0x00, 0x00, 0x1F, 0x14, - 0x00, 0x00, 0x00, 0xFC, 0x14, - 0x00, 0x00, 0xF0, 0x10, 0xF0, - 0x10, 0x10, 0xFF, 0x10, 0xFF, - 0x14, 0x14, 0x14, 0xFF, 0x14, - 0x10, 0x10, 0x10, 0x1F, 0x00, - 0x00, 0x00, 0x00, 0xF0, 0x10, - 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, - 0xF0, 0xF0, 0xF0, 0xF0, 0xF0, - 0xFF, 0xFF, 0xFF, 0x00, 0x00, - 0x00, 0x00, 0x00, 0xFF, 0xFF, - 0x0F, 0x0F, 0x0F, 0x0F, 0x0F, - 0x38, 0x44, 0x44, 0x38, 0x44, - 0x7C, 0x2A, 0x2A, 0x3E, 0x14, - 0x7E, 0x02, 0x02, 0x06, 0x06, - 0x02, 0x7E, 0x02, 0x7E, 0x02, - 0x63, 0x55, 0x49, 0x41, 0x63, - 0x38, 0x44, 0x44, 0x3C, 0x04, - 0x40, 0x7E, 0x20, 0x1E, 0x20, - 0x06, 0x02, 0x7E, 0x02, 0x02, - 0x99, 0xA5, 0xE7, 0xA5, 0x99, - 0x1C, 0x2A, 0x49, 0x2A, 0x1C, - 0x4C, 0x72, 0x01, 0x72, 0x4C, - 0x30, 0x4A, 0x4D, 0x4D, 0x30, - 0x30, 0x48, 0x78, 0x48, 0x30, - 0xBC, 0x62, 0x5A, 0x46, 0x3D, - 0x3E, 0x49, 0x49, 0x49, 0x00, - 0x7E, 0x01, 0x01, 0x01, 0x7E, - 0x2A, 0x2A, 0x2A, 0x2A, 0x2A, - 0x44, 0x44, 0x5F, 0x44, 0x44, - 0x40, 0x51, 0x4A, 0x44, 0x40, - 0x40, 0x44, 0x4A, 0x51, 0x40, - 0x00, 0x00, 0xFF, 0x01, 0x03, - 0xE0, 0x80, 0xFF, 0x00, 0x00, - 0x08, 0x08, 0x6B, 0x6B, 0x08, - 0x36, 0x12, 0x36, 0x24, 0x36, - 0x06, 0x0F, 0x09, 0x0F, 0x06, - 0x00, 0x00, 0x18, 0x18, 0x00, - 0x00, 0x00, 0x10, 0x10, 0x00, - 0x30, 0x40, 0xFF, 0x01, 0x01, - 0x00, 0x1F, 0x01, 0x01, 0x1E, - 0x00, 0x19, 0x1D, 0x17, 0x12, - 0x00, 0x3C, 0x3C, 0x3C, 0x3C, - 0x00, 0x00, 0x00, 0x00, 0x00, -}; -#endif diff --git a/libraries/Robot_Control/src/helper.cpp b/libraries/Robot_Control/src/helper.cpp deleted file mode 100644 index a7a956aa502..00000000000 --- a/libraries/Robot_Control/src/helper.cpp +++ /dev/null @@ -1,45 +0,0 @@ -#include "ArduinoRobot.h" - -void RobotControl::drawBase(){ - Arduino_LCD::drawCircle(64,80,50,foreGround); - Arduino_LCD::drawLine(64,30,64,20,foreGround); -} -void RobotControl::drawDire(int16_t dire){ - static uint8_t x_old; - static uint8_t y_old; - static uint8_t x_t_old; - static uint8_t y_t_old; - - uint8_t x=60*sin(dire/360.0*6.28)+64; - uint8_t x_t=40*sin(dire/360.0*6.28)+64; - uint8_t y=60*cos(dire/360.0*6.28)+80; - uint8_t y_t=40*cos(dire/360.0*6.28)+80; - - Arduino_LCD::drawLine(x_t_old,y_t_old,x_old,y_old,backGround); - Arduino_LCD::drawLine(x_t,y_t,x,y,RED); - - x_old=x; - y_old=y; - x_t_old=x_t; - y_t_old=y_t; -} - -void RobotControl::drawCompass(uint16_t value){ - drawBase(); - drawDire(value); - debugPrint(value,57,76); -} - -//display logos -void RobotControl::displayLogos(){ - _drawBMP("lg0.bmp",0,0); - delay(2000); - _drawBMP("lg1.bmp",0,0); - delay(2000); - clearScreen(); -} - -//wait for a button to be pressed -void RobotControl::waitContinue(uint8_t key){ - while(!(Robot.keyboardRead()==key)); -} diff --git a/libraries/Robot_Control/src/information.cpp b/libraries/Robot_Control/src/information.cpp deleted file mode 100644 index c36e9cedf8a..00000000000 --- a/libraries/Robot_Control/src/information.cpp +++ /dev/null @@ -1,41 +0,0 @@ -/*#include -//0 - 319: pic array, - -//320 - 337 username, -#define ADDRESS_USERNAME 320 -//338 - 355 robotname, -#define ADDRESS_ROBOTNAME 338 -//356 - 373 cityname, -#define ADDRESS_CITYNAME 356 - //374- 391 countryname, -#define ADDRESS_COUNTRYNAME 374 -//508-511 robot info -#define ADDRESS_ROBOTINFO 508 - - -void RobotControl::getMyName(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_USERNAME,(uint8_t*)container,18); -} -void RobotControl::getRobotName(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_ROBOTNAME,(uint8_t*)container,18); -} -void RobotControl::getMyCity(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_CITYNAME,(uint8_t*)container,18); -} -void RobotControl::getMyCountry(char* container){ - EEPROM_I2C::readBuffer(ADDRESS_COUNTRYNAME,(uint8_t*)container,18); -} - -void RobotControl::setMyName(char* text){ - EEPROM_I2C::writePage(ADDRESS_USERNAME,(uint8_t*)text,18); -} -void RobotControl::setRobotName(char* text){ - EEPROM_I2C::writePage(ADDRESS_ROBOTNAME,(uint8_t*)text,18); -} -void RobotControl::setMyCity(char* text){ - EEPROM_I2C::writePage(ADDRESS_CITYNAME,(uint8_t*)text,18); -} -void RobotControl::setMyCountry(char* text){ - EEPROM_I2C::writePage(ADDRESS_COUNTRYNAME,(uint8_t*)text,18); -} -*/ \ No newline at end of file diff --git a/libraries/Robot_Control/src/keyboard.cpp b/libraries/Robot_Control/src/keyboard.cpp deleted file mode 100644 index 7e647bb3208..00000000000 --- a/libraries/Robot_Control/src/keyboard.cpp +++ /dev/null @@ -1,65 +0,0 @@ -#include "ArduinoRobot.h" - -#if ARDUINO >= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif -int pul_min[]={0,133,319,494,732}; -int pul_max[]={10,153,339,514,752}; -/*int pul_min[]={0,123,295,471,714}; -int pul_max[]={0,143,315,491,734};*/ -/* -int pul_min[]={0,133,319,494,732}; -int pul_max[]={10,153,339,514,752}; -*/ -void sort(int* v); - -void RobotControl::keyboardCalibrate(int *vals){ - for(int i=0;i<5;i++){ - pul_min[i]=vals[i]-10; - pul_max[i]=vals[i]+10; - } -} -int8_t RobotControl::keyboardRead(void) -{ - - int lectura_pul; - int8_t conta_pul=0; - static int anterior=0; - - lectura_pul = this->averageAnalogInput(KEY); - - while ((conta_pul < NUMBER_BUTTONS) && !(lectura_pul >= pul_min[conta_pul] && lectura_pul <= pul_max[conta_pul])) - conta_pul++; - - if (conta_pul >= NUMBER_BUTTONS) - conta_pul = -1; - else - delay(100); - - return conta_pul; -} - -int RobotControl::averageAnalogInput(int pinNum) -{ - int vals[5]; - for(int i=0;i<5;i++){ - for(int j=i;j<5;j++){ - vals[j]=::analogRead(pinNum); - } - sort(vals); - } - return vals[0]; -} -void sort(int* v){ - int tmp; - for(int i=0;i<4;i++) - for(int j=i+1;j<5;j++) - if(v[j]foreGround=foreGround; - this->backGround=backGround; -} -void RobotControl::_enableLCD(){ - DDRB = DDRB & 0xEF; //pinMode(CS_SD,INPUT); - DDRB = DDRB | 0x20; //pinMode(CS_LCD,OUTPUT); -} -/*void RobotControl::_setErase(uint8_t posX, uint8_t posY){ - Arduino_LCD::setCursor(posX,posY); - Arduino_LCD::setTextColor(backGround); - Arduino_LCD::setTextSize(1); -} -void RobotControl::_setWrite(uint8_t posX, uint8_t posY){ - Arduino_LCD::setCursor(posX,posY); - Arduino_LCD::setTextColor(foreGround); - Arduino_LCD::setTextSize(1); -}*/ -/* -void RobotControl::text(int value, uint8_t posX, uint8_t posY, bool EW){ - if(EW) - _setWrite(posX,posY); - else - _setErase(posX,posY); - Arduino_LCD::print(value); -} -void RobotControl::text(long value, uint8_t posX, uint8_t posY, bool EW){ - if(EW) - _setWrite(posX,posY); - else - _setErase(posX,posY); - Arduino_LCD::print(value); -} -void RobotControl::text(char* value, uint8_t posX, uint8_t posY, bool EW){ - if(EW) - _setWrite(posX,posY); - else - _setErase(posX,posY); - Arduino_LCD::print(value); -} -void RobotControl::text(char value, uint8_t posX, uint8_t posY, bool EW){ - if(EW) - _setWrite(posX,posY); - else - _setErase(posX,posY); - Arduino_LCD::print(value); -} -*/ - -void RobotControl::debugPrint(long value, uint8_t x, uint8_t y){ - static long oldVal=0; - Arduino_LCD::stroke(backGround); - text(oldVal,x,y); - Arduino_LCD::stroke(foreGround); - text(value,x,y); - oldVal=value; -} - -void RobotControl::clearScreen(){ - Arduino_LCD::fillScreen(backGround); -} - -void RobotControl::drawBMP(char* filename, uint8_t x, uint8_t y){ - /*for(int j=0;j= screenWidth) || (y >= screenHeight)) return; - - // Crop area to be loaded - if((x+width-1) >= screenWidth) width = screenWidth - x; - if((y+height-1) >= screenHeight) height = screenHeight - y; - - // Set TFT address window to clipped image bounds - Arduino_LCD::setAddrWindow(x, y, x+width-1, y+height-1); - - // launch the reading command - _drawBMP_EEPROM(iconOffset, width, height); -} - -// Draw BMP from SD card through the filename -void RobotControl::_drawBMP(char* filename, uint8_t posX, uint8_t posY){ - uint8_t bmpWidth, bmpHeight; // W+H in pixels - uint8_t bmpDepth; // Bit depth (currently must be 24) - uint32_t bmpImageoffset; // Start of image data in file - uint32_t rowSize; // Not always = bmpWidth; may have padding - uint8_t sdbuffer[3*BUFFPIXEL]; // pixel buffer (R+G+B per pixel) - uint8_t buffidx = sizeof(sdbuffer); // Current position in sdbuffer - bool goodBmp = false; // Set to true on valid header parse - bool flip = true; // BMP is stored bottom-to-top - uint8_t w, h, row, col; - uint8_t r, g, b; - uint32_t pos = 0; - - // Open requested file on SD card - if ((file.open(filename,O_READ)) == NULL) { - return; - } - - // Parse BMP header - if(read16(file) == 0x4D42) { // BMP signature - read32(file);//uint32_t aux = read32(file); - (void)read32(file); // Read & ignore creator bytes - bmpImageoffset = read32(file); // Start of image data - - // Read DIB header - (void)read32(file);//aux = read32(file); - bmpWidth = read32(file); - bmpHeight = read32(file); - - if(read16(file) == 1) { // # planes -- must be '1' - bmpDepth = read16(file); // bits per pixel - if((bmpDepth == 24) && (read32(file) == 0)) { // 0 = uncompressed - goodBmp = true; // Supported BMP format -- proceed! - - // BMP rows are padded (if needed) to 4-byte boundary - rowSize = (bmpWidth * 3 + 3) & ~3; - - // If bmpHeight is negative, image is in top-down order. - // This is not canon but has been observed in the wild. - if(bmpHeight < 0) { - bmpHeight = -bmpHeight; - flip = false; - } - - // Crop area to be loaded - w = bmpWidth; - h = bmpHeight; - - // Start drawing - //_enableLCD(); - Arduino_LCD::setAddrWindow(posX, posY, posX+bmpWidth-1, posY+bmpHeight-1); - - for (row=0; row= sizeof(sdbuffer)) { // Indeed - //_enableSD(); - file.read(sdbuffer, sizeof(sdbuffer)); - buffidx = 0; // Set index to beginning - //_enableLCD(); - } - // Convert pixel from BMP to TFT format, push to display - b = sdbuffer[buffidx++]; - g = sdbuffer[buffidx++]; - r = sdbuffer[buffidx++]; - - int color = Arduino_LCD::Color565(r,g,b); - - Arduino_LCD::pushColor(color); - } // end pixel - } // end scanline - //_enableSD(); - } // end goodBmp*/ - } - } - file.close(); - //_enableLCD(); -} -uint16_t read16(Fat16& f) { - uint16_t result; - f.read(&result,sizeof(result)); - return result; -} -uint32_t read32(Fat16& f) { - uint32_t result; - f.read(&result,sizeof(result)); - return result; -} -/* -uint16_t color565(uint8_t r, uint8_t g, uint8_t b) { - return ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3); -}*/ - - -void RobotControl::_drawBMP_EEPROM(uint16_t address, uint8_t width, uint8_t height){ - uint16_t u16retVal = 0; - EEPROM_I2C::_beginTransmission(address); - EEPROM_I2C::_endTransmission(); - /*Wire.beginTransmission(DEVICEADDRESS); - Wire.write( (address >> 8) & 0xFF ); - Wire.write( (address >> 0) & 0xFF ); - Wire.endTransmission();*/ - - long s = width * height ; - for(long j = 0; j < (long) s >> 4; j++) { // divided by 32, times 2 - Wire.requestFrom(DEVICEADDRESS, 32); - for(int i = 0; i < 32; i+=2) { - u16retVal = Wire.read(); - u16retVal = (u16retVal << 8) + Wire.read(); - Arduino_LCD::pushColor(u16retVal); - } - } - -} -void RobotControl::beginBMPFromEEPROM(){ - _eeprom_bmp=(EEPROM_BMP*)malloc(NUM_EEPROM_BMP*sizeof(EEPROM_BMP)); - EEPROM_I2C::_beginTransmission(0); - EEPROM_I2C::_endTransmission(); - - for(uint8_t j=0;j -#else - #define pgm_read_byte(addr) (*(const unsigned char *)(addr)) -#endif - -Adafruit_GFX::Adafruit_GFX(int16_t w, int16_t h): - WIDTH(w), HEIGHT(h) -{ - _width = WIDTH; - _height = HEIGHT; - rotation = 0; - cursor_y = cursor_x = 0; - textsize = 1; - textcolor = textbgcolor = 0xFFFF; - wrap = true; -} - -// Draw a circle outline -void Adafruit_GFX::drawCircle(int16_t x0, int16_t y0, int16_t r, - uint16_t color) { - int16_t f = 1 - r; - int16_t ddF_x = 1; - int16_t ddF_y = -2 * r; - int16_t x = 0; - int16_t y = r; - - drawPixel(x0 , y0+r, color); - drawPixel(x0 , y0-r, color); - drawPixel(x0+r, y0 , color); - drawPixel(x0-r, y0 , color); - - while (x= 0) { - y--; - ddF_y += 2; - f += ddF_y; - } - x++; - ddF_x += 2; - f += ddF_x; - - drawPixel(x0 + x, y0 + y, color); - drawPixel(x0 - x, y0 + y, color); - drawPixel(x0 + x, y0 - y, color); - drawPixel(x0 - x, y0 - y, color); - drawPixel(x0 + y, y0 + x, color); - drawPixel(x0 - y, y0 + x, color); - drawPixel(x0 + y, y0 - x, color); - drawPixel(x0 - y, y0 - x, color); - } -} - -void Adafruit_GFX::drawCircleHelper( int16_t x0, int16_t y0, - int16_t r, uint8_t cornername, uint16_t color) { - int16_t f = 1 - r; - int16_t ddF_x = 1; - int16_t ddF_y = -2 * r; - int16_t x = 0; - int16_t y = r; - - while (x= 0) { - y--; - ddF_y += 2; - f += ddF_y; - } - x++; - ddF_x += 2; - f += ddF_x; - if (cornername & 0x4) { - drawPixel(x0 + x, y0 + y, color); - drawPixel(x0 + y, y0 + x, color); - } - if (cornername & 0x2) { - drawPixel(x0 + x, y0 - y, color); - drawPixel(x0 + y, y0 - x, color); - } - if (cornername & 0x8) { - drawPixel(x0 - y, y0 + x, color); - drawPixel(x0 - x, y0 + y, color); - } - if (cornername & 0x1) { - drawPixel(x0 - y, y0 - x, color); - drawPixel(x0 - x, y0 - y, color); - } - } -} - -void Adafruit_GFX::fillCircle(int16_t x0, int16_t y0, int16_t r, - uint16_t color) { - drawFastVLine(x0, y0-r, 2*r+1, color); - fillCircleHelper(x0, y0, r, 3, 0, color); -} - -// Used to do circles and roundrects -void Adafruit_GFX::fillCircleHelper(int16_t x0, int16_t y0, int16_t r, - uint8_t cornername, int16_t delta, uint16_t color) { - - int16_t f = 1 - r; - int16_t ddF_x = 1; - int16_t ddF_y = -2 * r; - int16_t x = 0; - int16_t y = r; - - while (x= 0) { - y--; - ddF_y += 2; - f += ddF_y; - } - x++; - ddF_x += 2; - f += ddF_x; - - if (cornername & 0x1) { - drawFastVLine(x0+x, y0-y, 2*y+1+delta, color); - drawFastVLine(x0+y, y0-x, 2*x+1+delta, color); - } - if (cornername & 0x2) { - drawFastVLine(x0-x, y0-y, 2*y+1+delta, color); - drawFastVLine(x0-y, y0-x, 2*x+1+delta, color); - } - } -} - -// Bresenham's algorithm - thx wikpedia -void Adafruit_GFX::drawLine(int16_t x0, int16_t y0, - int16_t x1, int16_t y1, - uint16_t color) { - int16_t steep = abs(y1 - y0) > abs(x1 - x0); - if (steep) { - swap(x0, y0); - swap(x1, y1); - } - - if (x0 > x1) { - swap(x0, x1); - swap(y0, y1); - } - - int16_t dx, dy; - dx = x1 - x0; - dy = abs(y1 - y0); - - int16_t err = dx / 2; - int16_t ystep; - - if (y0 < y1) { - ystep = 1; - } else { - ystep = -1; - } - - for (; x0<=x1; x0++) { - if (steep) { - drawPixel(y0, x0, color); - } else { - drawPixel(x0, y0, color); - } - err -= dy; - if (err < 0) { - y0 += ystep; - err += dx; - } - } -} - -// Draw a rectangle -void Adafruit_GFX::drawRect(int16_t x, int16_t y, - int16_t w, int16_t h, - uint16_t color) { - drawFastHLine(x, y, w, color); - drawFastHLine(x, y+h-1, w, color); - drawFastVLine(x, y, h, color); - drawFastVLine(x+w-1, y, h, color); -} - -void Adafruit_GFX::drawFastVLine(int16_t x, int16_t y, - int16_t h, uint16_t color) { - // Update in subclasses if desired! - drawLine(x, y, x, y+h-1, color); -} - -void Adafruit_GFX::drawFastHLine(int16_t x, int16_t y, - int16_t w, uint16_t color) { - // Update in subclasses if desired! - drawLine(x, y, x+w-1, y, color); -} - -void Adafruit_GFX::fillRect(int16_t x, int16_t y, int16_t w, int16_t h, - uint16_t color) { - // Update in subclasses if desired! - for (int16_t i=x; i= y1 >= y0) - if (y0 > y1) { - swap(y0, y1); swap(x0, x1); - } - if (y1 > y2) { - swap(y2, y1); swap(x2, x1); - } - if (y0 > y1) { - swap(y0, y1); swap(x0, x1); - } - - if(y0 == y2) { // Handle awkward all-on-same-line case as its own thing - a = b = x0; - if(x1 < a) a = x1; - else if(x1 > b) b = x1; - if(x2 < a) a = x2; - else if(x2 > b) b = x2; - drawFastHLine(a, y0, b-a+1, color); - return; - } - - int16_t - dx01 = x1 - x0, - dy01 = y1 - y0, - dx02 = x2 - x0, - dy02 = y2 - y0, - dx12 = x2 - x1, - dy12 = y2 - y1, - sa = 0, - sb = 0; - - // For upper part of triangle, find scanline crossings for segments - // 0-1 and 0-2. If y1=y2 (flat-bottomed triangle), the scanline y1 - // is included here (and second loop will be skipped, avoiding a /0 - // error there), otherwise scanline y1 is skipped here and handled - // in the second loop...which also avoids a /0 error here if y0=y1 - // (flat-topped triangle). - if(y1 == y2) last = y1; // Include y1 scanline - else last = y1-1; // Skip it - - for(y=y0; y<=last; y++) { - a = x0 + sa / dy01; - b = x0 + sb / dy02; - sa += dx01; - sb += dx02; - /* longhand: - a = x0 + (x1 - x0) * (y - y0) / (y1 - y0); - b = x0 + (x2 - x0) * (y - y0) / (y2 - y0); - */ - if(a > b) swap(a,b); - drawFastHLine(a, y, b-a+1, color); - } - - // For lower part of triangle, find scanline crossings for segments - // 0-2 and 1-2. This loop is skipped if y1=y2. - sa = dx12 * (y - y1); - sb = dx02 * (y - y0); - for(; y<=y2; y++) { - a = x1 + sa / dy12; - b = x0 + sb / dy02; - sa += dx12; - sb += dx02; - /* longhand: - a = x1 + (x2 - x1) * (y - y1) / (y2 - y1); - b = x0 + (x2 - x0) * (y - y0) / (y2 - y0); - */ - if(a > b) swap(a,b); - drawFastHLine(a, y, b-a+1, color); - } -} - -void Adafruit_GFX::drawBitmap(int16_t x, int16_t y, - const uint8_t *bitmap, int16_t w, int16_t h, - uint16_t color) { - - int16_t i, j, byteWidth = (w + 7) / 8; - - for(j=0; j> (i & 7))) { - drawPixel(x+i, y+j, color); - } - } - } -} - -#if ARDUINO >= 100 -size_t Adafruit_GFX::write(uint8_t c) { -#else -void Adafruit_GFX::write(uint8_t c) { -#endif - if (c == '\n') { - cursor_y += textsize*8; - cursor_x = 0; - } else if (c == '\r') { - // skip em - } else { - drawChar(cursor_x, cursor_y, c, textcolor, textbgcolor, textsize); - cursor_x += textsize*6; - if (wrap && (cursor_x > (_width - textsize*6))) { - cursor_y += textsize*8; - cursor_x = 0; - } - } -#if ARDUINO >= 100 - return 1; -#endif -} - -// Draw a character -void Adafruit_GFX::drawChar(int16_t x, int16_t y, unsigned char c, - uint16_t color, uint16_t bg, uint8_t size) { - - if((x >= _width) || // Clip right - (y >= _height) || // Clip bottom - ((x + 6 * size - 1) < 0) || // Clip left - ((y + 8 * size - 1) < 0)) // Clip top - return; - - for (int8_t i=0; i<6; i++ ) { - uint8_t line; - if (i == 5) - line = 0x0; - else - line = pgm_read_byte(font+(c*5)+i); - for (int8_t j = 0; j<8; j++) { - if (line & 0x1) { - if (size == 1) // default size - drawPixel(x+i, y+j, color); - else { // big size - fillRect(x+(i*size), y+(j*size), size, size, color); - } - } else if (bg != color) { - if (size == 1) // default size - drawPixel(x+i, y+j, bg); - else { // big size - fillRect(x+i*size, y+j*size, size, size, bg); - } - } - line >>= 1; - } - } -} - -void Adafruit_GFX::setCursor(int16_t x, int16_t y) { - cursor_x = x; - cursor_y = y; -} - -void Adafruit_GFX::setTextSize(uint8_t s) { - textsize = (s > 0) ? s : 1; -} - -void Adafruit_GFX::setTextColor(uint16_t c) { - // For 'transparent' background, we'll set the bg - // to the same as fg instead of using a flag - textcolor = textbgcolor = c; -} - -void Adafruit_GFX::setTextColor(uint16_t c, uint16_t b) { - textcolor = c; - textbgcolor = b; -} - -void Adafruit_GFX::setTextWrap(boolean w) { - wrap = w; -} - -uint8_t Adafruit_GFX::getRotation(void) { - return rotation; -} - -void Adafruit_GFX::setRotation(uint8_t x) { - rotation = (x & 3); - switch(rotation) { - case 0: - case 2: - _width = WIDTH; - _height = HEIGHT; - break; - case 1: - case 3: - _width = HEIGHT; - _height = WIDTH; - break; - } -} - -// Return the size of the display (per current rotation) -int16_t Adafruit_GFX::width(void) { - return _width; -} - -int16_t Adafruit_GFX::height(void) { - return _height; -} - -void Adafruit_GFX::invertDisplay(boolean i) { - // Do nothing, must be subclassed if supported -} - -uint16_t Adafruit_GFX::newColor(uint8_t r, uint8_t g, uint8_t b) { - return ((r & 0xF8) << 8) | ((g & 0xFC) << 3) | (b >> 3); -} - -void Adafruit_GFX::background(uint8_t red, uint8_t green, uint8_t blue) { - background(newColor(red, green, blue)); -} - -void Adafruit_GFX::background(color c) { - fillScreen(c); -} - -void Adafruit_GFX::stroke(uint8_t red, uint8_t green, uint8_t blue) { - stroke(newColor(red, green, blue)); -} - -void Adafruit_GFX::stroke(color c) { - useStroke = true; - strokeColor = c; - setTextColor(c); -} - -void Adafruit_GFX::noStroke() { - useStroke = false; -} - -void Adafruit_GFX::noFill() { - useFill = false; -} - -void Adafruit_GFX::fill(uint8_t red, uint8_t green, uint8_t blue) { - fill(newColor(red, green, blue)); -} - -void Adafruit_GFX::fill(color c) { - useFill = true; - fillColor = c; -} - -void Adafruit_GFX::text(int value, uint8_t x, uint8_t y){ - if (!useStroke) - return; - - setTextWrap(false); - setTextColor(strokeColor); - setCursor(x, y); - print(value); -} -void Adafruit_GFX::text(long value, uint8_t x, uint8_t y){ - if (!useStroke) - return; - - setTextWrap(false); - setTextColor(strokeColor); - setCursor(x, y); - print(value); -} -void Adafruit_GFX::text(char value, uint8_t x, uint8_t y){ - if (!useStroke) - return; - - setTextWrap(false); - setTextColor(strokeColor); - setCursor(x, y); - print(value); -} - -void Adafruit_GFX::text(const char * text, int16_t x, int16_t y) { - if (!useStroke) - return; - - setTextWrap(false); - setTextColor(strokeColor); - setCursor(x, y); - print(text); -} - -void Adafruit_GFX::textWrap(const char * text, int16_t x, int16_t y) { - if (!useStroke) - return; - - setTextWrap(true); - setTextColor(strokeColor); - setCursor(x, y); - print(text); -} - - -void Adafruit_GFX::textSize(uint8_t size) { - setTextSize(size); -} - -void Adafruit_GFX::point(int16_t x, int16_t y) { - if (!useStroke) - return; - - drawPixel(x, y, strokeColor); -} - -void Adafruit_GFX::line(int16_t x1, int16_t y1, int16_t x2, int16_t y2) { - if (!useStroke) - return; - - if (x1 == x2) { - drawFastVLine(x1, y1, y2 - y1, strokeColor); - } - else if (y1 == y2) { - drawFastHLine(x1, y1, x2 - x1, strokeColor); - } - else { - drawLine(x1, y1, x2, y2, strokeColor); - } -} - -void Adafruit_GFX::rect(int16_t x, int16_t y, int16_t width, int16_t height) { - if (useFill) { - fillRect(x, y, width, height, fillColor); - } - if (useStroke) { - drawRect(x, y, width, height, strokeColor); - } -} - -void Adafruit_GFX::rect(int16_t x, int16_t y, int16_t width, int16_t height, int16_t radius) { - if (radius == 0) { - rect(x, y, width, height); - } - if (useFill) { - fillRoundRect(x, y, width, height, radius, fillColor); - } - if (useStroke) { - drawRoundRect(x, y, width, height, radius, strokeColor); - } -} - -void Adafruit_GFX::circle(int16_t x, int16_t y, int16_t r) { - if (r == 0) - return; - - if (useFill) { - fillCircle(x, y, r, fillColor); - } - if (useStroke) { - drawCircle(x, y, r, strokeColor); - } -} - -void Adafruit_GFX::triangle(int16_t x1, int16_t y1, int16_t x2, int16_t y2, int16_t x3, int16_t y3) { - if (useFill) { - fillTriangle(x1, y1, x2, y2, x3, y3, fillColor); - } - if (useStroke) { - drawTriangle(x1, y1, x2, y2, x3, y3, strokeColor); - } -} - -#define BUFFPIXEL 20 -/* -void Adafruit_GFX::image(PImage & img, uint16_t x, uint16_t y) { - int w, h, row, col; - uint8_t r, g, b; - uint32_t pos = 0; - uint8_t sdbuffer[3*BUFFPIXEL]; // pixel buffer (R+G+B per pixel) - uint8_t buffidx = sizeof(sdbuffer); // Current position in sdbuffer - - // Crop area to be loaded - w = img._bmpWidth; - h = img._bmpHeight; - if((x+w-1) >= width()) w = width() - x; - if((y+h-1) >= height()) h = height() - y; - - - // Set TFT address window to clipped image bounds - //setAddrWindow(x, y, x+w-1, y+h-1); - - - for (row=0; row= sizeof(sdbuffer)) { // Indeed - img._bmpFile.read(sdbuffer, sizeof(sdbuffer)); - buffidx = 0; // Set index to beginning - } - - // Convert pixel from BMP to TFT format, push to display - b = sdbuffer[buffidx++]; - g = sdbuffer[buffidx++]; - r = sdbuffer[buffidx++]; - //pushColor(tft.Color565(r,g,b)); - drawPixel(x + col, y + row, newColor(r, g, b)); - - } // end pixel - } // end scanline - -}*/ diff --git a/libraries/Robot_Control/src/utility/Adafruit_GFX.h b/libraries/Robot_Control/src/utility/Adafruit_GFX.h deleted file mode 100644 index 5cbc9d73d49..00000000000 --- a/libraries/Robot_Control/src/utility/Adafruit_GFX.h +++ /dev/null @@ -1,190 +0,0 @@ -/****************************************************************** - This is the core graphics library for all our displays, providing - basic graphics primitives (points, lines, circles, etc.). It needs - to be paired with a hardware-specific library for each display - device we carry (handling the lower-level functions). - - Adafruit invests time and resources providing this open - source code, please support Adafruit and open-source hardware - by purchasing products from Adafruit! - - Written by Limor Fried/Ladyada for Adafruit Industries. - BSD license, check license.txt for more information. - All text above must be included in any redistribution. - ******************************************************************/ - -#ifndef _ADAFRUIT_GFX_H -#define _ADAFRUIT_GFX_H - -#if ARDUINO >= 100 - #include "Arduino.h" - #include "Print.h" -#else - #include "WProgram.h" -#endif - -//#include "PImage.h" - -#define swap(a, b) { int16_t t = a; a = b; b = t; } - -/* TODO -enum RectMode { - CORNER, - CORNERS, - RADIUS, - CENTER -}; -*/ - -typedef uint16_t color; - -class Adafruit_GFX : public Print { - public: - - Adafruit_GFX(int16_t w, int16_t h); // Constructor - - // This MUST be defined by the subclass: - virtual void drawPixel(int16_t x, int16_t y, uint16_t color) = 0; - - // These MAY be overridden by the subclass to provide device-specific - // optimized code. Otherwise 'generic' versions are used. - virtual void - drawLine(int16_t x0, int16_t y0, int16_t x1, int16_t y1, uint16_t color), - drawFastVLine(int16_t x, int16_t y, int16_t h, uint16_t color), - drawFastHLine(int16_t x, int16_t y, int16_t w, uint16_t color), - drawRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color), - fillRect(int16_t x, int16_t y, int16_t w, int16_t h, uint16_t color), - fillScreen(uint16_t color), - invertDisplay(boolean i); - - // These exist only with Adafruit_GFX (no subclass overrides) - void - drawCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color), - drawCircleHelper(int16_t x0, int16_t y0, int16_t r, uint8_t cornername, - uint16_t color), - fillCircle(int16_t x0, int16_t y0, int16_t r, uint16_t color), - fillCircleHelper(int16_t x0, int16_t y0, int16_t r, uint8_t cornername, - int16_t delta, uint16_t color), - drawTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, - int16_t x2, int16_t y2, uint16_t color), - fillTriangle(int16_t x0, int16_t y0, int16_t x1, int16_t y1, - int16_t x2, int16_t y2, uint16_t color), - drawRoundRect(int16_t x0, int16_t y0, int16_t w, int16_t h, - int16_t radius, uint16_t color), - fillRoundRect(int16_t x0, int16_t y0, int16_t w, int16_t h, - int16_t radius, uint16_t color), - drawBitmap(int16_t x, int16_t y, const uint8_t *bitmap, - int16_t w, int16_t h, uint16_t color), - drawChar(int16_t x, int16_t y, unsigned char c, uint16_t color, - uint16_t bg, uint8_t size), - setCursor(int16_t x, int16_t y), - setTextColor(uint16_t c), - setTextColor(uint16_t c, uint16_t bg), - setTextSize(uint8_t s), - setTextWrap(boolean w), - setRotation(uint8_t r); - -#if ARDUINO >= 100 - virtual size_t write(uint8_t); -#else - virtual void write(uint8_t); -#endif - - int16_t - height(void), - width(void); - - uint8_t getRotation(void); - - - /* - * Processing-like graphics primitives - */ - - /// transforms a color in 16-bit form given the RGB components. - /// The default implementation makes a 5-bit red, a 6-bit - /// green and a 5-bit blue (MSB to LSB). Devices that use - /// different scheme should override this. - virtual uint16_t newColor(uint8_t red, uint8_t green, uint8_t blue); - - - // http://processing.org/reference/background_.html - void background(uint8_t red, uint8_t green, uint8_t blue); - void background(color c); - - // http://processing.org/reference/fill_.html - void fill(uint8_t red, uint8_t green, uint8_t blue); - void fill(color c); - - // http://processing.org/reference/noFill_.html - void noFill(); - - // http://processing.org/reference/stroke_.html - void stroke(uint8_t red, uint8_t green, uint8_t blue); - void stroke(color c); - - // http://processing.org/reference/noStroke_.html - void noStroke(); - - void text(const char * text, int16_t x, int16_t y); - void text(int value, uint8_t posX, uint8_t posY); - void text(long value, uint8_t posX, uint8_t posY); - void text(char value, uint8_t posX, uint8_t posY); - - void textWrap(const char * text, int16_t x, int16_t y); - - void textSize(uint8_t size); - - // similar to ellipse() in Processing, but with - // a single radius. - // http://processing.org/reference/ellipse_.html - void circle(int16_t x, int16_t y, int16_t r); - - void point(int16_t x, int16_t y); - - void line(int16_t x1, int16_t y1, int16_t x2, int16_t y2); - - void quad(int16_t x1, int16_t y1, int16_t x2, int16_t y2, int16_t x3, int16_t y3, int16_t x4, int16_t y4); - - void rect(int16_t x, int16_t y, int16_t width, int16_t height); - - void rect(int16_t x, int16_t y, int16_t width, int16_t height, int16_t radius); - - void triangle(int16_t x1, int16_t y1, int16_t x2, int16_t y2, int16_t x3, int16_t y3); - - /* TODO - void rectMode(RectMode mode); - - void pushStyle(); - void popStyle(); - */ - -// PImage loadImage(const char * fileName) { return PImage::loadImage(fileName); } - -// void image(PImage & img, uint16_t x, uint16_t y); - - protected: - const int16_t - WIDTH, HEIGHT; // This is the 'raw' display w/h - never changes - int16_t - _width, _height, // Display w/h as modified by current rotation - cursor_x, cursor_y; - uint16_t - textcolor, textbgcolor; - uint8_t - textsize, - rotation; - boolean - wrap; // If set, 'wrap' text at right edge of display - - /* - * Processing-style graphics state - */ - - color strokeColor; - bool useStroke; - color fillColor; - bool useFill; -}; - -#endif // _ADAFRUIT_GFX_H diff --git a/libraries/Robot_Control/src/utility/RobotTextManager.cpp b/libraries/Robot_Control/src/utility/RobotTextManager.cpp deleted file mode 100644 index b516409ac98..00000000000 --- a/libraries/Robot_Control/src/utility/RobotTextManager.cpp +++ /dev/null @@ -1,192 +0,0 @@ -#include -#include -#include "VirtualKeyboard.h" -#include "RobotTextManager.h" -#include "scripts_Hello_User.h" - -const int TextManager::lineHeight=10; -const int TextManager::charWidth=6; - - -void TextManager::setMargin(int margin_left,int margin_top){ - this->margin_left=margin_left; - this->margin_top=margin_top; -} -int TextManager::getLin(int lineNum){ - return lineNum*lineHeight+margin_top; -} - -int TextManager::getCol(int colNum){ - return colNum*charWidth+margin_left; -} - -void TextManager::writeText(int lineNum, int colNum, char* txt, bool onOff){ - if(!onOff) - Robot.setTextColor(WHITE); - - Robot.setCursor(getCol(colNum),getLin(lineNum)); - Robot.print(txt); - - Robot.setTextColor(BLACK); -} - -void TextManager::drawInput(bool onOff){ - if(!onOff) - Robot.setTextColor(WHITE); - - Robot.setCursor(getCol(inputCol),getLin(inputLin)+1); - Robot.print('_'); - - Robot.setTextColor(BLACK); - -} - -void TextManager::mvInput(int dire){ - drawInput(0); - if(dire<0){ - if(inputPos>0){ - inputPos--; - inputCol--; - } - }else{ - if(inputPos<16){ - inputPos++; - inputCol++; - } - } - drawInput(1); -} - -char TextManager::selectLetter(){ - static int oldVal; - char val=map(Robot.knobRead(),0,1023,32,125); - if(val==oldVal){ - return 0; //No changes - }else{ - oldVal=val; - return val; //Current letter - } -} - -void TextManager::refreshCurrentLetter(char letter){ - if(letter){ - writeText(inputLin,inputCol,inputPool+inputPos,false);//erase - inputPool[inputPos]=letter; - writeText(inputLin,inputCol,inputPool+inputPos,true);//write - } -} - - -void TextManager::getInput(int lin, int col){ - writeText(lin,col,">"); //Input indicator - - writeText(lin, col+1, inputPool); - - inputLin=lin; //Ini input cursor - inputCol=col+1; - inputPos=0; - drawInput(true); - - Vkey.display(100);//Vkey is a object of VirtualKeyboard class - - while(true){ - switch(Robot.keyboardRead()){ - case BUTTON_LEFT: - //Robot.beep(BEEP_SIMPLE); - mvInput(-1); - break; - case BUTTON_RIGHT: - //Robot.beep(BEEP_SIMPLE); - mvInput(1); - break; - case BUTTON_MIDDLE: - //Robot.beep(BEEP_DOUBLE); - char selection=Vkey.getSelection(); - if(selection!='\0'){ - refreshCurrentLetter(selection); - mvInput(1); - }else{ - drawInput(false); - return; - } - } - Vkey.run(); - delay(10); - } -} -void TextManager::setInputPool(int code){ - switch(code){ - case USERNAME: - Robot.userNameRead(inputPool); - break; - case ROBOTNAME: - Robot.robotNameRead(inputPool); - break; - case CITYNAME: - Robot.cityNameRead(inputPool); - break; - case COUNTRYNAME: - Robot.countryNameRead(inputPool); - break; - } - for(int i=0;i<18;i++){ - if(inputPool[i]=='\0'){ - for(int j=i;j<18;j++){ - inputPool[j]='\0'; - } - break; - } - } -} -void TextManager::pushInput(int code){ - switch(code){ - case USERNAME: - Robot.userNameWrite(inputPool); - break; - case ROBOTNAME: - Robot.robotNameWrite(inputPool); - break; - case CITYNAME: - Robot.cityNameWrite(inputPool); - break; - case COUNTRYNAME: - Robot.countryNameWrite(inputPool); - break; - } - for(int i=0;i<18;i++){ - inputPool[i]='\0'; - } -} -void TextManager::input(int lin,int col, int code){ - setInputPool(code); - getInput(lin,col); - pushInput(code); -} - -void TextManager::showPicture(char * filename, int posX, int posY){ - Robot.pause(); - Robot._drawBMP(filename,posX,posY); - Robot.play(); -} - -void TextManager::getPGMtext(int seq){ - //It takes a string from program space, and fill it - //in the buffer - //if(in hello user example){ - if(true){ - strcpy_P(PGMbuffer,(char*)pgm_read_word(&(::scripts_Hello_User[seq]))); - } -} - -void TextManager::writeScript(int seq, int line, int col){ - //print a string from program space to a specific line, - //column on the LCD - - //first fill the buffer with text from program space - getPGMtext(seq); - //then print it to the screen - textManager.writeText(line,col,PGMbuffer); -} - - -TextManager textManager=TextManager(); diff --git a/libraries/Robot_Control/src/utility/RobotTextManager.h b/libraries/Robot_Control/src/utility/RobotTextManager.h deleted file mode 100644 index 6c0b7bde6ed..00000000000 --- a/libraries/Robot_Control/src/utility/RobotTextManager.h +++ /dev/null @@ -1,77 +0,0 @@ -#ifndef ROBOTTEXTMANAGER_H -#define ROBOTTEXTMANAGER_H - -#define USERNAME 0 -#define ROBOTNAME 1 -#define CITYNAME 2 -#define COUNTRYNAME 3 -#define EMPTY 4 - -class TextManager{ - //The TextManager class is a collection of features specific for Hello - //User example. - // - //- It includes solution for setting text position based on - // line/column. The original Robot.text(), or the more low level - // print() function can only set text position on pixels from left, - // top. - // - //- The process of accepting input with the virtual keyboard, saving - // into or reading from EEPROM is delt with here. - // - //- A workflow for stop the music while displaying image. Trouble - // will happen otherwise. - - public: - //add some margin to the text, left side only atm. - void setMargin(int margin_left,int margin_top); - - //print text based on line, column. - void writeText(int lineNum, int colNum, char* txt, bool onOff=true); - - //print a script from the scripts library - void writeScript(int seq, int line, int col); - - //The whole process of getting input - void input(int lin,int col, int code); - //Print a cursor and virtual keyboard on screen, and save the user's input - void getInput(int lin, int col); - //Get user name, robot name, city name or country name from EEPROM - //and store in the input pool. - void setInputPool(int code); - //save user input to EEPROM - void pushInput(int code); - - //Replaces Robot.drawPicture(), as this one solves collision between - //image and music - void showPicture(char * filename, int posX, int posY); - - private: - int margin_left,margin_top; - int getLin(int lineNum); //Convert line to pixels from top - int getCol(int colNum); //Convert line to pixels from left - - static const int lineHeight;//8+2=10 - static const int charWidth;//5+1=6 - - int inputPos; - int inputLin; - int inputCol; - - void drawInput(bool onOff); - void mvInput(int dire); - - char selectLetter(); - void refreshCurrentLetter(char letter); - - void getPGMtext(int seq); - - char PGMbuffer[85]; //the buffer for storing strings - char inputPool[18]; -}; - -//a trick for removing the need of creating an object of TextManager. -//So you can call me.somefunction() directly in the sketch. -extern TextManager textManager; - -#endif diff --git a/libraries/Robot_Control/src/utility/VirtualKeyboard.cpp b/libraries/Robot_Control/src/utility/VirtualKeyboard.cpp deleted file mode 100644 index ad73c7519b7..00000000000 --- a/libraries/Robot_Control/src/utility/VirtualKeyboard.cpp +++ /dev/null @@ -1,127 +0,0 @@ -#include "VirtualKeyboard.h" - -int VirtualKeyboard::getColLin(int val){ - uint8_t col,lin; - lin=val/10; - col=val%10; // saving 36 bytes :( - /*if(0<=val && 9>=val){ - col=val; - lin=0; - }else if(10<=val && 19>=val){ - col=val-10; - lin=1; - }else if(20<=val && 29>=val){ - col=val-20; - lin=2; - }else if(30<=val && 39>=val){ - col=val-30; - lin=3; - }*/ - return (col<<8)+lin; //Put col and lin in one int -} -void VirtualKeyboard::run(){ -/** visually select a letter on the keyboard -* The selection boarder is 1px higher than the character, -* 1px on the bottom, 2px to the left and 2px to the right. -* -*/ - if(!onOff)return; - //Serial.println(onOff); - static int oldColLin=0; - uint8_t val=map(Robot.knobRead(),0,1023,0,38); - if(val==38)val=37; //The last value is jumpy when using batteries - int colLin=getColLin(val); - - if(oldColLin!=colLin){ - uint8_t x=(oldColLin>>8 & 0xFF)*11+10;//col*11+1+9 - uint8_t y=(oldColLin & 0xFF)*11+1+top;//lin*11+1+top - uint8_t w=9; - if(oldColLin==1795) //last item "Enter", col=7 lin=3 - w=33; //(5+1)*6-1+2+2 charWidth=5, charMargin=1, count("Enter")=6, lastItem_MarginRight=0, marginLeft==marginRight=2 - Robot.drawRect(x,y,w,9,hideColor); - - - x=(colLin>>8 & 0xFF)*11+10; - y=(colLin & 0xFF)*11+1+top; - w=9; - if(colLin==1795) //last item "Enter", col=7 lin=3 - w=33; //(5+1)*6-1+2+2 charWidth=5, charMargin=1, count("Enter")=6, lastItem_MarginRight=0, marginLeft==marginRight=2 - Robot.drawRect(x,y,w,9,showColor); - oldColLin=colLin; - } -} - -char VirtualKeyboard::getSelection(){ - if(!onOff)return -1; - - uint8_t val=map(Robot.knobRead(),0,1023,0,38); - if(0<=val && 9>=val) - val='0'+val; - else if(10<=val && 35>=val) - val='A'+val-10; - else if(val==36) - val=' '; - else if(val>=37) - val='\0'; - - return val; -} -void VirtualKeyboard::hide(){ - onOff=false; - Robot.fillRect(0,top,128,44,hideColor);//11*4 -} - -void VirtualKeyboard::display(uint8_t top, uint16_t showColor, uint16_t hideColor){ -/** Display the keyboard at y position of top -* formular: -* When text size is 1, one character is 5*7 -* margin-left==margin-right==3, -* margin-top==margin-bottom==2, -* keyWidth=5+3+3==11, -* keyHeight=7+2+2==11, -* keyboard-margin-left=keyboard-margin-right==9 -* so character-x=11*col+9+3=11*col+12 -* character-y=11*lin+2+top -* -**/ - this->top=top; - this->onOff=true; - - this->showColor=showColor; - this->hideColor=hideColor; - - for(uint8_t i=0;i<36;i++){ - Robot.setCursor(i%10*11+12,2+top+i/10*11); - if(i<10) - Robot.print(char('0'+i)); - else - Robot.print(char(55+i));//'A'-10=55 - }//for saving 58 bytes :( - - /*for(int i=0;i<10;i++){ - Robot.setCursor(i*11+12,2+top);//11*0+2+top - Robot.print(char('0'+i));//line_1: 0-9 - } - for(int i=0;i<10;i++){ - Robot.setCursor(i*11+12,13+top);//11*1+2+top - Robot.print(char('A'+i));//line_2: A-J - } - for(int i=0;i<10;i++){ - Robot.setCursor(i*11+12,24+top);//11*2+2+top - Robot.print(char('K'+i));//line_3: K-T - } - for(int i=0;i<6;i++){ - Robot.setCursor(i*11+12,35+top);//11*3+2+top - Robot.print(char('U'+i));//line_4: U-Z - }*/ - //space and enter at the end of the last line. - Robot.setCursor(78,35+top);//6*11+12=78 - Robot.print('_');//_ - - Robot.setCursor(89,35+top);//7*11+12=89 - Robot.print("Enter");//enter -} - - - -VirtualKeyboard Vkey=VirtualKeyboard(); \ No newline at end of file diff --git a/libraries/Robot_Control/src/utility/VirtualKeyboard.h b/libraries/Robot_Control/src/utility/VirtualKeyboard.h deleted file mode 100644 index 273edb724eb..00000000000 --- a/libraries/Robot_Control/src/utility/VirtualKeyboard.h +++ /dev/null @@ -1,28 +0,0 @@ -#ifndef VIRTUAL_KEYBOARD_H -#define VIRTUAL_KEYBOARD_H - -#include -#include - -class VirtualKeyboard{ - public: - //void begin(); - void display(uint8_t top, uint16_t showColor=BLACK, uint16_t hideColor=WHITE); - void hide(); - - char getSelection(); - void run(); - - private: - uint8_t top; - bool onOff; - - uint16_t showColor; - uint16_t hideColor; - - int getColLin(int val); - -}; - -extern VirtualKeyboard Vkey; -#endif \ No newline at end of file diff --git a/libraries/Robot_Control/src/utility/scripts_Hello_User.h b/libraries/Robot_Control/src/utility/scripts_Hello_User.h deleted file mode 100644 index ba1ef5a4500..00000000000 --- a/libraries/Robot_Control/src/utility/scripts_Hello_User.h +++ /dev/null @@ -1,51 +0,0 @@ -#include - -//an advanced trick for storing strings inside the program space -//as the ram of Arduino is very tiny, keeping too many string in it -//can kill the program - -const char hello_user_script1[] PROGMEM="What's your name?"; -const char hello_user_script2[] PROGMEM="Give me a name!"; -const char hello_user_script3[] PROGMEM="And the country?"; -const char hello_user_script4[] PROGMEM="The city you're in?"; -const char hello_user_script5[] PROGMEM=" Plug me to\n\n your computer\n\n and start coding!"; - -const char hello_user_script6[] PROGMEM=" Hello User!\n\n It's me, your robot\n\n I'm alive! <3"; -const char hello_user_script7[] PROGMEM=" First I need some\n\n input from you!"; -const char hello_user_script8[] PROGMEM=" Use the knob\n\n to select letters"; -const char hello_user_script9[] PROGMEM=" Use L/R button\n\n to move the cursor,\n\n middle to confirm"; -const char hello_user_script10[] PROGMEM=" Press middle key\n to continue..."; -const char hello_user_script11[] PROGMEM=" Choose \"enter\" to\n\n finish the input"; - -const char * const scripts_Hello_User[] PROGMEM = { - hello_user_script1, - hello_user_script2, - hello_user_script3, - hello_user_script4, - hello_user_script5, - hello_user_script6, - hello_user_script7, - hello_user_script8, - hello_user_script9, - hello_user_script10, - hello_user_script11, -}; - -/* -void getPGMtext(int seq){ - //It takes a string from program space, and fill it - //in the buffer - strcpy_P(buffer,(char*)pgm_read_word(&(scripts[seq]))); -} - -void writeScript(int seq, int line, int col){ - //print a string from program space to a specific line, - //column on the LCD - - //first fill the buffer with text from program space - getPGMtext(seq); - //then print it to the screen - textManager.writeText(line,col,buffer); -} - -*/ diff --git a/libraries/Robot_Motor/README.adoc b/libraries/Robot_Motor/README.adoc deleted file mode 100644 index 480fa522311..00000000000 --- a/libraries/Robot_Motor/README.adoc +++ /dev/null @@ -1,24 +0,0 @@ -= Robot Motor Library for Arduino = - -The Robot has a number of built in sensors and actuators. The library is designed to easily access the robot's functionality. - -For more information about this library please visit us at -http://www.arduino.cc/en/Reference/RobotLibrary - -== License == - -Copyright (c) Arduino LLC. All right reserved. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/Robot_Motor/examples/Robot_IR_Array_Test/Robot_IR_Array_Test.ino b/libraries/Robot_Motor/examples/Robot_IR_Array_Test/Robot_IR_Array_Test.ino deleted file mode 100644 index be19bc6abc8..00000000000 --- a/libraries/Robot_Motor/examples/Robot_IR_Array_Test/Robot_IR_Array_Test.ino +++ /dev/null @@ -1,26 +0,0 @@ -/* Motor Board IR Array Test - - This example of the Arduno robot's motor board returns the - values read fron the 5 infrared sendors on the bottom of - the robot. - -*/ -// include the motor board header -#include - -String bar; // string for storing the informaton - -void setup() { - // start serial communication - Serial.begin(9600); - // initialize the library - RobotMotor.begin(); -} -void loop() { - bar = String(""); // empty the string - // read the sensors and add them to the string - bar = bar + RobotMotor.IRread(1) + ' ' + RobotMotor.IRread(2) + ' ' + RobotMotor.IRread(3) + ' ' + RobotMotor.IRread(4) + ' ' + RobotMotor.IRread(5); - // print out the values - Serial.println(bar); - delay(100); -} diff --git a/libraries/Robot_Motor/examples/Robot_Motor_Core/Robot_Motor_Core.ino b/libraries/Robot_Motor/examples/Robot_Motor_Core/Robot_Motor_Core.ino deleted file mode 100644 index e7911d8a31f..00000000000 --- a/libraries/Robot_Motor/examples/Robot_Motor_Core/Robot_Motor_Core.ino +++ /dev/null @@ -1,18 +0,0 @@ -/* Motor Core - - This code for the Arduino Robot's motor board - is the stock firmware. program the motor board with - this sketch whenever you want to return the motor - board to its default state. - -*/ - -#include - -void setup() { - RobotMotor.begin(); -} -void loop() { - RobotMotor.parseCommand(); - RobotMotor.process(); -} diff --git a/libraries/Robot_Motor/library.properties b/libraries/Robot_Motor/library.properties deleted file mode 100644 index 7e697df5e30..00000000000 --- a/libraries/Robot_Motor/library.properties +++ /dev/null @@ -1,9 +0,0 @@ -name=Robot Motor -version=1.0.2 -author=Arduino -maintainer=Arduino -sentence=Enables easy access to the motors of the Arduino Robot Motor board. For Arduino Robot only. -paragraph= -category=Device Control -url=http://www.arduino.cc/en/Reference/RobotLibrary -architectures=avr diff --git a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp b/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp deleted file mode 100644 index 4d795e06116..00000000000 --- a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.cpp +++ /dev/null @@ -1,269 +0,0 @@ -#include "ArduinoRobotMotorBoard.h" -#include "EasyTransfer2.h" -#include "Multiplexer.h" -#include "LineFollow.h" - -RobotMotorBoard::RobotMotorBoard(){ - //LineFollow::LineFollow(); -} -/*void RobotMotorBoard::beginIRReceiver(){ - IRrecv::enableIRIn(); -}*/ -void RobotMotorBoard::begin(){ - //initialze communication - Serial1.begin(9600); - messageIn.begin(&Serial1); - messageOut.begin(&Serial1); - - //init MUX - uint8_t MuxPins[]={MUXA,MUXB,MUXC}; - this->IRs.begin(MuxPins,MUX_IN,3); - pinMode(MUXI,INPUT); - digitalWrite(MUXI,LOW); - - isPaused=false; -} - -void RobotMotorBoard::process(){ - if(isPaused)return;//skip process if the mode is paused - - if(mode==MODE_SIMPLE){ - //Serial.println("s"); - //do nothing? Simple mode is just about getting commands - }else if(mode==MODE_LINE_FOLLOW){ - //do line following stuff here. - LineFollow::runLineFollow(); - }else if(mode==MODE_ADJUST_MOTOR){ - //Serial.println('a'); - //motorAdjustment=analogRead(POT); - //setSpeed(255,255); - //delay(100); - } -} -void RobotMotorBoard::pauseMode(bool onOff){ - if(onOff){ - isPaused=true; - }else{ - isPaused=false; - } - stopCurrentActions(); - -} -void RobotMotorBoard::parseCommand(){ - uint8_t modeName; - uint8_t codename; - int value; - int speedL; - int speedR; - if(this->messageIn.receiveData()){ - //Serial.println("data received"); - uint8_t command=messageIn.readByte(); - //Serial.println(command); - switch(command){ - case COMMAND_SWITCH_MODE: - modeName=messageIn.readByte(); - setMode(modeName); - break; - case COMMAND_RUN: - if(mode==MODE_LINE_FOLLOW)break;//in follow line mode, the motor does not follow commands - speedL=messageIn.readInt(); - speedR=messageIn.readInt(); - motorsWrite(speedL,speedR); - break; - case COMMAND_MOTORS_STOP: - motorsStop(); - break; - case COMMAND_ANALOG_WRITE: - codename=messageIn.readByte(); - value=messageIn.readInt(); - _analogWrite(codename,value); - break; - case COMMAND_DIGITAL_WRITE: - codename=messageIn.readByte(); - value=messageIn.readByte(); - _digitalWrite(codename,value); - break; - case COMMAND_ANALOG_READ: - codename=messageIn.readByte(); - _analogRead(codename); - break; - case COMMAND_DIGITAL_READ: - codename=messageIn.readByte(); - _digitalRead(codename); - break; - case COMMAND_READ_IR: - _readIR(); - break; - case COMMAND_READ_TRIM: - _readTrim(); - break; - case COMMAND_PAUSE_MODE: - pauseMode(messageIn.readByte());//onOff state - break; - case COMMAND_LINE_FOLLOW_CONFIG: - LineFollow::config( - messageIn.readByte(), //KP - messageIn.readByte(), //KD - messageIn.readByte(), //robotSpeed - messageIn.readByte() //IntegrationTime - ); - break; - } - } - //delay(5); -} -uint8_t RobotMotorBoard::parseCodename(uint8_t codename){ - switch(codename){ - case B_TK1: - return TK1; - case B_TK2: - return TK2; - case B_TK3: - return TK3; - case B_TK4: - return TK4; - } -} -uint8_t RobotMotorBoard::codenameToAPin(uint8_t codename){ - switch(codename){ - case B_TK1: - return A0; - case B_TK2: - return A1; - case B_TK3: - return A6; - case B_TK4: - return A11; - } -} - -void RobotMotorBoard::setMode(uint8_t mode){ - if(mode==MODE_LINE_FOLLOW){ - LineFollow::calibIRs(); - } - /*if(mode==SET_MOTOR_ADJUSTMENT){ - save_motor_adjustment_to_EEPROM(); - } - */ - /*if(mode==MODE_IR_CONTROL){ - beginIRReceiver(); - }*/ - this->mode=mode; - //stopCurrentActions();//If line following, this should stop the motors -} - -void RobotMotorBoard::stopCurrentActions(){ - motorsStop(); - //motorsWrite(0,0); -} - -void RobotMotorBoard::motorsWrite(int speedL, int speedR){ - /*Serial.print(speedL); - Serial.print(" "); - Serial.println(speedR);*/ - //motor adjustment, using percentage - _refreshMotorAdjustment(); - - if(motorAdjustment<0){ - speedR*=(1+motorAdjustment); - }else{ - speedL*=(1-motorAdjustment); - } - - if(speedR>0){ - analogWrite(IN_A1,speedR); - analogWrite(IN_A2,0); - }else{ - analogWrite(IN_A1,0); - analogWrite(IN_A2,-speedR); - } - - if(speedL>0){ - analogWrite(IN_B1,speedL); - analogWrite(IN_B2,0); - }else{ - analogWrite(IN_B1,0); - analogWrite(IN_B2,-speedL); - } -} -void RobotMotorBoard::motorsWritePct(int speedLpct, int speedRpct){ - //speedLpct, speedRpct ranges from -100 to 100 - motorsWrite(speedLpct*2.55,speedRpct*2.55); -} -void RobotMotorBoard::motorsStop(){ - analogWrite(IN_A1,255); - analogWrite(IN_A2,255); - - analogWrite(IN_B1,255); - analogWrite(IN_B2,255); -} - - -/* -* -* -* Input and Output ports -* -* -*/ -void RobotMotorBoard::_digitalWrite(uint8_t codename,bool value){ - uint8_t pin=parseCodename(codename); - digitalWrite(pin,value); -} -void RobotMotorBoard::_analogWrite(uint8_t codename,int value){ - //There's no PWM available on motor board -} -void RobotMotorBoard::_digitalRead(uint8_t codename){ - uint8_t pin=parseCodename(codename); - bool value=digitalRead(pin); - messageOut.writeByte(COMMAND_DIGITAL_READ_RE); - messageOut.writeByte(codename); - messageOut.writeByte(value); - messageOut.sendData(); -} -void RobotMotorBoard::_analogRead(uint8_t codename){ - uint8_t pin=codenameToAPin(codename); - int value=analogRead(pin); - messageOut.writeByte(COMMAND_ANALOG_READ_RE); - messageOut.writeByte(codename); - messageOut.writeInt(value); - messageOut.sendData(); -} -int RobotMotorBoard::IRread(uint8_t num){ - return _IRread(num-1); //To make consistant with the pins labeled on the board -} - -int RobotMotorBoard::_IRread(uint8_t num){ - IRs.selectPin(num); - return IRs.getAnalogValue(); -} - - -void RobotMotorBoard::_readIR(){ - int value; - messageOut.writeByte(COMMAND_READ_IR_RE); - for(int i=0;i<5;i++){ - value=_IRread(i); - messageOut.writeInt(value); - } - messageOut.sendData(); -} - -void RobotMotorBoard::_readTrim(){ - int value=analogRead(TRIM); - messageOut.writeByte(COMMAND_READ_TRIM_RE); - messageOut.writeInt(value); - messageOut.sendData(); -} - -void RobotMotorBoard::_refreshMotorAdjustment(){ - motorAdjustment=map(analogRead(TRIM),0,1023,-30,30)/100.0; -} - -void RobotMotorBoard::reportActionDone(){ - setMode(MODE_SIMPLE); - messageOut.writeByte(COMMAND_ACTION_DONE); - messageOut.sendData(); -} - -RobotMotorBoard RobotMotor=RobotMotorBoard(); \ No newline at end of file diff --git a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h b/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h deleted file mode 100644 index 2bbc8ea8a4a..00000000000 --- a/libraries/Robot_Motor/src/ArduinoRobotMotorBoard.h +++ /dev/null @@ -1,126 +0,0 @@ -#ifndef ArduinoRobot_h -#define ArduinoRobot_h - -#include "EasyTransfer2.h" -#include "Multiplexer.h" -#include "LineFollow.h" -//#include "IRremote.h" - -#if ARDUINO >= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - -//Command code -#define COMMAND_SWITCH_MODE 0 -#define COMMAND_RUN 10 -#define COMMAND_MOTORS_STOP 11 -#define COMMAND_ANALOG_WRITE 20 -#define COMMAND_DIGITAL_WRITE 30 -#define COMMAND_ANALOG_READ 40 -#define COMMAND_ANALOG_READ_RE 41 -#define COMMAND_DIGITAL_READ 50 -#define COMMAND_DIGITAL_READ_RE 51 -#define COMMAND_READ_IR 60 -#define COMMAND_READ_IR_RE 61 -#define COMMAND_ACTION_DONE 70 -#define COMMAND_READ_TRIM 80 -#define COMMAND_READ_TRIM_RE 81 -#define COMMAND_PAUSE_MODE 90 -#define COMMAND_LINE_FOLLOW_CONFIG 100 - - -//component codename -#define CN_LEFT_MOTOR 0 -#define CN_RIGHT_MOTOR 1 -#define CN_IR 2 - -//motor board modes -#define MODE_SIMPLE 0 -#define MODE_LINE_FOLLOW 1 -#define MODE_ADJUST_MOTOR 2 -#define MODE_IR_CONTROL 3 - -//bottom TKs, just for communication purpose -#define B_TK1 201 -#define B_TK2 202 -#define B_TK3 203 -#define B_TK4 204 - -/* -A message structure will be: -switch mode (2): - byte COMMAND_SWITCH_MODE, byte mode -run (5): - byte COMMAND_RUN, int speedL, int speedR -analogWrite (3): - byte COMMAND_ANALOG_WRITE, byte codename, byte value; -digitalWrite (3): - byte COMMAND_DIGITAL_WRITE, byte codename, byte value; -analogRead (2): - byte COMMAND_ANALOG_READ, byte codename; -analogRead _return_ (4): - byte COMMAND_ANALOG_READ_RE, byte codename, int value; -digitalRead (2): - byte COMMAND_DIGITAL_READ, byte codename; -digitalRead _return_ (4): - byte COMMAND_DIGITAL_READ_RE, byte codename, int value; -read IR (1): - byte COMMAND_READ_IR; -read IR _return_ (9): - byte COMMAND_READ_IR_RE, int valueA, int valueB, int valueC, int valueD; - - -*/ - -class RobotMotorBoard:public LineFollow{ - public: - RobotMotorBoard(); - void begin(); - - void process(); - - void parseCommand(); - - int IRread(uint8_t num); - - void setMode(uint8_t mode); - void pauseMode(bool onOff); - - void motorsWrite(int speedL, int speedR); - void motorsWritePct(int speedLpct, int speedRpct);//write motor values in percentage - void motorsStop(); - private: - float motorAdjustment;//-1.0 ~ 1.0, whether left is lowered or right is lowered - - //convert codename to actual pins - uint8_t parseCodename(uint8_t codename); - uint8_t codenameToAPin(uint8_t codename); - - void stopCurrentActions(); - //void sendCommand(byte command,byte codename,int value); - - void _analogWrite(uint8_t codename, int value); - void _digitalWrite(uint8_t codename, bool value); - void _analogRead(uint8_t codename); - void _digitalRead(uint8_t codename); - int _IRread(uint8_t num); - void _readIR(); - void _readTrim(); - - void _refreshMotorAdjustment(); - - Multiplexer IRs; - uint8_t mode; - uint8_t isPaused; - EasyTransfer2 messageIn; - EasyTransfer2 messageOut; - - //Line Following - void reportActionDone(); -}; - -extern RobotMotorBoard RobotMotor; - -#endif \ No newline at end of file diff --git a/libraries/Robot_Motor/src/EasyTransfer2.cpp b/libraries/Robot_Motor/src/EasyTransfer2.cpp deleted file mode 100644 index bf17678761b..00000000000 --- a/libraries/Robot_Motor/src/EasyTransfer2.cpp +++ /dev/null @@ -1,176 +0,0 @@ -/****************************************************************** -* EasyTransfer Arduino Library -* details and example sketch: -* http://www.billporter.info/easytransfer-arduino-library/ -* -* Brought to you by: -* Bill Porter -* www.billporter.info -* -* See Readme for other info and version history -* -* -*This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or(at your option) any later version. -This program is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the -GNU General Public License for more details. - -* -*This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. -*To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or -*send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. -******************************************************************/ - -#include "EasyTransfer2.h" - - - - -//Captures address and size of struct -void EasyTransfer2::begin(HardwareSerial *theSerial){ - _serial = theSerial; - - //dynamic creation of rx parsing buffer in RAM - //rx_buffer = (uint8_t*) malloc(size); - - resetData(); -} - -void EasyTransfer2::writeByte(uint8_t dat){ - if(position<20) - data[position++]=dat; - size++; -} -void EasyTransfer2::writeInt(int dat){ - if(position<19){ - data[position++]=dat>>8; - data[position++]=dat; - size+=2; - } -} -uint8_t EasyTransfer2::readByte(){ - if(position>=size)return 0; - return data[position++]; -} -int EasyTransfer2::readInt(){ - if(position+1>=size)return 0; - int dat_1=data[position++]<<8; - int dat_2=data[position++]; - int dat= dat_1 | dat_2; - return dat; -} - -void EasyTransfer2::resetData(){ - for(int i=0;i<20;i++){ - data[i]=0; - } - size=0; - position=0; -} - -//Sends out struct in binary, with header, length info and checksum -void EasyTransfer2::sendData(){ - uint8_t CS = size; - _serial->write(0x06); - _serial->write(0x85); - _serial->write(size); - for(int i = 0; iwrite(*(data+i)); - //Serial.print(*(data+i)); - //Serial.print(","); - } - //Serial.println(""); - _serial->write(CS); - - resetData(); -} - -boolean EasyTransfer2::receiveData(){ - - //start off by looking for the header bytes. If they were already found in a previous call, skip it. - if(rx_len == 0){ - //this size check may be redundant due to the size check below, but for now I'll leave it the way it is. - if(_serial->available() >= 3){ - //this will block until a 0x06 is found or buffer size becomes less then 3. - while(_serial->read() != 0x06) { - //This will trash any preamble junk in the serial buffer - //but we need to make sure there is enough in the buffer to process while we trash the rest - //if the buffer becomes too empty, we will escape and try again on the next call - if(_serial->available() < 3) - return false; - } - //Serial.println("head"); - if (_serial->read() == 0x85){ - rx_len = _serial->read(); - //Serial.print("rx_len:"); - //Serial.println(rx_len); - resetData(); - - //make sure the binary structs on both Arduinos are the same size. - /*if(rx_len != size){ - rx_len = 0; - return false; - }*/ - } - } - //Serial.println("nothing"); - } - - //we get here if we already found the header bytes, the struct size matched what we know, and now we are byte aligned. - if(rx_len != 0){ - - while(_serial->available() && rx_array_inx <= rx_len){ - data[rx_array_inx++] = _serial->read(); - } - - if(rx_len == (rx_array_inx-1)){ - //seem to have got whole message - //last uint8_t is CS - calc_CS = rx_len; - //Serial.print("len:"); - //Serial.println(rx_len); - for (int i = 0; i -* -*This work is licensed under the Creative Commons Attribution-ShareAlike 3.0 Unported License. -*To view a copy of this license, visit http://creativecommons.org/licenses/by-sa/3.0/ or -*send a letter to Creative Commons, 444 Castro Street, Suite 900, Mountain View, California, 94041, USA. -******************************************************************/ -#ifndef EasyTransfer2_h -#define EasyTransfer2_h - - -//make it a little prettier on the front end. -#define details(name) (byte*)&name,sizeof(name) - -//Not neccessary, but just in case. -#if ARDUINO > 22 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif -#include "HardwareSerial.h" -//#include -#include -#include -#include -#include - -class EasyTransfer2 { -public: -void begin(HardwareSerial *theSerial); -//void begin(uint8_t *, uint8_t, NewSoftSerial *theSerial); -void sendData(); -boolean receiveData(); - -void writeByte(uint8_t dat); -void writeInt(int dat); -uint8_t readByte(); -int readInt(); - - -private: -HardwareSerial *_serial; - -void resetData(); - -uint8_t data[20]; //data storage, for both read and send -uint8_t position; -uint8_t size; //size of data in bytes. Both for read and send -//uint8_t * address; //address of struct -//uint8_t size; //size of struct -//uint8_t * rx_buffer; //address for temporary storage and parsing buffer -//uint8_t rx_buffer[20]; -uint8_t rx_array_inx; //index for RX parsing buffer -uint8_t rx_len; //RX packet length according to the packet -uint8_t calc_CS; //calculated Chacksum -}; - - - -#endif \ No newline at end of file diff --git a/libraries/Robot_Motor/src/LineFollow.h b/libraries/Robot_Motor/src/LineFollow.h deleted file mode 100644 index 8c5bc496efd..00000000000 --- a/libraries/Robot_Motor/src/LineFollow.h +++ /dev/null @@ -1,40 +0,0 @@ -#ifndef LINE_FOLLOW_H -#define LINE_FOLLOW_H - -#if ARDUINO >= 100 - #include "Arduino.h" -#else - #include "WProgram.h" -#endif - -class LineFollow{ - public: - LineFollow(); - - void calibIRs(); - void runLineFollow(); - void config(uint8_t KP, uint8_t KD, uint8_t robotSpeed, uint8_t intergrationTime); - - //These are all pure virtual functions, pure VF needs pure specifier "=0" - //virtual void motorsWrite(int speedL, int speedR)=0; - virtual void motorsWritePct(int speedLpct, int speedRpct)=0; - virtual void motorsStop()=0; - virtual int _IRread(uint8_t num)=0; - protected: - virtual void reportActionDone()=0; - - private: - void doCalibration(int speedPct, int time); - void ajusta_niveles(); - - uint8_t KP; - uint8_t KD; - uint8_t robotSpeed; //percentage - uint8_t intergrationTime; - - int lectura_sensor[5], last_error, acu; - int sensor_blanco[5]; - int sensor_negro[5]; -}; - -#endif \ No newline at end of file diff --git a/libraries/Robot_Motor/src/Multiplexer.cpp b/libraries/Robot_Motor/src/Multiplexer.cpp deleted file mode 100644 index c0fdd867fbc..00000000000 --- a/libraries/Robot_Motor/src/Multiplexer.cpp +++ /dev/null @@ -1,37 +0,0 @@ -#include "Multiplexer.h" - -void Multiplexer::begin(uint8_t* selectors, uint8_t Z, uint8_t length){ - for(uint8_t i=0;iselectors[i]=selectors[i]; - pinMode(selectors[i],OUTPUT); - } - this->length=length; - this->pin_Z=Z; - pinMode(pin_Z,INPUT); -} - -void Multiplexer::selectPin(uint8_t num){ - for(uint8_t i=0;i= 100 -#include "Arduino.h" -#else -#include "WProgram.h" -#endif - -class Multiplexer{ - public: - void begin(uint8_t* selectors, uint8_t Z, uint8_t length); - void selectPin(uint8_t num); - int getAnalogValue(); - int getAnalogValueAt(uint8_t num); - bool getDigitalValue(); - bool getDigitalValueAt(uint8_t num); - private: - uint8_t selectors[4]; - uint8_t pin_Z; - uint8_t length; -}; - -#endif diff --git a/libraries/Robot_Motor/src/lineFollow.cpp b/libraries/Robot_Motor/src/lineFollow.cpp deleted file mode 100644 index 71eacb5ad33..00000000000 --- a/libraries/Robot_Motor/src/lineFollow.cpp +++ /dev/null @@ -1,152 +0,0 @@ -//#include -#include "LineFollow.h" - -//#define KP 19 //0.1 units -//#define KD 14 -//#define ROBOT_SPEED 100 //percentage - -//#define KP 11 -//#define KD 5 -//#define ROBOT_SPEED 50 - -//#define INTEGRATION_TIME 10 //En ms - -/*uint8_t KP=11; -uint8_t KD=5; -uint8_t robotSpeed=50; //percentage -uint8_t intergrationTime=10;*/ - -#define NIVEL_PARA_LINEA 50 - -/*int lectura_sensor[5], last_error=0, acu=0; - -//Estos son los arrays que hay que rellenar con los valores de los sensores -//de suelo sobre blanco y negro. -int sensor_blanco[]={ - 0,0,0,0,0}; -int sensor_negro[]={ - 1023,1023,1023,1023,1023}; -*/ -//unsigned long time; - -//void mueve_robot(int vel_izq, int vel_der); -//void para_robot(); -//void doCalibration(int speedPct, int time); -//void ajusta_niveles(); //calibrate values - -LineFollow::LineFollow(){ - /*KP=11; - KD=5; - robotSpeed=50; //percentage - intergrationTime=10;*/ - config(11,5,50,10); - - for(int i=0;i<5;i++){ - sensor_blanco[i]=0; - sensor_negro[i]=1023; - } -} - -void LineFollow::config(uint8_t KP, uint8_t KD, uint8_t robotSpeed, uint8_t intergrationTime){ - this->KP=KP; - this->KD=KD; - this->robotSpeed=robotSpeed; - this->intergrationTime=intergrationTime; - /*Serial.print("LFC: "); - Serial.print(KP); - Serial.print(' '); - Serial.print(KD); - Serial.print(' '); - Serial.print(robotSpeed); - Serial.print(' '); - Serial.println(intergrationTime);*/ - -} -void LineFollow::calibIRs(){ - static bool isInited=false;//So only init once - if(isInited)return ; - - delay(1000); - - doCalibration(30,500); - doCalibration(-30,800); - doCalibration(30,500); - - delay(1000); - isInited=true; -} - -void LineFollow::runLineFollow(){ - for(int count=0; count<5; count++) - { - lectura_sensor[count]=map(_IRread(count),sensor_negro[count],sensor_blanco[count],0,127); - acu+=lectura_sensor[count]; - } - - //Serial.println(millis()); - if (acu > NIVEL_PARA_LINEA) - { - acu/=5; - - int error = ((lectura_sensor[0]<<6)+(lectura_sensor[1]<<5)-(lectura_sensor[3]<<5)-(lectura_sensor[4]<<6))/acu; - - error = constrain(error,-100,100); - - //Calculamos la correcion de velocidad mediante un filtro PD - int vel = (error * KP)/10 + (error-last_error)*KD; - - last_error = error; - - //Corregimos la velocidad de avance con el error de salida del filtro PD - int motor_left = constrain((robotSpeed + vel),-100,100); - int motor_right =constrain((robotSpeed - vel),-100,100); - - //Movemos el robot - //motorsWritePct(motor_left,motor_right); - motorsWritePct(motor_left,motor_right); - - //Esperamos un poquito a que el robot reaccione - delay(intergrationTime); - } - else - { - //Hemos encontrado una linea negra - //perpendicular a nuestro camino - //paramos el robot - motorsStop(); - - //y detenemos la ejecucin del programa - //while(true); - reportActionDone(); - //setMode(MODE_SIMPLE); - } -} - - -void LineFollow::doCalibration(int speedPct, int time){ - motorsWritePct(speedPct, -speedPct); - unsigned long beginTime = millis(); - while((millis()-beginTime) sensor_blanco[count]) - sensor_blanco[count]=lectura; - - if (lectura < sensor_negro[count]) - sensor_negro[count]=lectura; - } -} - - - - - - diff --git a/libraries/SD/examples/CardInfo/CardInfo.ino b/libraries/SD/examples/CardInfo/CardInfo.ino index 7e4716d8e14..a365de26bc3 100644 --- a/libraries/SD/examples/CardInfo/CardInfo.ino +++ b/libraries/SD/examples/CardInfo/CardInfo.ino @@ -38,7 +38,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/SD/examples/Datalogger/Datalogger.ino b/libraries/SD/examples/Datalogger/Datalogger.ino index 700e3c525f8..1caccef578a 100644 --- a/libraries/SD/examples/Datalogger/Datalogger.ino +++ b/libraries/SD/examples/Datalogger/Datalogger.ino @@ -29,7 +29,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/SD/examples/DumpFile/DumpFile.ino b/libraries/SD/examples/DumpFile/DumpFile.ino index d091081c9e9..52f8ba09160 100644 --- a/libraries/SD/examples/DumpFile/DumpFile.ino +++ b/libraries/SD/examples/DumpFile/DumpFile.ino @@ -29,7 +29,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/SD/examples/Files/Files.ino b/libraries/SD/examples/Files/Files.ino index b51314c9200..ca0f8f17db6 100644 --- a/libraries/SD/examples/Files/Files.ino +++ b/libraries/SD/examples/Files/Files.ino @@ -26,7 +26,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/SD/examples/ReadWrite/ReadWrite.ino b/libraries/SD/examples/ReadWrite/ReadWrite.ino index 8357b81a6ef..7d9e9d98226 100644 --- a/libraries/SD/examples/ReadWrite/ReadWrite.ino +++ b/libraries/SD/examples/ReadWrite/ReadWrite.ino @@ -27,7 +27,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } diff --git a/libraries/SD/examples/listfiles/listfiles.ino b/libraries/SD/examples/listfiles/listfiles.ino index a5abfc786a4..75297f51661 100644 --- a/libraries/SD/examples/listfiles/listfiles.ino +++ b/libraries/SD/examples/listfiles/listfiles.ino @@ -30,7 +30,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } Serial.print("Initializing SD card..."); diff --git a/libraries/SpacebrewYun/README.adoc b/libraries/SpacebrewYun/README.adoc deleted file mode 100644 index a17e5ac246e..00000000000 --- a/libraries/SpacebrewYun/README.adoc +++ /dev/null @@ -1,21 +0,0 @@ -= Spacebrew Library for Arduino = - -This library allows an Arduino Yun to connect to the Spacebrew service. - -== License == - -Copyright (c) Arduino LLC. All right reserved. - -This library is free software; you can redistribute it and/or -modify it under the terms of the GNU Lesser General Public -License as published by the Free Software Foundation; either -version 2.1 of the License, or (at your option) any later version. - -This library is distributed in the hope that it will be useful, -but WITHOUT ANY WARRANTY; without even the implied warranty of -MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU -Lesser General Public License for more details. - -You should have received a copy of the GNU Lesser General Public -License along with this library; if not, write to the Free Software -Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA diff --git a/libraries/SpacebrewYun/keywords.txt b/libraries/SpacebrewYun/keywords.txt deleted file mode 100644 index 7d8667a183f..00000000000 --- a/libraries/SpacebrewYun/keywords.txt +++ /dev/null @@ -1,15 +0,0 @@ -SpacebrewYun KEYWORD1 -addPublish KEYWORD2 -addSubscribe KEYWORD2 -connect KEYWORD2 -verbose KEYWORD2 -monitor KEYWORD2 -onMessage KEYWORD2 -send KEYWORD2 -onRangeMessage KEYWORD2 -onStringMessage KEYWORD2 -onBooleanMessage KEYWORD2 -onCustomMessage KEYWORD2 -onOpen KEYWORD2 -onClose KEYWORD2 -onError KEYWORD2 \ No newline at end of file diff --git a/libraries/SpacebrewYun/library.properties b/libraries/SpacebrewYun/library.properties deleted file mode 100644 index 58af76d47fe..00000000000 --- a/libraries/SpacebrewYun/library.properties +++ /dev/null @@ -1,11 +0,0 @@ -name=SpacebrewYun -author=Julio Terra -maintainer=Julio Terra -sentence=Enables the communication between interactive objects using WebSockets. For Arduino Yún only. -paragraph=This library was developed to enable you to easily connect the Arduino Yún to Spacebrew. To learn more about Spacebrew visit Spacebrew.cc -category=Communication -url=https://github.com/julioterra/yunSpacebrew -architectures=avr -version=1.0.0 -dependencies=Bridge -core-dependencies=arduino (>=1.5.0) diff --git a/libraries/SpacebrewYun/src/SpacebrewYun.cpp b/libraries/SpacebrewYun/src/SpacebrewYun.cpp deleted file mode 100644 index cc366d3bfaf..00000000000 --- a/libraries/SpacebrewYun/src/SpacebrewYun.cpp +++ /dev/null @@ -1,491 +0,0 @@ -#include "SpacebrewYun.h" - - -SpacebrewYun::SpacebrewYun(const String& _name, const String& _description) { - name = _name; - description = _description; - subscribers = NULL; - publishers = NULL; - - server = "sandbox.spacebrew.cc"; - port = 9000; - - _started = false; - _connected = false; - _verbose = false; - _error_msg = false; - - sub_name = ""; - sub_msg = ""; - sub_type = ""; - - read_name = false; - read_msg = false; - - connect_attempt = 0; - connect_attempt_inter = 10000; - - for ( int i = 0; i < pidLength; i++ ) { - pid [i] = '\0'; - } - - for ( int i = 0; i < sbPidsLen; i++ ) { - sbPids [i] = '\0'; - } - - Console.buffer(64); - -} - -int SpacebrewYun::sub_msg_int_max = 6; -int SpacebrewYun::sub_msg_bool_max = 5; -int SpacebrewYun::sub_msg_str_max = 50; -int SpacebrewYun::sub_name_max = 20; -SpacebrewYun::OnBooleanMessage SpacebrewYun::_onBooleanMessage = NULL; -SpacebrewYun::OnRangeMessage SpacebrewYun::_onRangeMessage = NULL; -SpacebrewYun::OnStringMessage SpacebrewYun::_onStringMessage = NULL; -SpacebrewYun::OnCustomMessage SpacebrewYun::_onCustomMessage = NULL; -SpacebrewYun::OnSBOpen SpacebrewYun::_onOpen = NULL; -SpacebrewYun::OnSBClose SpacebrewYun::_onClose = NULL; -SpacebrewYun::OnSBError SpacebrewYun::_onError = NULL; - -void SpacebrewYun::onOpen(OnSBOpen function){ - _onOpen = function; -} -void SpacebrewYun::onClose(OnSBClose function){ - _onClose = function; -} -void SpacebrewYun::onRangeMessage(OnRangeMessage function){ - _onRangeMessage = function; -} -void SpacebrewYun::onStringMessage(OnStringMessage function){ - _onStringMessage = function; -} -void SpacebrewYun::onBooleanMessage(OnBooleanMessage function){ - _onBooleanMessage = function; -} -void SpacebrewYun::onCustomMessage(OnCustomMessage function){ - _onCustomMessage = function; -} -void SpacebrewYun::onError(OnSBError function){ - _onError = function; -} - -void SpacebrewYun::addPublish(const String& name, const String& type) { - struct Publisher *p = new Publisher(); - p->name = createString(name.length() + 1); - p->type = createString(type.length() + 1); - p->confirmed = false; - p->time = 0; - if (type == "range") { - p->lastMsg = createString(sub_msg_int_max); - emptyString(p->lastMsg, sub_msg_int_max); - } - else if (type == "boolean") { - p->lastMsg = createString(sub_msg_bool_max); - emptyString(p->lastMsg, sub_msg_bool_max); - } - else { - p->lastMsg = createString(sub_msg_str_max); - emptyString(p->lastMsg, sub_msg_str_max); - } - name.toCharArray(p->name, name.length() + 1); - type.toCharArray(p->type, type.length() + 1); - - if (publishers == NULL){ - publishers = p; - } - else { - struct Publisher *curr = publishers; - int counter = 1; - while(curr->next != NULL){ - curr = curr->next; - counter++; - } - curr->next = p; - } - p->next = NULL; -} - -void SpacebrewYun::addSubscribe(const String& name, const String& type) { - Subscriber *s = new Subscriber(); - s->name = createString(name.length() + 1); - s->type = createString(type.length() + 1); - name.toCharArray(s->name, name.length() + 1); - type.toCharArray(s->type, type.length() + 1); - - if (subscribers == NULL){ - subscribers = s; - } - else { - struct Subscriber *curr = subscribers; - while(curr->next != NULL){ - curr = curr->next; - } - curr->next = s; - } -} - -void SpacebrewYun::connect(String _server, int _port) { - Serial.println(F("v2.3")); - _started = true; - server = _server; - port = _port; - connect_attempt = millis(); - - killPids(); - - brew.begin("run-spacebrew"); // Process should launch the "curl" command - // brew.begin("python"); // Process should launch the "curl" command - // brew.addParameter("/usr/lib/python2.7/spacebrew/spacebrew.py"); // Process should launch the "curl" command - brew.addParameter("--server"); - brew.addParameter(server); - brew.addParameter("--port"); - brew.addParameter(String(port)); - brew.addParameter("-n"); - brew.addParameter(name); - brew.addParameter("-d"); - brew.addParameter(description); - - if (subscribers != NULL) { - struct Subscriber *curr = subscribers; - while(curr != NULL){ - if (_verbose) { - Serial.print(F("Creating subscribers: ")); - Serial.print(curr->name); - Serial.print(F(" of type: ")); - Serial.println(curr->type); - } - - brew.addParameter("-s"); // Add the URL parameter to "curl" - brew.addParameter(curr->name); // Add the URL parameter to "curl" - brew.addParameter(","); // Add the URL parameter to "curl" - brew.addParameter(curr->type); // Add the URL parameter to "curl" - - // if (curr->next == NULL) curr = NULL; - // else curr = curr->next; - - curr = curr->next; - } - } - if (publishers != NULL) { - struct Publisher *curr = publishers; - while(curr != NULL){ - if (_verbose) { - Serial.print(F("Creating publishers: ")); - Serial.print(curr->name); - Serial.print(F(" of type: ")); - Serial.println(curr->type); - } - brew.addParameter("-p"); // Add the URL parameter to "curl" - brew.addParameter(curr->name); // Add the URL parameter to "curl" - brew.addParameter(","); // Add the URL parameter to "curl" - brew.addParameter(curr->type); // Add the URL parameter to "curl" - - curr = curr->next; - } - } - - Console.begin(); - if (_verbose) { - Serial.println(F("Console started ")); - } - - brew.runAsynchronously(); - - if (_verbose) { - Serial.println(F("Brew started ")); - } - while (!Console) { ; } -} - -void SpacebrewYun::monitor() { - - // if not connected try to reconnect after appropriate interval - if (_started && !_connected) { - if ((millis() - connect_attempt) > connect_attempt_inter) { - connect(server, port); - } - } - - // if message received from console, then process it - while (Console.available() > 0) { - char c = Console.read(); - - if (c == char(CONNECTION_START) && _started && !_connected) { - if (_verbose) { - Serial.print(F("Connected to: ")); - Serial.println(server); - Serial.print(F("Application name: ")); - Serial.println(name); - } - if (_onOpen != NULL){ - _onOpen(); - } - _connected = true; - } - - else if (c == char(CONNECTION_END) && _connected) { - _connected = false; - if (_verbose) { - Serial.print(F("Disconnected from: ")); - Serial.println(server); - } - if (_onClose != NULL){ - _onClose(); - } - } - - if (_verbose) { - if (c == char(CONNECTION_ERROR)) { - _error_msg = true; - Serial.println(F("ERROR :: Spacebrew.py ::")); - } - else if (_error_msg && c == char(MSG_END)) { - _error_msg = false; - Serial.println(); - } - if (_error_msg) { - Serial.print(c); - } - } - - if (_connected) { - // set flag to read data message name - if (c == char(MSG_START)) { - read_name = true; - - // set flag to read data message payload - } else if (c == char(MSG_DIV) || sub_name.length() > sub_name_max) { - read_name = false; - read_msg = true; - - // set flag to read confirm message - } else if (c == char(MSG_CONFIRM)) { - read_confirm = true; - - // process data or confirm message, or reset message - } else if (c == char(MSG_END) || sub_msg.length() > sub_msg_str_max) { - if (read_msg == true) { - onMessage(); - } - if (read_confirm == true) { - onConfirm(); - delay(2); - } - - read_confirm = false; - read_msg = false; - sub_name = ""; - sub_msg = ""; - sub_type = ""; - - // send a message received confirmation - Console.print(char(7)); - - // read message body - } else { - if (read_name == true) { - sub_name += c; - } else if (read_confirm == true) { - sub_name += c; - } else if (read_msg == true) { - sub_msg += c; - } - else if (_verbose) { - Serial.print(c); - } - } - } - } - - // check if received confirmation that Linux received messages - if (publishers != NULL && _connected) { - struct Publisher *curr = publishers; - while((curr != NULL)){ - - if ( (curr->confirmed == 0) && ((millis() - curr->time) > 50) ) { - if (_verbose) { - Serial.print(F("resending msg: ")); - Serial.println(curr->name); - } - send(curr->name, curr->lastMsg); - } - curr = curr->next; - } - } - - // Serial.println(F(" - END monitor")); - -} - -void SpacebrewYun::onConfirm() { - if (publishers != NULL) { - struct Publisher *curr = publishers; - while((curr != NULL)){ - if (sub_name.equals(curr->name) == true) { - curr->confirmed = true; - break; - } - curr = curr->next; - } - } -} - -boolean SpacebrewYun::connected() { - return SpacebrewYun::_connected; -} - -void SpacebrewYun::verbose(boolean verbose = true) { - _verbose = verbose; -} - -void SpacebrewYun::onMessage() { - Serial.print(F("onMessage: name ")); - Serial.print(sub_name); - Serial.print(F(", value ")); - Serial.print(sub_msg); - - if (subscribers != NULL && sub_name.equals("") == false) { - struct Subscriber *curr = subscribers; - while((curr != NULL) && (sub_type.equals("") == true)){ - if (sub_name.equals(curr->name) == true) { - sub_type = curr->type; - } - curr = curr->next; - } - } - - Serial.print(F(", type ")); - Serial.println(sub_type); - - if ( sub_type.equals("range") ) { - if (_onRangeMessage != NULL) { - _onRangeMessage( sub_name, int(sub_msg.toInt()) ); - } else { - Serial.println(F("ERROR :: Range message, no callback")); - } - } else if ( sub_type.equals("boolean") ) { - if (_onBooleanMessage != NULL) { - _onBooleanMessage( sub_name, ( sub_msg.equals("false") ? false : true ) ); - } else { - Serial.println(F("ERROR :: Boolean message, no callback")); - } - } else if ( sub_type.equals("string") ) { - if (_onStringMessage != NULL) { - _onStringMessage( sub_name, sub_msg ); - } else { - Serial.println(F("ERROR :: String message, no callback")); - } - } else if ( sub_type.equals("custom") ) { - if (_onCustomMessage != NULL) { - _onCustomMessage( sub_name, sub_msg, sub_type ); - } else { - Serial.println(F("ERROR :: Custom message, no callback")); - } - } - -} - - -void SpacebrewYun::send(const String& name, const String& value){ - if (publishers != NULL) { - - Console.print(char(29)); - Console.print(name); - Console.print(char(30)); - Console.print(value); - Console.print(char(31)); - Console.flush(); - - struct Publisher *curr = publishers; - while(curr != NULL){ - if (name.equals(curr->name) == true) { - int msg_len = 0; - - if (curr->type == "range") msg_len = sub_msg_int_max; - else if (curr->type == "boolean") msg_len = sub_msg_bool_max; - else msg_len = sub_msg_str_max; - - if (value.length() < msg_len) msg_len = value.length() + 1; - value.toCharArray(curr->lastMsg, msg_len); - - curr->confirmed = false; - curr->time = millis(); - - } - curr = curr->next; - } - } -} - - -/** - * method that gets the pid of all spacebrew.py instances running on Linux. - */ -void SpacebrewYun::getPids() { - - // request the pid of all python processes - // brew.begin("run-getsbpids"); // Process should launch the "curl" command - pids.begin("python"); - pids.addParameter("/usr/lib/python2.7/spacebrew/getprocpid.py"); // Process should launch the "curl" command - pids.run(); - - if (_verbose) { - Serial.println(F("Checking if spacebrew running")); - } - - int sbPidsIndex = 0; - int pidCharIndex = 0; - char c = '\0'; - - while ( pids.available() > 0 ) { - - c = pids.read(); - - if ( c >= '0' && c <= '9' ) { - pid[pidCharIndex] = c; - pidCharIndex = (pidCharIndex + 1) % pidLength; - } - - else if ( (c == ' ' || c == '\n') && pidCharIndex > 0) { - sbPids[sbPidsIndex] = atoi(pid); - if ( sbPidsIndex < (sbPidsLen - 1) ) sbPidsIndex = (sbPidsIndex + 1); - - for( int i = 0; i < pidLength; i++ ){ - pid[i] = '\0'; - pidCharIndex = 0; - } - } - } -} - -/** - * method that kills all of the spacebrew.py instances that are running - * on Linux. - */ -void SpacebrewYun::killPids() { - getPids(); - delay(400); - - for (int i = 0; i < sbPidsLen; i ++) { - if (sbPids[i] > 0) { - char * newPID = itoa(sbPids[i], pid, 10); - - if (_verbose) { - Serial.print(F("Stopping existing processes: ")); - Serial.println(newPID); - } - - Process p; - p.begin("kill"); - p.addParameter("-9"); - p.addParameter(newPID); // Process should launch the "curl" command - p.run(); // Run the process and wait for its termination - - delay(400); - } - } -} - - diff --git a/libraries/SpacebrewYun/src/SpacebrewYun.h b/libraries/SpacebrewYun/src/SpacebrewYun.h deleted file mode 100644 index 7c09c26b6e4..00000000000 --- a/libraries/SpacebrewYun/src/SpacebrewYun.h +++ /dev/null @@ -1,139 +0,0 @@ - -#ifndef YUNSPACEBREW_H -#define YUNSPACEBREW_H - -#include "Arduino.h" -#include -#include -#include - -enum SBmsg { - CONNECTION_START = char(28), - CONNECTION_END = char(27), - CONNECTION_ERROR = char(26), - MSG_CONFIRM = char(7), - MSG_START = char(29), - MSG_DIV = char(30), - MSG_END = char(31) -}; - -struct Publisher { - char *name; - char *type; - char *lastMsg; - Publisher *next; - int confirmed; - long time; -}; - -struct Subscriber{ - char *name; - char *type; - Subscriber *next; -}; - -int const pidLength = 6; -int const sbPidsLen = 4; - -class SpacebrewYun { - - public: - - SpacebrewYun(const String&, const String&); - void addPublish(const String&, const String&); - void addSubscribe(const String&, const String&); - - void connect(String, int); - void connect() { connect(server, port); }; - void connect(String _server) { connect(String(_server), port); }; - - void monitor(); - void onMessage(); - void onConfirm(); - - boolean connected(); - - void send(const String&, const String&); - void send(const String& name, char * value) { send(name, String(value)); } - void send(const String& name, bool value){ send(name, (value ? String("true") : String("false"))); }; - void send(const String& name, int value) { send(name, String(value)); }; - void send(const String& name, long value) { send(name, String(value)); }; - void send(const String& name, float value) { send(name, String(value)); }; - - void verbose(boolean); - - typedef void (*OnBooleanMessage)(String name, boolean value); - typedef void (*OnRangeMessage)(String name, int value); - typedef void (*OnStringMessage)(String name, String value); - typedef void (*OnCustomMessage)(String name, String value, String type); - typedef void (*OnSBOpen)(); - typedef void (*OnSBClose)(); - typedef void (*OnSBError)(int code, String message); - - void onOpen(OnSBOpen function); - void onClose(OnSBClose function); - void onRangeMessage(OnRangeMessage function); - void onStringMessage(OnStringMessage function); - void onBooleanMessage(OnBooleanMessage function); - void onCustomMessage(OnCustomMessage function); - void onError(OnSBError function); - - private: - - Process brew; - String name; - String server; - String description; - boolean _started; - boolean _connected; - boolean _error_msg; - boolean _verbose; - int port; - - /**Output should be at least 5 cells**/ - static OnBooleanMessage _onBooleanMessage; - static OnRangeMessage _onRangeMessage; - static OnStringMessage _onStringMessage; - static OnCustomMessage _onCustomMessage; - static OnSBOpen _onOpen; - static OnSBClose _onClose; - static OnSBError _onError; - - Subscriber * subscribers; - Publisher * publishers; - String sub_name; - String sub_msg; - String sub_type; - - boolean read_name; - boolean read_msg; - boolean read_confirm; - static int sub_name_max; - static int sub_msg_str_max; - static int sub_msg_int_max; - static int sub_msg_bool_max; - - long connect_attempt; - int connect_attempt_inter; - - Process pids; - char pid [6]; - int sbPids [4]; - - void killPids(); - void getPids(); - - static char * createString(int len){ - char * out = ( char * ) malloc ( len + 1 ); - return out; - } - - static void emptyString(char * str, int len){ - for (int i = 0; i < len; i++) { - str[i] = '\0'; - } - } - -}; - -#endif diff --git a/libraries/Stepper/src/Stepper.cpp b/libraries/Stepper/src/Stepper.cpp index 03d635fadb9..1f76295d05b 100644 --- a/libraries/Stepper/src/Stepper.cpp +++ b/libraries/Stepper/src/Stepper.cpp @@ -85,7 +85,6 @@ Stepper::Stepper(int number_of_steps, int motor_pin_1, int motor_pin_2) { this->step_number = 0; // which step the motor is on - this->speed = 0; // the motor speed, in revolutions per minute this->direction = 0; // motor direction this->last_step_time = 0; // time stamp in us of the last step taken this->number_of_steps = number_of_steps; // total number of steps for this motor @@ -116,7 +115,6 @@ Stepper::Stepper(int number_of_steps, int motor_pin_1, int motor_pin_2, int motor_pin_3, int motor_pin_4) { this->step_number = 0; // which step the motor is on - this->speed = 0; // the motor speed, in revolutions per minute this->direction = 0; // motor direction this->last_step_time = 0; // time stamp in us of the last step taken this->number_of_steps = number_of_steps; // total number of steps for this motor @@ -149,7 +147,6 @@ Stepper::Stepper(int number_of_steps, int motor_pin_1, int motor_pin_2, int motor_pin_5) { this->step_number = 0; // which step the motor is on - this->speed = 0; // the motor speed, in revolutions per minute this->direction = 0; // motor direction this->last_step_time = 0; // time stamp in us of the last step taken this->number_of_steps = number_of_steps; // total number of steps for this motor diff --git a/libraries/Stepper/src/Stepper.h b/libraries/Stepper/src/Stepper.h index 6c875883a88..2e68979a1b1 100644 --- a/libraries/Stepper/src/Stepper.h +++ b/libraries/Stepper/src/Stepper.h @@ -102,7 +102,6 @@ class Stepper { void stepMotor(int this_step); int direction; // Direction of rotation - int speed; // Speed in RPMs unsigned long step_delay; // delay between steps, in ms, based on speed int number_of_steps; // total number of steps this motor can take int pin_count; // how many pins are in use. diff --git a/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino b/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino index 92459931d11..d1b8a731dfb 100644 --- a/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino +++ b/libraries/TFT/examples/Arduino/TFTBitmapLogo/TFTBitmapLogo.ino @@ -59,7 +59,7 @@ void setup() { // print some diagnostic info Serial.begin(9600); while (!Serial) { - // wait for serial line to be ready + // wait for serial port to connect. Needed for native USB port only } // clear the GLCD screen before starting diff --git a/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino b/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino index 84585d46905..8d38519a481 100644 --- a/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino +++ b/libraries/TFT/examples/Esplora/EsploraTFTBitmapLogo/EsploraTFTBitmapLogo.ino @@ -50,7 +50,7 @@ void setup() { // print some diagnostic info Serial.begin(9600); while (!Serial) { - // wait for serial monitor to be open + // wait for serial port to connect. Needed for native USB port only } // try to access the SD card. If that fails (e.g. diff --git a/libraries/WiFi/examples/ConnectNoEncryption/ConnectNoEncryption.ino b/libraries/WiFi/examples/ConnectNoEncryption/ConnectNoEncryption.ino index cd26abb612d..e12dfe3bbfa 100644 --- a/libraries/WiFi/examples/ConnectNoEncryption/ConnectNoEncryption.ino +++ b/libraries/WiFi/examples/ConnectNoEncryption/ConnectNoEncryption.ino @@ -22,7 +22,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino b/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino index fd3e9c213e9..93070f57f8d 100644 --- a/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino +++ b/libraries/WiFi/examples/ConnectWithWEP/ConnectWithWEP.ino @@ -34,7 +34,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino b/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino index 8bc5ab95680..56ae372d194 100644 --- a/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino +++ b/libraries/WiFi/examples/ConnectWithWPA/ConnectWithWPA.ino @@ -23,7 +23,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino b/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino index c92c464f517..7203207abe3 100644 --- a/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino +++ b/libraries/WiFi/examples/ScanNetworks/ScanNetworks.ino @@ -22,7 +22,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino b/libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino index 0847386f253..11b32686eaa 100644 --- a/libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino +++ b/libraries/WiFi/examples/WiFiChatServer/WiFiChatServer.ino @@ -37,7 +37,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino b/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino index f5f0f29cf1b..9bcc73ea549 100644 --- a/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino +++ b/libraries/WiFi/examples/WiFiUdpNtpClient/WiFiUdpNtpClient.ino @@ -40,7 +40,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/WiFiUdpSendReceiveString/WiFiUdpSendReceiveString.ino b/libraries/WiFi/examples/WiFiUdpSendReceiveString/WiFiUdpSendReceiveString.ino index 1d38a7d5ca9..1cd384bc094 100644 --- a/libraries/WiFi/examples/WiFiUdpSendReceiveString/WiFiUdpSendReceiveString.ino +++ b/libraries/WiFi/examples/WiFiUdpSendReceiveString/WiFiUdpSendReceiveString.ino @@ -34,7 +34,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino b/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino index 77154219e84..33285c18096 100644 --- a/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino +++ b/libraries/WiFi/examples/WiFiWebClient/WiFiWebClient.ino @@ -43,7 +43,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino b/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino index 71ca57b503c..9953824ffd7 100644 --- a/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino +++ b/libraries/WiFi/examples/WiFiWebClientRepeating/WiFiWebClientRepeating.ino @@ -40,7 +40,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: diff --git a/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino b/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino index cec2aaeb167..c777d230531 100644 --- a/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino +++ b/libraries/WiFi/examples/WiFiWebServer/WiFiWebServer.ino @@ -34,7 +34,7 @@ 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 + ; // wait for serial port to connect. Needed for native USB port only } // check for the presence of the shield: