1
0
mirror of https://github.com/arduino/Arduino.git synced 2025-01-30 19:52:13 +01:00

Merge branch 'master' into stk500-jtagice3

This commit is contained in:
Martino Facchin 2017-02-08 12:56:49 +01:00 committed by GitHub
commit dfea164dfe
3109 changed files with 4436 additions and 3823024 deletions

1
.gitignore vendored
View File

@ -20,6 +20,7 @@ build/windows/*.zip
build/windows/*.tgz
build/windows/*.tar.bz2
build/windows/libastylej*
build/windows/liblistSerials*
build/windows/arduino-*.zip
build/windows/dist/*.tar.gz
build/windows/dist/*.tar.bz2

View File

@ -221,6 +221,7 @@ public class ContributedLibraryTableCellJPanel extends JPanel {
StyleSheet s = html.getStyleSheet();
s.addRule("body { margin: 0; padding: 0;"
+ "font-family: Verdana, Geneva, Arial, Helvetica, sans-serif;"
+ "color: black;"
+ "font-size: " + 10 * Theme.getScale() / 100 + "; }");
}
description.setOpaque(false);

View File

@ -51,8 +51,12 @@ public class SplashScreenHelper {
public SplashScreenHelper(SplashScreen splash) {
this.splash = splash;
Toolkit tk = Toolkit.getDefaultToolkit();
desktopHints = (Map) tk.getDesktopProperty("awt.font.desktophints");
if (splash != null) {
Toolkit tk = Toolkit.getDefaultToolkit();
desktopHints = (Map) tk.getDesktopProperty("awt.font.desktophints");
} else {
desktopHints = null;
}
}
public void splashText(String text) {

View File

@ -22,8 +22,10 @@
package processing.app;
import cc.arduino.Compiler;
import cc.arduino.Constants;
import cc.arduino.UpdatableBoardsLibsFakeURLsHandler;
import cc.arduino.UploaderUtils;
import cc.arduino.contributions.*;
import cc.arduino.contributions.libraries.*;
import cc.arduino.contributions.libraries.ui.LibraryManagerUI;
@ -84,7 +86,6 @@ public class Base {
private static boolean commandLine;
public static volatile Base INSTANCE;
public static SplashScreenHelper splashScreenHelper = new SplashScreenHelper(SplashScreen.getSplashScreen());
public static Map<String, Object> FIND_DIALOG_STATE = new HashMap<>();
private final ContributionInstaller contributionInstaller;
private final LibraryInstaller libraryInstaller;
@ -119,8 +120,16 @@ public class Base {
private final List<JMenuItem> recentSketchesMenuItems = new LinkedList<>();
static public void main(String args[]) throws Exception {
System.setProperty("awt.useSystemAAFontSettings", "on");
System.setProperty("swing.aatext", "true");
if (!OSUtils.isWindows()) {
// Those properties helps enabling anti-aliasing on Linux
// (but not on Windows where they made things worse actually
// and the font rendering becomes ugly).
// Those properties must be set before initializing any
// graphic object, otherwise they don't have any effect.
System.setProperty("awt.useSystemAAFontSettings", "on");
System.setProperty("swing.aatext", "true");
}
System.setProperty("java.net.useSystemProxies", "true");
if (OSUtils.isMacOS()) {
@ -128,59 +137,13 @@ public class Base {
}
try {
guardedMain(args);
INSTANCE = new Base(args);
} catch (Throwable e) {
e.printStackTrace(System.err);
System.exit(255);
}
}
static public void guardedMain(String args[]) throws Exception {
Thread deleteFilesOnShutdownThread = new Thread(DeleteFilesOnShutdown.INSTANCE);
deleteFilesOnShutdownThread.setName("DeleteFilesOnShutdown");
Runtime.getRuntime().addShutdownHook(deleteFilesOnShutdownThread);
BaseNoGui.initLogger();
initLogger();
BaseNoGui.initPlatform();
BaseNoGui.getPlatform().init();
BaseNoGui.initPortableFolder();
BaseNoGui.initParameters(args);
splashScreenHelper.splashText(tr("Loading configuration..."));
BaseNoGui.initVersion();
// Use native popups so they don't look so crappy on osx
JPopupMenu.setDefaultLightWeightPopupEnabled(false);
// Don't put anything above this line that might make GUI,
// because the platform has to be inited properly first.
// setup the theme coloring fun
Theme.init();
System.setProperty("swing.aatext", PreferencesData.get("editor.antialias", "true"));
// Set the look and feel before opening the window
try {
BaseNoGui.getPlatform().setLookAndFeel();
} catch (Exception e) {
// ignore
}
// Create a location for untitled sketches
untitledFolder = FileUtils.createTempFolder("untitled" + new Random().nextInt(Integer.MAX_VALUE), ".tmp");
DeleteFilesOnShutdown.add(untitledFolder);
INSTANCE = new Base(args);
}
static public void initLogger() {
Handler consoleHandler = new ConsoleLogger();
consoleHandler.setLevel(Level.ALL);
@ -208,12 +171,6 @@ public class Base {
}
static protected void setCommandLine() {
commandLine = true;
}
static protected boolean isCommandLine() {
return commandLine;
}
@ -227,10 +184,60 @@ public class Base {
}
public Base(String[] args) throws Exception {
BaseNoGui.notifier = new GUIUserNotifier(this);
Thread deleteFilesOnShutdownThread = new Thread(DeleteFilesOnShutdown.INSTANCE);
deleteFilesOnShutdownThread.setName("DeleteFilesOnShutdown");
Runtime.getRuntime().addShutdownHook(deleteFilesOnShutdownThread);
BaseNoGui.initLogger();
initLogger();
BaseNoGui.initPlatform();
BaseNoGui.getPlatform().init();
BaseNoGui.initPortableFolder();
// Look for a possible "--preferences-file" parameter and load preferences
BaseNoGui.initParameters(args);
CommandlineParser parser = new CommandlineParser(args);
parser.parseArgumentsPhase1();
commandLine = !parser.isGuiMode();
SplashScreenHelper splash;
if (parser.isGuiMode()) {
// Setup all notification widgets
splash = new SplashScreenHelper(SplashScreen.getSplashScreen());
BaseNoGui.notifier = new GUIUserNotifier(this);
// Setup the theme coloring fun
Theme.init();
System.setProperty("swing.aatext", PreferencesData.get("editor.antialias", "true"));
// Set the look and feel before opening the window
try {
BaseNoGui.getPlatform().setLookAndFeel();
} catch (Exception e) {
// ignore
}
// Use native popups so they don't look so crappy on osx
JPopupMenu.setDefaultLightWeightPopupEnabled(false);
} else {
splash = new SplashScreenHelper(null);
}
splash.splashText(tr("Loading configuration..."));
BaseNoGui.initVersion();
// Don't put anything above this line that might make GUI,
// because the platform has to be inited properly first.
// Create a location for untitled sketches
untitledFolder = FileUtils.createTempFolder("untitled" + new Random().nextInt(Integer.MAX_VALUE), ".tmp");
DeleteFilesOnShutdown.add(untitledFolder);
BaseNoGui.checkInstallationFolder();
@ -246,11 +253,15 @@ public class Base {
}
}
splashScreenHelper.splashText(tr("Initializing packages..."));
splash.splashText(tr("Initializing packages..."));
BaseNoGui.initPackages();
splashScreenHelper.splashText(tr("Preparing boards..."));
rebuildBoardsMenu();
rebuildProgrammerMenu();
splash.splashText(tr("Preparing boards..."));
if (!isCommandLine()) {
rebuildBoardsMenu();
rebuildProgrammerMenu();
}
// Setup board-dependent variables.
onBoardOrPortChange();
@ -263,35 +274,6 @@ public class Base {
parser.parseArgumentsPhase2();
for (String path : parser.getFilenames()) {
// Correctly resolve relative paths
File file = absoluteFile(path);
// Fix a problem with systems that use a non-ASCII languages. Paths are
// being passed in with 8.3 syntax, which makes the sketch loader code
// unhappy, since the sketch folder naming doesn't match up correctly.
// http://dev.processing.org/bugs/show_bug.cgi?id=1089
if (OSUtils.isWindows()) {
try {
file = file.getCanonicalFile();
} catch (IOException e) {
e.printStackTrace();
}
}
boolean showEditor = parser.isGuiMode();
if (!parser.isForceSavePrefs())
PreferencesData.setDoSave(showEditor);
if (handleOpen(file, retrieveSketchLocation(".default"), showEditor, false) == null) {
String mess = I18n.format(tr("Failed to open sketch: \"{0}\""), path);
// Open failure is fatal in upload/verify mode
if (parser.isVerifyOrUploadMode())
showError(null, mess, 2);
else
showWarning(null, mess, null);
}
}
// Save the preferences. For GUI mode, this happens in the quit
// handler, but for other modes we should also make sure to save
// them.
@ -377,35 +359,90 @@ public class Base {
System.exit(0);
} else if (parser.isVerifyOrUploadMode()) {
splashScreenHelper.close();
// Set verbosity for command line build
PreferencesData.set("build.verbose", "" + parser.isDoVerboseBuild());
PreferencesData.set("upload.verbose", "" + parser.isDoVerboseUpload());
PreferencesData.set("runtime.preserve.temp.files", Boolean.toString(parser.isPreserveTempFiles()));
PreferencesData.setBoolean("build.verbose", parser.isDoVerboseBuild());
PreferencesData.setBoolean("upload.verbose", parser.isDoVerboseUpload());
// Make sure these verbosity preferences are only for the
// current session
// Set preserve-temp flag
PreferencesData.setBoolean("runtime.preserve.temp.files", parser.isPreserveTempFiles());
// Make sure these verbosity preferences are only for the current session
PreferencesData.setDoSave(false);
Editor editor = editors.get(0);
Sketch sketch = null;
String outputFile = null;
if (parser.isUploadMode()) {
splashScreenHelper.splashText(tr("Verifying and uploading..."));
editor.exportHandler.run();
} else {
splashScreenHelper.splashText(tr("Verifying..."));
editor.runHandler.run();
try {
// Build
splash.splashText(tr("Verifying..."));
File sketchFile = BaseNoGui.absoluteFile(parser.getFilenames().get(0));
sketch = new Sketch(sketchFile);
outputFile = new Compiler(sketch).build(progress -> {}, false);
} catch (Exception e) {
// Error during build
System.exit(1);
}
// Error during build or upload
if (editor.status.isErr()) {
System.exit(1);
if (parser.isUploadMode()) {
// Upload
splash.splashText(tr("Uploading..."));
try {
List<String> warnings = new ArrayList<>();
UploaderUtils uploader = new UploaderUtils();
boolean res = uploader.upload(sketch, null, outputFile,
parser.isDoUseProgrammer(),
parser.isNoUploadPort(), warnings);
for (String warning : warnings) {
System.out.println(tr("Warning") + ": " + warning);
}
if (!res) {
throw new Exception();
}
} catch (Exception e) {
// Error during upload
System.out.flush();
System.err.flush();
System.err
.println(tr("An error occurred while uploading the sketch"));
System.exit(1);
}
}
// No errors exit gracefully
System.exit(0);
} else if (parser.isGuiMode()) {
splashScreenHelper.splashText(tr("Starting..."));
splash.splashText(tr("Starting..."));
for (String path : parser.getFilenames()) {
// Correctly resolve relative paths
File file = absoluteFile(path);
// Fix a problem with systems that use a non-ASCII languages. Paths are
// being passed in with 8.3 syntax, which makes the sketch loader code
// unhappy, since the sketch folder naming doesn't match up correctly.
// http://dev.processing.org/bugs/show_bug.cgi?id=1089
if (OSUtils.isWindows()) {
try {
file = file.getCanonicalFile();
} catch (IOException e) {
e.printStackTrace();
}
}
if (!parser.isForceSavePrefs())
PreferencesData.setDoSave(true);
if (handleOpen(file, retrieveSketchLocation(".default"), false) == null) {
String mess = I18n.format(tr("Failed to open sketch: \"{0}\""), path);
// Open failure is fatal in upload/verify mode
if (parser.isVerifyOrUploadMode())
showError(null, mess, 2);
else
showWarning(null, mess, null);
}
}
installKeyboardInputMap();
@ -472,7 +509,7 @@ public class Base {
}
int[] location = retrieveSketchLocation("" + i);
// If file did not exist, null will be returned for the Editor
if (handleOpen(new File(path), location, nextEditorLocation(), true, false, false) != null) {
if (handleOpen(new File(path), location, nextEditorLocation(), false, false) != null) {
opened++;
}
}
@ -764,14 +801,14 @@ public class Base {
}
public Editor handleOpen(File file, boolean untitled) throws Exception {
return handleOpen(file, nextEditorLocation(), true, untitled);
return handleOpen(file, nextEditorLocation(), untitled);
}
protected Editor handleOpen(File file, int[] location, boolean showEditor, boolean untitled) throws Exception {
return handleOpen(file, location, location, showEditor, true, untitled);
protected Editor handleOpen(File file, int[] location, boolean untitled) throws Exception {
return handleOpen(file, location, location, true, untitled);
}
protected Editor handleOpen(File file, int[] storedLocation, int[] defaultLocation, boolean showEditor, boolean storeOpenedSketches, boolean untitled) throws Exception {
protected Editor handleOpen(File file, int[] storedLocation, int[] defaultLocation, boolean storeOpenedSketches, boolean untitled) throws Exception {
if (!file.exists()) return null;
// Cycle through open windows to make sure that it's not already open.
@ -804,9 +841,7 @@ public class Base {
// now that we're ready, show the window
// (don't do earlier, cuz we might move it based on a window being closed)
if (showEditor) {
SwingUtilities.invokeLater(() -> editor.setVisible(true));
}
SwingUtilities.invokeLater(() -> editor.setVisible(true));
return editor;
}
@ -1417,6 +1452,8 @@ public class Base {
// Cycle through all boards of this platform
for (TargetBoard board : targetPlatform.getBoards().values()) {
if (board.getPreferences().get("hide") != null)
continue;
JMenuItem item = createBoardMenusAndCustomMenus(boardsCustomMenus, menuItemsToClickAfterStartup,
buttonGroupsMap,
board, targetPlatform, targetPackage);
@ -1810,10 +1847,9 @@ public class Base {
}
public File getDefaultSketchbookFolderOrPromptForIt() {
File sketchbookFolder = BaseNoGui.getDefaultSketchbookFolder();
if (sketchbookFolder == null) {
if (sketchbookFolder == null && !isCommandLine()) {
sketchbookFolder = promptSketchbookLocation();
}

View File

@ -1306,7 +1306,7 @@ public class Editor extends JFrame implements RunnerListener {
JMenuItem copyForumItem = newJMenuItemShift(tr("Copy for Forum"), 'C');
copyForumItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
getCurrentTab().handleHTMLCopy();
getCurrentTab().handleDiscourseCopy();
}
});
menu.add(copyForumItem);
@ -1314,7 +1314,7 @@ public class Editor extends JFrame implements RunnerListener {
JMenuItem copyHTMLItem = newJMenuItemAlt(tr("Copy as HTML"), 'C');
copyHTMLItem.addActionListener(new ActionListener() {
public void actionPerformed(ActionEvent e) {
getCurrentTab().handleDiscourseCopy();
getCurrentTab().handleHTMLCopy();
}
});
menu.add(copyHTMLItem);
@ -2106,6 +2106,7 @@ public class Editor extends JFrame implements RunnerListener {
// Update editor window title in case of "Save as..."
updateTitle();
header.rebuild();
}
return true;

View File

@ -0,0 +1,85 @@
/*
* This file is part of Arduino.
*
* Copyright 2017 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;
import static org.junit.Assert.assertEquals;
import java.io.File;
import org.apache.commons.compress.utils.IOUtils;
import org.junit.Before;
import org.junit.Test;
import processing.app.helpers.OSUtils;
public class CommandLineTest {
File buildPath;
File arduinoPath;
@Before
public void findBuildPaths() throws Exception {
buildPath = new File(System.getProperty("user.dir"));
while (!new File(buildPath, "build").isDirectory()) {
buildPath = buildPath.getParentFile();
if (buildPath == null) {
throw new Exception("Could not determine build path");
}
}
System.out.println("found buildpath: " + buildPath);
if (OSUtils.isLinux()) {
arduinoPath = new File(buildPath, "build/linux/work/arduino");
}
if (OSUtils.isWindows()) {
arduinoPath = new File(buildPath, "build/windows/work/arduino");
}
if (OSUtils.isMacOS()) {
arduinoPath = new File(buildPath,
"build/macosx/work/Arduino.app/Contents/MacOS/Arduino");
}
if (!arduinoPath.canExecute()) {
throw new Exception("Could not determine arduino location");
}
System.out.println("found arduino: " + arduinoPath);
}
@Test
public void testCommandLineBuildWithRelativePath() throws Exception {
Runtime rt = Runtime.getRuntime();
File wd = new File(buildPath, "build/shared/examples/01.Basics/Blink/");
Process pr = rt
.exec(arduinoPath + " --board arduino:avr:uno --verify Blink.ino", null,
wd);
IOUtils.copy(pr.getInputStream(), System.out);
pr.waitFor();
assertEquals(0, pr.exitValue());
}
}

View File

@ -96,6 +96,31 @@ public class Compiler implements MessageConsumer {
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");
tr("Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} bytes.");
tr("Couldn't determine program size: {0}");
tr("Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes for local variables. Maximum is {1} bytes.");
tr("Global variables use {0} bytes of dynamic memory.");
tr("Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing it.");
tr("Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size for tips on reducing your footprint.");
tr("Low memory available, stability problems may occur.");
tr("An error occurred while verifying the sketch");
tr("An error occurred while verifying/uploading the sketch");
tr("Can't find the sketch in the specified path");
tr("Done compiling");
tr("Done uploading");
tr("Error while uploading");
tr("Error while verifying");
tr("Error while verifying/uploading");
tr("Mode not supported");
tr("Multiple files not supported");
tr("No command line parameters found");
tr("No parameters");
tr("No sketch");
tr("No sketchbook");
tr("Only --verify, --upload or --get-pref are supported");
tr("Sketchbook path not defined");
tr("The --upload option supports only one file at a time");
tr("Verifying and uploading...");
}
enum BuilderAction {
@ -156,8 +181,6 @@ public class Compiler implements MessageConsumer {
runActions("hooks.savehex.postsavehex", prefs);
}
size(prefs);
return sketch.getPrimaryFile().getFileName();
}
@ -214,10 +237,8 @@ public class Compiler implements MessageConsumer {
addPathFlagIfPathExists(cmd, "-tools", Paths.get(BaseNoGui.getHardwarePath(), "tools", "avr").toFile());
addPathFlagIfPathExists(cmd, "-tools", installedPackagesFolder);
cmd.add("-built-in-libraries");
cmd.add(BaseNoGui.getContentFile("libraries").getAbsolutePath());
cmd.add("-libraries");
cmd.add(BaseNoGui.getSketchbookLibrariesFolder().getAbsolutePath());
addPathFlagIfPathExists(cmd, "-built-in-libraries", BaseNoGui.getContentFile("libraries"));
addPathFlagIfPathExists(cmd, "-libraries", BaseNoGui.getSketchbookLibrariesFolder());
String fqbn = Stream.of(aPackage.getId(), platform.getId(), board.getId(), boardOptions(board)).filter(s -> !s.isEmpty()).collect(Collectors.joining(":"));
cmd.add("-fqbn=" + fqbn);
@ -296,56 +317,6 @@ public class Compiler implements MessageConsumer {
}
}
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<String> compiledSketches = new ArrayList<>(prefs.subTree("recipe.output.tmp_file", 1).values());
List<String> copyOfCompiledSketches = new ArrayList<>(prefs.subTree("recipe.output.save_file", 1).values());

View File

@ -33,12 +33,19 @@ import cc.arduino.utils.Progress;
public class ConsoleProgressListener implements ProgressListener {
private String lastStatus = "";
private double lastProgress = 0.0;
@Override
public void onProgress(Progress progress) {
if (!lastStatus.equals(progress.getStatus())) {
// Reduce verbosity when running in console
String s = progress.getStatus().replaceAll("[0-9]", "");
double p = progress.getProgress();
if (!lastStatus.equals(s) || (p - lastProgress) > 1.0) {
System.out.println(progress.getStatus());
lastProgress = p;
}
lastStatus = progress.getStatus();
lastStatus = s;
}
}

View File

@ -133,9 +133,9 @@ public abstract class ContributedLibrary extends DownloadableContribution {
if (!(obj instanceof ContributedLibrary)) {
return false;
}
ContributedLibrary other = (ContributedLibrary) obj;
String thisVersion = getParsedVersion();
String otherVersion = ((ContributedLibrary) obj).getParsedVersion();
String otherVersion = other.getParsedVersion();
boolean versionEquals = (thisVersion != null && otherVersion != null
&& thisVersion.equals(otherVersion));
@ -146,7 +146,7 @@ public abstract class ContributedLibrary extends DownloadableContribution {
versionEquals = true;
String thisName = getName();
String otherName = ((ContributedLibrary) obj).getName();
String otherName = other.getName();
boolean nameEquals = thisName == null || otherName == null || thisName.equals(otherName);

View File

@ -69,13 +69,14 @@ public class ContributionsIndexer {
private final File builtInHardwareFolder;
private final Platform platform;
private final SignatureVerifier signatureVerifier;
private ContributionsIndex index;
private final ContributionsIndex index;
public ContributionsIndexer(File preferencesFolder, File builtInHardwareFolder, Platform platform, SignatureVerifier signatureVerifier) {
this.preferencesFolder = preferencesFolder;
this.builtInHardwareFolder = builtInHardwareFolder;
this.platform = platform;
this.signatureVerifier = signatureVerifier;
index = new EmptyContributionIndex();
packagesFolder = new File(preferencesFolder, "packages");
stagingFolder = new File(preferencesFolder, "staging" + File.separator + "packages");
}
@ -83,7 +84,7 @@ public class ContributionsIndexer {
public void parseIndex() throws Exception {
// Read bundled index...
File bundledIndexFile = new File(builtInHardwareFolder, Constants.BUNDLED_INDEX_FILE_NAME);
index = parseIndex(bundledIndexFile);
mergeContributions(bundledIndexFile);
// ...and overlay the default index if present
File defaultIndexFile = getIndexFile(Constants.DEFAULT_INDEX_FILE_NAME);
@ -93,7 +94,7 @@ public class ContributionsIndexer {
throw new SignatureVerificationFailedException(Constants.DEFAULT_INDEX_FILE_NAME);
}
mergeContributions(parseIndex(defaultIndexFile), defaultIndexFile);
mergeContributions(defaultIndexFile);
}
// Set main and bundled indexes as trusted
@ -104,8 +105,7 @@ public class ContributionsIndexer {
for (File indexFile : indexFiles) {
try {
ContributionsIndex contributionsIndex = parseIndex(indexFile);
mergeContributions(contributionsIndex, indexFile);
mergeContributions(indexFile);
} catch (JsonProcessingException e) {
System.err.println(I18n.format(tr("Skipping contributed index file {0}, parsing error occured:"), indexFile));
System.err.println(e);
@ -136,7 +136,11 @@ public class ContributionsIndexer {
index.fillCategories();
}
private void mergeContributions(ContributionsIndex contributionsIndex, File indexFile) {
private void mergeContributions(File indexFile) throws IOException {
if (!indexFile.exists())
return;
ContributionsIndex contributionsIndex = parseIndex(indexFile);
boolean signed = signatureVerifier.isSigned(indexFile);
boolean trustall = PreferencesData.getBoolean(Constants.PREF_CONTRIBUTIONS_TRUST_ALL);

View File

@ -0,0 +1,42 @@
/*
* This file is part of Arduino.
*
* Copyright 2014 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.contributions.packages;
import java.util.ArrayList;
import java.util.List;
class EmptyContributionIndex extends ContributionsIndex {
List<ContributedPackage> packs = new ArrayList<>();
@Override
public List<ContributedPackage> getPackages() {
return packs;
}
}

View File

@ -79,6 +79,14 @@ public abstract class HostDependentDownloadableContribution extends Downloadable
}
}
if (osName.contains("FreeBSD")) {
if (osArch.contains("arm")) {
return host.matches("arm.*-freebsd[0-9]*");
} else {
return host.matches(osArch + "-freebsd[0-9]*");
}
}
return false;
}
}

View File

@ -132,8 +132,8 @@ public abstract class Uploader implements MessageConsumer {
new MessageSiphon(process.getErrorStream(), this, 100);
// wait for the process to finish, but not forever
// kill the flasher process after 2 minutes to avoid 100% cpu spinning
if (!process.waitFor(2, TimeUnit.MINUTES)) {
// kill the flasher process after 5 minutes to avoid 100% cpu spinning
if (!process.waitFor(5, TimeUnit.MINUTES)) {
process.destroyForcibly();
}
if (!process.isAlive()) {

View File

@ -1,8 +1,6 @@
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.VersionComparator;
@ -10,9 +8,7 @@ import cc.arduino.contributions.libraries.LibrariesIndexer;
import cc.arduino.contributions.packages.ContributedPlatform;
import cc.arduino.contributions.packages.ContributedTool;
import cc.arduino.contributions.packages.ContributionsIndexer;
import cc.arduino.files.DeleteFilesOnShutdown;
import cc.arduino.packages.DiscoveryManager;
import cc.arduino.packages.Uploader;
import com.fasterxml.jackson.core.JsonProcessingException;
import org.apache.commons.compress.utils.IOUtils;
import org.apache.commons.logging.impl.LogFactoryImpl;
@ -42,9 +38,9 @@ import static processing.app.helpers.filefilters.OnlyDirs.ONLY_DIRS;
public class BaseNoGui {
/** Version string to be used for build */
public static final int REVISION = 10614;
public static final int REVISION = 10802;
/** Extended version string displayed on GUI */
public static final String VERSION_NAME = "1.6.14";
public static final String VERSION_NAME = "1.8.2";
public static final String VERSION_NAME_LONG;
// Current directory to use for relative paths specified on the
@ -442,156 +438,6 @@ public class BaseNoGui {
return list;
}
static public void init(String[] args) throws Exception {
CommandlineParser parser = new CommandlineParser(args);
parser.parseArgumentsPhase1();
String sketchbookPath = getSketchbookPath();
// If no path is set, get the default sketchbook folder for this platform
if (sketchbookPath == null) {
if (BaseNoGui.getPortableFolder() != null)
PreferencesData.set("sketchbook.path", getPortableSketchbookFolder());
else
showError(tr("No sketchbook"), tr("Sketchbook path not defined"), null);
}
BaseNoGui.initPackages();
parser.parseArgumentsPhase2();
for (String path: parser.getFilenames()) {
// Correctly resolve relative paths
File file = absoluteFile(path);
// Fix a problem with systems that use a non-ASCII languages. Paths are
// being passed in with 8.3 syntax, which makes the sketch loader code
// unhappy, since the sketch folder naming doesn't match up correctly.
// http://dev.processing.org/bugs/show_bug.cgi?id=1089
if (OSUtils.isWindows()) {
try {
file = file.getCanonicalFile();
} catch (IOException e) {
e.printStackTrace();
}
}
if (!parser.isVerifyOrUploadMode() && !parser.isGetPrefMode())
showError(tr("Mode not supported"), tr("Only --verify, --upload or --get-pref are supported"), null);
if (!parser.isForceSavePrefs())
PreferencesData.setDoSave(false);
if (!file.exists()) {
String mess = I18n.format(tr("Failed to open sketch: \"{0}\""), path);
// Open failure is fatal in upload/verify mode
showError(null, mess, 2);
}
}
// Setup board-dependent variables.
onBoardOrPortChange();
// Save the preferences. For GUI mode, this happens in the quit
// handler, but for other modes we should also make sure to save
// them.
PreferencesData.save();
if (parser.isVerifyOrUploadMode()) {
// Set verbosity for command line build
PreferencesData.set("build.verbose", "" + parser.isDoVerboseBuild());
PreferencesData.set("upload.verbose", "" + parser.isDoVerboseUpload());
// Make sure these verbosity preferences are only for the
// current session
PreferencesData.setDoSave(false);
if (parser.isUploadMode()) {
if (parser.getFilenames().size() != 1)
{
showError(tr("Multiple files not supported"), tr("The --upload option supports only one file at a time"), null);
}
List<String> warningsAccumulator = new LinkedList<>();
boolean success = false;
try {
// Editor constructor loads the sketch with handleOpenInternal() that
// creates a new Sketch that, in turn, builds a SketchData
// inside its constructor.
// This translates here as:
// SketchData data = new SketchData(file);
// File tempBuildFolder = getBuildFolder();
Sketch data = new Sketch(absoluteFile(parser.getFilenames().get(0)));
// Sketch.exportApplet()
// - calls Sketch.prepare() that calls Sketch.ensureExistence()
// - calls Sketch.build(verbose=false) that calls Sketch.ensureExistence(), set progressListener and calls Compiler.build()
// - calls Sketch.upload() (see later...)
if (!data.getFolder().exists()) {
showError(tr("No sketch"), tr("Can't find the sketch in the specified path"), null);
}
String suggestedClassName = new Compiler(data).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 = new UploaderUtils().getUploaderByPreferences(parser.isNoUploadPort());
if (uploader.requiresAuthorization() && !PreferencesData.has(uploader.getAuthorizationKey())) showError("...", "...", null);
try {
success = new UploaderUtils().upload(data, uploader, suggestedClassName, parser.isDoUseProgrammer(), parser.isNoUploadPort(), warningsAccumulator);
showMessage(tr("Done uploading"), tr("Done uploading"));
} finally {
if (uploader.requiresAuthorization() && !success) {
PreferencesData.remove(uploader.getAuthorizationKey());
}
}
} catch (Exception e) {
showError(tr("Error while verifying/uploading"), tr("An error occurred while verifying/uploading the sketch"), e);
}
for (String warning : warningsAccumulator) {
System.out.print(tr("Warning"));
System.out.print(": ");
System.out.println(warning);
}
if (!success) showError(tr("Error while uploading"), tr("An error occurred while uploading the sketch"), null);
} else {
for (String path : parser.getFilenames())
{
try {
// Editor constructor loads sketch with handleOpenInternal() that
// creates a new Sketch that calls load() in its constructor
// This translates here as:
// SketchData data = new SketchData(file);
// File tempBuildFolder = getBuildFolder();
// data.load();
Sketch data = new Sketch(absoluteFile(path));
// Sketch.prepare() calls Sketch.ensureExistence()
// Sketch.build(verbose) calls Sketch.ensureExistence() and set progressListener and, finally, calls Compiler.build()
// This translates here as:
// if (!data.getFolder().exists()) showError(...);
// String ... = Compiler.build(data, tempBuildFolder.getAbsolutePath(), tempBuildFolder, null, verbose);
if (!data.getFolder().exists()) showError(tr("No sketch"), tr("Can't find the sketch in the specified path"), null);
String suggestedClassName = new Compiler(data).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) {
showError(tr("Error while verifying"), tr("An error occurred while verifying the sketch"), e);
}
}
}
// No errors exit gracefully
System.exit(0);
}
else if (parser.isGetPrefMode()) {
dumpPrefs(parser);
}
}
protected static void dumpPrefs(CommandlineParser parser) {
if (parser.getGetPref() != null) {
String value = PreferencesData.get(parser.getGetPref(), null);
@ -761,29 +607,6 @@ public class BaseNoGui {
return PApplet.join(contents, "\n");
}
static public void main(String args[]) throws Exception {
if (args.length == 0) {
showError(tr("No parameters"), tr("No command line parameters found"), null);
}
System.setProperty("java.net.useSystemProxies", "true");
Thread deleteFilesOnShutdownThread = new Thread(DeleteFilesOnShutdown.INSTANCE);
deleteFilesOnShutdownThread.setName("DeleteFilesOnShutdown");
Runtime.getRuntime().addShutdownHook(deleteFilesOnShutdownThread);
initPlatform();
getPlatform().init();
initPortableFolder();
initParameters(args);
checkInstallationFolder();
init(args);
}
public static void checkInstallationFolder() {
if (isIDEInstalledIntoSettingsFolder()) {
showError(tr("Incorrect IDE installation folder"), tr("Your copy of the IDE is installed in a subfolder of your settings folder.\nPlease move the IDE to another folder."), 10);
@ -1061,11 +884,22 @@ public class BaseNoGui {
}
/**
* Spew the contents of a String object out to a file.
* Save the content of a String into a file
* - Save the content into a temp file
* - Find the canonical path of the file (if it's a symlink, follow it)
* - Remove the original file
* - Move temp file to original path
* This ensures that the file is not getting truncated if the disk is full
*/
static public void saveFile(String str, File file) throws IOException {
File temp = File.createTempFile(file.getName(), null, file.getParentFile());
PApplet.saveStrings(temp, new String[] { str });
try {
file = file.getCanonicalFile();
} catch (IOException e) {
}
if (file.exists()) {
boolean result = file.delete();
if (!result) {

View File

@ -236,14 +236,29 @@ public class Platform {
List<String> vids = new LinkedList<>(board.getPreferences().subTree("vid", 1).values());
if (!vids.isEmpty()) {
List<String> pids = new LinkedList<>(board.getPreferences().subTree("pid", 1).values());
List<String> descriptors = new LinkedList<>(board.getPreferences().subTree("descriptor", 1).values());
for (int i = 0; i < vids.size(); i++) {
String vidPid = vids.get(i) + "_" + pids.get(i);
if (vid_pid_iSerial.toUpperCase().contains(vidPid.toUpperCase())) {
if (!descriptors.isEmpty()) {
boolean matched = false;
for (int j = 0; j < descriptors.size(); j++) {
if (vid_pid_iSerial.toUpperCase().contains(descriptors.get(j).toUpperCase())) {
matched = true;
break;
}
}
if (matched == false) {
continue;
}
}
Map<String, Object> boardData = new HashMap<>();
boardData.put("board", board);
boardData.put("vid", vids.get(i));
boardData.put("pid", pids.get(i));
boardData.put("iserial", vid_pid_iSerial.substring(vidPid.length()+1));
String extrafields = vid_pid_iSerial.substring(vidPid.length()+1);
String[] parts = extrafields.split("_");
boardData.put("iserial", parts[0]);
return boardData;
}
}

View File

@ -298,5 +298,6 @@ public class SketchFile {
BaseNoGui.saveFile(storage.getText(), newFile);
renamedTo(newFile);
storage.clearModified();
}
}

View File

@ -23,8 +23,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-22 12:33+0000\n"
"Last-Translator: Valentin Laskov <laskov@festa.bg>\n"
"Language-Team: Bulgarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -419,7 +419,7 @@ msgstr "Записвам буутлоудъра на I/O платка (може
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC не съвпадна, файлът е повреден. Може проблемът да е временен. Моля, пробвайте по-късно."
#: ../../../processing/app/Base.java:379
#, java-format
@ -524,7 +524,7 @@ msgstr "Не можах да копирам на подходящото мяст
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Не мога да създам директория \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -930,13 +930,13 @@ msgstr "Примери"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Примери за всякакви платки"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Примери за {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -962,11 +962,11 @@ msgstr "Провали се отварянето на скица: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Провали се преименуването от \"{0}\" на \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Провали се преименуването на папката на скицата"
#: Editor.java:491
msgid "File"
@ -1205,7 +1205,7 @@ msgstr "Инсталиране..."
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:256
msgid "Interface scale:"
msgstr ""
msgstr "Мащаб на интерфейса:"
#: ../../../processing/app/Base.java:1204
#, java-format
@ -1543,7 +1543,7 @@ msgstr "Моля, изберете програматор от менюто Ин
#: ../../../../../app/src/processing/app/Editor.java:2613
msgid "Plotter not available while serial monitor is open"
msgstr ""
msgstr "Плотерът е недостъпен при отворен сериен монитор"
#: Preferences.java:110
msgid "Polish"
@ -1815,7 +1815,7 @@ msgstr "Сериен плотер"
#: ../../../../../app/src/processing/app/Editor.java:2516
msgid "Serial monitor not available while plotter is open"
msgstr ""
msgstr "Серийният монитор е недостъпен при отворен плотер"
#: Serial.java:194
#, java-format
@ -1838,7 +1838,7 @@ msgstr "Серийни портове"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
#, java-format
msgid "Setting build path to {0}"
msgstr ""
msgstr "Задавам път за изграждане {0}"
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
msgid "Settings"
@ -1916,7 +1916,7 @@ msgstr "Не е зададен път до скицника"
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
msgid "Skipping contributed index file {0}, parsing error occured:"
msgstr ""
msgstr "Пропускам допринесения index файл {0}, възникна грешка при разбора:"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
@ -1942,7 +1942,7 @@ msgstr "Някои файлове са с флаг \"само за четене\
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Съжалявам, папка с име \"{0}\" вече съществува."
#: Preferences.java:115
msgid "Spanish"
@ -2013,7 +2013,7 @@ msgstr "Класът Udp беше преименуван на EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Текущо избраната платка изисква ядро '{0}', което не е инсталирано."
#: Editor.java:2147
#, java-format
@ -2033,7 +2033,7 @@ msgstr "Библиотеката \"{0}\" не може да се ползва.\n
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Основният файл не може да използва разширение"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2059,7 +2059,7 @@ msgstr "Скицата \"{0}\" не може да се ползва.\nИмена
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Скицата вече съдържа файл с име \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2121,7 +2121,7 @@ msgstr ""
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94
#, java-format
msgid "Tool {0} is not available for your operating system."
msgstr ""
msgstr "Инструментът {0} не е наличен за Вашата операционна система."
#: Editor.java:663
msgid "Tools"
@ -2129,7 +2129,7 @@ msgstr "Инструменти"
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97
msgid "Topic"
msgstr ""
msgstr "Тема"
#: Editor.java:1070
msgid "Troubleshooting"
@ -2203,7 +2203,7 @@ msgstr "Отмяна"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
#, java-format
msgid "Unhandled type {0} in context key {1}"
msgstr ""
msgstr "Необработваем тип {0} в контекста на ключ {1}"
#: ../../../../../app//src/processing/app/Editor.java:2818
msgid "Unknown board"
@ -2263,7 +2263,7 @@ msgstr "Качване чрез програматор"
#: ../../../../../app//src/processing/app/Editor.java:2814
msgid "Upload any sketch to obtain it"
msgstr ""
msgstr "Качете някаква скица, за да се получи"
#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
@ -2297,7 +2297,7 @@ msgstr "Потребител:"
#: ../../../processing/app/debug/Compiler.java:410
#, java-format
msgid "Using library {0} at version {1} in folder: {2} {3}"
msgstr ""
msgstr "Използвайки библиотека {0} от версия {1} в папка: {2} {3}"
#: ../../../processing/app/debug/Compiler.java:94
#, java-format
@ -2358,12 +2358,12 @@ msgstr "Посетете Arduino.cc"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
#, java-format
msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'"
msgstr ""
msgstr "ВНИМАНИЕ: Категория '{0}' в библиотека {1} е невалидна. Променям на '{2}'"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
#, java-format
msgid "WARNING: Spurious {0} folder in '{1}' library"
msgstr ""
msgstr "ВНИМАНИЕ: Фалшива папка {0} в библиотека '{1}'"
#: ../../../processing/app/debug/Compiler.java:115
#, java-format
@ -2380,39 +2380,39 @@ msgstr "Внимание"
msgid ""
"Warning: This core does not support exporting sketches. Please consider "
"upgrading it or contacting its author"
msgstr ""
msgstr "Внимание: Това ядро не поддържа експортиране на скици. Моля, обмислете обновяване или се свържете с автора му"
#: ../../../cc/arduino/utils/ArchiveExtractor.java:197
#, java-format
msgid "Warning: file {0} links to an absolute path {1}"
msgstr ""
msgstr "Внимание: файлът {0} прави връзка към абсолютния път {1}"
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
msgid "Warning: forced trusting untrusted contributions"
msgstr ""
msgstr "Внимание: наложено е доверяване на недоверено съдържание"
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
#, java-format
msgid "Warning: forced untrusted script execution ({0})"
msgstr ""
msgstr "Внимание: наложено е изпълнение на недоверен скрипт ({0})"
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
#, java-format
msgid "Warning: non trusted contribution, skipping script execution ({0})"
msgstr ""
msgstr "Внимание: недоверено съдържание, пропускам изпълнение на скрипт ({0})"
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
#, java-format
msgid ""
"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically"
" converted to {2}. Consider upgrading this core."
msgstr ""
msgstr "Внимание: platform.txt от ядро '{0}' съдържа остарялото {1}, променено автоматично на {2}. Обмислете обновяване на това ядро."
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91
msgid ""
"Warning: platform.txt from core '{0}' misses property '{1}', using default "
"value '{2}'. Consider upgrading this core."
msgstr ""
msgstr "Внимание: в platform.txt от ядро '{0}' липсва свойство '{1}', ще ползвам подразбиращото се '{2}'. Обмислете обновяване на това ядро."
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
@ -2473,13 +2473,13 @@ msgstr "Достигнали сте лимита за автоматично и
msgid ""
"Your copy of the IDE is installed in a subfolder of your settings folder.\n"
"Please move the IDE to another folder."
msgstr ""
msgstr "Вашата среда за разработка (IDE) е инсталирана в подпапка на\nпапката с настройки. Моля, преместете средата в друга папка."
#: ../../../processing/app/BaseNoGui.java:771
msgid ""
"Your copy of the IDE is installed in a subfolder of your sketchbook.\n"
"Please move the IDE to another folder."
msgstr ""
msgstr "Вашата среда за разработка (IDE) е инсталирана в подпапка\nна скицника Ви. Моля, преместете средата в друга папка."
#: Base.java:2638
msgid "ZIP files or folders"
@ -2501,7 +2501,7 @@ msgid ""
"older version of Arduino, you may need to use Tools -> Fix Encoding & Reload"
" to update the sketch to use UTF-8 encoding. If not, you may need to delete "
"the bad characters to get rid of this warning."
msgstr ""
msgstr "\"{0}\" съдържа непознати символи. Ако този код е създаден с по-стара версия на Arduino, може да е нужно да ползвате Инструменти -> Корекция на кодирането & Презареждане, за да обновите скицата с използване на UTF-8 кодиране. Ако не, може да е нужно да изтриете грешните символи, за да се избавите от това предупреждение."
#: debug/Compiler.java:409
msgid ""
@ -2645,12 +2645,12 @@ msgstr "{0} трябва да е папка"
#: ../../../../../app/src/processing/app/EditorLineStatus.java:109
#, java-format
msgid "{0} on {1}"
msgstr ""
msgstr "{0} на {1}"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
#, java-format
msgid "{0} pattern is missing"
msgstr ""
msgstr "шаблонът {0} липсва"
#: debug/Compiler.java:365
#, java-format
@ -2707,4 +2707,4 @@ msgstr "{0}: Непознат пакет"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Инсталирайте пакета{1}, за да използвате Вашата {2} платка"

View File

@ -18,7 +18,7 @@
# Cristian Maglie <c.maglie@arduino.cc>, 2016
# Ivaylo Malinov <mals@mail.bg>, 2015
# Valentin Laskov <laskov@festa.bg>, 2012-2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-22 12\:33+0000\nLast-Translator\: Valentin Laskov <laskov@festa.bg>\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)
@ -292,7 +292,7 @@ Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0448\u0438 \u0431\u0443\u0443\u0442\u
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u043f\u0438\u0441\u0432\u0430\u043c \u0431\u0443\u0443\u0442\u043b\u043e\u0443\u0434\u044a\u0440\u0430 \u043d\u0430 I/O \u043f\u043b\u0430\u0442\u043a\u0430 (\u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438 \u043c\u0438\u043d\u0443\u0442\u0430)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC \u043d\u0435 \u0441\u044a\u0432\u043f\u0430\u0434\u043d\u0430, \u0444\u0430\u0439\u043b\u044a\u0442 \u0435 \u043f\u043e\u0432\u0440\u0435\u0434\u0435\u043d. \u041c\u043e\u0436\u0435 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u044a\u0442 \u0434\u0430 \u0435 \u0432\u0440\u0435\u043c\u0435\u043d\u0435\u043d. \u041c\u043e\u043b\u044f, \u043f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u043f\u043e-\u043a\u044a\u0441\u043d\u043e.
#: ../../../processing/app/Base.java:379
#, java-format
@ -372,7 +372,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=\u041d\u0435 \u043c\u043e\u0436\u0430
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=\u041d\u0435 \u043c\u043e\u0433\u0430 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u043c \u0434\u0438\u0440\u0435\u043a\u0442\u043e\u0440\u0438\u044f "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\u041d\u0435 \u043c\u043e\u0436\u0430\u0445 \u0434\u0430 \u0441\u044a\u0437\u0434\u0430\u043c \u043f\u0430\u043f\u043a\u0430 \u0437\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430.
@ -669,12 +669,12 @@ Estonian\ (Estonia)=\u0415\u0441\u0442\u043e\u043d\u0441\u043a\u0438 (\u0415\u04
Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u0438
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=\u041f\u0440\u0438\u043c\u0435\u0440\u0438 \u0437\u0430 \u0432\u0441\u044f\u043a\u0430\u043a\u0432\u0438 \u043f\u043b\u0430\u0442\u043a\u0438
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=\u041f\u0440\u0438\u043c\u0435\u0440\u0438 \u0437\u0430 {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=\u041f\u0440\u0438\u043c\u0435\u0440\u0438 \u043e\u0442 \u043f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\u0441\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438
@ -694,10 +694,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=\u041f\u0440\u043e\u0432\u0430\u043b\u0438 \u0
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=\u041f\u0440\u043e\u0432\u0430\u043b\u0438 \u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u0435\u0442\u043e \u043e\u0442 "{0}" \u043d\u0430 "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=\u041f\u0440\u043e\u0432\u0430\u043b\u0438 \u0441\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u0435\u0442\u043e \u043d\u0430 \u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\u0442\u0430
#: Editor.java:491
File=\u0424\u0430\u0439\u043b
@ -870,7 +870,7 @@ Installing\ tools\ ({0}/{1})...=\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440
Installing...=\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0435...
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:256
!Interface\ scale\:=
Interface\ scale\:=\u041c\u0430\u0449\u0430\u0431 \u043d\u0430 \u0438\u043d\u0442\u0435\u0440\u0444\u0435\u0439\u0441\u0430\:
#: ../../../processing/app/Base.java:1204
#, java-format
@ -1125,7 +1125,7 @@ Please\ select\ a\ port\ to\ obtain\ board\ info=\u041c\u043e\u043b\u044f, \u043
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=\u041c\u043e\u043b\u044f, \u0438\u0437\u0431\u0435\u0440\u0435\u0442\u0435 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440 \u043e\u0442 \u043c\u0435\u043d\u044e\u0442\u043e \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438->\u041f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440
#: ../../../../../app/src/processing/app/Editor.java:2613
!Plotter\ not\ available\ while\ serial\ monitor\ is\ open=
Plotter\ not\ available\ while\ serial\ monitor\ is\ open=\u041f\u043b\u043e\u0442\u0435\u0440\u044a\u0442 \u0435 \u043d\u0435\u0434\u043e\u0441\u0442\u044a\u043f\u0435\u043d \u043f\u0440\u0438 \u043e\u0442\u0432\u043e\u0440\u0435\u043d \u0441\u0435\u0440\u0438\u0435\u043d \u043c\u043e\u043d\u0438\u0442\u043e\u0440
#: Preferences.java:110
Polish=\u041f\u043e\u043b\u0441\u043a\u0438
@ -1330,7 +1330,7 @@ Serial\ Monitor=\u0421\u0435\u0440\u0438\u0435\u043d \u043c\u043e\u043d\u0438\u0
Serial\ Plotter=\u0421\u0435\u0440\u0438\u0435\u043d \u043f\u043b\u043e\u0442\u0435\u0440
#: ../../../../../app/src/processing/app/Editor.java:2516
!Serial\ monitor\ not\ available\ while\ plotter\ is\ open=
Serial\ monitor\ not\ available\ while\ plotter\ is\ open=\u0421\u0435\u0440\u0438\u0439\u043d\u0438\u044f\u0442 \u043c\u043e\u043d\u0438\u0442\u043e\u0440 \u0435 \u043d\u0435\u0434\u043e\u0441\u0442\u044a\u043f\u0435\u043d \u043f\u0440\u0438 \u043e\u0442\u0432\u043e\u0440\u0435\u043d \u043f\u043b\u043e\u0442\u0435\u0440
#: Serial.java:194
#, java-format
@ -1345,7 +1345,7 @@ Serial\ ports=\u0421\u0435\u0440\u0438\u0439\u043d\u0438 \u043f\u043e\u0440\u044
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
#, java-format
!Setting\ build\ path\ to\ {0}=
Setting\ build\ path\ to\ {0}=\u0417\u0430\u0434\u0430\u0432\u0430\u043c \u043f\u044a\u0442 \u0437\u0430 \u0438\u0437\u0433\u0440\u0430\u0436\u0434\u0430\u043d\u0435 {0}
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
Settings=\u041d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438
@ -1401,7 +1401,7 @@ Sketchbook\ path\ not\ defined=\u041d\u0435 \u0435 \u0437\u0430\u0434\u0430\u043
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
!Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=
Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=\u041f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043c \u0434\u043e\u043f\u0440\u0438\u043d\u0435\u0441\u0435\u043d\u0438\u044f index \u0444\u0430\u0439\u043b {0}, \u0432\u044a\u0437\u043d\u0438\u043a\u043d\u0430 \u0433\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u0440\u0430\u0437\u0431\u043e\u0440\u0430\:
#: ../../../../../app/src/processing/app/Preferences.java:185
Slovak=Slovak
@ -1417,7 +1417,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=\u0421\u044a\u0436\u0430\u043b\u044f\u0432\u0430\u043c, \u043f\u0430\u043f\u043a\u0430 \u0441 \u0438\u043c\u0435 "{0}" \u0432\u0435\u0447\u0435 \u0441\u044a\u0449\u0435\u0441\u0442\u0432\u0443\u0432\u0430.
#: Preferences.java:115
Spanish=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438
@ -1469,7 +1469,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u041a\u043b\u0430\u0441\u044a\u0442 Udp \u0431\u0435\u0448\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d \u043d\u0430 EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=\u0422\u0435\u043a\u0443\u0449\u043e \u0438\u0437\u0431\u0440\u0430\u043d\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u043a\u0430 \u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u044f\u0434\u0440\u043e '{0}', \u043a\u043e\u0435\u0442\u043e \u043d\u0435 \u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u043e.
#: Editor.java:2147
#, java-format
@ -1480,7 +1480,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 "{0}" \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0437\u0432\u0430.\n\u0418\u043c\u0435\u043d\u0430\u0442\u0430 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0438 \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0441\u0430 \u0441\u044a\u0441\u0442\u0430\u0432\u0435\u043d\u0438 \u0441\u0430\u043c\u043e \u043e\u0442 \u043e\u0441\u043d\u043e\u0432\u043d\u0438 \u0431\u0443\u043a\u0432\u0438 \u0438 \u0447\u0438\u0441\u043b\u0430.\n(\u0421\u0430\u043c\u043e ASCII, \u0431\u0435\u0437 \u0438\u043d\u0442\u0435\u0440\u0432\u0430\u043b\u0438 \u0438 \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430\u0442 \u0441 \u0446\u0438\u0444\u0440\u0430)
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=\u041e\u0441\u043d\u043e\u0432\u043d\u0438\u044f\u0442 \u0444\u0430\u0439\u043b \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430 \u0440\u0430\u0437\u0448\u0438\u0440\u0435\u043d\u0438\u0435
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\u0418\u043c\u0435\u0442\u043e \u043d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u043f\u043e\u0447\u0432\u0430 \u0441 \u0442\u043e\u0447\u043a\u0430.
@ -1494,7 +1494,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=\u0421\u043a\u0438\u0446\u0430\u0442\u0430 \u0432\u0435\u0447\u0435 \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u0444\u0430\u0439\u043b \u0441 \u0438\u043c\u0435 "{0}"
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041f\u0430\u043f\u043a\u0430\u0442\u0430 \u0441\u044a\u0441 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0438\u0437\u0447\u0435\u0437\u043d\u0430.\n \u0429\u0435 \u043f\u0440\u043e\u0431\u0432\u0430\u043c \u0434\u0430 \u044f \u043f\u0440\u0435\u0437\u0430\u043f\u0438\u0448\u0430 \u043d\u0430 \u0441\u044a\u0449\u043e\u0442\u043e \u043c\u044f\u0441\u0442\u043e,\n\u043d\u043e \u0432\u0441\u0438\u0447\u043a\u043e, \u043e\u0441\u0432\u0435\u043d \u043a\u043e\u0434\u0430, \u0449\u0435 \u0431\u044a\u0434\u0435 \u0438\u0437\u0433\u0443\u0431\u0435\u043d\u043e.
@ -1525,13 +1525,13 @@ Time\ for\ a\ Break=\u0412\u0440\u0435\u043c\u0435 \u0437\u0430 \u043f\u043e\u04
#: ../../../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.=\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u044a\u0442 {0} \u043d\u0435 \u0435 \u043d\u0430\u043b\u0438\u0447\u0435\u043d \u0437\u0430 \u0412\u0430\u0448\u0430\u0442\u0430 \u043e\u043f\u0435\u0440\u0430\u0446\u0438\u043e\u043d\u043d\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430.
#: Editor.java:663
Tools=\u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97
!Topic=
Topic=\u0422\u0435\u043c\u0430
#: Editor.java:1070
Troubleshooting=\u041e\u0442\u0441\u0442\u0440\u0430\u043d\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438
@ -1588,7 +1588,7 @@ Undo=\u041e\u0442\u043c\u044f\u043d\u0430
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
#, java-format
!Unhandled\ type\ {0}\ in\ context\ key\ {1}=
Unhandled\ type\ {0}\ in\ context\ key\ {1}=\u041d\u0435\u043e\u0431\u0440\u0430\u0431\u043e\u0442\u0432\u0430\u0435\u043c \u0442\u0438\u043f {0} \u0432 \u043a\u043e\u043d\u0442\u0435\u043a\u0441\u0442\u0430 \u043d\u0430 \u043a\u043b\u044e\u0447 {1}
#: ../../../../../app//src/processing/app/Editor.java:2818
Unknown\ board=\u041d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0430 \u043f\u043b\u0430\u0442\u043a\u0430
@ -1632,7 +1632,7 @@ Upload=\u041a\u0430\u0447\u0432\u0430\u043d\u0435
Upload\ Using\ Programmer=\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u0447\u0440\u0435\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440
#: ../../../../../app//src/processing/app/Editor.java:2814
!Upload\ any\ sketch\ to\ obtain\ it=
Upload\ any\ sketch\ to\ obtain\ it=\u041a\u0430\u0447\u0435\u0442\u0435 \u043d\u044f\u043a\u0430\u043a\u0432\u0430 \u0441\u043a\u0438\u0446\u0430, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u043f\u043e\u043b\u0443\u0447\u0438
#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=\u041a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e \u043f\u0440\u0435\u043a\u0440\u0430\u0442\u0435\u043d\u043e.
@ -1658,7 +1658,7 @@ Username\:=\u041f\u043e\u0442\u0440\u0435\u0431\u0438\u0442\u0435\u043b\:
#: ../../../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}=\u0418\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0439\u043a\u0438 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 {0} \u043e\u0442 \u0432\u0435\u0440\u0441\u0438\u044f {1} \u0432 \u043f\u0430\u043f\u043a\u0430\: {2} {3}
#: ../../../processing/app/debug/Compiler.java:94
#, java-format
@ -1705,11 +1705,11 @@ 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}'=
WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415\: \u041a\u0430\u0442\u0435\u0433\u043e\u0440\u0438\u044f '{0}' \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 {1} \u0435 \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0430. \u041f\u0440\u043e\u043c\u0435\u043d\u044f\u043c \u043d\u0430 '{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=\u0412\u041d\u0418\u041c\u0410\u041d\u0418\u0415\: \u0424\u0430\u043b\u0448\u0438\u0432\u0430 \u043f\u0430\u043f\u043a\u0430 {0} \u0432 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 '{1}'
#: ../../../processing/app/debug/Compiler.java:115
#, java-format
@ -1719,29 +1719,29 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
Warning=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435
#: ../../../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=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u0422\u043e\u0432\u0430 \u044f\u0434\u0440\u043e \u043d\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0435\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0441\u043a\u0438\u0446\u0438. \u041c\u043e\u043b\u044f, \u043e\u0431\u043c\u0438\u0441\u043b\u0435\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u0438\u043b\u0438 \u0441\u0435 \u0441\u0432\u044a\u0440\u0436\u0435\u0442\u0435 \u0441 \u0430\u0432\u0442\u043e\u0440\u0430 \u043c\u0443
#: ../../../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}=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u0444\u0430\u0439\u043b\u044a\u0442 {0} \u043f\u0440\u0430\u0432\u0438 \u0432\u0440\u044a\u0437\u043a\u0430 \u043a\u044a\u043c \u0430\u0431\u0441\u043e\u043b\u044e\u0442\u043d\u0438\u044f \u043f\u044a\u0442 {1}
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
!Warning\:\ forced\ trusting\ untrusted\ contributions=
Warning\:\ forced\ trusting\ untrusted\ contributions=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u043d\u0430\u043b\u043e\u0436\u0435\u043d\u043e \u0435 \u0434\u043e\u0432\u0435\u0440\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u0435\u0434\u043e\u0432\u0435\u0440\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
#, java-format
!Warning\:\ forced\ untrusted\ script\ execution\ ({0})=
Warning\:\ forced\ untrusted\ script\ execution\ ({0})=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u043d\u0430\u043b\u043e\u0436\u0435\u043d\u043e \u0435 \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u043d\u0435\u0434\u043e\u0432\u0435\u0440\u0435\u043d \u0441\u043a\u0440\u0438\u043f\u0442 ({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})=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u043d\u0435\u0434\u043e\u0432\u0435\u0440\u0435\u043d\u043e \u0441\u044a\u0434\u044a\u0440\u0436\u0430\u043d\u0438\u0435, \u043f\u0440\u043e\u043f\u0443\u0441\u043a\u0430\u043c \u0438\u0437\u043f\u044a\u043b\u043d\u0435\u043d\u0438\u0435 \u043d\u0430 \u0441\u043a\u0440\u0438\u043f\u0442 ({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.=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: platform.txt \u043e\u0442 \u044f\u0434\u0440\u043e '{0}' \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u043e\u0441\u0442\u0430\u0440\u044f\u043b\u043e\u0442\u043e {1}, \u043f\u0440\u043e\u043c\u0435\u043d\u0435\u043d\u043e \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u043d\u0430 {2}. \u041e\u0431\u043c\u0438\u0441\u043b\u0435\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0432\u0430 \u044f\u0434\u0440\u043e.
#: ../../../../../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.=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435\: \u0432 platform.txt \u043e\u0442 \u044f\u0434\u0440\u043e '{0}' \u043b\u0438\u043f\u0441\u0432\u0430 \u0441\u0432\u043e\u0439\u0441\u0442\u0432\u043e '{1}', \u0449\u0435 \u043f\u043e\u043b\u0437\u0432\u0430\u043c \u043f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u0449\u043e\u0442\u043e \u0441\u0435 '{2}'. \u041e\u0431\u043c\u0438\u0441\u043b\u0435\u0442\u0435 \u043e\u0431\u043d\u043e\u0432\u044f\u0432\u0430\u043d\u0435 \u043d\u0430 \u0442\u043e\u0432\u0430 \u044f\u0434\u0440\u043e.
#: ../../../../../app/src/processing/app/Preferences.java:190
Western\ Frisian=Western Frisian
@ -1780,10 +1780,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?=\u0414\u043e\u0441\u0442\u0438\u0433\u043d\u0430\u043b\u0438 \u0441\u0442\u0435 \u043b\u0438\u043c\u0438\u0442\u0430 \u0437\u0430 \u0430\u0432\u0442\u043e\u043c\u0430\u0442\u0438\u0447\u043d\u043e \u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u0435 \u043d\u0430 \u043d\u043e\u0432\u0438 \u0441\u043a\u0438\u0446\u0438\n\u0437\u0430 \u0434\u0435\u043d\u044f. \u041a\u0430\u043a\u0432\u043e \u0449\u0435 \u043a\u0430\u0436\u0435\u0442\u0435 \u0437\u0430 \u0435\u0434\u043d\u0430 \u043c\u0430\u043b\u043a\u0430 \u0440\u0430\u0437\u0445\u043e\u0434\u043a\u0430?
#: ../../../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.=\u0412\u0430\u0448\u0430\u0442\u0430 \u0441\u0440\u0435\u0434\u0430 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 (IDE) \u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0430 \u0432 \u043f\u043e\u0434\u043f\u0430\u043f\u043a\u0430 \u043d\u0430\n\u043f\u0430\u043f\u043a\u0430\u0442\u0430 \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438. \u041c\u043e\u043b\u044f, \u043f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u0432 \u0434\u0440\u0443\u0433\u0430 \u043f\u0430\u043f\u043a\u0430.
#: ../../../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.=\u0412\u0430\u0448\u0430\u0442\u0430 \u0441\u0440\u0435\u0434\u0430 \u0437\u0430 \u0440\u0430\u0437\u0440\u0430\u0431\u043e\u0442\u043a\u0430 (IDE) \u0435 \u0438\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u043d\u0430 \u0432 \u043f\u043e\u0434\u043f\u0430\u043f\u043a\u0430\n\u043d\u0430 \u0441\u043a\u0438\u0446\u043d\u0438\u043a\u0430 \u0412\u0438. \u041c\u043e\u043b\u044f, \u043f\u0440\u0435\u043c\u0435\u0441\u0442\u0435\u0442\u0435 \u0441\u0440\u0435\u0434\u0430\u0442\u0430 \u0432 \u0434\u0440\u0443\u0433\u0430 \u043f\u0430\u043f\u043a\u0430.
#: Base.java:2638
ZIP\ files\ or\ folders=ZIP \u0444\u0430\u0439\u043b\u043e\u0432\u0435 \u0438\u043b\u0438 \u043f\u0430\u043f\u043a\u0438
@ -1797,7 +1797,7 @@ Zip\ doesn't\ contain\ a\ library=Zip \u0444\u0430\u0439\u043b\u044a\u0442 \u043
#: ../../../../../arduino-core/src/processing/app/SketchCode.java:201
#, 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\ update\ the\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ to\ delete\ 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\ update\ the\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ to\ delete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" \u0441\u044a\u0434\u044a\u0440\u0436\u0430 \u043d\u0435\u043f\u043e\u0437\u043d\u0430\u0442\u0438 \u0441\u0438\u043c\u0432\u043e\u043b\u0438. \u0410\u043a\u043e \u0442\u043e\u0437\u0438 \u043a\u043e\u0434 \u0435 \u0441\u044a\u0437\u0434\u0430\u0434\u0435\u043d \u0441 \u043f\u043e-\u0441\u0442\u0430\u0440\u0430 \u0432\u0435\u0440\u0441\u0438\u044f \u043d\u0430 Arduino, \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0443\u0436\u043d\u043e \u0434\u0430 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0418\u043d\u0441\u0442\u0440\u0443\u043c\u0435\u043d\u0442\u0438 -> \u041a\u043e\u0440\u0435\u043a\u0446\u0438\u044f \u043d\u0430 \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435\u0442\u043e & \u041f\u0440\u0435\u0437\u0430\u0440\u0435\u0436\u0434\u0430\u043d\u0435, \u0437\u0430 \u0434\u0430 \u043e\u0431\u043d\u043e\u0432\u0438\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0441 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u043d\u0435 \u043d\u0430 UTF-8 \u043a\u043e\u0434\u0438\u0440\u0430\u043d\u0435. \u0410\u043a\u043e \u043d\u0435, \u043c\u043e\u0436\u0435 \u0434\u0430 \u0435 \u043d\u0443\u0436\u043d\u043e \u0434\u0430 \u0438\u0437\u0442\u0440\u0438\u0435\u0442\u0435 \u0433\u0440\u0435\u0448\u043d\u0438\u0442\u0435 \u0441\u0438\u043c\u0432\u043e\u043b\u0438, \u0437\u0430 \u0434\u0430 \u0441\u0435 \u0438\u0437\u0431\u0430\u0432\u0438\u0442\u0435 \u043e\u0442 \u0442\u043e\u0432\u0430 \u043f\u0440\u0435\u0434\u0443\u043f\u0440\u0435\u0436\u0434\u0435\u043d\u0438\u0435.
#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0421\u043b\u0435\u0434 \u0410\u0440\u0434\u0443\u0438\u043d\u043e 0019, \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 Ethernet \u0435 \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI.\n\u0418\u0437\u0433\u043b\u0435\u0436\u0434\u0430, \u0447\u0435 \u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u043d\u0435\u044f \u0438\u043b\u0438 \u0434\u0440\u0443\u0433\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430, \u0437\u0430\u0432\u0438\u0441\u0438\u043c\u0430 \u043e\u0442 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430\u0442\u0430 SPI.\n\n
@ -1890,11 +1890,11 @@ version\ <b>{0}</b>=\u0432\u0435\u0440\u0441\u0438\u044f <b>{0}</b>
#: ../../../../../app/src/processing/app/EditorLineStatus.java:109
#, java-format
!{0}\ on\ {1}=
{0}\ on\ {1}={0} \u043d\u0430 {1}
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
#, java-format
!{0}\ pattern\ is\ missing=
{0}\ pattern\ is\ missing=\u0448\u0430\u0431\u043b\u043e\u043d\u044a\u0442 {0} \u043b\u0438\u043f\u0441\u0432\u0430
#: debug/Compiler.java:365
#, java-format
@ -1938,4 +1938,4 @@ version\ <b>{0}</b>=\u0432\u0435\u0440\u0441\u0438\u044f <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}\u0418\u043d\u0441\u0442\u0430\u043b\u0438\u0440\u0430\u0439\u0442\u0435 \u043f\u0430\u043a\u0435\u0442\u0430{1}, \u0437\u0430 \u0434\u0430 \u0438\u0437\u043f\u043e\u043b\u0437\u0432\u0430\u0442\u0435 \u0412\u0430\u0448\u0430\u0442\u0430 {2} \u043f\u043b\u0430\u0442\u043a\u0430

View File

@ -27,8 +27,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-12-16 21:39+0000\n"
"Last-Translator: Zdeno Sekerák <etrsek@gmail.com>\n"
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -423,7 +423,7 @@ msgstr "Vypaluji zavaděč na I/O boardu /vývojové desky/ (chvilku to potrvá)
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC není správné, soubor je poškozen. Může se jednat o dočasný problém, zkuste to prosím později znovu."
#: ../../../processing/app/Base.java:379
#, java-format
@ -528,7 +528,7 @@ msgstr "Nemohu kopírovat do správného umístění."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Nemůžu vytvořit adresář \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -934,13 +934,13 @@ msgstr "Příklady"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Příklady pro jakoukoliv desku"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Příklady pro {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -966,11 +966,11 @@ msgstr "Nezadařilo se otevřít projekt: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Nastala chyba při přejmenování \"{0}\" na \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Chyba při přejmenování projektu"
#: Editor.java:491
msgid "File"
@ -1946,7 +1946,7 @@ msgstr "Některé soubory jsou označené \"Jen pro čtení\", proto\nuložte pr
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Adresář \"{0}\" již existuje."
#: Preferences.java:115
msgid "Spanish"
@ -2017,7 +2017,7 @@ msgstr "U třídy Udp byl změněn název na EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Aktuálně zvolená deska potřebuje jádro '{0}', které není nainstalováno."
#: Editor.java:2147
#, java-format
@ -2037,7 +2037,7 @@ msgstr "Knihovnu \"{0}\" nelze použít.\nNázev knihovny smí obsahovat pouze z
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Hlavní soubor nemůže mít příponu"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2063,7 +2063,7 @@ msgstr "Název projektu \"{0}\" nelze použít.\nNázev projektu může obsahova
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Projekt již obsahuje soubor \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2711,4 +2711,4 @@ msgstr "{0}: Neznámý rozšiřující balík"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Instaluj tento balíček{1} aby jsi mohl používat desku {2}"

View File

@ -22,7 +22,7 @@
# Michal Ko\u010der <mcha@4makers.cz>, 2013-2014
# Ondrej Novy <novy@ondrej.org>, 2015
# Zdeno Seker\u00e1k <etrsek@gmail.com>, 2015-2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-12-16 21\:39+0000\nLast-Translator\: Zdeno Seker\u00e1k <etrsek@gmail.com>\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)
@ -296,7 +296,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)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC nen\u00ed spr\u00e1vn\u00e9, soubor je po\u0161kozen. M\u016f\u017ee se jednat o do\u010dasn\u00fd probl\u00e9m, zkuste to pros\u00edm pozd\u011bji znovu.
#: ../../../processing/app/Base.java:379
#, java-format
@ -376,7 +376,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Nemohu kop\u00edrovat do spr\u00e1vn\
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Nem\u016f\u017eu vytvo\u0159it adres\u00e1\u0159 "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Nemohu vytvo\u0159it adres\u00e1\u0159 s projekty.
@ -673,12 +673,12 @@ Estonian\ (Estonia)=Est\u00f3n\u0161tina (Est\u00f3nsko)
Examples=P\u0159\u00edklady
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=P\u0159\u00edklady pro jakoukoliv desku
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=P\u0159\u00edklady pro {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=P\u0159\u00edklady z Vlastn\u00edch Knihoven
@ -698,10 +698,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Nezada\u0159ilo se otev\u0159\u00edt projekt\:
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=Nastala chyba p\u0159i p\u0159ejmenov\u00e1n\u00ed "{0}" na "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Chyba p\u0159i p\u0159ejmenov\u00e1n\u00ed projektu
#: Editor.java:491
File=Soubor
@ -1421,7 +1421,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Adres\u00e1\u0159 "{0}" ji\u017e existuje.
#: Preferences.java:115
Spanish=\u0160pan\u011bl\u0161tina
@ -1473,7 +1473,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=U t\u0159\u00eddy Server
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=U t\u0159\u00eddy Udp byl zm\u011bn\u011bn n\u00e1zev na EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=Aktu\u00e1ln\u011b zvolen\u00e1 deska pot\u0159ebuje j\u00e1dro '{0}', kter\u00e9 nen\u00ed nainstalov\u00e1no.
#: Editor.java:2147
#, java-format
@ -1484,7 +1484,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
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)=Knihovnu "{0}" nelze pou\u017e\u00edt.\nN\u00e1zev knihovny sm\u00ed obsahovat pouze z\u00e1kladn\u00ed p\u00edsmena a \u010d\u00edsla\n(tedy pouze ASCII znaky, bez mezer, n\u00e1zev nesm\u00ed za\u010d\u00ednat \u010d\u00edslem).
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=Hlavn\u00ed soubor nem\u016f\u017ee m\u00edt p\u0159\u00edponu
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Jm\u00e9no souboru nesm\u00ed za\u010d\u00ednat te\u010dkou.
@ -1498,7 +1498,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Projekt ji\u017e obsahuje soubor "{0}"
#: 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.=Projekt zmizel.\nPokus\u00edm se znovu ulo\u017eit na stejn\u00e9 m\u00edsto,\nale krom k\u00f3du bude v\u0161echno ostatn\u00ed ztraceno\!
@ -1942,4 +1942,4 @@ version\ <b>{0}</b>=verze <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}Instaluj tento bal\u00ed\u010dek{1} aby jsi mohl pou\u017e\u00edvat desku {2}

View File

@ -23,8 +23,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-22 18:04+0000\n"
"Last-Translator: Ettore Atalan <atalanttore@googlemail.com>\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"
@ -419,7 +419,7 @@ msgstr "Bootloader wird auf das E/A-Board gebrannt (dies kann eine Minute dauern
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC stimmt nicht überein, Datei ist beschädigt. Es kann ein temporäres Problem sein, bitte versuchen Sie es später erneut."
#: ../../../processing/app/Base.java:379
#, java-format
@ -524,7 +524,7 @@ msgstr "Konnte nicht an einen korrekten Speicherort kopieren. "
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Verzeichnis \"{0}\" konnte nicht erstellt werden"
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -930,13 +930,13 @@ msgstr "Beispiele"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Beispiele für jedes Board"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Beispiele für {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -962,11 +962,11 @@ msgstr "Fehler beim Öffnen des Sketches: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Fehler beim Umbenennen von \"{0}\" zu \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Fehler beim Umbenennen des Sketch-Ordners"
#: Editor.java:491
msgid "File"
@ -1942,7 +1942,7 @@ msgstr "Einige Dateien sind als \"schreibgeschützt\" gekennzeichnet.\nSie müss
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Entschuldigung, der Ordner \"{0}\" ist bereits vorhanden."
#: Preferences.java:115
msgid "Spanish"
@ -2013,7 +2013,7 @@ msgstr "Die Klasse Udp wurde in EthernetUdp umbenannt."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Die aktuell ausgewählte Board benötigt den Kern '{0}', der nicht installiert ist."
#: Editor.java:2147
#, java-format
@ -2033,7 +2033,7 @@ msgstr "Die Bibliothek \"{0}\" kann nicht verwendet werden.\nBibliotheksnamen d
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Die Hauptdatei kann keine Erweiterung verwenden"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2059,7 +2059,7 @@ msgstr "Der Sketch \"{0}\" kann nicht verwendet werden.\nSketchnamen dürfen nur
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Der Sketch enthält bereits eine Datei mit dem Namen \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2707,4 +2707,4 @@ msgstr "{0}: Unbekanntes Paket"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Installieren Sie dieses Paket{1}, um Ihr Board {2} verwenden zu können"

View File

@ -18,7 +18,7 @@
# Lukas Bestle, 2016
# Lukas Bestle, 2013,2015-2016
# Dr. Mathias Wilhelm <mathias.wilhelm@freenet.de>, 2012
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-22 18\:04+0000\nLast-Translator\: Ettore Atalan <atalanttore@googlemail.com>\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)
@ -292,7 +292,7 @@ Burn\ Bootloader=Bootloader brennen
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Bootloader wird auf das E/A-Board gebrannt (dies kann eine Minute dauern)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC stimmt nicht \u00fcberein, Datei ist besch\u00e4digt. Es kann ein tempor\u00e4res Problem sein, bitte versuchen Sie es sp\u00e4ter erneut.
#: ../../../processing/app/Base.java:379
#, java-format
@ -372,7 +372,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Konnte nicht an einen korrekten Speic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Verzeichnis "{0}" konnte nicht erstellt werden
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Der Sketch-Ordner konnte nicht angelegt werden.
@ -669,12 +669,12 @@ Estonian\ (Estonia)=Estl\u00e4ndisch (Estland)
Examples=Beispiele
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=Beispiele f\u00fcr jedes Board
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=Beispiele f\u00fcr {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Beispiele aus eigenen Bibliotheken
@ -694,10 +694,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Fehler beim \u00d6ffnen des Sketches\: "{0}"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=Fehler beim Umbenennen von "{0}" zu "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Fehler beim Umbenennen des Sketch-Ordners
#: Editor.java:491
File=Datei
@ -1417,7 +1417,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Entschuldigung, der Ordner "{0}" ist bereits vorhanden.
#: Preferences.java:115
Spanish=Spanisch
@ -1469,7 +1469,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Die Klasse Server wurde
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Die Klasse Udp wurde in EthernetUdp umbenannt.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=Die aktuell ausgew\u00e4hlte Board ben\u00f6tigt den Kern '{0}', der nicht installiert ist.
#: Editor.java:2147
#, java-format
@ -1480,7 +1480,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Die Bibliothek "{0}" kann nicht verwendet werden.\nBibliotheksnamen d\u00fcrfen nur Buchstaben und Zahlen enthalten.\n(nur ASCII-Zeichen, keine Leerzeichen und keine Zahl am Anfang)
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=Die Hauptdatei kann keine Erweiterung verwenden
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Der Name darf nicht mit einem Punkt anfangen.
@ -1494,7 +1494,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Der Sketch enth\u00e4lt bereits eine Datei mit dem Namen "{0}"
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Der Sketch-Ordner ist verschwunden.\nEs wird versucht, den Sketch am selben Ort zu speichern,\naber au\u00dfer dem Quelltext ist alles Andere verloren.
@ -1938,4 +1938,4 @@ version\ <b>{0}</b>=Version <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}Installieren Sie dieses Paket{1}, um Ihr Board {2} verwenden zu k\u00f6nnen

View File

@ -26,8 +26,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-12-30 03:45+0000\n"
"Last-Translator: Hasso Tepper <hasso.tepper@gmail.com>\n"
"Language-Team: Estonian (http://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -127,7 +127,7 @@ msgstr "Arduino info"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:41
msgid "Acoli"
msgstr ""
msgstr "Akoli"
#: ../../../../../app/src/processing/app/Base.java:1177
msgid "Add .ZIP Library..."
@ -341,7 +341,7 @@ msgstr "Plaat"
#: ../../../../../app//src/processing/app/Editor.java:2824
msgid "Board Info"
msgstr ""
msgstr "Plaadi info"
#: ../../../../../app/src/processing/app/Editor.java:2545
#: ../../../../../app/src/processing/app/Editor.java:2641
@ -422,7 +422,7 @@ msgstr "Alglaaduri I/O plaadile kirjutamine (see võib võtta mõne minuti) ..."
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC ei kattu ja fail on rikutud. See võib olla ajutine probleem, proovi hiljem uuesti."
#: ../../../processing/app/Base.java:379
#, java-format
@ -497,7 +497,7 @@ msgstr "Visandi kompileerimine ..."
#: ../../../../../arduino-core/src/processing/app/I18n.java:27
msgid "Contributed"
msgstr "Kaastööd"
msgstr "Kolmandate osapoolte"
#: Editor.java:1157 Editor.java:2707
msgid "Copy"
@ -527,7 +527,7 @@ msgstr "Ettenähtud kohta ei saa kopeerida."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Kataloogi „{0}“ ei saa luua"
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -933,13 +933,13 @@ msgstr "Näited"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Näited kõigile plaatidele"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "„{0}“ näited"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -947,7 +947,7 @@ msgstr "Ise paigaldatud teekide näited"
#: ../../../../../app/src/processing/app/Base.java:1329
msgid "Examples from Other Libraries"
msgstr ""
msgstr "Näited teistest teekidest"
#: ../../../../../app/src/processing/app/Editor.java:753
msgid "Export canceled, changes must first be saved."
@ -965,11 +965,11 @@ msgstr "Visandi avamine ebaõnnestus: „{0}“"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "„{0}“ nime muutmine „{1}“-ks ebaõnnestus"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Visandikausta nime muutmine ebaõnnestus"
#: Editor.java:491
msgid "File"
@ -1062,7 +1062,7 @@ msgstr "Saksa"
#: ../../../../../app//src/processing/app/Editor.java:817
msgid "Get Board Info"
msgstr ""
msgstr "Plaadi info"
#: Editor.java:1054
msgid "Getting Started"
@ -1124,7 +1124,7 @@ msgstr "Ungari"
#: ../../../../../app/src/processing/app/Base.java:1319
msgid "INCOMPATIBLE"
msgstr ""
msgstr "MITTEKOMPATIIBEL"
#: FindReplace.java:96
msgid "Ignore Case"
@ -1230,7 +1230,7 @@ msgstr "Jaapani"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:81
msgid "Kazakh"
msgstr ""
msgstr "Kasahhi"
#: Preferences.java:104
msgid "Korean"
@ -1334,7 +1334,7 @@ msgstr "Uue faili nimi:"
#: ../../../../../app//src/processing/app/Editor.java:2809
msgid "Native serial port, can't obtain info"
msgstr ""
msgstr "Info lugemine jadapordist ei õnnestu"
#: ../../../processing/app/Preferences.java:149
msgid "Nepali"
@ -1346,7 +1346,7 @@ msgstr "Võrk"
#: ../../../../../app//src/processing/app/Editor.java:2804
msgid "Network port, can't obtain info"
msgstr ""
msgstr "Info lugemine võrgupordist ei õnnestu"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
@ -1537,7 +1537,7 @@ msgstr "Laadi Wire teek menüüst Visand -> Laadi teek."
#: ../../../../../app//src/processing/app/Editor.java:2799
msgid "Please select a port to obtain board info"
msgstr ""
msgstr "Plaadi info nägemiseks vali port."
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
@ -1919,7 +1919,7 @@ msgstr "Visandite asukoht on määramata"
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
msgid "Skipping contributed index file {0}, parsing error occured:"
msgstr ""
msgstr "Paki indeksi faili {0} ignoreeritakse, viga parsimisel:"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
@ -1945,7 +1945,7 @@ msgstr "Mõned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujal
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Vabandust, „{0}“ nimeline kaust on juba olemas."
#: Preferences.java:115
msgid "Spanish"
@ -1981,7 +1981,7 @@ msgstr "Tamili"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:102
msgid "Telugu"
msgstr ""
msgstr "Telugu"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:100
msgid "Thai"
@ -2016,7 +2016,7 @@ msgstr "Klass Udp on nimetatud ümber EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Hetkel valitud plaat vajab „{0}“ baaspakki, mis pole paigaldatud."
#: Editor.java:2147
#, java-format
@ -2036,7 +2036,7 @@ msgstr "Teeki „{0}“ ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Põhifailil ei tohi laiendit olla."
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2062,7 +2062,7 @@ msgstr "Visandit „{0}“ ei saa kasutada.\nVisandite nimed nimed tohivad sisal
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Visandis on „{0}“ nimeline fail juba olemas."
#: Sketch.java:1755
msgid ""
@ -2162,7 +2162,7 @@ msgstr "Ukraina"
#: ../../../../../arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java:142
#, java-format
msgid "Unable to connect to {0}"
msgstr "Ei õnnestu luua ühendust seadme/võrguga {0}"
msgstr "Aadressiga „{0}“ ei õnnestu ühendust luua"
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
@ -2180,7 +2180,7 @@ msgstr "Ühendust ei õnnestu luua, vale parool?"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
#, java-format
msgid "Unable to find {0} in {1}"
msgstr "Ei õnnestu leida {0} kohast {1}"
msgstr "Visandit „{0}“ pole kataloogis „{1}“"
#: ../../../processing/app/Editor.java:2512
msgid "Unable to open serial monitor"
@ -2206,11 +2206,11 @@ msgstr "Võta tagasi"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
#, java-format
msgid "Unhandled type {0} in context key {1}"
msgstr "Käsitlemata tüüp {0} konteksi võtmes {1}"
msgstr ""
#: ../../../../../app//src/processing/app/Editor.java:2818
msgid "Unknown board"
msgstr ""
msgstr "Tundmatu plaat"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
#, java-format
@ -2266,7 +2266,7 @@ msgstr "Laadi üles programmaatori kaudu"
#: ../../../../../app//src/processing/app/Editor.java:2814
msgid "Upload any sketch to obtain it"
msgstr ""
msgstr "Info lugemiseks laadi suvaline visand üles"
#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
@ -2392,7 +2392,7 @@ msgstr "Hoiatus: fail {0} viitab täielikule asukohale {1}"
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
msgid "Warning: forced trusting untrusted contributions"
msgstr "Hoiatus: mitteusaldusväärseid kaastöid sunnitud usaldamine"
msgstr "Hoiatus: mitteusaldusväärse paki sunnitud usaldamine"
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
#, java-format
@ -2402,7 +2402,7 @@ msgstr "Hoiatus: mitteusaldusväärse skripti ({0}) sunnitud käivitamine"
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
#, java-format
msgid "Warning: non trusted contribution, skipping script execution ({0})"
msgstr "Hoiatus: kaastöö pole usaldusväärne, skripte ei käivitata ({0})"
msgstr "Hoiatus: pakk pole usaldusväärne, skripte ei käivitata ({0})"
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
#, java-format
@ -2563,7 +2563,7 @@ msgstr "boodi"
#: Preferences.java:389
msgid "compilation "
msgstr "kopileerimise ajal"
msgstr "kompileerimise ajal"
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
@ -2710,4 +2710,4 @@ msgstr "{0}: Tundmatu pakk"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "„{2}“ plaadi kasutamiseks paigalda {0}see pakk{1}"

View File

@ -21,7 +21,7 @@
# Hasso Tepper <hasso.tepper@gmail.com>, 2016
# Lauri V\u00f5sandi <lauri.vosandi@gmail.com>, 2015
# Triin Taveter <taveter@ut.ee>, 2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-12-30 03\:45+0000\nLast-Translator\: Hasso Tepper <hasso.tepper@gmail.com>\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)
@ -83,7 +83,7 @@ A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Su visandite kaus
About\ Arduino=Arduino info
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:41
!Acoli=
Acoli=Akoli
#: ../../../../../app/src/processing/app/Base.java:1177
Add\ .ZIP\ Library...=Lisa .ZIP teek ...
@ -236,7 +236,7 @@ Belarusian=Valgevene
Board=Plaat
#: ../../../../../app//src/processing/app/Editor.java:2824
!Board\ Info=
Board\ Info=Plaadi info
#: ../../../../../app/src/processing/app/Editor.java:2545
#: ../../../../../app/src/processing/app/Editor.java:2641
@ -295,7 +295,7 @@ Burn\ Bootloader=Kirjuta alglaadur
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Alglaaduri I/O plaadile kirjutamine (see v\u00f5ib v\u00f5tta m\u00f5ne minuti) ...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC ei kattu ja fail on rikutud. See v\u00f5ib olla ajutine probleem, proovi hiljem uuesti.
#: ../../../processing/app/Base.java:379
#, java-format
@ -352,7 +352,7 @@ Compiler\ warnings\:\ =Kompilaatori hoiatused\:
Compiling\ sketch...=Visandi kompileerimine ...
#: ../../../../../arduino-core/src/processing/app/I18n.java:27
Contributed=Kaast\u00f6\u00f6d
Contributed=Kolmandate osapoolte
#: Editor.java:1157 Editor.java:2707
Copy=Kopeeri
@ -375,7 +375,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Etten\u00e4htud kohta ei saa kopeerid
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Kataloogi \u201e{0}\u201c ei saa luua
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Visandi kausta pole v\u00f5imalik luua.
@ -672,18 +672,18 @@ Estonian\ (Estonia)=Eesti (Eesti)
Examples=N\u00e4ited
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=N\u00e4ited k\u00f5igile plaatidele
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=\u201e{0}\u201c n\u00e4ited
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Ise paigaldatud teekide n\u00e4ited
#: ../../../../../app/src/processing/app/Base.java:1329
!Examples\ from\ Other\ Libraries=
Examples\ from\ Other\ Libraries=N\u00e4ited teistest teekidest
#: ../../../../../app/src/processing/app/Editor.java:753
Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud, muudatused tuleb k\u00f5igepealt salvestada.
@ -697,10 +697,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Visandi avamine eba\u00f5nnestus\: \u201e{0}\u
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=\u201e{0}\u201c nime muutmine \u201e{1}\u201c-ks eba\u00f5nnestus
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Visandikausta nime muutmine eba\u00f5nnestus
#: Editor.java:491
File=Fail
@ -769,7 +769,7 @@ Georgian=Gruusia
German=Saksa
#: ../../../../../app//src/processing/app/Editor.java:817
!Get\ Board\ Info=
Get\ Board\ Info=Plaadi info
#: Editor.java:1054
Getting\ Started=Sissejuhatus
@ -813,7 +813,7 @@ How\ very\ Borges\ of\ you=Maakera sees on maakera
Hungarian=Ungari
#: ../../../../../app/src/processing/app/Base.java:1319
!INCOMPATIBLE=
INCOMPATIBLE=MITTEKOMPATIIBEL
#: FindReplace.java:96
Ignore\ Case=T\u00e4hesuuruse ignoreerimine
@ -890,7 +890,7 @@ Italian=Itaalia
Japanese=Jaapani
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:81
!Kazakh=
Kazakh=Kasahhi
#: Preferences.java:104
Korean=Korea
@ -969,7 +969,7 @@ Must\ specify\ exactly\ one\ sketch\ file=M\u00e4\u00e4ratud peab olema t\u00e4p
Name\ for\ new\ file\:=Uue faili nimi\:
#: ../../../../../app//src/processing/app/Editor.java:2809
!Native\ serial\ port,\ can't\ obtain\ info=
Native\ serial\ port,\ can't\ obtain\ info=Info lugemine jadapordist ei \u00f5nnestu
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
@ -978,7 +978,7 @@ Nepali=Nepali
Network=V\u00f5rk
#: ../../../../../app//src/processing/app/Editor.java:2804
!Network\ port,\ can't\ obtain\ info=
Network\ port,\ can't\ obtain\ info=Info lugemine v\u00f5rgupordist ei \u00f5nnestu
#: ../../../../../app/src/processing/app/Editor.java:65
Network\ ports=V\u00f5rgupordid
@ -1121,7 +1121,7 @@ Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Laadi Wire teek men\u00fc\u00fcst Visand -> Laadi teek.
#: ../../../../../app//src/processing/app/Editor.java:2799
!Please\ select\ a\ port\ to\ obtain\ board\ info=
Please\ select\ a\ port\ to\ obtain\ board\ info=Plaadi info n\u00e4gemiseks vali port.
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
@ -1404,7 +1404,7 @@ Sketchbook\ path\ not\ defined=Visandite asukoht on m\u00e4\u00e4ramata
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
!Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=
Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=Paki indeksi faili {0} ignoreeritakse, viga parsimisel\:
#: ../../../../../app/src/processing/app/Preferences.java:185
Slovak=Slovaki
@ -1420,7 +1420,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Vabandust, \u201e{0}\u201c nimeline kaust on juba olemas.
#: Preferences.java:115
Spanish=Hispaania
@ -1447,7 +1447,7 @@ Talossan=Talossan
Tamil=Tamili
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:102
!Telugu=
Telugu=Telugu
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:100
Thai=Tai
@ -1472,7 +1472,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klass Server on n\u00fc\
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klass Udp on nimetatud \u00fcmber EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=Hetkel valitud plaat vajab \u201e{0}\u201c baaspakki, mis pole paigaldatud.
#: Editor.java:2147
#, java-format
@ -1483,7 +1483,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Teeki \u201e{0}\u201c ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult ASCII t\u00e4hti ja\nnumbreid ning peavad algama t\u00e4hega.
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=P\u00f5hifailil ei tohi laiendit olla.
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Nimi ei tohi alata punktiga.
@ -1497,7 +1497,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Visandis on \u201e{0}\u201c nimeline fail juba olemas.
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud.
@ -1557,7 +1557,7 @@ Ukrainian=Ukraina
#: ../../../../../arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java:142
#, java-format
Unable\ to\ connect\ to\ {0}=Ei \u00f5nnestu luua \u00fchendust seadme/v\u00f5rguga {0}
Unable\ to\ connect\ to\ {0}=Aadressiga \u201e{0}\u201c ei \u00f5nnestu \u00fchendust luua
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
@ -1571,7 +1571,7 @@ Unable\ to\ connect\:\ wrong\ password?=\u00dchendust ei \u00f5nnestu luua, vale
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
#, java-format
Unable\ to\ find\ {0}\ in\ {1}=Ei \u00f5nnestu leida {0} kohast {1}
Unable\ to\ find\ {0}\ in\ {1}=Visandit \u201e{0}\u201c pole kataloogis \u201e{1}\u201c
#: ../../../processing/app/Editor.java:2512
Unable\ to\ open\ serial\ monitor=Jadapordi monitori pole v\u00f5imalik avada.
@ -1591,10 +1591,10 @@ Undo=V\u00f5ta tagasi
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
#, java-format
Unhandled\ type\ {0}\ in\ context\ key\ {1}=K\u00e4sitlemata t\u00fc\u00fcp {0} konteksi v\u00f5tmes {1}
!Unhandled\ type\ {0}\ in\ context\ key\ {1}=
#: ../../../../../app//src/processing/app/Editor.java:2818
!Unknown\ board=
Unknown\ board=Tundmatu plaat
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
#, java-format
@ -1635,7 +1635,7 @@ Upload=Laadi \u00fcles
Upload\ Using\ Programmer=Laadi \u00fcles programmaatori kaudu
#: ../../../../../app//src/processing/app/Editor.java:2814
!Upload\ any\ sketch\ to\ obtain\ it=
Upload\ any\ sketch\ to\ obtain\ it=Info lugemiseks laadi suvaline visand \u00fcles
#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=\u00dcleslaadimine on katkestatud.
@ -1729,7 +1729,7 @@ Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ conside
Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Hoiatus\: fail {0} viitab t\u00e4ielikule asukohale {1}
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
Warning\:\ forced\ trusting\ untrusted\ contributions=Hoiatus\: mitteusaldusv\u00e4\u00e4rseid kaast\u00f6id sunnitud usaldamine
Warning\:\ forced\ trusting\ untrusted\ contributions=Hoiatus\: mitteusaldusv\u00e4\u00e4rse paki sunnitud usaldamine
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
#, java-format
@ -1737,7 +1737,7 @@ Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Hoiatus\: mitteusaldusv\u
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
#, java-format
Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Hoiatus\: kaast\u00f6\u00f6 pole usaldusv\u00e4\u00e4rne, skripte ei k\u00e4ivitata ({0})
Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Hoiatus\: pakk pole usaldusv\u00e4\u00e4rne, skripte ei k\u00e4ivitata ({0})
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
#, java-format
@ -1827,7 +1827,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP failis pole teeki
baud=boodi
#: Preferences.java:389
compilation\ =kopileerimise ajal
compilation\ =kompileerimise ajal
#: ../../../processing/app/NetworkMonitor.java:111
connected\!=\u00fchendus loodud.
@ -1941,4 +1941,4 @@ version\ <b>{0}</b>=versioon <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=\u201e{2}\u201c plaadi kasutamiseks paigalda {0}see pakk{1}

View File

@ -15,9 +15,11 @@
# Translators:
# Translators:
# Cougar <cougar@random.ee>, 2012
# Cougar <transifex@lost.data.ee>, 2013
# Cristian Maglie <c.maglie@arduino.cc>, 2016
# Georg, 2014
# Georg, 2014
# Hasso Tepper <hasso.tepper@gmail.com>, 2016
# Lauri Võsandi <lauri.vosandi@gmail.com>, 2015
# Triin Taveter <taveter@ut.ee>, 2016
msgid ""
@ -25,8 +27,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-12-30 03:45+0000\n"
"Last-Translator: Hasso Tepper <hasso.tepper@gmail.com>\n"
"Language-Team: Estonian (Estonia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -126,7 +128,7 @@ msgstr "Arduino info"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:41
msgid "Acoli"
msgstr ""
msgstr "Akoli"
#: ../../../../../app/src/processing/app/Base.java:1177
msgid "Add .ZIP Library..."
@ -340,13 +342,13 @@ msgstr "Plaat"
#: ../../../../../app//src/processing/app/Editor.java:2824
msgid "Board Info"
msgstr ""
msgstr "Plaadi info"
#: ../../../../../app/src/processing/app/Editor.java:2545
#: ../../../../../app/src/processing/app/Editor.java:2641
#, java-format
msgid "Board at {0} is not available"
msgstr "Plaat kohas {0} ei ole saadaval"
msgstr "„{0}“ pordis pole plaati."
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62
#, java-format
@ -421,7 +423,7 @@ msgstr "Alglaaduri I/O plaadile kirjutamine (see võib võtta mõne minuti) ..."
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC ei kattu ja fail on rikutud. See võib olla ajutine probleem, proovi hiljem uuesti."
#: ../../../processing/app/Base.java:379
#, java-format
@ -496,7 +498,7 @@ msgstr "Visandi kompileerimine ..."
#: ../../../../../arduino-core/src/processing/app/I18n.java:27
msgid "Contributed"
msgstr "Kaastööd"
msgstr "Kolmandate osapoolte"
#: Editor.java:1157 Editor.java:2707
msgid "Copy"
@ -526,7 +528,7 @@ msgstr "Ettenähtud kohta ei saa kopeerida."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Kataloogi „{0}“ ei saa luua"
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -813,7 +815,7 @@ msgstr "Viga faili lisamisel"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:272
#, java-format
msgid "Error compiling for board {0}."
msgstr "Viga plaadi {0} jaoks kompilleerimisel."
msgstr "Viga „{0}“ plaadile kompileerimisel."
#: debug/Compiler.java:369
msgid "Error compiling."
@ -932,13 +934,13 @@ msgstr "Näited"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Näited kõigile plaatidele"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "„{0}“ näited"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -946,7 +948,7 @@ msgstr "Ise paigaldatud teekide näited"
#: ../../../../../app/src/processing/app/Base.java:1329
msgid "Examples from Other Libraries"
msgstr ""
msgstr "Näited teistest teekidest"
#: ../../../../../app/src/processing/app/Editor.java:753
msgid "Export canceled, changes must first be saved."
@ -964,11 +966,11 @@ msgstr "Visandi avamine ebaõnnestus: „{0}“"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "„{0}“ nime muutmine „{1}“-ks ebaõnnestus"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Visandikausta nime muutmine ebaõnnestus"
#: Editor.java:491
msgid "File"
@ -977,7 +979,7 @@ msgstr "Fail"
#: ../../../../../arduino-core/src/processing/app/SketchData.java:139
#, java-format
msgid "File name {0} is invalid: ignored"
msgstr "Faili nimi {0} on kehtetu: ignoreeritakse"
msgstr "Failinimi {0} pole korrektne: faili ignoreeritakse"
#: Preferences.java:94
msgid "Filipino"
@ -1061,7 +1063,7 @@ msgstr "Saksa"
#: ../../../../../app//src/processing/app/Editor.java:817
msgid "Get Board Info"
msgstr ""
msgstr "Plaadi info"
#: Editor.java:1054
msgid "Getting Started"
@ -1123,7 +1125,7 @@ msgstr "Ungari"
#: ../../../../../app/src/processing/app/Base.java:1319
msgid "INCOMPATIBLE"
msgstr ""
msgstr "MITTEKOMPATIIBEL"
#: FindReplace.java:96
msgid "Ignore Case"
@ -1207,7 +1209,7 @@ msgstr "Paigaldamine ..."
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:256
msgid "Interface scale:"
msgstr "Liidese skaala:"
msgstr "Kasutajaliidese suurendus:"
#: ../../../processing/app/Base.java:1204
#, java-format
@ -1229,7 +1231,7 @@ msgstr "Jaapani"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:81
msgid "Kazakh"
msgstr ""
msgstr "Kasahhi"
#: Preferences.java:104
msgid "Korean"
@ -1333,7 +1335,7 @@ msgstr "Uue faili nimi:"
#: ../../../../../app//src/processing/app/Editor.java:2809
msgid "Native serial port, can't obtain info"
msgstr ""
msgstr "Info lugemine jadapordist ei õnnestu"
#: ../../../processing/app/Preferences.java:149
msgid "Nepali"
@ -1345,7 +1347,7 @@ msgstr "Võrk"
#: ../../../../../app//src/processing/app/Editor.java:2804
msgid "Network port, can't obtain info"
msgstr ""
msgstr "Info lugemine võrgupordist ei õnnestu"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
@ -1536,7 +1538,7 @@ msgstr "Laadi Wire teek menüüst Visand -> Laadi teek."
#: ../../../../../app//src/processing/app/Editor.java:2799
msgid "Please select a port to obtain board info"
msgstr ""
msgstr "Plaadi info nägemiseks vali port."
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
@ -1545,7 +1547,7 @@ msgstr "Vali programmaator menüüst Tööriistad -> Programmaator."
#: ../../../../../app/src/processing/app/Editor.java:2613
msgid "Plotter not available while serial monitor is open"
msgstr "Plotterit ei saa kasutada, kui jadapordi monitor on avatud"
msgstr "Plotterit ei saa kasutada, kui jadapordi monitor on avatud."
#: Preferences.java:110
msgid "Polish"
@ -1817,7 +1819,7 @@ msgstr "Jadapordi plotter"
#: ../../../../../app/src/processing/app/Editor.java:2516
msgid "Serial monitor not available while plotter is open"
msgstr "Jadapordi monitori ei saa kasutada, kui plotter on avatud"
msgstr "Jadapordi monitori ei saa kasutada, kui plotter on avatud."
#: Serial.java:194
#, java-format
@ -1918,7 +1920,7 @@ msgstr "Visandite asukoht on määramata"
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
msgid "Skipping contributed index file {0}, parsing error occured:"
msgstr ""
msgstr "Paki indeksi faili {0} ignoreeritakse, viga parsimisel:"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
@ -1944,7 +1946,7 @@ msgstr "Mõned failid on kirjutuskaitsega.\nPead salvestama visandi kuhugi mujal
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Vabandust, „{0}“ nimeline kaust on juba olemas."
#: Preferences.java:115
msgid "Spanish"
@ -1980,7 +1982,7 @@ msgstr "Tamili"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:102
msgid "Telugu"
msgstr ""
msgstr "Telugu"
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:100
msgid "Thai"
@ -2015,7 +2017,7 @@ msgstr "Klass Udp on nimetatud ümber EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Hetkel valitud plaat vajab „{0}“ baaspakki, mis pole paigaldatud."
#: Editor.java:2147
#, java-format
@ -2035,7 +2037,7 @@ msgstr "Teeki „{0}“ ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Põhifailil ei tohi laiendit olla."
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2061,7 +2063,7 @@ msgstr "Visandit „{0}“ ei saa kasutada.\nVisandite nimed nimed tohivad sisal
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Visandis on „{0}“ nimeline fail juba olemas."
#: Sketch.java:1755
msgid ""
@ -2161,7 +2163,7 @@ msgstr "Ukraina"
#: ../../../../../arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java:142
#, java-format
msgid "Unable to connect to {0}"
msgstr "Ei saa ühendust seadme/võrguga {0}"
msgstr "Aadressiga „{0}“ ei õnnestu ühendust luua"
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
@ -2179,7 +2181,7 @@ msgstr "Ühendust ei õnnestu luua, vale parool?"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
#, java-format
msgid "Unable to find {0} in {1}"
msgstr "Ei õnnestu leida {0} kohast {1}"
msgstr "Visandit „{0}“ pole kataloogis „{1}“"
#: ../../../processing/app/Editor.java:2512
msgid "Unable to open serial monitor"
@ -2205,11 +2207,11 @@ msgstr "Võta tagasi"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
#, java-format
msgid "Unhandled type {0} in context key {1}"
msgstr "Käsitlemata tüüp {0} konteksi võtmes {1}"
msgstr ""
#: ../../../../../app//src/processing/app/Editor.java:2818
msgid "Unknown board"
msgstr ""
msgstr "Tundmatu plaat"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
#, java-format
@ -2265,7 +2267,7 @@ msgstr "Laadi üles programmaatori kaudu"
#: ../../../../../app//src/processing/app/Editor.java:2814
msgid "Upload any sketch to obtain it"
msgstr ""
msgstr "Info lugemiseks laadi suvaline visand üles"
#: Editor.java:2403 Editor.java:2439
msgid "Upload canceled."
@ -2391,7 +2393,7 @@ msgstr "Hoiatus: fail {0} viitab täielikule asukohale {1}"
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
msgid "Warning: forced trusting untrusted contributions"
msgstr "Hoiatus: mitteusaldusväärseid kaastöid sunnitud usaldamine"
msgstr "Hoiatus: mitteusaldusväärse paki sunnitud usaldamine"
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
#, java-format
@ -2401,7 +2403,7 @@ msgstr "Hoiatus: mitteusaldusväärse skripti ({0}) sunnitud käivitamine"
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
#, java-format
msgid "Warning: non trusted contribution, skipping script execution ({0})"
msgstr "Hoiatus: kaastöö pole usaldusväärne, skripte ei käivitata ({0})"
msgstr "Hoiatus: pakk pole usaldusväärne, skripte ei käivitata ({0})"
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
#, java-format
@ -2562,7 +2564,7 @@ msgstr "boodi"
#: Preferences.java:389
msgid "compilation "
msgstr "kopileerimise ajal"
msgstr "kompileerimise ajal"
#: ../../../processing/app/NetworkMonitor.java:111
msgid "connected!"
@ -2709,4 +2711,4 @@ msgstr "{0}: Tundmatu pakk"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "„{2}“ plaadi kasutamiseks paigalda {0}see pakk{1}"

View File

@ -15,12 +15,14 @@
# Translators:
# Translators:
# Cougar <cougar@random.ee>, 2012
# Cougar <transifex@lost.data.ee>, 2013
# Cristian Maglie <c.maglie@arduino.cc>, 2016
# Georg, 2014
# Georg, 2014
# Hasso Tepper <hasso.tepper@gmail.com>, 2016
# Lauri V\u00f5sandi <lauri.vosandi@gmail.com>, 2015
# Triin Taveter <taveter@ut.ee>, 2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-12-30 03\:45+0000\nLast-Translator\: Hasso Tepper <hasso.tepper@gmail.com>\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)
@ -82,7 +84,7 @@ A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Su visandite kaus
About\ Arduino=Arduino info
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:41
!Acoli=
Acoli=Akoli
#: ../../../../../app/src/processing/app/Base.java:1177
Add\ .ZIP\ Library...=Lisa .ZIP teek ...
@ -235,12 +237,12 @@ Belarusian=Valgevene
Board=Plaat
#: ../../../../../app//src/processing/app/Editor.java:2824
!Board\ Info=
Board\ Info=Plaadi info
#: ../../../../../app/src/processing/app/Editor.java:2545
#: ../../../../../app/src/processing/app/Editor.java:2641
#, java-format
Board\ at\ {0}\ is\ not\ available=Plaat kohas {0} ei ole saadaval
Board\ at\ {0}\ is\ not\ available=\u201e{0}\u201c pordis pole plaati.
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62
#, java-format
@ -294,7 +296,7 @@ Burn\ Bootloader=Kirjuta alglaadur
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Alglaaduri I/O plaadile kirjutamine (see v\u00f5ib v\u00f5tta m\u00f5ne minuti) ...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC ei kattu ja fail on rikutud. See v\u00f5ib olla ajutine probleem, proovi hiljem uuesti.
#: ../../../processing/app/Base.java:379
#, java-format
@ -351,7 +353,7 @@ Compiler\ warnings\:\ =Kompilaatori hoiatused\:
Compiling\ sketch...=Visandi kompileerimine ...
#: ../../../../../arduino-core/src/processing/app/I18n.java:27
Contributed=Kaast\u00f6\u00f6d
Contributed=Kolmandate osapoolte
#: Editor.java:1157 Editor.java:2707
Copy=Kopeeri
@ -374,7 +376,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Etten\u00e4htud kohta ei saa kopeerid
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Kataloogi \u201e{0}\u201c ei saa luua
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Visandi kausta pole v\u00f5imalik luua.
@ -581,7 +583,7 @@ Error\ adding\ file=Viga faili lisamisel
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:272
#, java-format
Error\ compiling\ for\ board\ {0}.=Viga plaadi {0} jaoks kompilleerimisel.
Error\ compiling\ for\ board\ {0}.=Viga \u201e{0}\u201c plaadile kompileerimisel.
#: debug/Compiler.java:369
Error\ compiling.=Viga kompileerimisel.
@ -671,18 +673,18 @@ Estonian\ (Estonia)=Eesti (Eesti)
Examples=N\u00e4ited
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=N\u00e4ited k\u00f5igile plaatidele
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=\u201e{0}\u201c n\u00e4ited
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Ise paigaldatud teekide n\u00e4ited
#: ../../../../../app/src/processing/app/Base.java:1329
!Examples\ from\ Other\ Libraries=
Examples\ from\ Other\ Libraries=N\u00e4ited teistest teekidest
#: ../../../../../app/src/processing/app/Editor.java:753
Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud, muudatused tuleb k\u00f5igepealt salvestada.
@ -696,17 +698,17 @@ Failed\ to\ open\ sketch\:\ "{0}"=Visandi avamine eba\u00f5nnestus\: \u201e{0}\u
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=\u201e{0}\u201c nime muutmine \u201e{1}\u201c-ks eba\u00f5nnestus
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Visandikausta nime muutmine eba\u00f5nnestus
#: Editor.java:491
File=Fail
#: ../../../../../arduino-core/src/processing/app/SketchData.java:139
#, java-format
File\ name\ {0}\ is\ invalid\:\ ignored=Faili nimi {0} on kehtetu\: ignoreeritakse
File\ name\ {0}\ is\ invalid\:\ ignored=Failinimi {0} pole korrektne\: faili ignoreeritakse
#: Preferences.java:94
Filipino=Filipiini
@ -768,7 +770,7 @@ Georgian=Gruusia
German=Saksa
#: ../../../../../app//src/processing/app/Editor.java:817
!Get\ Board\ Info=
Get\ Board\ Info=Plaadi info
#: Editor.java:1054
Getting\ Started=Sissejuhatus
@ -812,7 +814,7 @@ How\ very\ Borges\ of\ you=Maakera sees on maakera
Hungarian=Ungari
#: ../../../../../app/src/processing/app/Base.java:1319
!INCOMPATIBLE=
INCOMPATIBLE=MITTEKOMPATIIBEL
#: FindReplace.java:96
Ignore\ Case=T\u00e4hesuuruse ignoreerimine
@ -872,7 +874,7 @@ Installing\ tools\ ({0}/{1})...=T\u00f6\u00f6riistade paigaldamine ({0}/{1}) ...
Installing...=Paigaldamine ...
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:256
Interface\ scale\:=Liidese skaala\:
Interface\ scale\:=Kasutajaliidese suurendus\:
#: ../../../processing/app/Base.java:1204
#, java-format
@ -889,7 +891,7 @@ Italian=Itaalia
Japanese=Jaapani
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:81
!Kazakh=
Kazakh=Kasahhi
#: Preferences.java:104
Korean=Korea
@ -968,7 +970,7 @@ Must\ specify\ exactly\ one\ sketch\ file=M\u00e4\u00e4ratud peab olema t\u00e4p
Name\ for\ new\ file\:=Uue faili nimi\:
#: ../../../../../app//src/processing/app/Editor.java:2809
!Native\ serial\ port,\ can't\ obtain\ info=
Native\ serial\ port,\ can't\ obtain\ info=Info lugemine jadapordist ei \u00f5nnestu
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
@ -977,7 +979,7 @@ Nepali=Nepali
Network=V\u00f5rk
#: ../../../../../app//src/processing/app/Editor.java:2804
!Network\ port,\ can't\ obtain\ info=
Network\ port,\ can't\ obtain\ info=Info lugemine v\u00f5rgupordist ei \u00f5nnestu
#: ../../../../../app/src/processing/app/Editor.java:65
Network\ ports=V\u00f5rgupordid
@ -1120,14 +1122,14 @@ Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Laadi Wire teek men\u00fc\u00fcst Visand -> Laadi teek.
#: ../../../../../app//src/processing/app/Editor.java:2799
!Please\ select\ a\ port\ to\ obtain\ board\ info=
Please\ select\ a\ port\ to\ obtain\ board\ info=Plaadi info n\u00e4gemiseks vali port.
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Vali programmaator men\u00fc\u00fcst T\u00f6\u00f6riistad -> Programmaator.
#: ../../../../../app/src/processing/app/Editor.java:2613
Plotter\ not\ available\ while\ serial\ monitor\ is\ open=Plotterit ei saa kasutada, kui jadapordi monitor on avatud
Plotter\ not\ available\ while\ serial\ monitor\ is\ open=Plotterit ei saa kasutada, kui jadapordi monitor on avatud.
#: Preferences.java:110
Polish=Poola
@ -1332,7 +1334,7 @@ Serial\ Monitor=Jadapordi monitor
Serial\ Plotter=Jadapordi plotter
#: ../../../../../app/src/processing/app/Editor.java:2516
Serial\ monitor\ not\ available\ while\ plotter\ is\ open=Jadapordi monitori ei saa kasutada, kui plotter on avatud
Serial\ monitor\ not\ available\ while\ plotter\ is\ open=Jadapordi monitori ei saa kasutada, kui plotter on avatud.
#: Serial.java:194
#, java-format
@ -1403,7 +1405,7 @@ Sketchbook\ path\ not\ defined=Visandite asukoht on m\u00e4\u00e4ramata
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
!Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=
Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=Paki indeksi faili {0} ignoreeritakse, viga parsimisel\:
#: ../../../../../app/src/processing/app/Preferences.java:185
Slovak=Slovaki
@ -1419,7 +1421,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Vabandust, \u201e{0}\u201c nimeline kaust on juba olemas.
#: Preferences.java:115
Spanish=Hispaania
@ -1446,7 +1448,7 @@ Talossan=Talossan
Tamil=Tamili
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:102
!Telugu=
Telugu=Telugu
#: ../../../../../app/src/cc/arduino/i18n/Languages.java:100
Thai=Tai
@ -1471,7 +1473,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klass Server on n\u00fc\
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klass Udp on nimetatud \u00fcmber EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=Hetkel valitud plaat vajab \u201e{0}\u201c baaspakki, mis pole paigaldatud.
#: Editor.java:2147
#, java-format
@ -1482,7 +1484,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Teeki \u201e{0}\u201c ei saa kasutada.\nTeekide nimed tohivad sisaldada ainult ASCII t\u00e4hti ja\nnumbreid ning peavad algama t\u00e4hega.
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=P\u00f5hifailil ei tohi laiendit olla.
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Nimi ei tohi alata punktiga.
@ -1496,7 +1498,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Visandis on \u201e{0}\u201c nimeline fail juba olemas.
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Visandi kaust on haihtunud.\nP\u00fc\u00fcan samasse kohta uuesti salvestada,\nkuid k\u00f5ik peale selle koodi on kadunud.
@ -1556,7 +1558,7 @@ Ukrainian=Ukraina
#: ../../../../../arduino-core/src/cc/arduino/packages/uploaders/SSHUploader.java:142
#, java-format
Unable\ to\ connect\ to\ {0}=Ei saa \u00fchendust seadme/v\u00f5rguga {0}
Unable\ to\ connect\ to\ {0}=Aadressiga \u201e{0}\u201c ei \u00f5nnestu \u00fchendust luua
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
@ -1570,7 +1572,7 @@ Unable\ to\ connect\:\ wrong\ password?=\u00dchendust ei \u00f5nnestu luua, vale
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
#, java-format
Unable\ to\ find\ {0}\ in\ {1}=Ei \u00f5nnestu leida {0} kohast {1}
Unable\ to\ find\ {0}\ in\ {1}=Visandit \u201e{0}\u201c pole kataloogis \u201e{1}\u201c
#: ../../../processing/app/Editor.java:2512
Unable\ to\ open\ serial\ monitor=Jadapordi monitori pole v\u00f5imalik avada.
@ -1590,10 +1592,10 @@ Undo=V\u00f5ta tagasi
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
#, java-format
Unhandled\ type\ {0}\ in\ context\ key\ {1}=K\u00e4sitlemata t\u00fc\u00fcp {0} konteksi v\u00f5tmes {1}
!Unhandled\ type\ {0}\ in\ context\ key\ {1}=
#: ../../../../../app//src/processing/app/Editor.java:2818
!Unknown\ board=
Unknown\ board=Tundmatu plaat
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
#, java-format
@ -1634,7 +1636,7 @@ Upload=Laadi \u00fcles
Upload\ Using\ Programmer=Laadi \u00fcles programmaatori kaudu
#: ../../../../../app//src/processing/app/Editor.java:2814
!Upload\ any\ sketch\ to\ obtain\ it=
Upload\ any\ sketch\ to\ obtain\ it=Info lugemiseks laadi suvaline visand \u00fcles
#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=\u00dcleslaadimine on katkestatud.
@ -1728,7 +1730,7 @@ Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ conside
Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=Hoiatus\: fail {0} viitab t\u00e4ielikule asukohale {1}
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
Warning\:\ forced\ trusting\ untrusted\ contributions=Hoiatus\: mitteusaldusv\u00e4\u00e4rseid kaast\u00f6id sunnitud usaldamine
Warning\:\ forced\ trusting\ untrusted\ contributions=Hoiatus\: mitteusaldusv\u00e4\u00e4rse paki sunnitud usaldamine
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
#, java-format
@ -1736,7 +1738,7 @@ Warning\:\ forced\ untrusted\ script\ execution\ ({0})=Hoiatus\: mitteusaldusv\u
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
#, java-format
Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Hoiatus\: kaast\u00f6\u00f6 pole usaldusv\u00e4\u00e4rne, skripte ei k\u00e4ivitata ({0})
Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Hoiatus\: pakk pole usaldusv\u00e4\u00e4rne, skripte ei k\u00e4ivitata ({0})
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
#, java-format
@ -1826,7 +1828,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP failis pole teeki
baud=boodi
#: Preferences.java:389
compilation\ =kopileerimise ajal
compilation\ =kompileerimise ajal
#: ../../../processing/app/NetworkMonitor.java:111
connected\!=\u00fchendus loodud.
@ -1940,4 +1942,4 @@ version\ <b>{0}</b>=versioon <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=\u201e{2}\u201c plaadi kasutamiseks paigalda {0}see pakk{1}

View File

@ -26,8 +26,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-22 20:39+0000\n"
"Last-Translator: Michele Michielin <michele.michielin@gmail.com>\n"
"Language-Team: Italian (Italy) (http://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -422,7 +422,7 @@ msgstr "Sto scrivendo il bootloader sulla scheda di I/O (potrebbe richiedere qua
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "Il CRC non corrisponde, il file è rovinato. Potrebbe essere solo un problema temporaneo, riprova dopo."
#: ../../../processing/app/Base.java:379
#, java-format
@ -527,7 +527,7 @@ msgstr "Impossibile copiare nella posizione opportuna"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Impossibile creare la cartella \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -933,13 +933,13 @@ msgstr "Esempi"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Esempi per qualsiasi scheda"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Esempi per {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -965,11 +965,11 @@ msgstr "Impossibile aprire lo sketch: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Impossibile rinominare \"{0}\" in \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Impossibile rinominare la cartella degli sketch"
#: Editor.java:491
msgid "File"
@ -1945,7 +1945,7 @@ msgstr "Alcuni file sono impostati come \"sola lettura\" quindi\ndevi salvare nu
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "La cartella \"{0}\" esiste già."
#: Preferences.java:115
msgid "Spanish"
@ -2016,7 +2016,7 @@ msgstr "La classe Udp è stata rinominata EthernetUdp"
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "La scheda selezionata richiede il core '{0}' che non risulta installato."
#: Editor.java:2147
#, java-format
@ -2036,7 +2036,7 @@ msgstr "La libreria \"{0}\" non può essere usata.\nIl nome della libreria deve
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Il file principale non può utilizzare un'estensione"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2062,7 +2062,7 @@ msgstr "Lo sketch \"{0}\" non può essere usato.\nIl nome dello sketch può cont
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Lo sketch contiene già un file con nome \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2710,4 +2710,4 @@ msgstr "{0}: pacchetto sconosciuto"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Installa questo pacchetto{1} per usare la tua {2} scheda"

View File

@ -21,7 +21,7 @@
# Michele Michielin <michele.michielin@gmail.com>, 2012
# Michele Michielin <michele.michielin@gmail.com>, 2013-2016
# Sebastiano Pistore <olatusrooc@virgilio.it>, 2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-22 20\:39+0000\nLast-Translator\: Michele Michielin <michele.michielin@gmail.com>\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)
@ -295,7 +295,7 @@ Burn\ Bootloader=Scrivi il bootloader
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Sto scrivendo il bootloader sulla scheda di I/O (potrebbe richiedere qualche minuto)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=Il CRC non corrisponde, il file \u00e8 rovinato. Potrebbe essere solo un problema temporaneo, riprova dopo.
#: ../../../processing/app/Base.java:379
#, java-format
@ -375,7 +375,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Impossibile copiare nella posizione o
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Impossibile creare la cartella "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Impossibile creare la cartella dello sketch
@ -672,12 +672,12 @@ Estonian\ (Estonia)=Estone
Examples=Esempi
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=Esempi per qualsiasi scheda
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=Esempi per {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Esempi da librerie personalizzate
@ -697,10 +697,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Impossibile aprire lo sketch\: "{0}"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=Impossibile rinominare "{0}" in "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Impossibile rinominare la cartella degli sketch
#: Editor.java:491
File=File
@ -1420,7 +1420,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=La cartella "{0}" esiste gi\u00e0.
#: Preferences.java:115
Spanish=Spagnolo
@ -1472,7 +1472,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=La classe Server \u00e8
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=La classe Udp \u00e8 stata rinominata EthernetUdp
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=La scheda selezionata richiede il core '{0}' che non risulta installato.
#: Editor.java:2147
#, java-format
@ -1483,7 +1483,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=La libreria "{0}" non pu\u00f2 essere usata.\nIl nome della libreria deve contenere solo lettere e numeri\n(ASCII senza spazi) e non pu\u00f2 iniziare con un numero
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=Il file principale non pu\u00f2 utilizzare un'estensione
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Il nome non pu\u00f2 iniziare con un punto
@ -1497,7 +1497,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Lo sketch contiene gi\u00e0 un file con nome "{0}"
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=La cartella dello sketch \u00e8 sparita.\nProver\u00f2 a salvare nuovamente nella stessa posizione,\nma qualsiasi cosa in aggiunta al codice andr\u00e0 persa.
@ -1941,4 +1941,4 @@ version\ <b>{0}</b>=versione <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}Installa questo pacchetto{1} per usare la tua {2} scheda

View File

@ -26,8 +26,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-29 06:28+0000\n"
"Last-Translator: Shigeru Kobayashi <mayfair@iamas.ac.jp>\n"
"Language-Team: Japanese (Japan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -422,7 +422,7 @@ msgstr "マイコンボードにブートローダを書き込んでいます...
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRCが一致しません。ファイルが壊れています。一時的な問題かもしれませんので、もう一度試してみてください。"
#: ../../../processing/app/Base.java:379
#, java-format
@ -527,7 +527,7 @@ msgstr "コピーするべきフォルダにファイルをコピーできませ
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "ディレクトリ「{0}」を作成できませんでした。"
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -929,17 +929,17 @@ msgstr "エストニア語(エストニア)"
#: Editor.java:516
msgid "Examples"
msgstr "スケッチ例"
msgstr "スケッチ例"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "あらゆるボード用のスケッチ例"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "{0}用のスケッチ例"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -965,11 +965,11 @@ msgstr "スケッチ「{0}」を開けませんでした。"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "「{0}」の名前を「{1}」に変更できませんでした。"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "スケッチフォルダの名前を変更できませんでした。"
#: Editor.java:491
msgid "File"
@ -1945,7 +1945,7 @@ msgstr "書き込み先の場所には、書き込み禁止のファイルがあ
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "すでに「{0}」という名前のフォルダが存在します。"
#: Preferences.java:115
msgid "Spanish"
@ -2016,7 +2016,7 @@ msgstr "「Udp」クラスは「EthernetUdp」に名称変更されました。"
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "選択されたマイコンボードには「{0}」コアが必要ですが、インストールしてありません。"
#: Editor.java:2147
#, java-format
@ -2036,7 +2036,7 @@ msgstr "「{0}」という名前のライブラリは使用できません。\n
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "メインファイルに拡張子を用いることはできません。"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2062,7 +2062,7 @@ msgstr "「{0}」という名前をスケッチに付けることはできませ
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "スケッチには既に「{0}」という名前のファイルが含まれています。"
#: Sketch.java:1755
msgid ""
@ -2710,4 +2710,4 @@ msgstr "{0}:不明なパッケージ"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}ボード{2}を使うにはパッケージ{1}をインストールしてください。"

View File

@ -21,7 +21,7 @@
# Shigeru Kobayashi <mayfair@iamas.ac.jp>, 2016
# Shinichi Ohki <auxin.one@gmail.com>, 2015
# Takumi Funada, 2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-29 06\:28+0000\nLast-Translator\: Shigeru Kobayashi <mayfair@iamas.ac.jp>\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
@ -295,7 +295,7 @@ Burn\ Bootloader=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC\u304c\u4e00\u81f4\u3057\u307e\u305b\u3093\u3002\u30d5\u30a1\u30a4\u30eb\u304c\u58ca\u308c\u3066\u3044\u307e\u3059\u3002\u4e00\u6642\u7684\u306a\u554f\u984c\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u306e\u3067\u3001\u3082\u3046\u4e00\u5ea6\u8a66\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002
#: ../../../processing/app/Base.java:379
#, java-format
@ -375,7 +375,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=\u30b3\u30d4\u30fc\u3059\u308b\u3079\
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=\u30c7\u30a3\u30ec\u30af\u30c8\u30ea\u300c{0}\u300d\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\u30b9\u30b1\u30c3\u30c1\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u307e\u305b\u3093\u3002
@ -669,15 +669,15 @@ Estonian=\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e
Estonian\ (Estonia)=\u30a8\u30b9\u30c8\u30cb\u30a2\u8a9e\uff08\u30a8\u30b9\u30c8\u30cb\u30a2\uff09
#: Editor.java:516
Examples=\u30b9\u30b1\u30c3\u30c1\u306e\u4f8b
Examples=\u30b9\u30b1\u30c3\u30c1\u4f8b
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=\u3042\u3089\u3086\u308b\u30dc\u30fc\u30c9\u7528\u306e\u30b9\u30b1\u30c3\u30c1\u4f8b
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}={0}\u7528\u306e\u30b9\u30b1\u30c3\u30c1\u4f8b
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=\u30ab\u30b9\u30bf\u30e0\u30e9\u30a4\u30d6\u30e9\u30ea\u306e\u30b9\u30b1\u30c3\u30c1\u4f8b
@ -697,10 +697,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=\u30b9\u30b1\u30c3\u30c1\u300c{0}\u300d\u3092\
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=\u300c{0}\u300d\u306e\u540d\u524d\u3092\u300c{1}\u300d\u306b\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=\u30b9\u30b1\u30c3\u30c1\u30d5\u30a9\u30eb\u30c0\u306e\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
#: Editor.java:491
File=\u30d5\u30a1\u30a4\u30eb
@ -1420,7 +1420,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=\u3059\u3067\u306b\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a9\u30eb\u30c0\u304c\u5b58\u5728\u3057\u307e\u3059\u3002
#: Preferences.java:115
Spanish=\u30b9\u30da\u30a4\u30f3\u8a9e
@ -1472,7 +1472,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u300cServer\u300d\u30af
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u300cUdp\u300d\u30af\u30e9\u30b9\u306f\u300cEthernetUdp\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=\u9078\u629e\u3055\u308c\u305f\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u306f\u300c{0}\u300d\u30b3\u30a2\u304c\u5fc5\u8981\u3067\u3059\u304c\u3001\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u3042\u308a\u307e\u305b\u3093\u3002
#: Editor.java:2147
#, java-format
@ -1483,7 +1483,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30e9\u30a4\u30d6\u30e9\u30ea\u306f\u4f7f\u7528\u3067\u304d\u307e\u305b\u3093\u3002\n\u30e9\u30a4\u30d6\u30e9\u30ea\u540d\u306b\u306f\u534a\u89d2\u6587\u5b57\u3068\u6570\u5b57\u306e\u307f\u304c\u4f7f\u7528\u53ef\u80fd\u3067\u3059\u3002\n\uff08ASCII\u6587\u5b57\u306e\u307f\u3001\u30b9\u30da\u30fc\u30b9\u3092\u9664\u304d\u307e\u3059\u3002\u6570\u5b57\u3067\u59cb\u307e\u308b\u540d\u524d\u306f\u4f7f\u3048\u307e\u305b\u3093\u3002\uff09
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=\u30e1\u30a4\u30f3\u30d5\u30a1\u30a4\u30eb\u306b\u62e1\u5f35\u5b50\u3092\u7528\u3044\u308b\u3053\u3068\u306f\u3067\u304d\u307e\u305b\u3093\u3002
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u306e\u5148\u982d\u306f\u30d4\u30ea\u30aa\u30c9\u300c.\u300d\u306b\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002
@ -1497,7 +1497,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u65e2\u306b\u300c{0}\u300d\u3068\u3044\u3046\u540d\u524d\u306e\u30d5\u30a1\u30a4\u30eb\u304c\u542b\u307e\u308c\u3066\u3044\u307e\u3059\u3002
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u3066\u3042\u3063\u305f\u30d5\u30a9\u30eb\u30c0\u304c\u7121\u304f\u306a\u3063\u3066\u3057\u307e\u3044\u307e\u3057\u305f\u3002\n\u540c\u3058\u5834\u6240\u306b\u4fdd\u5b58\u3057\u306a\u304a\u3057\u307e\u3059\u304c\u3001\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u3068\u4e00\u7dd2\u306b\u4fdd\u5b58\u3057\u3066\u3042\u3063\u305f\n\u30d5\u30a1\u30a4\u30eb\u306f\u7121\u304f\u306a\u308b\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u3002
@ -1941,4 +1941,4 @@ version\ <b>{0}</b>=\u30d0\u30fc\u30b8\u30e7\u30f3<b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}\u30dc\u30fc\u30c9{2}\u3092\u4f7f\u3046\u306b\u306f\u30d1\u30c3\u30b1\u30fc\u30b8{1}\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb\u3057\u3066\u304f\u3060\u3055\u3044\u3002

View File

@ -24,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-24 03:16+0000\n"
"Last-Translator: Jinbuhm Kim <jinbuhm.kim@gmail.com>\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"
@ -420,7 +420,7 @@ msgstr "I/O 보드에 부트로더 굽기 (이것은 시간이 걸릴 수 있습
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC가 일치하지 않습니다. 파일이 손상되었습니다. 일시적인 문제 일 수 있으니 나중에 다시 시도하십시오."
#: ../../../processing/app/Base.java:379
#, java-format
@ -525,7 +525,7 @@ msgstr "지정한 위치로 파일을 복사할 수 없습니다."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "\"{0}\" 디렉토리를 생성할 수 없습니다."
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -931,13 +931,13 @@ msgstr "예제"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "모든 보드의 예제"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr " {0} 의 예제"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -963,11 +963,11 @@ msgstr "스케치: \"{0}\" 열기 실패"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "\"{0}\" 를 \"{1}\"로 이름 바꾸기 실패"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "스케치 폴더의 이름 바꾸기 실패"
#: Editor.java:491
msgid "File"
@ -1943,7 +1943,7 @@ msgstr "파일이 \"읽기 전용\" 으로 표시됩니다.\n다른 장소에
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "죄송합니다, 폴더 \"{0}\"가 이미 존재합니다."
#: Preferences.java:115
msgid "Spanish"
@ -2014,7 +2014,7 @@ msgstr "Udp 클래스는 EthernetUdp로 이름이 변경되었습니다."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "현재 선택한 보드에 설치되지 않은 코어 '{0}'이 필요합니다."
#: Editor.java:2147
#, java-format
@ -2034,7 +2034,7 @@ msgstr "라이브러리 \"{0}\"를 사용할 수 없습니다.\n라이브러리
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "메인 파일은 확장자를 사용할 수 없습니다."
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2060,7 +2060,7 @@ msgstr "스케치 \"{0}\" 를 사용할 수 없습니다.\n스케치 이름은
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "스케치에 이미 \"{0}\"파일이 포함되어 있습니다."
#: Sketch.java:1755
msgid ""
@ -2708,4 +2708,4 @@ msgstr "{0}: 알 수 없는 패키지"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0} {2} 보드를 사용하려면 패키지 {1}을 설치하십시오."

View File

@ -19,7 +19,7 @@
# Jinbuhm Kim <jinbuhm.kim@gmail.com>, 2013,2015-2016
# Ki-hyeok Park <khpark@ateamventures.com>, 2015
# shibaboy <shibaboy@gmail.com>, 2014
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-24 03\:16+0000\nLast-Translator\: Jinbuhm Kim <jinbuhm.kim@gmail.com>\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)
@ -293,7 +293,7 @@ Burn\ Bootloader=\ubd80\ud2b8\ub85c\ub354 \uad7d\uae30
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=I/O \ubcf4\ub4dc\uc5d0 \ubd80\ud2b8\ub85c\ub354 \uad7d\uae30 (\uc774\uac83\uc740 \uc2dc\uac04\uc774 \uac78\ub9b4 \uc218 \uc788\uc2b5\ub2c8\ub2e4)\u2026
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC\uac00 \uc77c\uce58\ud558\uc9c0 \uc54a\uc2b5\ub2c8\ub2e4. \ud30c\uc77c\uc774 \uc190\uc0c1\ub418\uc5c8\uc2b5\ub2c8\ub2e4. \uc77c\uc2dc\uc801\uc778 \ubb38\uc81c \uc77c \uc218 \uc788\uc73c\ub2c8 \ub098\uc911\uc5d0 \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2ed\uc2dc\uc624.
#: ../../../processing/app/Base.java:379
#, java-format
@ -373,7 +373,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=\uc9c0\uc815\ud55c \uc704\uce58\ub85c
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"="{0}" \ub514\ub809\ud1a0\ub9ac\ub97c \uc0dd\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\uc2a4\ucf00\uce58 \ud3f4\ub354\ub97c \uc0dd\uc131\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
@ -670,12 +670,12 @@ Estonian\ (Estonia)=\uc5d0\uc2a4\ud1a0\ub2c8\uc544\uc5b4(\uc5d0\uc2a4\ud1a0\ub2c
Examples=\uc608\uc81c
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=\ubaa8\ub4e0 \ubcf4\ub4dc\uc758 \uc608\uc81c
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=\ {0} \uc758 \uc608\uc81c
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=\uc0ac\uc6a9\uc790 \uc9c0\uc815 \ub77c\uc774\ube0c\ub7ec\ub9ac\uc758 \uc608\uc81c
@ -695,10 +695,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=\uc2a4\ucf00\uce58\: "{0}" \uc5f4\uae30 \uc2e4
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"="{0}" \ub97c "{1}"\ub85c \uc774\ub984 \ubc14\uafb8\uae30 \uc2e4\ud328
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=\uc2a4\ucf00\uce58 \ud3f4\ub354\uc758 \uc774\ub984 \ubc14\uafb8\uae30 \uc2e4\ud328
#: Editor.java:491
File=\ud30c\uc77c
@ -1418,7 +1418,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=\uc8c4\uc1a1\ud569\ub2c8\ub2e4, \ud3f4\ub354 "{0}"\uac00 \uc774\ubbf8 \uc874\uc7ac\ud569\ub2c8\ub2e4.
#: Preferences.java:115
Spanish=\uc2a4\ud398\uc778\uc5b4
@ -1470,7 +1470,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server \ud074\ub798\uc2a
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp \ud074\ub798\uc2a4\ub294 EthernetUdp\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=\ud604\uc7ac \uc120\ud0dd\ud55c \ubcf4\ub4dc\uc5d0 \uc124\uce58\ub418\uc9c0 \uc54a\uc740 \ucf54\uc5b4 '{0}'\uc774 \ud544\uc694\ud569\ub2c8\ub2e4.
#: Editor.java:2147
#, java-format
@ -1481,7 +1481,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\ub77c\uc774\ube0c\ub7ec\ub9ac "{0}"\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub77c\uc774\ube0c\ub7ec\ub9ac \uc774\ub984\uc740 \uae30\ubcf8 \ubb38\uc790\uc640 \uc22b\uc790\ub97c \ud3ec\ud568\ud574\uc57c \ud569\ub2c8\ub2e4\n(\uc22b\uc790\ub85c \uc2dc\uc791\ud558\uc9c0 \uc54a\ub294 \uc2a4\ud398\uc774\uc2a4 \uc5c6\ub294 \uc544\uc2a4\ud0a4\ubb38\uc790\ub97c \uc0ac\uc6a9\ud574\uc57c\ud569\ub2c8\ub2e4)
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=\uba54\uc778 \ud30c\uc77c\uc740 \ud655\uc7a5\uc790\ub97c \uc0ac\uc6a9\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\uc774\ub984\uc740 \ub9c8\uce68\ud45c\ub85c \uc2dc\uc791\ud560 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.
@ -1495,7 +1495,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=\uc2a4\ucf00\uce58\uc5d0 \uc774\ubbf8 "{0}"\ud30c\uc77c\uc774 \ud3ec\ud568\ub418\uc5b4 \uc788\uc2b5\ub2c8\ub2e4.
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\uc2a4\ucf00\uce58 \ud3f4\ub354\uac00 \uc0ac\ub77c\uc84c\uc2b5\ub2c8\ub2e4\n\uac19\uc740 \uc7a5\uc18c\uc5d0 \ub2e4\uc2dc \uc800\uc7a5\uc744 \uc2dc\ub3c4\ud569\ub2c8\ub2e4,\n\ud558\uc9c0\ub9cc \ucf54\ub4dc\ub97c \uc81c\uc678\ud55c \ub098\uba38\uc9c0 \ubd80\ubd84\uc740 \uc783\uc5b4\ubc84\ub9bd\ub2c8\ub2e4.
@ -1939,4 +1939,4 @@ version\ <b>{0}</b>=\ubc84\uc804 <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0} {2} \ubcf4\ub4dc\ub97c \uc0ac\uc6a9\ud558\ub824\uba74 \ud328\ud0a4\uc9c0 {1}\uc744 \uc124\uce58\ud558\uc2ed\uc2dc\uc624.

View File

@ -30,8 +30,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-22 22:31+0000\n"
"Last-Translator: Grzegorz Wielgoszewski <translations@wielgoszewski.pl>\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"
@ -426,7 +426,7 @@ msgstr "Wgrywanie bootloadera do płytki I/O (może to zając kilka minut)..."
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC nie zgadza się, plik jest uszkodzony. To może być chwilowy problem, proszę spróbować później."
#: ../../../processing/app/Base.java:379
#, java-format
@ -531,7 +531,7 @@ msgstr "Nie można skopiować to odpowiedniej lokalizacji."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Nie można utworzyć folderu \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -937,13 +937,13 @@ msgstr "Przykłady"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Przykłady dla dowolnej płytki"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Przykłady dla {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -969,11 +969,11 @@ msgstr "Nie udało się odczytać szkicu: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Nie udało się zmienić nazwy z \"{0}\" na \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Nie udało się zmienić nazwy folderu szkicu"
#: Editor.java:491
msgid "File"
@ -1949,7 +1949,7 @@ msgstr "Niektóre pliki są oznaczone \"tylko do odczytu\", więc musisz \nzapis
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Niestety, folder \"{0}\" już istnieje."
#: Preferences.java:115
msgid "Spanish"
@ -2020,7 +2020,7 @@ msgstr "Klasa Udp została przemianowana na EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Wybrana płytka wymaga rdzenia '{0}', który nie jest zainstalowany."
#: Editor.java:2147
#, java-format
@ -2040,7 +2040,7 @@ msgstr "Biblioteka \"{0}\" nie może być użyta.\nNazwy bibliotek mogą zawiera
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Główny plik nie może używać rozszerzenia"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2066,7 +2066,7 @@ msgstr "Szkic \"{0}\" nie może być użyty.\nNazwy szkiców mogą zawierać tyl
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Szkic zawiera już plik o nazwie \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2714,4 +2714,4 @@ msgstr "{0}: Nieznany pakiet"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Zainstaluj ten pakiet{1}, żeby móc używać płytki {2} "

View File

@ -25,7 +25,7 @@
# Tomasz Pud\u0142o <wptom@wp.pl>, 2015-2016
# Tomasz Pud\u0142o <wptom@wp.pl>, 2015
# Voltinus <voltinusmail@gmail.com>, 2015
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-22 22\:31+0000\nLast-Translator\: Grzegorz Wielgoszewski <translations@wielgoszewski.pl>\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)
@ -299,7 +299,7 @@ Burn\ Bootloader=Wypal bootloader
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Wgrywanie bootloadera do p\u0142ytki I/O (mo\u017ce to zaj\u0105c kilka minut)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC nie zgadza si\u0119, plik jest uszkodzony. To mo\u017ce by\u0107 chwilowy problem, prosz\u0119 spr\u00f3bowa\u0107 p\u00f3\u017aniej.
#: ../../../processing/app/Base.java:379
#, java-format
@ -379,7 +379,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Nie mo\u017cna skopiowa\u0107 to odpo
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Nie mo\u017cna utworzy\u0107 folderu "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Nie mo\u017cna utworzy\u0107 folderu szkicu.
@ -676,12 +676,12 @@ Estonian\ (Estonia)=esto\u0144ski (Estonia)
Examples=Przyk\u0142ady
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=Przyk\u0142ady dla dowolnej p\u0142ytki
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=Przyk\u0142ady dla {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Przyk\u0142ady z niestandardowych bibliotek
@ -701,10 +701,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Nie uda\u0142o si\u0119 odczyta\u0107 szkicu\:
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=Nie uda\u0142o si\u0119 zmieni\u0107 nazwy z "{0}" na "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Nie uda\u0142o si\u0119 zmieni\u0107 nazwy folderu szkicu
#: Editor.java:491
File=Plik
@ -1424,7 +1424,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Niestety, folder "{0}" ju\u017c istnieje.
#: Preferences.java:115
Spanish=hiszpa\u0144ski
@ -1476,7 +1476,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Klasa Server zosta\u0142
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Klasa Udp zosta\u0142a przemianowana na EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=Wybrana p\u0142ytka wymaga rdzenia '{0}', kt\u00f3ry nie jest zainstalowany.
#: Editor.java:2147
#, java-format
@ -1487,7 +1487,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Biblioteka "{0}" nie mo\u017ce by\u0107 u\u017cyta.\nNazwy bibliotek mog\u0105 zawiera\u0107 tylko podstawowe litery i cyfry.\n(Tylko ASCII bez spacji, ponadto nie mo\u017ce zaczyna\u0107 si\u0119 cyfr\u0105).
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=G\u0142\u00f3wny plik nie mo\u017ce u\u017cywa\u0107 rozszerzenia
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Nazwa nie mo\u017ce zaczyna\u0107 si\u0119 od kropki.
@ -1501,7 +1501,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Szkic zawiera ju\u017c plik o nazwie "{0}"
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Folder szkicu znik\u0142.\nSpr\u00f3buj\u0119 zapisa\u0107 ponownie w tej samej lokalizacji,,\nale wszystko opr\u00f3cz kodu zniknie.
@ -1945,4 +1945,4 @@ version\ <b>{0}</b>=wersja <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}Zainstaluj ten pakiet{1}, \u017ceby m\u00f3c u\u017cywa\u0107 p\u0142ytki {2}

View File

@ -24,6 +24,7 @@
# Lucas Pierin <lucasmp95@yahoo.com.br>, 2016
# Marcelo Bitencourt <mwbit@hotmail.com>, 2016
# Philipe Rabelo <philipe_elvis_preslei@hotmail.com>, 2013
# Radamés Ajna <radamajna@gmail.com>, 2016
# Rafael H L Moretti <rafael.moretti@gmail.com>, 2014
# Tiago Goto Sala, 2014
# Walter Souza <wsouza@zipmail.com.br>, 2016
@ -32,8 +33,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-11-28 16:40+0000\n"
"Last-Translator: Radamés Ajna <radamajna@gmail.com>\n"
"Language-Team: Portuguese (Brazil) (http://www.transifex.com/mbanzi/arduino-ide-15/language/pt_BR/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -59,12 +60,12 @@ msgstr "Usado: {0}"
msgid ""
"'Keyboard' not found. Does your sketch include the line '#include "
"<Keyboard.h>'?"
msgstr "'Teclado' não encontrado. Existe a linha '#include <Keyboard.h>' no seu sketch?"
msgstr "'Teclado' não encontrado. A linha '#include <Keyboard.h>' existe no seu sketch?"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
msgid ""
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
msgstr "'Mouse' não encontrado. Existe a linha '#include <Mouse.h>' no seu sketch?"
msgstr "'Mouse' não encontrado. A linha '#include <Mouse.h>' existe no seu sketch?"
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
msgid ""
@ -116,7 +117,7 @@ msgstr "Uma biblioteca chamada {0} já existe"
msgid ""
"A new version of Arduino is available,\n"
"would you like to visit the Arduino download page?"
msgstr "Uma nova versão do Arduino está disponível,\nvocê gostaria de abrir a página de Download?"
msgstr "Uma nova versão do Arduino está disponível,\nvocê gostaria de abrir a página para download?"
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
#, java-format
@ -125,7 +126,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 "Um subdiretório do seu projeto não é uma biblioteca válida"
msgstr "Uma subpasta do seu projeto não é uma biblioteca válida"
#: Editor.java:1116
msgid "About Arduino"
@ -145,11 +146,11 @@ msgstr "Adicionar Arquivo..."
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73
msgid "Additional Boards Manager URLs"
msgstr "URLs Adicionais de Gerenciadores de Placas"
msgstr "URLs Adicionais para Gerenciadores de Placas"
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268
msgid "Additional Boards Manager URLs: "
msgstr "URLs Adicionais de Gerenciadores de Placas:"
msgstr "URLs Adicionais para Gerenciadores de Placas:"
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
@ -170,11 +171,11 @@ 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 "Um erro ocorreu ao tentar corrigir a codificação do arquivo.\nNão tente salvar este sketch pois ele pode ser sobrescrever a\nversão antiga. Use Abrir para reabrir o sketch e tente novamente.\n"
msgstr "Um erro ocorreu ao tentar corrigir a codificação do arquivo.\nNão tente salvar este sketch pois ele pode sobrescrever a\nversão antiga. Use Abrir para reabrir o sketch e tente novamente.\n"
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
msgid "An error occurred while updating libraries index!"
msgstr "Ocorreu um erro durante a atualização do índice bibliotecas!"
msgstr "Ocorreu um erro durante a atualização do índice de bibliotecas!"
#: ../../../processing/app/BaseNoGui.java:528
msgid "An error occurred while uploading the sketch"
@ -214,13 +215,13 @@ msgstr "Arquivar sketch como:"
#: tools/Archiver.java:139
msgid "Archive sketch canceled."
msgstr "Arquivo de sketch cancelado."
msgstr "Arquivo do sketch cancelado."
#: tools/Archiver.java:75
msgid ""
"Archiving the sketch has been canceled because\n"
"the sketch couldn't save properly."
msgstr "O arquivo do sketch foi cancelado porque\no sketch não pôde ser salvo corretamente."
msgstr "Arquivo do sketch foi cancelado porque\no sketch não pôde ser salvo corretamente."
#: ../../../../../arduino-core/src/processing/app/I18n.java:24
msgid "Arduino"
@ -244,13 +245,13 @@ msgstr "Arduino só pode abrir seus próprios sketches\ne outros arquivos termin
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your settings."
msgstr "O Arduino não pode rodar porque não consegue \\n criar uma pasta para armazenar as suas configurações."
msgstr "O Arduino não pode rodar porque não consegue\ncriar uma pasta para armazenar as suas configurações."
#: Base.java:1889
msgid ""
"Arduino cannot run because it could not\n"
"create a folder to store your sketchbook."
msgstr "O Arduino não pode rodar porque não consegue \\n criar uma pasta para armazenar as suas sketchbooks."
msgstr "O Arduino não pode rodar porque não consegue\ncriar uma pasta para armazenar os seus sketchbooks."
#: ../../../processing/app/EditorStatus.java:471
msgid "Arduino: "
@ -428,7 +429,7 @@ msgstr "Gravando o bootloader na placa de E/S (isso pode demorar um tempinho)...
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC não corresponde, o arquivo está corrompido. Pode ser um problema temporário, tente novamente mais tarde."
#: ../../../processing/app/Base.java:379
#, java-format
@ -503,7 +504,7 @@ msgstr "Compilando sketch..."
#: ../../../../../arduino-core/src/processing/app/I18n.java:27
msgid "Contributed"
msgstr "Contribuiu"
msgstr "Contribuído"
#: Editor.java:1157 Editor.java:2707
msgid "Copy"
@ -533,7 +534,7 @@ msgstr "Não foi possível copiar para uma localização apropriada."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Não foi possível criar a pasta \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -939,13 +940,13 @@ msgstr "Exemplos"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Exemplos para qualquer placa"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Exemplos para {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -971,11 +972,11 @@ msgstr "Falha ao abrir o rascunho: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Falha ao renomear \"{0}\" to \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Falha ao renomear pasta do sketch"
#: Editor.java:491
msgid "File"
@ -1138,11 +1139,11 @@ msgstr "Ignorar maiúsculização"
#: Base.java:1058
msgid "Ignoring bad library name"
msgstr "Ignorando nome inapropriado para Biblioteca."
msgstr "Ignorando nome incorreto para biblioteca"
#: Base.java:1436
msgid "Ignoring sketch with bad name"
msgstr "Ignorando sketch com nome inapropriado"
msgstr "Ignorando sketch com nome incorreto"
#: ../../../processing/app/Sketch.java:736
msgid ""
@ -1457,7 +1458,7 @@ msgstr "Norueguês (Bokmål)"
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
"for tips on reducing your footprint."
msgstr "Memória insuficiente. Veja http://www.arduino.cc/en/Guide/Troubleshooting#size para dicas de como reduzir o tamanho de seu código."
msgstr "Memória insuficiente. Veja http://www.arduino.cc/en/Guide/Troubleshooting#size para dicas de como reduzir o tamanho do seu código."
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
#: Editor.java:2145 Editor.java:2465
@ -1660,7 +1661,7 @@ msgstr "Sair"
#: ../../../../../app/src/processing/app/Base.java:1233
msgid "RETIRED"
msgstr "RETIRADO"
msgstr "DESCONTINUADO"
#: ../../../../../arduino-core/src/processing/app/I18n.java:26
msgid "Recommended"
@ -1715,7 +1716,7 @@ msgstr "Substituir com:"
#: ../../../../../arduino-core/src/processing/app/I18n.java:28
msgid "Retired"
msgstr "Removido"
msgstr "Descontinuado"
#: Preferences.java:113
msgid "Romanian"
@ -1925,7 +1926,7 @@ msgstr "Caminho do Sketchbook não foi definido"
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
msgid "Skipping contributed index file {0}, parsing error occured:"
msgstr ""
msgstr "Ignorando o arquivo contribuído com index {0}, ocorreu um erro de sintaxe:"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
@ -1951,7 +1952,7 @@ msgstr "Alguns arquivos são marcados como \"somente-leitura\",\nentão você te
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Sinto muito, a pasta \"{0}\" já existe."
#: Preferences.java:115
msgid "Spanish"
@ -2022,7 +2023,7 @@ msgstr "A classe Udp foi renomeada para EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "A placa selecionada precisa do núcleo '{0}' que não está instalado."
#: Editor.java:2147
#, java-format
@ -2042,7 +2043,7 @@ msgstr "A Biblioteca \"{0}\" não pode ser usada. Os nomes de Biblioteca devem c
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "O arquivo principal não pode usar uma extensão"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2068,7 +2069,7 @@ msgstr "O sketch \"{0}\" não pode ser usado.\nNomes de sketches devem conter so
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "O sketch já contém arquivo com o nome \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2716,4 +2717,4 @@ msgstr "{0}: Pacote não identificado"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Instale o pacote{1} para usar a placa {2}"

View File

@ -24,10 +24,11 @@
# Lucas Pierin <lucasmp95@yahoo.com.br>, 2016
# Marcelo Bitencourt <mwbit@hotmail.com>, 2016
# Philipe Rabelo <philipe_elvis_preslei@hotmail.com>, 2013
# Radam\u00e9s Ajna <radamajna@gmail.com>, 2016
# Rafael H L Moretti <rafael.moretti@gmail.com>, 2014
# Tiago Goto Sala, 2014
# Walter Souza <wsouza@zipmail.com.br>, 2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-11-28 16\:40+0000\nLast-Translator\: Radam\u00e9s Ajna <radamajna@gmail.com>\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)
@ -41,10 +42,10 @@
\ Used\:\ {0}=Usado\: {0}
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?='Teclado' n\u00e3o encontrado. Existe a linha '\#include <Keyboard.h>' no seu sketch?
'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?='Teclado' n\u00e3o encontrado. A linha '\#include <Keyboard.h>' existe no seu sketch?
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?='Mouse' n\u00e3o encontrado. Existe a linha '\#include <Mouse.h>' no seu sketch?
'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?='Mouse' n\u00e3o encontrado. A linha '\#include <Mouse.h>' existe no seu sketch?
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=A pasta 'arch' n\u00e3o \u00e9 mais suportada\! Para mais informa\u00e7\u00f5es, acesse http\://goo.gl/gfFJzU
@ -76,14 +77,14 @@ A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Uma pasta chamad
A\ library\ named\ {0}\ already\ exists=Uma biblioteca chamada {0} j\u00e1 existe
#: UpdateCheck.java:103
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Uma nova vers\u00e3o do Arduino est\u00e1 dispon\u00edvel,\nvoc\u00ea gostaria de abrir a p\u00e1gina de Download?
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Uma nova vers\u00e3o do Arduino est\u00e1 dispon\u00edvel,\nvoc\u00ea gostaria de abrir a p\u00e1gina para download?
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
#, java-format
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=Um subdiret\u00f3rio do seu projeto n\u00e3o \u00e9 uma biblioteca v\u00e1lida
A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Uma subpasta do seu projeto n\u00e3o \u00e9 uma biblioteca v\u00e1lida
#: Editor.java:1116
About\ Arduino=Sobre Arduino
@ -98,10 +99,10 @@ Add\ .ZIP\ Library...=Adicionar biblioteca .ZIP
Add\ File...=Adicionar Arquivo...
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73
Additional\ Boards\ Manager\ URLs=URLs Adicionais de Gerenciadores de Placas
Additional\ Boards\ Manager\ URLs=URLs Adicionais para Gerenciadores de Placas
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268
Additional\ Boards\ Manager\ URLs\:\ =URLs Adicionais de Gerenciadores de Placas\:
Additional\ Boards\ Manager\ URLs\:\ =URLs Adicionais para Gerenciadores de Placas\:
#: ../../../../../app/src/processing/app/Preferences.java:161
Afrikaans=Afrikaans
@ -115,10 +116,10 @@ Albanian=Alban\u00eas
All=Todos
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Um erro ocorreu ao tentar corrigir a codifica\u00e7\u00e3o do arquivo.\nN\u00e3o tente salvar este sketch pois ele pode ser sobrescrever a\nvers\u00e3o antiga. Use Abrir para reabrir o sketch e tente novamente.\n
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Um erro ocorreu ao tentar corrigir a codifica\u00e7\u00e3o do arquivo.\nN\u00e3o tente salvar este sketch pois ele pode sobrescrever a\nvers\u00e3o antiga. Use Abrir para reabrir o sketch e tente novamente.\n
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
An\ error\ occurred\ while\ updating\ libraries\ index\!=Ocorreu um erro durante a atualiza\u00e7\u00e3o do \u00edndice bibliotecas\!
An\ error\ occurred\ while\ updating\ libraries\ index\!=Ocorreu um erro durante a atualiza\u00e7\u00e3o do \u00edndice de bibliotecas\!
#: ../../../processing/app/BaseNoGui.java:528
An\ error\ occurred\ while\ uploading\ the\ sketch=Ocorreu um erro enquanto o sketch era carregado
@ -147,10 +148,10 @@ Archive\ Sketch=Arquivar Sketch
Archive\ sketch\ as\:=Arquivar sketch como\:
#: tools/Archiver.java:139
Archive\ sketch\ canceled.=Arquivo de sketch cancelado.
Archive\ sketch\ canceled.=Arquivo do sketch cancelado.
#: tools/Archiver.java:75
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=O arquivo do sketch foi cancelado porque\no sketch n\u00e3o p\u00f4de ser salvo corretamente.
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arquivo do sketch foi cancelado porque\no sketch n\u00e3o p\u00f4de ser salvo corretamente.
#: ../../../../../arduino-core/src/processing/app/I18n.java:24
Arduino=Arduino
@ -165,10 +166,10 @@ Arduino\ AVR\ Boards=Placas Arduino AVR
Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino s\u00f3 pode abrir seus pr\u00f3prios sketches\ne outros arquivos terminados por .ino ou .pde
#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue \\n criar uma pasta para armazenar as suas configura\u00e7\u00f5es.
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue\ncriar uma pasta para armazenar as suas configura\u00e7\u00f5es.
#: Base.java:1889
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue \\n criar uma pasta para armazenar as suas sketchbooks.
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=O Arduino n\u00e3o pode rodar porque n\u00e3o consegue\ncriar uma pasta para armazenar os seus sketchbooks.
#: ../../../processing/app/EditorStatus.java:471
Arduino\:\ =Arduino\:
@ -301,7 +302,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)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC n\u00e3o corresponde, o arquivo est\u00e1 corrompido. Pode ser um problema tempor\u00e1rio, tente novamente mais tarde.
#: ../../../processing/app/Base.java:379
#, java-format
@ -358,7 +359,7 @@ Compiler\ warnings\:\ =Avisos do compilador\:
Compiling\ sketch...=Compilando sketch...
#: ../../../../../arduino-core/src/processing/app/I18n.java:27
Contributed=Contribuiu
Contributed=Contribu\u00eddo
#: Editor.java:1157 Editor.java:2707
Copy=Copiar
@ -381,7 +382,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=N\u00e3o foi poss\u00edvel copiar par
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=N\u00e3o foi poss\u00edvel criar a pasta "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=N\u00e3o foi poss\u00edvel criar a pasta de sketch.
@ -678,12 +679,12 @@ Estonian\ (Estonia)=Estoniano (Est\u00f4nia)
Examples=Exemplos
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=Exemplos para qualquer placa
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=Exemplos para {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Exemplos de Bibliotecas Personalizadas
@ -703,10 +704,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Falha ao abrir o rascunho\: "{0}"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=Falha ao renomear "{0}" to "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Falha ao renomear pasta do sketch
#: Editor.java:491
File=Arquivo
@ -825,10 +826,10 @@ INCOMPATIBLE=IMCOMPAT\u00cdVEL
Ignore\ Case=Ignorar mai\u00fasculiza\u00e7\u00e3o
#: Base.java:1058
Ignoring\ bad\ library\ name=Ignorando nome inapropriado para Biblioteca.
Ignoring\ bad\ library\ name=Ignorando nome incorreto para biblioteca
#: Base.java:1436
Ignoring\ sketch\ with\ bad\ name=Ignorando sketch com nome inapropriado
Ignoring\ sketch\ with\ bad\ name=Ignorando sketch com nome incorreto
#: ../../../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?=No Arduino 1.0, a extens\u00e3o de arquivo padr\u00e3o mudou de\n.pde para .ino Novos sketches (incluindo aqueles criados\npelo comando "Salvar como") usar\u00e3o a nova extens\u00e3o.\nA extens\u00e3o de sketches existentes ser\u00e1 atualizada ao\nsalvar, mas voc\u00ea pode desabilitar isto no di\u00e1logo de \nPrefer\u00eancias.\n\nSalvar e atualizar sua extens\u00e3o?
@ -1062,7 +1063,7 @@ None=Nenhum
Norwegian\ Bokm\u00e5l=Noruegu\u00eas (Bokm\u00e5l)
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f3ria insuficiente. Veja http\://www.arduino.cc/en/Guide/Troubleshooting\#size para dicas de como reduzir o tamanho de seu c\u00f3digo.
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 do seu c\u00f3digo.
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
#: Editor.java:2145 Editor.java:2465
@ -1214,7 +1215,7 @@ Progress\ {0}=Progresso {0}
Quit=Sair
#: ../../../../../app/src/processing/app/Base.java:1233
RETIRED=RETIRADO
RETIRED=DESCONTINUADO
#: ../../../../../arduino-core/src/processing/app/I18n.java:26
Recommended=Recomendado
@ -1256,7 +1257,7 @@ Replace\ the\ existing\ version\ of\ {0}?=Substituir a vers\u00e3o existente de
Replace\ with\:=Substituir com\:
#: ../../../../../arduino-core/src/processing/app/I18n.java:28
Retired=Removido
Retired=Descontinuado
#: Preferences.java:113
Romanian=Romeno
@ -1410,7 +1411,7 @@ Sketchbook\ path\ not\ defined=Caminho do Sketchbook n\u00e3o foi definido
#: ../../../../../arduino-core//src/cc/arduino/contributions/packages/ContributionsIndexer.java:96
#, java-format
!Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=
Skipping\ contributed\ index\ file\ {0},\ parsing\ error\ occured\:=Ignorando o arquivo contribu\u00eddo com index {0}, ocorreu um erro de sintaxe\:
#: ../../../../../app/src/processing/app/Preferences.java:185
Slovak=Eslovaco
@ -1426,7 +1427,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Sinto muito, a pasta "{0}" j\u00e1 existe.
#: Preferences.java:115
Spanish=Espanhol
@ -1478,7 +1479,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=A classe Server foi reno
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=A classe Udp foi renomeada para EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=A placa selecionada precisa do n\u00facleo '{0}' que n\u00e3o est\u00e1 instalado.
#: Editor.java:2147
#, java-format
@ -1489,7 +1490,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=A Biblioteca "{0}" n\u00e3o pode ser usada. Os nomes de Biblioteca devem conter apenas letras b\u00e1sicas e n\u00fameros. \\n(Apenas ASCII, sem espa\u00e7os. N\u00e3o pode come\u00e7ar com um n\u00famero)
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=O arquivo principal n\u00e3o pode usar uma extens\u00e3o
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=O nome n\u00e3o pode come\u00e7ar com um ponto-final.
@ -1503,7 +1504,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=O sketch j\u00e1 cont\u00e9m arquivo com o nome "{0}"
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=A pasta do sketch desapareceu.\nTentarei salvar novamente no mesmo local,\nmas qualquer coisa al\u00e9m do c\u00f3digo ser\u00e1 perdida.
@ -1947,4 +1948,4 @@ version\ <b>{0}</b>=vers\u00e3o <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}Instale o pacote{1} para usar a placa {2}

View File

@ -27,8 +27,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-12-25 14:01+0000\n"
"Last-Translator: Pop Gheorghe <office@roroid.ro>\n"
"Language-Team: Romanian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ro/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"

View File

@ -22,7 +22,7 @@
# Pop Gheorghe <office@roroid.ro>, 2013
# Pop Gheorghe <office@roroid.ro>, 2013-2015
# Vl\u0103du\u0163 Ilie <vladilie94@gmail.com>, 2015
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-12-25 14\:01+0000\nLast-Translator\: Pop Gheorghe <office@roroid.ro>\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)

View File

@ -34,8 +34,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-12-02 20:19+0000\n"
"Last-Translator: AlexL <loginov.alex.valer@gmail.com>\n"
"Language-Team: Russian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ru/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -430,7 +430,7 @@ msgstr "Запись Загрузчика в плату (это может за
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC не совпадает, файл повреждён. Это может быть временная проблема, пожалуйста, повторите попытку позже."
#: ../../../processing/app/Base.java:379
#, java-format
@ -535,7 +535,7 @@ msgstr "Невозможно скопировать в правильное ме
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Не удалось создать папку \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -941,13 +941,13 @@ msgstr "Примеры"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Примеры для любой платы"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Примеры для {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -973,11 +973,11 @@ msgstr "Ошибка при открытии скетча: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Ошибка при переименовании \"{0}\" в \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Ошибка при переименовании папки скетчей"
#: Editor.java:491
msgid "File"
@ -1953,7 +1953,7 @@ msgstr "Некоторые файлы помечены \"только для ч
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Простите, но папка \"{0}\" уже есть."
#: Preferences.java:115
msgid "Spanish"
@ -2024,7 +2024,7 @@ msgstr "Класс Udp переименован в EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Текущая выбранная плата зависит от ядра '{0}', которое не установлено."
#: Editor.java:2147
#, java-format
@ -2044,7 +2044,7 @@ msgstr "Библиотека \"{0}\" не может быть использов
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Основной файл не может использовать расширение"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2070,7 +2070,7 @@ msgstr "Скетч \"{0}\" не может быть использован. На
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Скетч уже содержит файл с именем \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2718,4 +2718,4 @@ msgstr "{0}: Неизвестный пакет"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Установите этот пакет{1} чтобы использовать вашу {2} плату"

View File

@ -29,7 +29,7 @@
# \u041c\u0438\u0445\u0430\u0438\u043b \u0422\u0443\u0440\u0443\u0441\u043e\u0432 <god_mihail@mail.ru>, 2015
# \u0420\u0443\u0441\u043b\u0430\u043d <nasretdinov.r.r@ya.ru>, 2013
# \u042f\u043a\u043e\u0432 \u041c\u0430\u0441\u043b\u043e\u0432 <jan.s.maslov@gmail.com>, 2015
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-12-02 20\:19+0000\nLast-Translator\: AlexL <loginov.alex.valer@gmail.com>\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)
@ -303,7 +303,7 @@ Burn\ Bootloader=\u0417\u0430\u043f\u0438\u0441\u0430\u0442\u044c \u0417\u0430\u
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0417\u0430\u043f\u0438\u0441\u044c \u0417\u0430\u0433\u0440\u0443\u0437\u0447\u0438\u043a\u0430 \u0432 \u043f\u043b\u0430\u0442\u0443 (\u044d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0437\u0430\u043d\u044f\u0442\u044c \u043f\u0430\u0440\u0443 \u043c\u0438\u043d\u0443\u0442)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC \u043d\u0435 \u0441\u043e\u0432\u043f\u0430\u0434\u0430\u0435\u0442, \u0444\u0430\u0439\u043b \u043f\u043e\u0432\u0440\u0435\u0436\u0434\u0451\u043d. \u042d\u0442\u043e \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0432\u0440\u0435\u043c\u0435\u043d\u043d\u0430\u044f \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0430, \u043f\u043e\u0436\u0430\u043b\u0443\u0439\u0441\u0442\u0430, \u043f\u043e\u0432\u0442\u043e\u0440\u0438\u0442\u0435 \u043f\u043e\u043f\u044b\u0442\u043a\u0443 \u043f\u043e\u0437\u0436\u0435.
#: ../../../processing/app/Base.java:379
#, java-format
@ -383,7 +383,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=\u041d\u0435\u0432\u043e\u0437\u043c\
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=\u041d\u0435 \u0443\u0434\u0430\u043b\u043e\u0441\u044c \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=\u041d\u0435\u0432\u043e\u0437\u043c\u043e\u0436\u043d\u043e \u0441\u043e\u0437\u0434\u0430\u0442\u044c \u043f\u0430\u043f\u043a\u0443 \u0434\u043b\u044f \u0441\u043a\u0435\u0442\u0447\u0435\u0439.
@ -680,12 +680,12 @@ Estonian\ (Estonia)=\u042d\u0441\u0442\u043e\u043d\u0441\u043a\u0438\u0439 (\u04
Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u044b
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=\u041f\u0440\u0438\u043c\u0435\u0440\u044b \u0434\u043b\u044f \u043b\u044e\u0431\u043e\u0439 \u043f\u043b\u0430\u0442\u044b
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=\u041f\u0440\u0438\u043c\u0435\u0440\u044b \u0434\u043b\u044f {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=\u041f\u0440\u0438\u043c\u0435\u0440\u044b \u0438\u0437 \u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u0435\u043b\u044c\u0441\u043a\u0438\u0445 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a
@ -705,10 +705,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0438 "{0}" \u0432 "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=\u041e\u0448\u0438\u0431\u043a\u0430 \u043f\u0440\u0438 \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d\u0438\u0438 \u043f\u0430\u043f\u043a\u0438 \u0441\u043a\u0435\u0442\u0447\u0435\u0439
#: Editor.java:491
File=\u0424\u0430\u0439\u043b
@ -1428,7 +1428,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=\u041f\u0440\u043e\u0441\u0442\u0438\u0442\u0435, \u043d\u043e \u043f\u0430\u043f\u043a\u0430 "{0}" \u0443\u0436\u0435 \u0435\u0441\u0442\u044c.
#: Preferences.java:115
Spanish=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438\u0439
@ -1480,7 +1480,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u041a\u043b\u0430\u0441
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u041a\u043b\u0430\u0441\u0441 Udp \u043f\u0435\u0440\u0435\u0438\u043c\u0435\u043d\u043e\u0432\u0430\u043d \u0432 EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=\u0422\u0435\u043a\u0443\u0449\u0430\u044f \u0432\u044b\u0431\u0440\u0430\u043d\u043d\u0430\u044f \u043f\u043b\u0430\u0442\u0430 \u0437\u0430\u0432\u0438\u0441\u0438\u0442 \u043e\u0442 \u044f\u0434\u0440\u0430 '{0}', \u043a\u043e\u0442\u043e\u0440\u043e\u0435 \u043d\u0435 \u0443\u0441\u0442\u0430\u043d\u043e\u0432\u043b\u0435\u043d\u043e.
#: Editor.java:2147
#, java-format
@ -1491,7 +1491,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0411\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430 "{0}" \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0431\u044b\u0442\u044c \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u043d\u0430. \n\u0418\u043c\u0435\u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a \u0434\u043e\u043b\u0436\u043d\u044b \u0441\u043e\u0434\u0435\u0440\u0436\u0430\u0442\u044c \u0442\u043e\u043b\u044c\u043a\u043e \u0431\u0443\u043a\u0432\u044b \u0438 \u0446\u0438\u0444\u0440\u044b. \n(\u0442\u043e\u043b\u044c\u043a\u043e ASCII \u0431\u0435\u0437 \u043f\u0440\u043e\u0431\u0435\u043b\u043e\u0432) \u0438 \u043d\u0435 \u043c\u043e\u0433\u0443\u0442 \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0446\u0438\u0444\u0440\u044b
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=\u041e\u0441\u043d\u043e\u0432\u043d\u043e\u0439 \u0444\u0430\u0439\u043b \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0440\u0430\u0441\u0448\u0438\u0440\u0435\u043d\u0438\u0435
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=\u0418\u043c\u044f \u043d\u0435 \u043c\u043e\u0436\u0435\u0442 \u043d\u0430\u0447\u0438\u043d\u0430\u0442\u044c\u0441\u044f \u0441 \u0442\u043e\u0447\u043a\u0438.
@ -1505,7 +1505,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=\u0421\u043a\u0435\u0442\u0447 \u0443\u0436\u0435 \u0441\u043e\u0434\u0435\u0440\u0436\u0438\u0442 \u0444\u0430\u0439\u043b \u0441 \u0438\u043c\u0435\u043d\u0435\u043c "{0}"
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u041f\u0430\u043f\u043a\u0430 \u0441\u043a\u0435\u0442\u0447\u0435\u0439 \u0438\u0441\u0447\u0435\u0437\u043b\u0430. \u0411\u0443\u0434\u0435\u0442 \u043f\u043e\u043f\u044b\u0442\u043a\u0430 \u043f\u043e\u0432\u0442\u043e\u0440\u043d\u043e \u0441\u043e\u0445\u0440\u0430\u043d\u0438\u0442\u044c \u0432 \u0442\u043e\u043c \u0436\u0435 \u043c\u0435\u0441\u0442\u0435, \u043d\u043e \u0432\u0441\u0451, \u043a\u0440\u043e\u043c\u0435 \u043a\u043e\u0434\u0430, \u0431\u0443\u0434\u0435\u0442 \u043f\u043e\u0442\u0435\u0440\u044f\u043d\u043e.
@ -1949,4 +1949,4 @@ version\ <b>{0}</b>=\u0432\u0435\u0440\u0441\u0438\u044f <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}\u0423\u0441\u0442\u0430\u043d\u043e\u0432\u0438\u0442\u0435 \u044d\u0442\u043e\u0442 \u043f\u0430\u043a\u0435\u0442{1} \u0447\u0442\u043e\u0431\u044b \u0438\u0441\u043f\u043e\u043b\u044c\u0437\u043e\u0432\u0430\u0442\u044c \u0432\u0430\u0448\u0443 {2} \u043f\u043b\u0430\u0442\u0443

View File

@ -20,8 +20,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: 2016-11-21 17:09+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2016-12-16 21:38+0000\n"
"Last-Translator: Zdeno Sekerák <etrsek@gmail.com>\n"
"Language-Team: Slovak (http://www.transifex.com/mbanzi/arduino-ide-15/language/sk/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -416,7 +416,7 @@ msgstr "Vypaľujem zavádzač do I/O Board /vývojovej dosky/ (chviľku to potrv
msgid ""
"CRC doesn't match, file is corrupted. It may be a temporary problem, please "
"retry later."
msgstr ""
msgstr "CRC je nesprávne, súbor je poškodený. Môže se jednat o dočasný problém, skúste to neskôr znova."
#: ../../../processing/app/Base.java:379
#, java-format
@ -521,7 +521,7 @@ msgstr "Nemôžem kopírovať do správneho umiestnenia."
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
msgid "Could not create directory \"{0}\""
msgstr ""
msgstr "Nemôžem vytvoriť adresár \"{0}\""
#: Editor.java:2179
msgid "Could not create the sketch folder."
@ -927,13 +927,13 @@ msgstr "Príklady"
#: ../../../../../app/src/processing/app/Base.java:1185
msgid "Examples for any board"
msgstr ""
msgstr "Príklady pre rôzne dosky"
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
msgid "Examples for {0}"
msgstr ""
msgstr "Príklady pre {0}"
#: ../../../../../app/src/processing/app/Base.java:1244
msgid "Examples from Custom Libraries"
@ -959,11 +959,11 @@ msgstr "Nepodarilo sa otvoriť projekt: \"{0}\""
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
msgid "Failed to rename \"{0}\" to \"{1}\""
msgstr ""
msgstr "Nastala chyba pri premenovaní \"{0}\" na \"{1}\""
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
msgid "Failed to rename sketch folder"
msgstr ""
msgstr "Nastala chyba pri premenovaní projektu"
#: Editor.java:491
msgid "File"
@ -1939,7 +1939,7 @@ msgstr "Niektoré súbory sú označené \"Len pre čítanie\", preto \nuložte
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
msgid "Sorry, the folder \"{0}\" already exists."
msgstr ""
msgstr "Adresár \"{0}\" už existuje."
#: Preferences.java:115
msgid "Spanish"
@ -2010,7 +2010,7 @@ msgstr "Trieda Udp bola premenovaná na EthernetUdp."
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
msgid "The current selected board needs the core '{0}' that is not installed."
msgstr ""
msgstr "Aktuálne vybraná doska potrebuje jadro '{0}' ktoré nieje nainštalované."
#: Editor.java:2147
#, java-format
@ -2030,7 +2030,7 @@ msgstr "Knižnica \"{0}\" nemôže byť použitá.\nNázov knižnice musí obsah
#: ../../../../../app/src/processing/app/SketchController.java:170
msgid "The main file cannot use an extension"
msgstr ""
msgstr "Hlavný súbor nemôže mať príponu"
#: Sketch.java:356
msgid "The name cannot start with a period."
@ -2056,7 +2056,7 @@ msgstr "Názov projektu \"{0}\" nieje možné použiť.\nNázov projektu môže
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
msgid "The sketch already contains a file named \"{0}\""
msgstr ""
msgstr "Projekt už obsahuje súbor s menom \"{0}\""
#: Sketch.java:1755
msgid ""
@ -2704,4 +2704,4 @@ msgstr "{0}: Neznámy rozširujúci balík"
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
msgid "{0}Install this package{1} to use your {2} board"
msgstr ""
msgstr "{0}Inštaluj tento balíček{1} pre použitie dosky {2}"

View File

@ -15,7 +15,7 @@
# Translators:
# Translators:
# Zdeno Seker\u00e1k <etrsek@gmail.com>, 2015-2016
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2016-11-21 17\:09+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\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\: 2016-12-16 21\:38+0000\nLast-Translator\: Zdeno Seker\u00e1k <etrsek@gmail.com>\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)
@ -289,7 +289,7 @@ Burn\ Bootloader=Vyp\u00e1li\u0165 zav\u00e1dza\u010d (bootloader)
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Vypa\u013eujem zav\u00e1dza\u010d do I/O Board /v\u00fdvojovej dosky/ (chvi\u013eku to potrv\u00e1)...
#: ../../../../../arduino-core/src/cc/arduino/contributions/DownloadableContributionsDownloader.java:91
!CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=
CRC\ doesn't\ match,\ file\ is\ corrupted.\ It\ may\ be\ a\ temporary\ problem,\ please\ retry\ later.=CRC je nespr\u00e1vne, s\u00fabor je po\u0161koden\u00fd. M\u00f4\u017ee se jednat o do\u010dasn\u00fd probl\u00e9m, sk\u00faste to nesk\u00f4r znova.
#: ../../../processing/app/Base.java:379
#, java-format
@ -369,7 +369,7 @@ Could\ not\ copy\ to\ a\ proper\ location.=Nem\u00f4\u017eem kop\u00edrova\u0165
#: ../../../../../arduino-core/src/processing/app/Sketch.java:342
#, java-format
!Could\ not\ create\ directory\ "{0}"=
Could\ not\ create\ directory\ "{0}"=Nem\u00f4\u017eem vytvori\u0165 adres\u00e1r "{0}"
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Nem\u00f4\u017eem vytvori\u0165 adres\u00e1r pre projekty.
@ -666,12 +666,12 @@ Estonian\ (Estonia)=Est\u00f3n\u0161tina (Est\u00f3nsko)
Examples=Pr\u00edklady
#: ../../../../../app/src/processing/app/Base.java:1185
!Examples\ for\ any\ board=
Examples\ for\ any\ board=Pr\u00edklady pre r\u00f4zne dosky
#: ../../../../../app/src/processing/app/Base.java:1205
#: ../../../../../app/src/processing/app/Base.java:1216
#, java-format
!Examples\ for\ {0}=
Examples\ for\ {0}=Pr\u00edklady pre {0}
#: ../../../../../app/src/processing/app/Base.java:1244
Examples\ from\ Custom\ Libraries=Pr\u00edklady z Vlastn\u00fdch Kni\u017en\u00edc
@ -691,10 +691,10 @@ Failed\ to\ open\ sketch\:\ "{0}"=Nepodarilo sa otvori\u0165 projekt\: "{0}"
#: ../../../../../arduino-core/src/processing/app/SketchFile.java:183
#, java-format
!Failed\ to\ rename\ "{0}"\ to\ "{1}"=
Failed\ to\ rename\ "{0}"\ to\ "{1}"=Nastala chyba pri premenovan\u00ed "{0}" na "{1}"
#: ../../../../../arduino-core/src/processing/app/Sketch.java:298
!Failed\ to\ rename\ sketch\ folder=
Failed\ to\ rename\ sketch\ folder=Nastala chyba pri premenovan\u00ed projektu
#: Editor.java:491
File=S\u00fabor
@ -1414,7 +1414,7 @@ Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ ske
#: ../../../../../arduino-core/src/processing/app/Sketch.java:246
#, java-format
!Sorry,\ the\ folder\ "{0}"\ already\ exists.=
Sorry,\ the\ folder\ "{0}"\ already\ exists.=Adres\u00e1r "{0}" u\u017e existuje.
#: Preferences.java:115
Spanish=\u0160paniel\u0161tina
@ -1466,7 +1466,7 @@ The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Trieda Server bola preme
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Trieda Udp bola premenovan\u00e1 na EthernetUdp.
#: ../../../../../arduino-core/src/processing/app/BaseNoGui.java:177
!The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=
The\ current\ selected\ board\ needs\ the\ core\ '{0}'\ that\ is\ not\ installed.=Aktu\u00e1lne vybran\u00e1 doska potrebuje jadro '{0}' ktor\u00e9 nieje nain\u0161talovan\u00e9.
#: Editor.java:2147
#, java-format
@ -1477,7 +1477,7 @@ The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreat
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)=Kni\u017enica "{0}" nem\u00f4\u017ee by\u0165 pou\u017eit\u00e1.\nN\u00e1zov kni\u017enice mus\u00ed obsahova\u0165 iba p\u00edsmen\u00e1 bez diakritiky a \u010d\u00edslice.\n(ASCII znaky, bez medzier, a nem\u00f4\u017ee za\u010d\u00edna\u0165 \u010d\u00edslom)
#: ../../../../../app/src/processing/app/SketchController.java:170
!The\ main\ file\ cannot\ use\ an\ extension=
The\ main\ file\ cannot\ use\ an\ extension=Hlavn\u00fd s\u00fabor nem\u00f4\u017ee ma\u0165 pr\u00edponu
#: Sketch.java:356
The\ name\ cannot\ start\ with\ a\ period.=Meno nem\u00f4\u017ee za\u010d\u00edna\u0165 bodkou.
@ -1491,7 +1491,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: ../../../../../arduino-core/src/processing/app/Sketch.java:272
#, java-format
!The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=
The\ sketch\ already\ contains\ a\ file\ named\ "{0}"=Projekt u\u017e obsahuje s\u00fabor s menom "{0}"
#: 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.=Projekt zmizol.\nPok\u00fasim sa znovu ulo\u017ei\u0165 na rovnak\u00e9 miesto,\nale okrem k\u00f3du bude v\u0161etko ostatn\u00e9 straten\u00e9\!
@ -1935,4 +1935,4 @@ version\ <b>{0}</b>=verzia <b>{0}</b>
#: ../../../../../arduino-core/src/processing/app/Platform.java:223
#, java-format
!{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board=
{0}Install\ this\ package{1}\ to\ use\ your\ {2}\ board={0}In\u0161taluj tento bal\u00ed\u010dek{1} pre pou\u017eitie dosky {2}

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
#vim:set fileencoding=utf-8 sw=2 expandtab
from transifex import Transifex

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
#vim:set fileencoding=utf-8 sw=2 expandtab
from transifex import Transifex

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
#vim:set fileencoding=utf-8 sw=2 expandtab
import update

View File

@ -1,4 +1,4 @@
#!/usr/bin/env python
#!/usr/bin/env python2
#vim:set fileencoding=utf-8 sw=2 expandtab
def unquote(s):

View File

@ -28,7 +28,7 @@ catalog()
update()
{
echo -e "Updating $1...\c"
cat "$catalog" | python python/update.py "$1"
cat "$catalog" | python2 python/update.py "$1"
msgcat -p "$1" > $(basename "$1" .po).properties
# msgcat may complain about "CHARSET" if you didn't replace "CHARSET" with
# your correct charset.

View File

@ -0,0 +1 @@
5fe2fc564da8f0a822124c0f02c18c48e1cacab1

View File

@ -1 +0,0 @@
ed66923097f23cfdf305ceb5aca99159462611c3

1
build/SD-1.1.0.zip.sha Normal file
View File

@ -0,0 +1 @@
9b16bafb44e485f40e7b2dbf9887142e41b90c8f

1
build/SD-1.1.1.zip.sha Normal file
View File

@ -0,0 +1 @@
fffba57afd890a8a9efca7ac8b6bd8ed3c2dd25a

View File

@ -1 +0,0 @@
dd0cf9da8d1f040c4279ae05d82aac58471a4e38

View File

@ -1 +0,0 @@
1f6dd5f3e043fdf9efba7020a99528b33e399789

View File

@ -0,0 +1 @@
4b2a788a5be3b927245d5fd9aecf6a8090185ebb

View File

@ -1 +0,0 @@
fe04dd99cedb2ec4dcde7fc973a1586e1ec1a8e7

View File

@ -0,0 +1 @@
dcb4e45d1fa74bc498d6ca4a5a0f411db17209b3

View File

@ -0,0 +1 @@
c9a0208ccc585fcaba8165308200cbdada6bd959

View File

@ -1 +0,0 @@
c5ccdd0ffba382f8252d70a049fc9377592fee84

View File

@ -0,0 +1 @@
cbd07f8627e3d3cdd0a80fbfa82f0438852a2d8e

View File

@ -1 +0,0 @@
99b04ef1f8235ee31a843d4f2984a40360b6c0be

View File

@ -0,0 +1 @@
17251a697f5c8bed208892d7c34d02a33d512b70

View File

@ -85,10 +85,11 @@
<property name="portable" value="false" />
<property name="ARDUINO-BUILDER-VERSION" value="1.3.21_r1" />
<property name="LIBLISTSERIAL-VERSION" value="1.2.0" />
<property name="ARDUINO-BUILDER-VERSION" value="1.3.24" />
<property name="LIBLISTSERIAL-VERSION" value="1.4.0" />
<property name="AVRGCC-VERSION" value="4.9.2-atmel3.5.3-arduino2" />
<property name="AVRDUDE-VERSION" value="6.3.0-arduino6" />
<property name="AVRDUDE-VERSION" value="6.3.0-arduino8" />
<property name="arduinoOTA-VERSION" value="1.0.0" />
<!-- Libraries required for running arduino -->
<fileset dir=".." id="runtime.jars">
@ -177,29 +178,7 @@
<mkdir dir="${target.path}/reference"/>
<!-- Unzip documentation -->
<antcall target="unzip">
<param name="archive_file" value="shared/reference-1.6.6-3.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/reference-1.6.6-3.zip" />
<param name="final_folder" value="${target.path}/reference/www.arduino.cc" />
<param name="dest_folder" value="${target.path}/reference/" />
</antcall>
<antcall target="unzip">
<param name="archive_file" value="shared/Galileo_help_files-1.6.2.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/Galileo_help_files-1.6.2.zip" />
<param name="final_folder" value="${target.path}/reference/Galileo_help_files" />
<param name="dest_folder" value="${target.path}/reference/" />
</antcall>
<antcall target="unzip">
<param name="archive_file" value="shared/Edison_help_files-1.6.2.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/Edison_help_files-1.6.2.zip" />
<param name="final_folder" value="${target.path}/reference/Edison_help_files" />
<param name="dest_folder" value="${target.path}/reference/" />
</antcall>
<!-- Fix wrong permissions from zip file root folder -->
<chmod perm="755" dir="${target.path}/reference/Galileo_help_files" />
<chmod perm="755" dir="${target.path}/reference/Edison_help_files" />
<antcall target="assemble-docs" />
<!-- Write the revision file! -->
<echo file="${target.path}/lib/version.txt" message="${version}" />
@ -215,6 +194,32 @@
</antcall>
</target>
<target name="assemble-docs" unless="no_docs">
<!-- Unzip documentation -->
<antcall target="unzip">
<param name="archive_file" value="shared/reference-1.6.6-3.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/reference-1.6.6-3.zip" />
<param name="final_folder" value="${target.path}/reference/www.arduino.cc" />
<param name="dest_folder" value="${target.path}/reference/" />
</antcall>
<antcall target="unzip">
<param name="archive_file" value="shared/Galileo_help_files-1.6.2.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/Galileo_help_files-1.6.2.zip" />
<param name="final_folder" value="${target.path}/reference/Galileo_help_files" />
<param name="dest_folder" value="${target.path}/reference/" />
</antcall>
<antcall target="unzip">
<param name="archive_file" value="shared/Edison_help_files-1.6.2.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/Edison_help_files-1.6.2.zip" />
<param name="final_folder" value="${target.path}/reference/Edison_help_files" />
<param name="dest_folder" value="${target.path}/reference/" />
</antcall>
<!-- Fix wrong permissions from zip file root folder -->
<chmod perm="755" dir="${target.path}/reference/Galileo_help_files" />
<chmod perm="755" dir="${target.path}/reference/Edison_help_files" />
</target>
<!-- copy library folder -->
<target name="assemble-libraries" unless="light_bundle">
<copy todir="${target.path}/libraries">
@ -231,7 +236,8 @@
<download-library name="Esplora" version="1.0.4"/>
<download-library name="Mouse" version="1.0.1"/>
<download-library name="Keyboard" version="1.0.1"/>
<download-library name="SD" version="1.0.9"/>
<download-library name="SD" version="1.1.1"/>
<download-library githubuser="Adafruit" name="Adafruit_CircuitPlayground" version="1.6.4"/>
</target>
<macrodef name="download-library">
@ -363,7 +369,7 @@
<antcall target="unzip">
<param name="archive_file" value="${staging_folder}/appbundler-1.0ea-arduino4.jar.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/appbundler-1.0ea-arduino4.jar.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/appbundler-1.0ea-arduino4.jar.zip" />
<param name="final_folder" value="${staging_folder}/appbundler-1.0ea-arduino4" />
<param name="dest_folder" value="${staging_folder}/appbundler-1.0ea-arduino4" />
</antcall>
@ -448,7 +454,7 @@
<antcall target="unzip">
<param name="archive_file" value="./libastylej-2.05.1-3.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="final_folder" value="${staging_folder}/libastylej-2.05.1" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -459,28 +465,14 @@
<antcall target="unzip">
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="final_folder" value="${staging_folder}/liblistSerials-${LIBLISTSERIAL-VERSION}" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
<copy file="macosx/liblistSerials-${LIBLISTSERIAL-VERSION}/osx/liblistSerialsj.dylib" todir="macosx/work/${staging_hardware_folder}/../lib/" />
<chmod perm="755" file="macosx/work/${staging_hardware_folder}/../lib/liblistSerialsj.dylib" />
<delete dir="${staging_folder}/arduino-builder-macosx" includeemptydirs="true"/>
<mkdir dir="${staging_folder}/arduino-builder-macosx"/>
<antcall target="untar">
<param name="archive_file" value="./arduino-builder-macosx-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="archive_url" value="http://downloads.arduino.cc/tools/arduino-builder-macosx-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="final_folder" value="${staging_folder}/arduino-builder-macosx/arduino-builder" />
<param name="dest_folder" value="${staging_folder}/arduino-builder-macosx" />
</antcall>
<copy file="${staging_folder}/arduino-builder-macosx/arduino-builder" tofile="macosx/work/${staging_hardware_folder}/../arduino-builder" />
<chmod perm="755" file="macosx/work/${staging_hardware_folder}/../arduino-builder" />
<move file="${staging_folder}/arduino-builder-macosx/tools" tofile="macosx/work/${staging_hardware_folder}/../tools-builder"/>
<copy todir="macosx/work/${staging_hardware_folder}" overwrite="true">
<fileset dir="${staging_folder}/arduino-builder-macosx/hardware" includes="*.txt"/>
</copy>
<delete dir="${staging_folder}/arduino-builder-macosx" includeemptydirs="true"/>
<antcall target="build-arduino-builder" />
<antcall target="portable-${portable}">
<param name="parentdir" value="macosx/work/${staging_hardware_folder}/.." />
@ -495,6 +487,8 @@
<param name="gcc_version" value="${AVRGCC-VERSION}"/>
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-i386-apple-darwin11.tar.bz2"/>
<param name="avrdude_version" value="${AVRDUDE-VERSION}"/>
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-osx.tar.bz2"/>
<param name="arduinoOTA_version" value="${arduinoOTA-VERSION}"/>
</antcall>
<chmod perm="+x">
@ -646,7 +640,7 @@
<target name="linux-libastyle-x86" depends="linux-build" description="Download libastyle.so for x86/x64 arch">
<antcall target="unzip">
<param name="archive_file" value="./libastylej-2.05.1-3.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="final_folder" value="${staging_folder}/libastylej-2.05.1" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -659,7 +653,7 @@
<antcall target="unzip">
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="final_folder" value="${staging_folder}/liblistSerials-${LIBLISTSERIAL-VERSION}" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -671,7 +665,7 @@
<target name="linux-libastyle-arm" depends="linux-build" description="Download libastyle.so for ARM">
<antcall target="unzip">
<param name="archive_file" value="./libastylej-2.05.1-3.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="final_folder" value="${staging_folder}/libastylej-2.05.1" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -684,7 +678,7 @@
<antcall target="unzip">
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="final_folder" value="${staging_folder}/liblistSerials-${LIBLISTSERIAL-VERSION}" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -698,21 +692,7 @@
<param name="JVM" value="${LINUXARM_BUNDLED_JVM}"/>
</antcall>
<delete dir="${staging_folder}/arduino-builder-arm" includeemptydirs="true"/>
<mkdir dir="${staging_folder}/arduino-builder-arm"/>
<antcall target="untar">
<param name="archive_file" value="./arduino-builder-arm-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="archive_url" value="http://downloads.arduino.cc/tools/arduino-builder-arm-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="final_folder" value="${staging_folder}/arduino-builder-arm/arduino-builder" />
<param name="dest_folder" value="${staging_folder}/arduino-builder-arm" />
</antcall>
<copy file="${staging_folder}/arduino-builder-arm/arduino-builder" tofile="linux/work/arduino-builder" />
<chmod perm="755" file="linux/work/arduino-builder" />
<move file="${staging_folder}/arduino-builder-arm/tools" tofile="linux/work/tools-builder"/>
<copy todir="linux/work/hardware" overwrite="true">
<fileset dir="${staging_folder}/arduino-builder-arm/hardware" includes="*.txt"/>
</copy>
<delete dir="${staging_folder}/arduino-builder-arm" includeemptydirs="true"/>
<antcall target="build-arduino-builder" />
<antcall target="avr-toolchain-bundle">
<param name="unpack_target" value="untar"/>
@ -720,6 +700,8 @@
<param name="gcc_version" value="${AVRGCC-VERSION}"/>
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-armhf-pc-linux-gnu.tar.bz2"/>
<param name="avrdude_version" value="${AVRDUDE-VERSION}"/>
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-linuxarm.tar.bz2"/>
<param name="arduinoOTA_version" value="${arduinoOTA-VERSION}"/>
</antcall>
</target>
@ -728,21 +710,7 @@
<param name="JVM" value="${LINUX32_BUNDLED_JVM}"/>
</antcall>
<delete dir="${staging_folder}/arduino-builder-linux32" includeemptydirs="true"/>
<mkdir dir="${staging_folder}/arduino-builder-linux32"/>
<antcall target="untar">
<param name="archive_file" value="./arduino-builder-linux32-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="archive_url" value="http://downloads.arduino.cc/tools/arduino-builder-linux32-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="final_folder" value="${staging_folder}/arduino-builder-linux32/arduino-builder" />
<param name="dest_folder" value="${staging_folder}/arduino-builder-linux32" />
</antcall>
<copy file="${staging_folder}/arduino-builder-linux32/arduino-builder" tofile="linux/work/arduino-builder" />
<chmod perm="755" file="linux/work/arduino-builder" />
<move file="${staging_folder}/arduino-builder-linux32/tools" tofile="linux/work/tools-builder"/>
<copy todir="linux/work/hardware" overwrite="true">
<fileset dir="${staging_folder}/arduino-builder-linux32/hardware" includes="*.txt"/>
</copy>
<delete dir="${staging_folder}/arduino-builder-linux32" includeemptydirs="true"/>
<antcall target="build-arduino-builder" />
<antcall target="avr-toolchain-bundle">
<param name="unpack_target" value="untar"/>
@ -750,6 +718,8 @@
<param name="gcc_version" value="${AVRGCC-VERSION}"/>
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-i686-pc-linux-gnu.tar.bz2"/>
<param name="avrdude_version" value="${AVRDUDE-VERSION}"/>
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-linux32.tar.bz2"/>
<param name="arduinoOTA_version" value="${arduinoOTA-VERSION}"/>
</antcall>
</target>
@ -758,21 +728,7 @@
<param name="JVM" value="${LINUX64_BUNDLED_JVM}"/>
</antcall>
<delete dir="${staging_folder}/arduino-builder-linux64" includeemptydirs="true"/>
<mkdir dir="${staging_folder}/arduino-builder-linux64"/>
<antcall target="untar">
<param name="archive_file" value="./arduino-builder-linux64-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="archive_url" value="http://downloads.arduino.cc/tools/arduino-builder-linux64-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="final_folder" value="${staging_folder}/arduino-builder-linux64/arduino-builder" />
<param name="dest_folder" value="${staging_folder}/arduino-builder-linux64" />
</antcall>
<copy file="${staging_folder}/arduino-builder-linux64/arduino-builder" tofile="linux/work/arduino-builder" />
<chmod perm="755" file="linux/work/arduino-builder" />
<move file="${staging_folder}/arduino-builder-linux64/tools" tofile="linux/work/tools-builder"/>
<copy todir="linux/work/hardware" overwrite="true">
<fileset dir="${staging_folder}/arduino-builder-linux64/hardware" includes="*.txt"/>
</copy>
<delete dir="${staging_folder}/arduino-builder-linux64" includeemptydirs="true"/>
<antcall target="build-arduino-builder" />
<antcall target="avr-toolchain-bundle">
<param name="unpack_target" value="untar"/>
@ -780,6 +736,8 @@
<param name="gcc_version" value="${AVRGCC-VERSION}"/>
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-x86_64-pc-linux-gnu.tar.bz2"/>
<param name="avrdude_version" value="${AVRDUDE-VERSION}"/>
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-linux64.tar.bz2"/>
<param name="arduinoOTA_version" value="${arduinoOTA-VERSION}"/>
</antcall>
</target>
@ -813,6 +771,24 @@
<exec executable="./linux/work/arduino" spawn="false" failonerror="true"/>
</target>
<target name="build-arduino-builder" unless="no_arduino_builder">
<delete dir="${staging_folder}/arduino-builder-${platform}" includeemptydirs="true"/>
<mkdir dir="${staging_folder}/arduino-builder-${platform}"/>
<antcall target="untar">
<param name="archive_file" value="./arduino-builder-${platform}-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="archive_url" value="https://downloads.arduino.cc/tools/arduino-builder-${platform}-${ARDUINO-BUILDER-VERSION}.tar.bz2" />
<param name="final_folder" value="${staging_folder}/arduino-builder-${platform}/arduino-builder" />
<param name="dest_folder" value="${staging_folder}/arduino-builder-${platform}" />
</antcall>
<copy file="${staging_folder}/arduino-builder-${platform}/arduino-builder" tofile="${staging_folder}/work/${staging_hardware_folder}/../arduino-builder" />
<chmod perm="755" file="${staging_folder}/work/${staging_hardware_folder}/../arduino-builder" />
<move file="${staging_folder}/arduino-builder-${platform}/tools" tofile="${staging_folder}/work/${staging_hardware_folder}/../tools-builder"/>
<copy todir="${staging_folder}/work/${staging_hardware_folder}" overwrite="true">
<fileset dir="${staging_folder}/arduino-builder-${platform}/hardware" includes="*.txt"/>
</copy>
<delete dir="${staging_folder}/arduino-builder-${platform}" includeemptydirs="true"/>
</target>
<!-- Set '${dist_file}_available' property if toolchain dist_file is downloaded -->
<!-- Set '${dist_file}_installed' property if toolchain is installed in working directory -->
<!-- hardware/tools/${dist_check_file} is checked for existence -->
@ -823,8 +799,21 @@
<!-- Retrieve tool -->
<target name="untar-unzip-download" depends="untar-unzip-check" unless="${archive_file}_available">
<antcall target="untar-unzip-download-web" />
<antcall target="untar-unzip-download-local" />
</target>
<target name="untar-unzip-download-web" unless="local_sources">
<get src="${archive_url}" dest="${archive_file}" verbose="true" ignoreerrors="true" />
</target>
<target name="untar-unzip-download-local" if="local_sources">
<basename file="${archive_file}" property="basename" />
<echo>Skipping download of ${archive_url}, using makepkg downloaded ${basename}</echo>
<exec executable="ln" failonerror="true">
<arg value="-s" />
<arg value="${basedir}/../../${basename}" />
<arg value="${archive_file}" />
</exec>
</target>
<target name="untar-unzip-checksum" depends="untar-unzip-download">
<echo>Testing checksum of "${archive_file}"</echo>
@ -927,7 +916,7 @@
<target name="download-launch4j-windows">
<antcall target="unzip-with-ant-task">
<param name="archive_file" value="windows/launch4j-3.9-win32.zip"/>
<param name="archive_url" value="http://downloads.sourceforge.net/project/launch4j/launch4j-3/3.9/launch4j-3.9-win32.zip"/>
<param name="archive_url" value="https://downloads.arduino.cc/tools/launch4j-3.9-win32.zip"/>
<param name="final_folder" value="windows/launcher/launch4j"/>
<param name="dest_folder" value="windows/launcher/"/>
</antcall>
@ -936,7 +925,7 @@
<target name="download-launch4j-linux">
<antcall target="untar">
<param name="archive_file" value="windows/launch4j-3.9-linux.tgz"/>
<param name="archive_url" value="http://downloads.sourceforge.net/project/launch4j/launch4j-3/3.9/launch4j-3.9-linux.tgz"/>
<param name="archive_url" value="https://downloads.arduino.cc/tools/launch4j-3.9-linux.tgz"/>
<param name="final_folder" value="windows/launcher/launch4j"/>
<param name="dest_folder" value="windows/launcher/"/>
</antcall>
@ -978,7 +967,7 @@
<antcall target="unzip">
<param name="archive_file" value="./libastylej-2.05.1-3.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/libastylej-2.05.1-3.zip" />
<param name="final_folder" value="${staging_folder}/libastylej-2.05.1" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -988,7 +977,7 @@
<antcall target="unzip">
<param name="archive_file" value="./liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/liblistSerials/liblistSerials-${LIBLISTSERIAL-VERSION}.zip" />
<param name="final_folder" value="${staging_folder}/liblistSerials-${LIBLISTSERIAL-VERSION}" />
<param name="dest_folder" value="${staging_folder}" />
</antcall>
@ -999,14 +988,14 @@
<mkdir dir="${staging_folder}/arduino-builder-windows"/>
<antcall target="unzip-with-ant-task">
<param name="archive_file" value="./arduino-builder-windows-${ARDUINO-BUILDER-VERSION}.zip" />
<param name="archive_url" value="http://downloads.arduino.cc/tools/arduino-builder-windows-${ARDUINO-BUILDER-VERSION}.zip" />
<param name="archive_url" value="https://downloads.arduino.cc/tools/arduino-builder-windows-${ARDUINO-BUILDER-VERSION}.zip" />
<param name="final_folder" value="${staging_folder}/arduino-builder-windows/arduino-builder.exe" />
<param name="dest_folder" value="${staging_folder}/arduino-builder-windows" />
</antcall>
<copy file="${staging_folder}/arduino-builder-windows/arduino-builder.exe" tofile="windows/work/arduino-builder.exe" />
<chmod perm="755" file="windows/work/arduino-builder.exe" />
<move file="${staging_folder}/arduino-builder-windows/tools" tofile="windows/work/tools-builder"/>
<chmod perm="755" file="windows/work/tools-builder/ctags/5.8-arduino10/ctags.exe" />
<chmod perm="755" file="windows/work/tools-builder/ctags/5.8-arduino11/ctags.exe" />
<copy todir="windows/work/hardware" overwrite="true">
<fileset dir="${staging_folder}/arduino-builder-windows/hardware" includes="*.txt"/>
</copy>
@ -1066,6 +1055,8 @@
<param name="gcc_version" value="${AVRGCC-VERSION}"/>
<param name="avrdude_archive_file" value="avrdude-${AVRDUDE-VERSION}-i686-w64-mingw32.zip"/>
<param name="avrdude_version" value="${AVRDUDE-VERSION}"/>
<param name="arduinoOTA_archive_file" value="arduinoOTA-${arduinoOTA-VERSION}-windows.zip"/>
<param name="arduinoOTA_version" value="${arduinoOTA-VERSION}"/>
</antcall>
</target>
@ -1137,7 +1128,7 @@
<antcall target="${unpack_target}">
<param name="archive_file" value="${staging_folder}/${gcc_archive_file}"/>
<param name="archive_url" value="http://downloads.arduino.cc/tools/${gcc_archive_file}"/>
<param name="archive_url" value="https://downloads.arduino.cc/tools/${gcc_archive_file}"/>
<param name="final_folder" value="${staging_folder}/work/${staging_hardware_folder}/tmp/gcc/${gcc_version}/"/>
<param name="dest_folder" value="${staging_folder}/work/${staging_hardware_folder}/tmp/gcc/"/>
</antcall>
@ -1146,15 +1137,26 @@
<antcall target="${unpack_target}">
<param name="archive_file" value="${staging_folder}/${avrdude_archive_file}"/>
<param name="archive_url" value="http://downloads.arduino.cc/tools/${avrdude_archive_file}"/>
<param name="archive_url" value="https://downloads.arduino.cc/tools/${avrdude_archive_file}"/>
<param name="final_folder" value="${staging_folder}/work/${staging_hardware_folder}/tmp/avrdude/${avrdude_version}"/>
<param name="dest_folder" value="${staging_folder}/work/${staging_hardware_folder}/tmp/avrdude/"/>
</antcall>
<mkdir dir="${staging_folder}/work/${staging_hardware_folder}/tmp/arduinoOTA"/>
<antcall target="${unpack_target}">
<param name="archive_file" value="${staging_folder}/${arduinoOTA_archive_file}"/>
<param name="archive_url" value="http://downloads.arduino.cc/tools/${arduinoOTA_archive_file}"/>
<param name="final_folder" value="${staging_folder}/work/${staging_hardware_folder}/tmp/arduinoOTA/${arduinoOTA_version}"/>
<param name="dest_folder" value="${staging_folder}/work/${staging_hardware_folder}/tmp/arduinoOTA/"/>
</antcall>
<move file="${staging_folder}/work/${staging_hardware_folder}/tmp/gcc/avr" tofile="${staging_folder}/work/${staging_hardware_folder}/tools/avr"/>
<move file="${staging_folder}/work/${staging_hardware_folder}/tmp/avrdude/avrdude" tofile="${staging_folder}/work/${staging_hardware_folder}/tools/avr"/>
<move file="${staging_folder}/work/${staging_hardware_folder}/tmp/arduinoOTA/" tofile="${staging_folder}/work/${staging_hardware_folder}/tools/avr"/>
<echo append="true" file="${staging_folder}/work/${staging_hardware_folder}/tools/avr/builtin_tools_versions.txt" message="arduino.avrdude=${avrdude_version}${line.separator}"/>
<echo append="true" file="${staging_folder}/work/${staging_hardware_folder}/tools/avr/builtin_tools_versions.txt" message="arduino.arduinoOTA=${arduinoOTA_version}${line.separator}"/>
<echo append="true" file="${staging_folder}/work/${staging_hardware_folder}/tools/avr/builtin_tools_versions.txt" message="arduino.avr-gcc=${gcc_version}${line.separator}"/>
<delete dir="${staging_folder}/work/${staging_hardware_folder}/tmp"/>

View File

@ -1,68 +0,0 @@
#!/bin/sh
# only needed for core.jar and pde.jar, hmm
ARCH=`uname`
if [ $ARCH == "Darwin" ]
then
BUILD=../macosx
REVISION=`head -1 ../../todo.txt | cut -c 1-4`
elif [ $ARCH == "Cygwin" ]
then
BUILD=../windows
REVISION=`head -c 4 ../../todo.txt`
else
BUILD=../linux
REVISION=`head -c 4 ../../todo.txt`
fi
echo Creating command-line distribution for revision $REVISION...
# remove any old boogers
rm -rf processing
rm -rf processing-*
mkdir processing
cp -r ../shared/lib processing/
cp -r ../shared/libraries processing/
cp ../../app/lib/ecj.jar processing/lib/
cp ../shared/revisions.txt processing/
# add the libraries folder with source
cp -r ../../net processing/libraries/
cp -r ../../opengl processing/libraries/
cp -r ../../serial processing/libraries/
cp -r ../../pdf processing/libraries/
cp -r ../../dxf processing/libraries/
cp -r ../../xml processing/libraries/
cp -r ../../candy processing/libraries/
cp -r ../../video processing/libraries/
# grab pde.jar and export from the working dir
cp $BUILD/work/lib/pde.jar processing/lib/
cp $BUILD/work/lib/core.jar processing/lib/
# get platform-specific goodies from the dist dir
install -m 755 dist/processing processing/processing
# remove boogers
find processing -name "*~" -exec rm -f {} ';'
find processing -name ".DS_Store" -exec rm -f {} ';'
find processing -name "._*" -exec rm -f {} ';'
find processing -name "Thumbs.db" -exec rm -f {} ';'
# clean out the cvs entries
find processing -name "CVS" -exec rm -rf {} ';' 2> /dev/null
find processing -name ".cvsignore" -exec rm -rf {} ';'
find processing -name ".svn" -exec rm -rf {} 2> /dev/null ';'
# zip it all up for release
echo Creating tarball and finishing...
P5=processing-cmd-$REVISION
mv processing $P5
zip -rq $P5.zip $P5
#tar cfz $P5.tgz $P5
# nah, keep the new directory around
#rm -rf $P5
#echo Done.

View File

@ -1,20 +0,0 @@
#!/bin/sh
APPDIR="$(dirname -- "${0}")"
# includes java/* in case a Java install is available
for LIB in \
java/lib/rt.jar \
java/lib/tools.jar \
lib/*.jar \
;
do
CLASSPATH="${CLASSPATH}:${APPDIR}/${LIB}"
done
export CLASSPATH
export PATH="${APPDIR}/java/bin:${PATH}"
#java processing.app.Commander $*
# if you know a better way to do this, submit it to dev.processing.org/bugs
java processing.app.Commander "$1" "$2" "$3" "$4" "$5" "$6" "$7" "$8" "$9"

View File

@ -1 +0,0 @@
962a7cf3e2007d47fc990a667221c3c45326c23c

View File

@ -0,0 +1 @@
abec9fe7b7dfb5ae5bf5eb0bd883ef9f6ad7a7eb

View File

@ -0,0 +1 @@
ea57315a2dc1ebadd219684ad720acc29914e5ea

View File

@ -0,0 +1 @@
597dabb3a04c8036c38985c424e11be245a2a88c

View File

@ -0,0 +1 @@
9f0b23cc318f4cf88561884b4857a292438685e8

View File

@ -1 +0,0 @@
9788fdd59bcc5b6267eb12b5be6667476e5cc8d9

View File

@ -1 +0,0 @@
dec8e05d06c945746169c318922d68dee36c178f

View File

@ -1 +0,0 @@
9e747ae659b320777882678272c39ed3f8ef7705

View File

@ -0,0 +1 @@
81ab2665d306c5ddd28eba4348e64e7db71af24a

View File

@ -0,0 +1 @@
8e3941f694d17d80dfea9a3cad7d3ec13e64284f

View File

@ -0,0 +1 @@
d6cc64c9d8faa7a5dc83d2b3b3c4aef0f92f8f1b

View File

@ -1,8 +1,13 @@
<?xml version="1.0" encoding="UTF-8"?>
<!-- See https://wiki.gnome.org/GnomeGoals/AppDataGnomeSoftware -->
<application>
<id type="desktop">arduino.desktop</id>
<licence>CC-BY-SA</licence>
<!-- See https://www.freedesktop.org/software/appstream/docs/chap-Quickstart.html -->
<component type="desktop-application">
<id>cc.arduino.arduinoide.desktop</id>
<metadata_license>CC-BY-SA-3.0</metadata_license>
<developer_name>Arduino LLC</developer_name>
<name>Arduino IDE</name>
<summary>Open-source electronics prototyping platform</summary>
<description>
<p>
Arduino is an open-source electronics prototyping platform based
@ -15,10 +20,23 @@
to develop and upload code to compatible microcontrollers.
</p>
</description>
<screenshots>
<screenshot type="default" width="624" height="351">http://mavit.fedorapeople.org/appdata/arduino-screenshot.png</screenshot>
<screenshot width="704" height="396">http://mavit.fedorapeople.org/appdata/arduino-photo.jpg</screenshot>
<screenshot type="default">
<image>https://mavit.fedorapeople.org/appdata/arduino-screenshot.png</image>
<caption>The Arduino IDE showing a simple example program</caption>
</screenshot>
<screenshot>
<image>https://mavit.fedorapeople.org/appdata/arduino-photo.jpg</image>
<caption>Arduino hardware being connected to a breadboard</caption>
</screenshot>
</screenshots>
<url type="homepage">http://www.arduino.cc/</url>
<updatecontact>arduino.appdata.xml@mavit.org.uk</updatecontact>
</application>
<url type="help">https://www.arduino.cc/en/Guide/HomePage</url>
<url type="bugtracker">https://github.com/arduino/Arduino/issues</url>
<url type="translate">https://github.com/arduino/Arduino/tree/master/arduino-core/src/processing/app/i18n</url>
<url type="donation">https://www.arduino.cc/en/Main/Contribute</url>
<update_contact>arduino.appdata.xml@mavit.org.uk</update_contact>
</component>

View File

@ -6,7 +6,7 @@
# If called with the "-u" option, it will undo the changes.
# Resource name to use (including vendor prefix)
RESOURCE_NAME=arduino-arduinoide
RESOURCE_NAME=cc.arduino.arduinoide
# Get absolute path from which this script file was executed
# (Could be changed to "pwd -P" to resolve symlinks to their target)
@ -85,6 +85,9 @@ simple_install_f() {
mkdir -p "${HOME}/.local/share/applications"
cp "${TMP_DIR}/${RESOURCE_NAME}.desktop" "${HOME}/.local/share/applications/"
mkdir -p "${HOME}/.local/share/metainfo"
cp "${SCRIPT_PATH}/lib/appdata.xml" "${HOME}/.local/share/metainfo/${RESOURCE_NAME}.appdata.xml"
# Copy desktop icon if desktop dir exists (was found)
if [ -d "${XDG_DESKTOP_DIR}" ]; then
cp "${TMP_DIR}/${RESOURCE_NAME}.desktop" "${XDG_DESKTOP_DIR}/"
@ -137,14 +140,24 @@ xdg_uninstall_f() {
# Uninstall by simply removing desktop files (fallback), incl. old one
simple_uninstall_f() {
# delete legacy cruft .desktop file
if [ -f "${HOME}/.local/share/applications/arduino.desktop" ]; then
rm "${HOME}/.local/share/applications/arduino.desktop"
fi
# delete another legacy .desktop file
if [ -f "${HOME}/.local/share/applications/arduino-arduinoide.desktop" ]; then
rm "${HOME}/.local/share/applications/arduino-arduinoide.desktop"
fi
if [ -f "${HOME}/.local/share/applications/${RESOURCE_NAME}.desktop" ]; then
rm "${HOME}/.local/share/applications/${RESOURCE_NAME}.desktop"
fi
if [ -f "${HOME}/.local/share/metainfo/${RESOURCE_NAME}.appdata.xml" ]; then
rm "${HOME}/.local/share/metainfo/${RESOURCE_NAME}.appdata.xml"
fi
if [ -f "${XDG_DESKTOP_DIR}/arduino.desktop" ]; then
rm "${XDG_DESKTOP_DIR}/arduino.desktop"
fi

View File

@ -0,0 +1 @@
3d9f65a3313ca4447e502df82ce6f433552090e5

View File

@ -1 +0,0 @@
a29947719bb971af22feb430e5070e67c62b265b

View File

@ -0,0 +1 @@
b0ecf552e27c35cd79411b220b68cb980860f505

View File

@ -0,0 +1,130 @@
CP210x Macintosh OS X VCP Driver v4 Release Notes
Copyright (C) 2015 Silicon Laboratories, Inc.
This release contains the following components:
* SiLabsUSBDriverDisk.dmg - Image containing the VCP Driver Installer
* ReleaseNotes.txt (this file)
* uninstaller.sh - a bash shell script for removing the driver
Known Issues and Limitations
----------------------------
This release includes the Macintosh OSX driver for the Intel and
PowerPC Platforms versions 10.5, 10.6, 10.7, 10.8,
10.9, and 10.10.
Driver Installation
-------------------
Mount the DMG file and double click on
Silicon Labs VCP Driver.
Uninstalling the Driver
-----------------------
To uninstall the driver, run the uninstaller.sh shell script from
a Terminal command prompt.
Release Dates
-------------
CP210x Macintosh OSX VCP Driver 4.10.7 - February 15, 2016
CP210x Macintosh OSX VCP Driver v3.1 - December 6, 2012
CP210x Macintosh OSX Driver Revision History
--------------------------------------------
Version 4.x.7
Added VID/PID for Sekonic and DASCOM.
Minor fix to postflight script for 64 bit 10.8 and below OS's.
Version 4.x.6
Added VID/PIDs for Vorze and Cadex Electronics.
Version 4.x.5
Added VID/PIDs for California Eastern Labs and Micro Computer Control Corp.
Version 4.x.4
Added VID/PIDs for Zonge International, AES GmbH, SPORTident GmbH
Version 4.x.3
Added VID/PID for Aruba Networks, Inc.
Version 4.x.2
Added VID/PID for ARKRAY, Inc.
Version 4.x.1
Added VID/PIDs for BodyCap, RTKWARE, and West Mountain Radio
Added uninstaller script to DMG
Installer now runs uninstaller script before executing install - removes older versions using previous naming scheme
Dropping support for OS X 10.4. If you require OS X 10.4 support, please install version 3.1 of the VCP driver
Version 4.x.0
Added OSX 10.9 and 10.10 driver support with signed kernel extension
Updated version numbering - 2nd digit represents target OS versions
4.7 - OSX 10.7 and older, 32 bit
4.8 - OSX 10.8 and older, 64 bit
4.10 - OSX 10.9 and 10.10, 64 bit, signed kext
Updated version numbering - 3rd digit represents VID/PID updates. Customers not needing the new VID/PID do not need to update drivers for 3rd digit changes.
Installer will now only install the proper matching kernel extension instead of both the 32 bit and 64 bit versions.
Version 3.1
Added support for CP2108
Version 3.0
Corrected issue where transmission would stop when a 0 length packet was sent
incorrectly on aligned packet boundaries
Version 2.9
Corrected issue with Baud Rates not being set properly if they were greater
than 230400 on PPC or Intel platforms
Corrected an issue where a device might get stuck when coming out of sleep mode
Corrected an issue on PPC where Baud Rates were not getting set properly
Added enhanced support for sleep, now reads state on sleep and writes state on
wake to provide smoother and more stable state transitions
Version 2.7
Corrected issue with initial Stop Bits value
Corrected issue which seen which switching between 32 and 64 bit mode and trying
to use the driver in each mode
Added in a clear stall to be more complete in invalid control transfers
Version 2.6
Corrected all known Kernel Panics for 10.4/5/6 for surprise removal and data
transmission
Corrected an issue with data drop while using XON/XOFF flow control
Corrected RTS/DTR toggling sync issue
Version 2.2
Corrected Kernel Panic in Snow Leopard which would randomly occur after
transmission
Modified DTR pin to toggle on open and close instead of on insertion
Modified driver to load without showing the Network Connection Dialog
Modified driver to allow toggling of RTS and DTR pins
Added 64 bit support for Snow Leopard
Version 2.1
Corrected device strings that were changed in the 2.0 release back to the
format used in pre-2.0 drivers
Version 2.0
Driver architecture updated.
Version 1.06
Corrected a bug which causes a Kernel Panic with a Baud Rate of 0, yileding
a Divide-By-Zero error
Version 1.04
Updated to support newer versions of Mac OSX
Version 1.02
Updated to support the Intel platform through a universal binary that
also supports PowerPC.
Version 1.00
Initial Release

View File

@ -0,0 +1,17 @@
#!/bin/bash
if [ -d /System/Library/Extensions/SiLabsUSBDriver.kext ]; then
sudo rm -rf /System/Library/Extensions/SiLabsUSBDriver.kext
fi
if [ -d /System/Library/Extensions/SiLabsUSBDriver64.kext ]; then
sudo rm -rf /System/Library/Extensions/SiLabsUSBDriver64.kext
fi
if [ -d /Library/Extensions/SiLabsUSBDriverYos.kext ]; then
sudo rm -rf /Library/Extensions/SiLabsUSBDriverYos.kext
fi
if [ -d /Library/Extensions/SiLabsUSBDriver.kext ]; then
sudo rm -rf /Library/Extensions/SiLabsUSBDriver.kext
fi

View File

@ -3,8 +3,8 @@
Turns on an LED on for one second, then off for one second, repeatedly.
Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN takes care
of use the correct LED pin whatever is the board used.
it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
the correct LED pin independent of which board is used.
If you want to know what pin the on-board LED is connected to on your Arduino model, check
the Technical Specs of your board at https://www.arduino.cc/en/Main/Products
@ -15,6 +15,9 @@
modified 2 Sep 2016
by Arturo Guadalupi
modified 8 Sep 2016
by Colby Newman
*/

View File

@ -5,9 +5,12 @@
can run at the same time without being interrupted by the LED code.
The circuit:
* LED attached from pin 13 to ground.
* Note: on most Arduinos, there is already an LED on the board
that's attached to pin 13, so no hardware is needed for this example.
* Use the onboard LED.
* Note: Most Arduinos have an on-board LED you can control. On the UNO, MEGA and ZERO
it is attached to digital pin 13, on MKR1000 on pin 6. LED_BUILTIN is set to
the correct LED pin independent of which board is used.
If you want to know what pin the on-board LED is connected to on your Arduino model, check
the Technical Specs of your board at https://www.arduino.cc/en/Main/Products
created 2005
by David A. Mellis
@ -15,6 +18,8 @@
by Paul Stoffregen
modified 11 Nov 2013
by Scott Fitzgerald
modified 9 Jan 2017
by Arturo Guadalupi
This example code is in the public domain.
@ -23,7 +28,7 @@
*/
// constants won't change. Used here to set a pin number :
const int ledPin = 13; // the number of the LED pin
const int ledPin = LED_BUILTIN;// the number of the LED pin
// Variables will change :
int ledState = LOW; // ledState used to set the LED

View File

@ -19,6 +19,8 @@
created 17 Jan 2009
modified 30 Aug 2011
by Tom Igoe
modified 20 Jan 2017
by Arturo Guadalupi
This example code is in the public domain.
@ -28,7 +30,7 @@
// These constants won't change:
const int sensorPin = A2; // pin that the sensor is attached to
const int sensorPin = A0; // pin that the sensor is attached to
const int ledPin = 9; // pin that the LED is attached to
const int indicatorLedPin = 13; // pin that the built-in LED is attached to
const int buttonPin = 2; // pin that the button is attached to

View File

@ -37,16 +37,19 @@ buttons.status.font = SansSerif,plain,12
buttons.status.color = #ffffff
# GUI - PLOTTING
# color cycle created via colorbrewer2.org
plotting.bgcolor = #ffffff
plotting.color = #ffffff
plotting.gridcolor = #f0f0f0
plotting.boundscolor = #000000
plotting.graphcolor.size = 4
plotting.graphcolor.00 = #2c7bb6
plotting.graphcolor.01 = #fdae61
plotting.graphcolor.02 = #d7191c
plotting.graphcolor.03 = #abd9e9
plotting.graphcolor.size = 8
plotting.graphcolor.00 = #0000FF
plotting.graphcolor.01 = #FF0000
plotting.graphcolor.02 = #009900
plotting.graphcolor.03 = #FF9900
plotting.graphcolor.04 = #CC00CC
plotting.graphcolor.05 = #666666
plotting.graphcolor.06 = #00CCFF
plotting.graphcolor.07 = #000000
# GUI - LINESTATUS
linestatus.color = #ffffff

View File

@ -1,7 +1,35 @@
ARDUINO 1.6.14
ARDUINO 1.8.2
[ide]
* Fix command line: works again with relative paths (regression)
ARDUINO 1.8.1 - 2017.01.09
[ide]
* Fixed font rendering not anti-aliased on Windows (regression)
* Increased number of colors on serial plotter to 8, thanks @cousteaulecommandant
[libraries]
* Fixed regression in SD library. Thanks @greiman
ARDUINO 1.8.0 - 2016.12.20
[ide]
* Linux: running in command line mode doesn't require an X11 display anymore
* "Save as" now clears the "modified" status
* builder: Paths with strange UTF8 chars are now correctly handled
* builder: .hpp and .hh file extensions are now considered valid sketch extension
* builder: core.a is not rebuild if not needed (improve build time in particular for big projects)
* Fixed swapped actions "Copy for Forum" and "Copy as HTML"
* Linux/osx: If an editor tab is a symbolic link it is no more replaced with a real file when saving (see #5478)
* Increased the upload timeout to 5 minutes (it was 2 min, but it may be not sufficient when uploading via UART a big sketch)
[core]
* Added Arduino.org boards
* Added Adafruit Circuit Playground board
* Added "-g" option to linker to keep debug information in the .elf file (see #5539)
* avrdude: Added fake configuration for EFUSE on atmega8 part. This solves a long standing issue with "Burn bootloader".
Thanks @rigelinorion, @awatterott
ARDUINO 1.6.13 - 2016.11.22

View File

@ -0,0 +1 @@
474366736c4a9a15ab8f228e2c198be44fced561

View File

@ -1 +0,0 @@
e14651bfc29065ce0c6a1bacb3cfeac53705430a

View File

@ -0,0 +1 @@
2799d620d4ea3933cb88c1e3e39e9f407ec3fef7

Binary file not shown.

View File

@ -0,0 +1,109 @@
;************************************************************
; Windows USB CDC ACM Setup File
; Copyright (c) 2000 Microsoft Corporation
; For Adafruit Circuit Playground Board by Adafruit Industries LLC 2016
[Version]
Signature="$Windows NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%MFGNAME%
LayoutFile=layout.inf
CatalogFile=%MFGFILENAME%.cat
DriverVer=02/25/2016,6.2.2600.0
[Manufacturer]
%MFGNAME%=DeviceList, NTamd64
[DestinationDirs]
DefaultDestDir=12
[DefaultInstall]
CopyINF="AdafruitCircuitPlayground.inf"
;------------------------------------------------------------------------------
; Windows 2000/XP/Vista/Win7/Win8/Win8.1/Win10 32 bit Sections
;------------------------------------------------------------------------------
[DriverInstall.nt]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.nt
AddReg=DriverInstall.nt.AddReg
[DriverCopyFiles.nt]
usbser.sys,,,0x20
[DriverInstall.nt.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.nt.Services]
AddService=usbser, 0x00000002, DriverService.nt
[DriverService.nt]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vista/Win7/Win8/Win8.1/Win10 64 bit Sections
;------------------------------------------------------------------------------
[DriverInstall.NTamd64]
include=mdmcpq.inf
CopyFiles=DriverCopyFiles.NTamd64
AddReg=DriverInstall.NTamd64.AddReg
[DriverCopyFiles.NTamd64]
%DRIVERFILENAME%.sys,,,0x20
[DriverInstall.NTamd64.AddReg]
HKR,,DevLoader,,*ntkern
HKR,,NTMPDriver,,%DRIVERFILENAME%.sys
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
[DriverInstall.NTamd64.Services]
AddService=usbser, 0x00000002, DriverService.NTamd64
[DriverService.NTamd64]
DisplayName=%SERVICE%
ServiceType=1
StartType=3
ErrorControl=1
ServiceBinary=%12%\%DRIVERFILENAME%.sys
;------------------------------------------------------------------------------
; Vendor and Product ID Definitions
;------------------------------------------------------------------------------
; When developing your USB device, the VID and PID used in the PC side
; application program and the firmware on the microcontroller must match.
; Modify the below line to use your VID and PID. Use the format as shown below.
; Note: One INF file can be used for multiple devices with different VID and PIDs.
; For each supported device, append ",USB\VID_xxxx&PID_yyyy" to the end of the line.
;------------------------------------------------------------------------------
[SourceDisksFiles]
[SourceDisksNames]
[DeviceList]
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00
[DeviceList.NTamd64]
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_0011
%DESCRIPTION%=DriverInstall, USB\VID_239A&PID_8011&MI_00
;------------------------------------------------------------------------------
; String Definitions
;------------------------------------------------------------------------------
; Modify these strings to customize your device
; NOTE: Do not put spaces in %MFGFILENAME% to maintain Windows 7 compatibility
;------------------------------------------------------------------------------
[Strings]
MFGFILENAME="AdafruitCircuitPlayground"
DRIVERFILENAME ="usbser"
MFGNAME="Adafruit Industries LLC"
INSTDISK="Circuit Playground Board Driver Installer"
DESCRIPTION="Adafruit Circuit Playground"
SERVICE="USB RS-232 Emulation Driver"

Binary file not shown.

View File

@ -0,0 +1,285 @@
;/*++
;
;Module Name:
;
; SLABVCP.INF
;
; Copyright 2013-2016, Silicon Laboratories Inc.
;
;Abstract:
; Installation INF for Silicon Labs CP210x device
;
;--*/
[Version]
Signature="$WINDOWS NT$"
Class=Ports
ClassGuid={4D36E978-E325-11CE-BFC1-08002BE10318}
Provider=%Provider%
DriverVer=09/19/2016,6.7.4.261
CatalogFile=slabvcp.cat
PnpLockDown=1 ; "a driver package should set PnpLockDown to 1" -- MSDN
; ================= Device section =====================
[Manufacturer]
%ManufacturerName%=SiLabsModelsSection, NTx86.6.1, NTamd64.6.1, NTarm.10, NTarm64.10
;Models section for installation of x86 driver on Windows 7 and above
[SiLabsModelsSection.NTx86.6.1]
%USB\VID_10C4&PID_EA60.DeviceDesc% =SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA60 ; USB\VID_v(4)&PID_d(4)
%USB\VID_10C4&PID_EA63.DeviceDesc% =SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA63
%USB\VID_10C4&PID_EA70&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA70&Mi_00 ; USB\VID_v(4)&PID_d(4)&MI_z(2)
%USB\VID_10C4&PID_EA70&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA70&Mi_01
%USB\VID_10C4&PID_EA71&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA71&Mi_00
%USB\VID_10C4&PID_EA71&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA71&Mi_01
%USB\VID_10C4&PID_EA71&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA71&Mi_02
%USB\VID_10C4&PID_EA71&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA71&Mi_03
%USB\VID_10C4&PID_EA7A&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA7A&Mi_00
%USB\VID_10C4&PID_EA7A&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA7A&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA7B&Mi_00
%USB\VID_10C4&PID_EA7B&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA7B&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA7B&Mi_02
%USB\VID_10C4&PID_EA7B&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTx86, USB\VID_10C4&PID_EA7B&Mi_03
;Models section for installation of x64 driver on Windows 7 and above
[SiLabsModelsSection.NTamd64.6.1]
%USB\VID_10C4&PID_EA60.DeviceDesc% =SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA60 ; USB\VID_v(4)&PID_d(4)
%USB\VID_10C4&PID_EA63.DeviceDesc% =SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA63
%USB\VID_10C4&PID_EA70&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA70&Mi_00 ; USB\VID_v(4)&PID_d(4)&MI_z(2)
%USB\VID_10C4&PID_EA70&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA70&Mi_01
%USB\VID_10C4&PID_EA71&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA71&Mi_00
%USB\VID_10C4&PID_EA71&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA71&Mi_01
%USB\VID_10C4&PID_EA71&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA71&Mi_02
%USB\VID_10C4&PID_EA71&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA71&Mi_03
%USB\VID_10C4&PID_EA7A&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA7A&Mi_00
%USB\VID_10C4&PID_EA7A&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA7A&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA7B&Mi_00
%USB\VID_10C4&PID_EA7B&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA7B&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA7B&Mi_02
%USB\VID_10C4&PID_EA7B&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTamd64, USB\VID_10C4&PID_EA7B&Mi_03
;Models section for installation of arm driver on Windows 10 and above
[SiLabsModelsSection.NTarm.10]
%USB\VID_10C4&PID_EA60.DeviceDesc% =SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA60 ; USB\VID_v(4)&PID_d(4)
%USB\VID_10C4&PID_EA63.DeviceDesc% =SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA63
%USB\VID_10C4&PID_EA70&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA70&Mi_00 ; USB\VID_v(4)&PID_d(4)&MI_z(2)
%USB\VID_10C4&PID_EA70&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA70&Mi_01
%USB\VID_10C4&PID_EA71&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA71&Mi_00
%USB\VID_10C4&PID_EA71&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA71&Mi_01
%USB\VID_10C4&PID_EA71&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA71&Mi_02
%USB\VID_10C4&PID_EA71&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA71&Mi_03
%USB\VID_10C4&PID_EA7A&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA7A&Mi_00
%USB\VID_10C4&PID_EA7A&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA7A&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA7B&Mi_00
%USB\VID_10C4&PID_EA7B&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA7B&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA7B&Mi_02
%USB\VID_10C4&PID_EA7B&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTarm, USB\VID_10C4&PID_EA7B&Mi_03
;Models section for installation of arm64 driver on Windows 10 and above
[SiLabsModelsSection.NTarm64.10]
%USB\VID_10C4&PID_EA60.DeviceDesc% =SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA60 ; USB\VID_v(4)&PID_d(4)
%USB\VID_10C4&PID_EA63.DeviceDesc% =SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA63
%USB\VID_10C4&PID_EA70&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA70&Mi_00 ; USB\VID_v(4)&PID_d(4)&MI_z(2)
%USB\VID_10C4&PID_EA70&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA70&Mi_01
%USB\VID_10C4&PID_EA71&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA71&Mi_00
%USB\VID_10C4&PID_EA71&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA71&Mi_01
%USB\VID_10C4&PID_EA71&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA71&Mi_02
%USB\VID_10C4&PID_EA71&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA71&Mi_03
%USB\VID_10C4&PID_EA7A&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA7A&Mi_00
%USB\VID_10C4&PID_EA7A&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA7A&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_00.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA7B&Mi_00
%USB\VID_10C4&PID_EA7B&Mi_01.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA7B&Mi_01
%USB\VID_10C4&PID_EA7B&Mi_02.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA7B&Mi_02
%USB\VID_10C4&PID_EA7B&Mi_03.DeviceDesc%=SiLabsDDInstallSection.NTarm64, USB\VID_10C4&PID_EA7B&Mi_03
;DDInstall sections (one per x86, amd64, arm, arm64)
; Note: If/as we are building a Universal driver package, we can not use a DefaultInstall section.
[SiLabsDDInstallSection.NTx86]
AddReg=silabser.AddReg
CopyFiles=silabser.Files.Ext
FeatureScore=0x40 ; a single-byte hexadecimal number between 0x00 and 0xFF, A lower featurescore value specifies a better feature score rank, where 0x00 is the best feature score rank.
[SiLabsDDInstallSection.NTamd64]
AddReg=silabser.AddReg
CopyFiles=silabser.Files.Ext
FeatureScore=0x40 ; a single-byte hexadecimal number between 0x00 and 0xFF, A lower featurescore value specifies a better feature score rank, where 0x00 is the best feature score rank.
[SiLabsDDInstallSection.NTarm]
AddReg=silabser.AddReg
CopyFiles=silabser.Files.Ext
FeatureScore=0x40 ; a single-byte hexadecimal number between 0x00 and 0xFF, A lower featurescore value specifies a better feature score rank, where 0x00 is the best feature score rank.
[SiLabsDDInstallSection.NTarm64]
AddReg=silabser.AddReg
CopyFiles=silabser.Files.Ext
FeatureScore=0x40 ; a single-byte hexadecimal number between 0x00 and 0xFF, A lower featurescore value specifies a better feature score rank, where 0x00 is the best feature score rank.
;DDInstall.Services sections (one per x86, amd64, arm, arm64)
; Note: If/as we are building a Universal driver package, we can not use a DefaultInstall.Services section.
[SiLabsDDInstallSection.NTx86.Services]
AddService = silabser,0x00000002,silabser.AddService
[SiLabsDDInstallSection.NTamd64.Services]
AddService = silabser,0x00000002,silabser.AddService
[SiLabsDDInstallSection.NTarm.Services]
AddService = silabser,0x00000002,silabser.AddService
[SiLabsDDInstallSection.NTarm64.Services]
AddService = silabser,0x00000002,silabser.AddService
[silabser.AddService]
DisplayName = %silabser.SvcDesc%
ServiceType = 1 ; SERVICE_KERNEL_DRIVER
StartType = 3 ; SERVICE_DEMAND_START
ErrorControl = 1 ; SERVICE_ERROR_NORMAL
ServiceBinary = %12%\silabser.sys
; common registry entries
[silabser.AddReg]
HKR,,NTMPDriver,,silabser.sys
HKR,,RateLimitPurgeMS, 0x10001, 0x64, 0x00, 0x00, 0x00
HKR,,OverrideDefaultPortSettings, 0x10001, 01,00,00,00
HKR,,InitialBaudRate, 0x10001, 00,C2,01,00 ;115200 initial baud rate
HKR,,InitialLineControl,, "8N1" ;8-bits, No parity, 1 stop bit
HKR,,PortSubClass,1,01
HKR,,EnumPropPages32,,"MsPorts.dll,SerialPortPropPageProvider"
;DDInstall.HW sections (one per x86, amd64, arm, arm64)
[SiLabsDDInstallSection.NTx86.HW]
AddReg=SiLabsDDInstallSection.HW.AddReg
[SiLabsDDInstallSection.NTamd64.HW]
AddReg=SiLabsDDInstallSection.HW.AddReg
[SiLabsDDInstallSection.NTarm.HW]
AddReg=SiLabsDDInstallSection.HW.AddReg
[SiLabsDDInstallSection.NTarm64.HW]
AddReg=SiLabsDDInstallSection.HW.AddReg
[SiLabsDDInstallSection.HW.AddReg]
HKR,,"SelectiveSuspendTimeout",0x00010001,10000
HKR,,"DisableHwAccessInModemStatusIoctls",0x00010001,1
; Attention! The EnablePowerManagewment value is no longer supported.
; To disable Selective Suspend, uncomment the following line:
; HKR,,"DisableS0Idle",0x00010001,1
[silabser.Files.Ext]
silabser.sys
[SourceDisksNames.x86]
1=%Disk_Description%,"slabvcp.cat"
[SourceDisksNames.amd64]
1=%Disk_Description%,"slabvcp.cat"
[SourceDisksNames.arm]
1=%Disk_Description%,"slabvcp.cat"
[SourceDisksNames.arm64]
1=%Disk_Description%,"slabvcp.cat"
[SourceDisksFiles.x86]
silabser.sys = 1,x86
WdfCoinstaller01009.dll=1,x86
[SourceDisksFiles.amd64]
silabser.sys = 1,x64
WdfCoinstaller01009.dll=1,x64
[SourceDisksFiles.arm]
silabser.sys = 1,arm
WdfCoinstaller01011.dll=1,arm
[SourceDisksFiles.arm64]
silabser.sys = 1,arm64
WdfCoinstaller01015.dll=1,arm64
[DestinationDirs]
Silabser.Files.Ext = 12 ; windows\system32\drivers
;-------------- WDF Coinstaller installation
[DestinationDirs]
CoInstaller_CopyFiles.KMDF.1.09 = 11 ; windows\system32
CoInstaller_CopyFiles.KMDF.1.11 = 11 ; windows\system32
CoInstaller_CopyFiles.KMDF.1.15 = 11 ; windows\system32
;DDInstall.CoInstallers sections (one per x86, amd64, arm, arm64)
; "You can use any INF section in a universal INF file except for [CoInstallers]" -- MSDN
[SiLabsDDInstallSection.NTx86.CoInstallers]
AddReg=CoInstaller_AddReg.KMDF.1.09
CopyFiles=CoInstaller_CopyFiles.KMDF.1.09
[SiLabsDDInstallSection.NTamd64.CoInstallers]
AddReg=CoInstaller_AddReg.KMDF.1.09
CopyFiles=CoInstaller_CopyFiles.KMDF.1.09
[SiLabsDDInstallSection.NTarm.CoInstallers]
AddReg=CoInstaller_AddReg.KMDF.1.11
CopyFiles=CoInstaller_CopyFiles.KMDF.1.11
[SiLabsDDInstallSection.NTarm64.CoInstallers]
AddReg=CoInstaller_AddReg.KMDF.1.15
CopyFiles=CoInstaller_CopyFiles.KMDF.1.15
[CoInstaller_CopyFiles.KMDF.1.09]
WdfCoinstaller01009.dll
[CoInstaller_CopyFiles.KMDF.1.11]
WdfCoinstaller01011.dll
[CoInstaller_CopyFiles.KMDF.1.15]
WdfCoinstaller01015.dll
[SourceDisksFiles]
WdfCoinstaller01009.dll=1
WdfCoinstaller01011.dll=1
WdfCoinstaller01015.dll=1
[CoInstaller_AddReg.KMDF.1.09]
HKR,,CoInstallers32,0x00010000, "WdfCoinstaller01009.dll,WdfCoInstaller"
[CoInstaller_AddReg.KMDF.1.11]
HKR,,CoInstallers32,0x00010000, "WdfCoinstaller01011.dll,WdfCoInstaller"
[CoInstaller_AddReg.KMDF.1.15]
HKR,,CoInstallers32,0x00010000, "WdfCoinstaller01015.dll,WdfCoInstaller"
;DDInstall.Wdf sections (one per x86, amd64, arm, arm64)
[SiLabsDDInstallSection.NTx86.Wdf]
KmdfService = silabser, SiLabs_wdfsect.1.09
[SiLabsDDInstallSection.NTamd64.Wdf]
KmdfService = silabser, SiLabs_wdfsect.1.09
[SiLabsDDInstallSection.NTarm.Wdf]
KmdfService = silabser, SiLabs_wdfsect.1.11
[SiLabsDDInstallSection.NTarm64.Wdf]
KmdfService = silabser, SiLabs_wdfsect.1.15
[SiLabs_wdfsect.1.09]
KmdfLibraryVersion = 1.09
[SiLabs_wdfsect.1.11]
KmdfLibraryVersion = 1.11
[SiLabs_wdfsect.1.15]
KmdfLibraryVersion = 1.15
;---------------------------------------------------------------;
[Strings]
Provider="Silicon Laboratories Inc."
ManufacturerName="Silicon Labs"
Disk_Description= "Silicon Labs CP210x USB to UART Bridge Installation Disk"
USB\VID_10C4&PID_EA60.DeviceDesc= "Silicon Labs CP210x USB to UART Bridge"
USB\VID_10C4&PID_EA63.DeviceDesc= "Silicon Labs CP210x USB to UART Bridge"
USB\VID_10C4&PID_EA70&Mi_00.DeviceDesc="Silicon Labs Dual CP2105 USB to UART Bridge: Enhanced COM Port"
USB\VID_10C4&PID_EA70&Mi_01.DeviceDesc="Silicon Labs Dual CP2105 USB to UART Bridge: Standard COM Port"
USB\VID_10C4&PID_EA71&Mi_00.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 0"
USB\VID_10C4&PID_EA71&Mi_01.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 1"
USB\VID_10C4&PID_EA71&Mi_02.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 2"
USB\VID_10C4&PID_EA71&Mi_03.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 3"
USB\VID_10C4&PID_EA7A&Mi_00.DeviceDesc="Silicon Labs Dual CP2105 USB to UART Bridge: Enhanced COM Port"
USB\VID_10C4&PID_EA7A&Mi_01.DeviceDesc="Silicon Labs Dual CP2105 USB to UART Bridge: Standard COM Port"
USB\VID_10C4&PID_EA7B&Mi_00.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 0"
USB\VID_10C4&PID_EA7B&Mi_01.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 1"
USB\VID_10C4&PID_EA7B&Mi_02.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 2"
USB\VID_10C4&PID_EA7B&Mi_03.DeviceDesc="Silicon Labs Quad CP2108 USB to UART Bridge: Interface 3"
silabser.SvcDesc="Silicon Labs CP210x USB to UART Bridge Driver"

Binary file not shown.

Binary file not shown.

Binary file not shown.

Binary file not shown.

View File

@ -0,0 +1,341 @@
CP210x Windows XP/Vista(32/64)/7(32/64)/8,8.1(32/64) Driver v6.7 Release Notes
Copyright (C) 2014 Silicon Laboratories, Inc.
This release contains the following components:
* x64 directory
* silabser.sys
* silabenm.sys
* x86 directory
* silabser.sys
* silabenm.sys
* CP210xVCPInstaller_x86.exe (DPInst)
* CP210xVCPInstaller_x64.exe (DPInst)
* dpinst.xml (DPInst initialization file)
* silabser.cat
* slabvcp.inf
* ReleaseNotes.txt (this file)
Driver Installation
-------------------
See Kit User's Guide for installation instructions.
Release Dates
-------------
CP210x USB to UART Bridge Driver v6.7 - April 11, 2013
Supported Operating Systems
---------------------------
Windows 8/8.1 (64/32), 7 (64/32), Vista (64/32), and XP
CP210x Windows Driver Revision History
--------------------------------------
version 6.7 (Apr 11, 2014)
Corrections
-----------
Added vendor-specific commands to the driver that do not affect normal operation with
standard CP210x devices.
Modified write behavior to packetize data as a work around for a rare USB 2.0 hub behavior
seen only in Windows XP (x86).
version 6.6.1 (Oct 24, 2013)
New features/Enhancements
-------------------------
Added certification for Windows 8.1
version 6.6.1
New features/Enhancements
-------------------------
Added support for CP2108 devices
Corrections
-----------
Corrected bug where OS would hang on repitition of many rapid open/closes on
certain systems.
version 6.6
New features/Enhancements
-------------------------
Moving installer format to DPInst
Supported under Windows 8
Corrections
-----------
Corrected bug in total write timeout calculation
Corrected bug where EV_BREAK event could be misreported based on incoming data
Corrected another BSOD corner case regarding write cancellation
version 6.5.3
Corrections
-----------
Corrected BSOD corner case for a write cancellation
Corrected memory leak that occurs when a device is plugged/unplugged rapidly enough to
allow driver startup function to fail
version 6.5
Corrections
-----------
Corrected BSOD corner case issue for handling control requests
Corrected issue where USB 3.0 hubs would deliver data to the driver out of order
version 6.4
Corrections
-----------
Corrected multiple BSOD issues by updating request handling for control requests to the USB
device, and the write completion method
Corrected device removal routine to also undo the COM port naming in the registry at removal time
instead of when the device is closed after the removal.
version 6.3a
Corrections
-----------
Updated to 3.2 DriverInstaller to correct a bug seen when updating from an old driver
installer version
version 6.3
Corrections
-----------
Corrected a bug introduced in 6.2 which caused BSOD during surprise removal.
Corrected a bug found in I/O cancellation corner case
version 6.2
Corrections
-----------
Corrected return value for DeviceIoControl() and other COM API functions once the device is
removed to properly show ERROR_ACCESS_DENIED (0x05) instead of ERROR_BAD_COMMAND in GetLastError()
Corrected bug in DTR/RTS reporting latency seen if you set DTR/RTS and ask for it before the
device has reported it to the host - now when it is written it reads back immediately
Corrected several USB requests that were improperly defined as device requests when they are actually
interface requests - this doesn't exhibit and bugs in current single interface devices but was changed
to be complete and correct
New features/Enhancements
-------------------------
Added support for CP2104 and CP2105 devices
version 6.1
Corrections
-----------
Corrected a memory leak which could bog the system down after extended use of a contiuously
opened COM port, and conditionally yield bluescreens on certain systems
Corrected a problem where an IO reqest would sometimes return a busy status to
user mode, instead the queue is restarted if necessary before adding an IO request
to the queue
Corrected a condition which would blue screen on cancelling write request that hasn't been
fully sent out USB
Corrected the Capabilites return value, which incorrectly reported that timeouts are not supported
Corrected several Queue size return values, which affected behavior in the MSCOMM control
Corrected DTR/RTS value on device insertion, visible when Serial Enumeration is disabled
Corrected the ability to override Baud Rate and Line Control from the INF file
version 6.0
Corrections
-----------
Corrected multiple blue screens and driver hangs related to race conditions in the driver
Corrected problem where driver hangs when 4 or more devices are connected to a single
transaction translator hub
Corrected bugs that prohibited serial enumeration
Corrected problem where IO requests were not completed/cancelled on a close
Corrected problem with dialing out or PPP connections
New features/Enhancements
-------------------------
Created IO queueing mechanism so that multiple reads, writes, etc. can be queued and
waited on
version 5.4.29
Corrections
-----------
Fixed a bug which causes GET_COMM_STATUS to take longer than expected (previously corrected
in version 5.3)
Corrected several conditions which cause blue screens
Corrected bug in surprise removal which can cause a blue screen
Corrected bug where TX_EMPTY wasn't being reported properly
New features/Enhancements
-------------------------
Added Windows 7 to the general installer for XP/2003/Vista under KMDF 1.9
Modified driver to support selective suspend in Vista/7
Updated silabenm.sys to include latest changes from serenum in the WDK
WHQL Certified for XP/2003/Vista(32/64)/7(32/64)
version 5.4.24
Corrections
-----------
Fixed a bug which caused a random crash if a write took longer than normal to complete
New features/Enhancements
-------------------------
WHQL Certified for XP/2000/2003/Vista(32/64)
version 5.4.23
Corrections
-----------
Fixed a bug which caused a crash if the device is surprise removed during communication.
Fixed a bug which incorrectly uses the TX_EMPTY flag.
Fixed incorrect/incosistent status return values.
Corrected the default software flow control values
version 5.4
Corrections
-----------
Fixed bug where the first packet of data is dropped in Windows 2000.
New features/Enhancements
-------------------------
Added support to keep all GPIO pin states and all baud rate and line control data if
the device loses power during standby or hibernation.
Updated to use the latest version 1.7 of KMDF
version 5.3
Corrections
-----------
Corrected the IOCTL_SERIAL_SET_QUEUE_SIZE to allow expansion of the receive buffer.
Modified driver to limit the device access only when necessary to improve performance.
Corrected a case where read interval timeouts do not get started properly.
version 5.2.2
Corrections
-----------
Fixed a bug that was causing random bluescreens after a device is opened and closed.
version 5.2.1
Corrections
-----------
Fixed a bug caused by the previous fix for incomplete reads in Hyperterminal.
Fixed a bug when using the Manufacturing DLL where no data comes back from the part for
customization type settings in Vista 64.
version 5.2
Corrections
-----------
Fixed a BAD_POOL_HEADER blue screen issue.
Fixed a crash during surprise disconnect in HyperTerminal on Vista.
Fixed a problem causing various incomplete reads, sometimes visible in HyperTerminal.
New features/Enhancements
-------------------------
CP210xVCPInstaller.exe updated to v2.4.
version 5.1
Corrections
-----------
Multiple devices can be used now with no problems.
Driver now correctly works with the MSCOMM ActiveX control.
version 5.0
New features/Enhancements
-------------------------
Driver has been updated to use the KMDF.
Driver now includes a Serial Enumeration filter driver.
WHQL Certified for XP/2000/2003/Vista(32/64).
version 4.40
New features/Enhancements
-------------------------
Driver has been updated to include Vista (x86/x64) support.
CP210xVCPInstaller.exe updated to v2.0.
version 4.38a
New features/Enhancements
-------------------------
Driver version 4.38 is the same, however the installation procedure changed and a new
installation utility has been provided.
INF files have been changed to be independent of the installer, making reseller submissions
easier.
Windows 2K\XP\2003 now all have the same catalog file making the installation a single
utility for all OS's.
version 4.38
New features/Enhancements
-------------------------
Extended surprise removal support added to fix COM port hang.
WHQL Certified for Windows XP and 2000.
Version 4.28a
New features/Enhancements
-------------------------
WHQL Certified for Windows XP and 2000.
Version 4.28
New features/Enhancements
-------------------------
Includes Preinstaller executable and with added preinstaller support in uninstaller
executable and ini files.
Corrections
-----------
Fixed driver lock condition caused by certain invalid port settings.
Fixed Windows 98 PreInstaller issue.
Version 4.20
New features/Enhancements
-------------------------
Changed driver binary file names from cyg_* to slab*. Also changed
default inf file strings to SLAB and Silicon Laboratories.
This installation includes catalog files for Windows 2000/XP Windows
Hardware Quality Lab (WHQL) Certification.
Corrections
-----------
Modified behavior of SERIAL_EV_TXEMPTY event notification. Applications
will no longer miss TXEMPTY events if a write is pending during the
IOCTL_SERIAL_WAIT_ON_MASK control request.
Version 4.16
New features/Enhancements
-------------------------
Corrections
-----------
Changed behavior for IOCTL_SERIAL_LSRMST_INSERT for correct modem
event insertion.
Version 4.09
Initial Release

Some files were not shown because too many files have changed in this diff Show More