Merge branch 'ide-1.5.x' into SoftwareSerial

This commit is contained in:
Martino Facchin 2015-03-05 12:33:35 +01:00
commit 6a86cbc793
212 changed files with 54464 additions and 5759 deletions

4
.gitignore vendored
View File

@ -29,12 +29,16 @@ build/macosx/dist/*.tar.gz
build/macosx/dist/*.tar.bz2
build/macosx/libastylej*
build/macosx/appbundler*.jar
build/macosx/appbundler*.zip
build/macosx/appbundler
build/macosx/appbundler-1.0ea-arduino2
build/linux/work/
build/linux/dist/*.tar.gz
build/linux/dist/*.tar.bz2
build/linux/*.tgz
build/linux/*.zip
build/linux/libastylej*
build/shared/reference*.zip
test-bin
*.iml
.idea

View File

@ -6,10 +6,11 @@ board and a development environment that implements the Processing/Wiring
language. Arduino can be used to develop stand-alone interactive objects or
can be connected to software on your computer (e.g. Flash, Processing, MaxMSP).
The boards can be assembled by hand or purchased preassembled; the open-source
IDE can be downloaded for free.
IDE can be downloaded for free at http://arduino.cc/en/Main/Software
* For more information, see the website at: http://www.arduino.cc/
or the forums at: http://arduino.cc/forum/
or the forums at: http://arduino.cc/forum/
You can also follow Arduino on twitter at: https://twitter.com/arduino or like Arduino on Facebook at: https://www.facebook.com/official.arduino
* To report a *bug* in the software or to request *a simple enhancement* go to:
http://github.com/arduino/Arduino/issues

View File

@ -103,6 +103,7 @@
<junit printsummary="yes" dir="${work.dir}" fork="true">
<jvmarg value="-Djava.library.path=${java.additional.library.path}"/>
<jvmarg value="-DWORK_DIR=."/>
<classpath>
<pathelement location="bin"/>
<pathelement location="test-bin"/>

Binary file not shown.

View File

@ -22,23 +22,11 @@
package processing.app;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.util.List;
import javax.swing.*;
import cc.arduino.packages.DiscoveryManager;
import processing.app.debug.TargetBoard;
import processing.app.debug.TargetPackage;
import processing.app.debug.TargetPlatform;
import processing.app.helpers.CommandlineParser;
import processing.app.helpers.FileUtils;
import processing.app.helpers.GUIUserNotifier;
import processing.app.helpers.OSUtils;
import processing.app.helpers.PreferencesMap;
import processing.app.helpers.*;
import processing.app.helpers.filefilters.OnlyDirs;
import processing.app.helpers.filefilters.OnlyFilesWithExtension;
import processing.app.javax.swing.filechooser.FileNameExtensionFilter;
@ -48,6 +36,14 @@ import processing.app.packages.Library;
import processing.app.packages.LibraryList;
import processing.app.tools.MenuScroller;
import processing.app.tools.ZipDeflater;
import javax.swing.*;
import java.awt.*;
import java.awt.event.*;
import java.io.*;
import java.util.*;
import java.util.List;
import static processing.app.I18n._;
@ -186,7 +182,6 @@ public class Base {
try {
Class.forName("com.sun.jdi.VirtualMachine");
} catch (ClassNotFoundException cnfe) {
showPlatforms();
showError(_("Please install JDK 1.5 or later"),
_("Arduino requires a full JDK (not just a JRE)\n" +
"to run. Please install JDK 1.5 or later.\n" +
@ -661,21 +656,30 @@ public class Base {
*/
public void handleOpenPrompt() throws Exception {
// get the frontmost window frame for placing file dialog
JFileChooser fd = new JFileChooser(Preferences.get("last.folder", getSketchbookFolder().getAbsolutePath()));
fd.setDialogTitle(_("Open an Arduino sketch..."));
fd.setFileSelectionMode(JFileChooser.FILES_ONLY);
fd.setFileFilter(new FileNameExtensionFilter(_("Sketches (*.ino, *.pde)"), "ino", "pde"));
Dimension preferredSize = fd.getPreferredSize();
fd.setPreferredSize(new Dimension(preferredSize.width + 200, preferredSize.height + 200));
int returnVal = fd.showOpenDialog(activeEditor);
if (returnVal != JFileChooser.APPROVE_OPTION) {
return;
FileDialog fd = new FileDialog(activeEditor, _("Open an Arduino sketch..."), FileDialog.LOAD);
File lastFolder = new File(Preferences.get("last.folder", getSketchbookFolder().getAbsolutePath()));
if (lastFolder.exists() && lastFolder.isFile()) {
lastFolder = lastFolder.getParentFile();
}
fd.setDirectory(lastFolder.getAbsolutePath());
File inputFile = fd.getSelectedFile();
// Only show .pde files as eligible bachelors
fd.setFilenameFilter(new FilenameFilter() {
public boolean accept(File dir, String name) {
return name.toLowerCase().endsWith(".ino")
|| name.toLowerCase().endsWith(".pde");
}
});
fd.setVisible(true);
String directory = fd.getDirectory();
String filename = fd.getFile();
// User canceled selection
if (filename == null) return;
File inputFile = new File(directory, filename);
Preferences.set("last.folder", inputFile.getAbsolutePath());
handleOpen(inputFile);
@ -1188,6 +1192,7 @@ public class Base {
Action subAction = new AbstractAction(_(boardCustomMenu.get(customMenuOption))) {
public void actionPerformed(ActionEvent e) {
Preferences.set("custom_" + menuId, ((TargetBoard)getValue("board")).getId() + "_" + getValue("custom_menu_option"));
onBoardOrPortChange();
}
};
subAction.putValue("board", board);
@ -1901,43 +1906,40 @@ public class Base {
static public void showReference(String filename) {
File referenceFolder = getContentFile("reference");
File referenceFolder = getContentFile("reference/arduino.cc/en");
File referenceFile = new File(referenceFolder, filename);
if (!referenceFile.exists())
referenceFile = new File(referenceFolder, filename + ".html");
openURL(referenceFile.getAbsolutePath());
}
static public void showGettingStarted() {
if (OSUtils.isMacOS()) {
showReference(_("Guide_MacOSX.html"));
showReference("Guide/MacOSX");
} else if (OSUtils.isWindows()) {
showReference(_("Guide_Windows.html"));
showReference("Guide/Windows");
} else {
openURL(_("http://www.arduino.cc/playground/Learning/Linux"));
openURL("http://www.arduino.cc/playground/Learning/Linux");
}
}
static public void showReference() {
showReference(_("index.html"));
showReference("Reference/HomePage");
}
static public void showEnvironment() {
showReference(_("Guide_Environment.html"));
}
static public void showPlatforms() {
showReference(_("environment") + File.separator + _("platforms.html"));
showReference("Guide/Environment");
}
static public void showTroubleshooting() {
showReference(_("Guide_Troubleshooting.html"));
showReference("Guide/Troubleshooting");
}
static public void showFAQ() {
showReference(_("FAQ.html"));
showReference("Main/FAQ");
}

View File

@ -26,6 +26,7 @@ import cc.arduino.packages.MonitorFactory;
import com.jcraft.jsch.JSchException;
import jssc.SerialPortException;
import processing.app.debug.*;
import processing.app.forms.PasswordAuthorizationDialog;
import processing.app.helpers.OSUtils;
@ -60,6 +61,9 @@ import cc.arduino.packages.uploaders.SerialUploader;
@SuppressWarnings("serial")
public class Editor extends JFrame implements RunnerListener {
private final static List<String> BOARD_PROTOCOLS_ORDER = Arrays.asList(new String[]{"serial", "network"});
private final static List<String> BOARD_PROTOCOLS_ORDER_TRANSLATIONS = Arrays.asList(new String[]{_("Serial ports"), _("Network ports")});
Base base;
// otherwise, if the window is resized with the message label
@ -441,7 +445,7 @@ public class Editor extends JFrame implements RunnerListener {
textarea.setEditable(!external);
saveMenuItem.setEnabled(!external);
saveAsMenuItem.setEnabled(!external);
textarea.setDisplayLineNumbers(Preferences.getBoolean("editor.linenumbers"));
TextAreaPainter painter = textarea.getPainter();
@ -964,13 +968,17 @@ public class Editor extends JFrame implements RunnerListener {
}
JCheckBoxMenuItem selection = null;
for (int i = 0; i < serialMenu.getItemCount(); i++) {
JCheckBoxMenuItem item = ((JCheckBoxMenuItem)serialMenu.getItem(i));
if (item == null) {
JMenuItem menuItem = serialMenu.getItem(i);
if (!(menuItem instanceof JCheckBoxMenuItem)) {
continue;
}
JCheckBoxMenuItem checkBoxMenuItem = ((JCheckBoxMenuItem) menuItem);
if (checkBoxMenuItem == null) {
System.out.println(_("name is null"));
continue;
}
item.setState(false);
if (name.equals(item.getText())) selection = item;
checkBoxMenuItem.setState(false);
if (name.equals(checkBoxMenuItem.getText())) selection = checkBoxMenuItem;
}
if (selection != null) selection.setState(true);
//System.out.println(item.getLabel());
@ -996,7 +1004,32 @@ public class Editor extends JFrame implements RunnerListener {
String selectedPort = Preferences.get("serial.port");
List<BoardPort> ports = Base.getDiscoveryManager().discovery();
ports = Base.getPlatform().filterPorts(ports, Preferences.getBoolean("serial.ports.showall"));
Collections.sort(ports, new Comparator<BoardPort>() {
@Override
public int compare(BoardPort o1, BoardPort o2) {
return BOARD_PROTOCOLS_ORDER.indexOf(o1.getProtocol()) - BOARD_PROTOCOLS_ORDER.indexOf(o2.getProtocol());
}
});
String lastProtocol = null;
String lastProtocolTranslated;
for (BoardPort port : ports) {
if (lastProtocol == null || !port.getProtocol().equals(lastProtocol)) {
if (lastProtocol != null) {
serialMenu.addSeparator();
}
lastProtocol = port.getProtocol();
if (BOARD_PROTOCOLS_ORDER.indexOf(port.getProtocol()) != -1) {
lastProtocolTranslated = BOARD_PROTOCOLS_ORDER_TRANSLATIONS.get(BOARD_PROTOCOLS_ORDER.indexOf(port.getProtocol()));
} else {
lastProtocolTranslated = port.getProtocol();
}
serialMenu.add(new JMenuItem(_(lastProtocolTranslated)));
}
String address = port.getAddress();
String label = port.getLabel();
@ -1332,6 +1365,7 @@ public class Editor extends JFrame implements RunnerListener {
public void actionPerformed(ActionEvent e) {
try {
undo.undo();
sketch.setModified(true);
} catch (CannotUndoException ex) {
//System.out.println("Unable to undo: " + ex);
//ex.printStackTrace();
@ -1353,17 +1387,11 @@ public class Editor extends JFrame implements RunnerListener {
undoItem.setEnabled(true);
undoItem.setText(undo.getUndoPresentationName());
putValue(Action.NAME, undo.getUndoPresentationName());
if (sketch != null) {
sketch.setModified(true); // 0107
}
} else {
this.setEnabled(false);
undoItem.setEnabled(false);
undoItem.setText(_("Undo"));
putValue(Action.NAME, "Undo");
if (sketch != null) {
sketch.setModified(false); // 0107
}
}
}
}
@ -1378,6 +1406,7 @@ public class Editor extends JFrame implements RunnerListener {
public void actionPerformed(ActionEvent e) {
try {
undo.redo();
sketch.setModified(true);
} catch (CannotRedoException ex) {
//System.out.println("Unable to redo: " + ex);
//ex.printStackTrace();
@ -1646,7 +1675,7 @@ public class Editor extends JFrame implements RunnerListener {
if (document == null) { // this document not yet inited
document = new SyntaxDocument();
codeDoc.setDocument(document);
// turn on syntax highlighting
document.setTokenMarker(new PdeKeywords());
@ -1664,10 +1693,12 @@ public class Editor extends JFrame implements RunnerListener {
document.addUndoableEditListener(new UndoableEditListener() {
public void undoableEditHappened(UndoableEditEvent e) {
if (compoundEdit != null) {
compoundEdit.addEdit(e.getEdit());
compoundEdit.addEdit(new CaretAwareUndoableEdit(e.getEdit(), textarea));
} else if (undo != null) {
undo.addEdit(new CaretAwareUndoableEdit(e.getEdit(), textarea));
}
if (compoundEdit != null || undo != null) {
sketch.setModified(true);
undoAction.updateUndoState();
redoAction.updateRedoState();
}
@ -1870,7 +1901,7 @@ public class Editor extends JFrame implements RunnerListener {
} catch (BadLocationException bl) {
bl.printStackTrace();
}
}
return text;
}
@ -1881,7 +1912,7 @@ public class Editor extends JFrame implements RunnerListener {
if (referenceFile == null) {
statusNotice(I18n.format(_("No reference available for \"{0}\""), text));
} else {
Base.showReference(I18n.format(_("{0}.html"), referenceFile));
Base.showReference("Reference/" + referenceFile);
}
}
@ -2025,6 +2056,8 @@ public class Editor extends JFrame implements RunnerListener {
// As of Processing 1.0.10, this always happens immediately.
// http://dev.processing.org/bugs/show_bug.cgi?id=1456
toFront();
String prompt = I18n.format(_("Save changes to \"{0}\"? "), sketch.getName());
if (!OSUtils.isMacOS()) {
@ -2177,7 +2210,7 @@ public class Editor extends JFrame implements RunnerListener {
// copy the sketch inside
File properPdeFile = new File(properFolder, sketchFile.getName());
try {
Base.copyFile(file, properPdeFile);
Base.copyFile(sketchFile, properPdeFile);
} catch (IOException e) {
Base.showWarning(_("Error"), _("Could not copy to a proper location."), e);
return false;
@ -2538,6 +2571,12 @@ public class Editor extends JFrame implements RunnerListener {
statusError(_("Unable to connect: is the sketch using the bridge?"));
} catch (JSchException e) {
statusError(_("Unable to connect: wrong password?"));
} catch (SerialException e) {
String errorMessage = e.getMessage();
if (e.getCause() != null && e.getCause() instanceof SerialPortException) {
errorMessage += " (" + ((SerialPortException) e.getCause()).getExceptionType() + ")";
}
statusError(errorMessage);
} catch (Exception e) {
statusError(e);
} finally {

View File

@ -43,7 +43,7 @@ public class EditorToolbar extends JComponent implements MouseInputListener, Key
/** Titles for each button when the shift key is pressed. */
static final String titleShift[] = {
_("Verify"), _("Upload Using Programmer"), _("New Editor Window"), _("Open in Another Window"), _("Save"), _("Serial Monitor")
_("Verify"), _("Upload Using Programmer"), _("New"), _("Open in Another Window"), _("Save"), _("Serial Monitor")
};
static final int BUTTON_COUNT = title.length;
@ -334,14 +334,10 @@ public class EditorToolbar extends JComponent implements MouseInputListener, Key
break;
case NEW:
if (shiftPressed) {
try {
editor.base.handleNew();
} catch (Exception e1) {
e1.printStackTrace();
}
} else {
editor.base.handleNewReplace();
try {
editor.base.handleNew();
} catch (Exception e1) {
throw new RuntimeException(e1);
}
break;

View File

@ -116,8 +116,8 @@ public class Preferences {
new Language(_("Chinese Simplified"), "简体中文", "zh_CN"),
new Language(_("Chinese Traditional"), "繁體中文", "zh_TW"),
new Language(_("Croatian"), "Hrvatski", "hr_HR"),
new Language(_("Czech"), "český", "cs_CZ"),
new Language(_("Danish"), "Dansk", "da_DK"),
new Language(_("Czech (Czech Republic)"), "český (Czech Republic)", "cs_CZ"),
new Language(_("Danish (Denmark)"), "Dansk (Denmark)", "da_DK"),
new Language(_("Dutch"), "Nederlands", "nl"),
new Language(_("English"), "English", "en"),
new Language(_("English (United Kingdom)"), "English (United Kingdom)", "en_GB"),
@ -158,21 +158,34 @@ public class Preferences {
// Incomplete languages
Language missingLanguages[] = {
new Language(_("Afrikaans"), "Afrikaans", "af"),
new Language(_("Armenian"), "Հայերեն", "hy"),
new Language(_("Asturian"), "Asturianu", "ast"),
new Language(_("Basque"), "Euskara", "eu"),
new Language(_("Bengali (India)"), "বাংলা (India)", "bn_IN"),
new Language(_("Bosnian"), "Bosanski", "bs"),
new Language(_("Burmese (Myanmar)"), "ဗမာစကား", "my_MM"),
new Language(_("Chinese (China)"), "", "zh_CN"),
new Language(_("Chinese (Hong Kong)"), "", "zh_HK"),
new Language(_("Chinese (Taiwan)"), "", "zh_TW"),
new Language(_("Chinese (Taiwan) (Big5)"), "", "zh_TW.Big5"),
new Language(_("Czech"), "český", "cs"),
new Language(_("Danish"), "Dansk", "da"),
new Language(_("Dutch (Netherlands)"), "Nederlands", "nl_NL"),
new Language(_("Galician (Spain)"), "Galego (Spain)", "gl_ES"),
new Language(_("Nepali"), "नेपाली", "ne"),
new Language(_("N'Ko"), "ߒߞߏ", "nqo"),
new Language(_("Marathi"), "मराठी", "mr"),
new Language(_("Malay (Malaysia)"), "بهاس ملايو (Malaysia)", "ms_MY"),
new Language(_("Norwegian"), "Norsk", "no"),
new Language(_("Norwegian Nynorsk"), "Norsk Nynorsk", "nn"),
new Language(_("Portugese"), "Português", "pt"),
new Language(_("Persian (Iran)"), "فارسی (Iran)", "fa_IR"),
new Language(_("Slovak"), "Slovenčina", "sk"),
new Language(_("Swahili"), "كِسوَهِل", "sw"),
new Language(_("Talossan"), "Talossan", "tzl"),
new Language(_("Urdu (Pakistan)"), "اردو (Pakistan)", "ur_PK"),
new Language(_("Western Frisian"), "Western Frisian", "fy"),
};
/**

View File

@ -31,12 +31,17 @@ import processing.app.forms.PasswordAuthorizationDialog;
import processing.app.helpers.OSUtils;
import processing.app.helpers.PreferencesMapException;
import processing.app.packages.Library;
import static processing.app.I18n._;
import java.io.*;
import java.util.*;
import javax.swing.*;
import java.awt.*;
import java.io.File;
import java.io.FilenameFilter;
import java.io.IOException;
import java.util.Arrays;
import java.util.LinkedList;
import java.util.List;
import static processing.app.I18n._;
/**
@ -632,42 +637,44 @@ public class Sketch {
* because they can cause trouble.
*/
protected boolean saveAs() throws IOException {
JFileChooser fd = new JFileChooser();
fd.setDialogTitle(_("Save sketch folder as..."));
fd.setDialogType(JFileChooser.SAVE_DIALOG);
String newParentDir = null;
String newName = null;
// get new name for folder
FileDialog fd = new FileDialog(editor, _("Save sketch folder as..."), FileDialog.SAVE);
if (isReadOnly() || isUntitled()) {
// default to the sketchbook folder
fd.setSelectedFile(new File(Base.getSketchbookFolder().getAbsolutePath(), data.getFolder().getName()));
fd.setDirectory(Base.getSketchbookFolder().getAbsolutePath());
} else {
// default to the parent folder of where this was
fd.setSelectedFile(data.getFolder());
// on macs a .getParentFile() method is required
fd.setDirectory(data.getFolder().getParentFile().getAbsolutePath());
}
String oldName = data.getName();
fd.setFile(oldName);
int returnVal = fd.showSaveDialog(editor);
fd.setVisible(true);
newParentDir = fd.getDirectory();
newName = fd.getFile();
if (returnVal != JFileChooser.APPROVE_OPTION) {
return false;
}
// user canceled selection
if (newName == null) return false;
newName = Sketch.checkName(newName);
File selectedFile = fd.getSelectedFile();
String newName = Sketch.checkName(selectedFile.getName());
File newFolder = new File(selectedFile.getParentFile(), newName);
File newFolder = new File(newParentDir, newName);
// make sure there doesn't exist a .cpp file with that name already
// but ignore this situation for the first tab, since it's probably being
// resaved (with the same name) to another location/folder.
for (SketchCode code : data.getCodes()) {
if (newName.equalsIgnoreCase(code.getPrettyName()) &&
code.isExtension("cpp")) {
if (newName.equalsIgnoreCase(code.getPrettyName()) && code.isExtension("cpp")) {
Base.showMessage(_("Nope"),
I18n.format(
_("You can't save the sketch as \"{0}\"\n" +
"because the sketch already has a .cpp file with that name."),
newName
));
I18n.format(
_("You can't save the sketch as \"{0}\"\n" +
"because the sketch already has a .cpp file with that name."),
newName
));
return false;
}
}
@ -686,11 +693,12 @@ public class Sketch {
if (newPath.indexOf(oldPath) == 0) {
Base.showWarning(_("How very Borges of you"),
_("You cannot save the sketch into a folder\n" +
"inside itself. This would go on forever."), null);
_("You cannot save the sketch into a folder\n" +
"inside itself. This would go on forever."), null);
return false;
}
} catch (IOException e) { }
} catch (IOException e) {
}
// if the new folder already exists, then need to remove
// its contents before copying everything over
@ -742,10 +750,10 @@ public class Sketch {
data.getCode(0).saveAs(newFile);
editor.handleOpenUnchecked(newFile,
currentIndex,
editor.getSelectionStart(),
editor.getSelectionStop(),
editor.getScrollPosition());
currentIndex,
editor.getSelectionStart(),
editor.getSelectionStop(),
editor.getScrollPosition());
// Name changed, rebuild the sketch menus
//editor.sketchbook.rebuildMenusAsync();
@ -778,20 +786,16 @@ public class Sketch {
}
// get a dialog, select a file to add to the sketch
String prompt =
_("Select an image or other data file to copy to your sketch");
JFileChooser fd = new JFileChooser(Preferences.get("last.folder"));
fd.setDialogTitle(prompt);
FileDialog fd = new FileDialog(editor, _("Select an image or other data file to copy to your sketch"), FileDialog.LOAD);
fd.setVisible(true);
int returnVal = fd.showOpenDialog(editor);
if (returnVal != JFileChooser.APPROVE_OPTION) {
return;
}
String directory = fd.getDirectory();
String filename = fd.getFile();
if (filename == null) return;
// copy the file into the folder. if people would rather
// it move instead of copy, they can do it by hand
File sourceFile = fd.getSelectedFile();
File sourceFile = new File(directory, filename);
// now do the work of adding the file
boolean result = addFile(sourceFile);

View File

@ -23,17 +23,22 @@
package processing.app.tools;
import processing.app.*;
import processing.app.Base;
import processing.app.Editor;
import processing.app.Sketch;
import javax.swing.*;
import java.awt.*;
import java.io.File;
import java.io.FileOutputStream;
import java.io.IOException;
import java.text.NumberFormat;
import java.text.SimpleDateFormat;
import java.util.Date;
import java.util.zip.ZipEntry;
import java.util.zip.ZipOutputStream;
import static processing.app.I18n._;
import java.io.*;
import java.text.*;
import java.util.*;
import java.util.zip.*;
public class Archiver implements Tool {
Editor editor;
@ -107,36 +112,37 @@ public class Archiver implements Tool {
} while (newbie.exists());
// open up a prompt for where to save this fella
JFileChooser fd = new JFileChooser();
fd.setDialogTitle(_("Archive sketch as:"));
fd.setDialogType(JFileChooser.SAVE_DIALOG);
fd.setSelectedFile(newbie);
FileDialog fd = new FileDialog(editor, _("Archive sketch as:"), FileDialog.SAVE);
fd.setDirectory(parent.getAbsolutePath());
fd.setFile(newbie.getName());
fd.setVisible(true);
int returnVal = fd.showSaveDialog(editor);
String directory = fd.getDirectory();
String filename = fd.getFile();
if (returnVal != JFileChooser.APPROVE_OPTION) {
// only write the file if not canceled
if (filename != null) {
newbie = new File(directory, filename);
try {
//System.out.println(newbie);
FileOutputStream zipOutputFile = new FileOutputStream(newbie);
ZipOutputStream zos = new ZipOutputStream(zipOutputFile);
// recursively fill the zip file
buildZip(location, name, zos);
// close up the jar file
zos.flush();
zos.close();
editor.statusNotice("Created archive " + newbie.getName() + ".");
} catch (IOException e) {
e.printStackTrace();
}
} else {
editor.statusNotice(_("Archive sketch canceled."));
return;
}
newbie = fd.getSelectedFile();
try {
//System.out.println(newbie);
FileOutputStream zipOutputFile = new FileOutputStream(newbie);
ZipOutputStream zos = new ZipOutputStream(zipOutputFile);
// recursively fill the zip file
buildZip(location, name, zos);
// close up the jar file
zos.flush();
zos.close();
editor.statusNotice("Created archive " + newbie.getName() + ".");
} catch (IOException e) {
e.printStackTrace();
}
}

View File

@ -0,0 +1,41 @@
package processing.app;
import org.fest.swing.edt.GuiActionRunner;
import org.fest.swing.edt.GuiQuery;
import org.fest.swing.fixture.JMenuItemFixture;
import org.junit.Test;
import processing.app.helpers.JEditTextAreaFixture;
import java.awt.*;
import static org.junit.Assert.assertEquals;
public class BlockCommentGeneratesOneUndoActionTest extends AbstractGUITest {
@Test
public void shouldUndoAndRedo() throws Exception {
JMenuItemFixture menuEditUndo = window.menuItem("menuEditUndo");
menuEditUndo.requireDisabled();
JEditTextAreaFixture jEditTextArea = window.jEditTextArea("editor");
String previousText = jEditTextArea.getText();
jEditTextArea.selectAll();
GuiActionRunner.execute(new GuiQuery<Frame>() {
protected Frame executeInEDT() {
window.getEditor().handleCommentUncomment();
return window.getEditor();
}
});
menuEditUndo.requireEnabled();
menuEditUndo.click();
assertEquals(previousText, jEditTextArea.getText());
menuEditUndo.requireDisabled();
}
}

View File

@ -1,30 +1,23 @@
package processing.app.helpers;
import org.fest.swing.core.Robot;
import org.fest.swing.fixture.FrameFixture;
import processing.app.Editor;
import processing.app.syntax.JEditTextArea;
import java.awt.*;
public class ArduinoFrameFixture extends FrameFixture {
public ArduinoFrameFixture(Frame target) {
super(target);
}
private final Editor editor;
public ArduinoFrameFixture(org.fest.swing.core.Robot robot, Frame target) {
super(robot, target);
}
public ArduinoFrameFixture(Robot robot, String name) {
super(robot, name);
}
public ArduinoFrameFixture(String name) {
super(name);
public ArduinoFrameFixture(Editor editor) {
super(editor);
this.editor = editor;
}
public JEditTextAreaFixture jEditTextArea(String name) {
return new JEditTextAreaFixture(robot, (JEditTextArea) this.robot.finder().find(new JEditTextAreaComponentMatcher(name)));
}
public Editor getEditor() {
return editor;
}
}

Binary file not shown.

View File

@ -58,19 +58,32 @@ public class NetworkDiscovery implements Discovery, ServiceListener, cc.arduino.
@Override
public List<BoardPort> discovery() {
List<BoardPort> ports = clonePortsList();
Iterator<BoardPort> iterator = ports.iterator();
while (iterator.hasNext()) {
List<BoardPort> boardPorts = clonePortsList();
Iterator<BoardPort> boardPortIterator = boardPorts.iterator();
while (boardPortIterator.hasNext()) {
try {
BoardPort board = iterator.next();
if (!NetUtils.isReachable(InetAddress.getByName(board.getAddress()), Integer.parseInt(board.getPrefs().get("port")))) {
iterator.remove();
BoardPort board = boardPortIterator.next();
InetAddress inetAddress = InetAddress.getByName(board.getAddress());
int broadcastedPort = Integer.valueOf(board.getPrefs().get("port"));
List<Integer> ports = new LinkedList<Integer>();
ports.add(broadcastedPort);
//dirty code: allows non up to date yuns to be discovered. Newer yuns will broadcast port 22
if (broadcastedPort == 80) {
ports.add(0, 22);
}
boolean reachable = NetUtils.isReachable(inetAddress, ports);
if (!reachable) {
boardPortIterator.remove();
}
} catch (UnknownHostException e) {
iterator.remove();
boardPortIterator.remove();
}
}
return ports;
return boardPorts;
}
private List<BoardPort> clonePortsList() {

View File

@ -7,7 +7,7 @@
Copyright (c) 2004-05
Hernando Barragan
Copyright (c) 2012
Cristian Maglie <c.maglie@bug.st>
Cristian Maglie <c.maglie@arduino.cc>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -7,13 +7,8 @@ import java.io.FileInputStream;
import java.io.FileWriter;
import java.io.IOException;
import java.io.InputStream;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Date;
import java.util.HashMap;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
import java.net.URISyntaxException;
import java.util.*;
import java.util.logging.Level;
import java.util.logging.Logger;
@ -42,9 +37,9 @@ import processing.app.packages.LibraryList;
public class BaseNoGui {
/** Version string to be used for build */
public static final int REVISION = 10600;
public static final int REVISION = 10601;
/** Extended version string displayed on GUI */
static String VERSION_NAME = "1.6.0";
static String VERSION_NAME = "1.6.1";
static File buildFolder;
@ -154,35 +149,46 @@ public class BaseNoGui {
TargetBoard board = getTargetBoard();
if (board == null)
return null;
String boardId = board.getId();
PreferencesMap prefs = new PreferencesMap(board.getPreferences());
String extendedName = prefs.get("name");
for (String menuId : board.getMenuIds()) {
if (!board.hasMenu(menuId))
continue;
// Get "custom_[MENU_ID]" preference (for example "custom_cpu")
String entry = PreferencesData.get("custom_" + menuId);
if (board.hasMenu(menuId) && entry != null &&
entry.startsWith(board.getId())) {
String selectionId = entry.substring(entry.indexOf("_") + 1);
if (entry != null && entry.startsWith(boardId)) {
String selectionId = entry.substring(boardId.length() + 1);
prefs.putAll(board.getMenuPreferences(menuId, selectionId));
prefs.put("name", prefs.get("name") + ", " +
board.getMenuLabel(menuId, selectionId));
// Update the name with the extended configuration
extendedName += ", " + board.getMenuLabel(menuId, selectionId);
}
}
prefs.put("name", extendedName);
return prefs;
}
static public File getContentFile(String name) {
String path = System.getProperty("user.dir");
File path = new File(System.getProperty("user.dir"));
// Get a path to somewhere inside the .app folder
if (OSUtils.isMacOS()) {
// <key>javaroot</key>
// <string>$JAVAROOT</string>
String javaroot = System.getProperty("javaroot");
if (javaroot != null) {
path = javaroot;
if (System.getProperty("WORK_DIR") != null) {
path = new File(System.getProperty("WORK_DIR"));
} else {
try {
path = new File(BaseNoGui.class.getProtectionDomain().getCodeSource().getLocation().toURI().getPath()).getParentFile();
} catch (URISyntaxException e) {
throw new RuntimeException(e);
}
}
}
File working = new File(path);
return new File(working, name);
return new File(path, name);
}
static public TargetPlatform getCurrentTargetPlatformFromPackage(String pack) {
@ -682,7 +688,7 @@ public class BaseNoGui {
// Add library folder for the current selected platform
TargetPlatform targetPlatform = getTargetPlatform();
if (targetPlatform != null) {
String core = getBoardPreferences().get("build.core");
String core = getBoardPreferences().get("build.core", "arduino");
if (core.contains(":")) {
String referencedCore = core.split(":")[0];
TargetPlatform referencedPlatform = getTargetPlatform(referencedCore, targetPlatform.getId());

View File

@ -30,6 +30,7 @@ import java.util.Map;
import javax.swing.UIManager;
import cc.arduino.packages.BoardPort;
import com.sun.jna.Library;
import com.sun.jna.Native;
import processing.app.debug.TargetBoard;
@ -217,4 +218,8 @@ public class Platform {
_("Unspecified platform, no launcher available.\nTo enable opening URLs or folders, add a \n\"launcher=/path/to/app\" line to preferences.txt"),
null);
}
public List<BoardPort> filterPorts(List<BoardPort> ports, boolean aBoolean) {
return new LinkedList<BoardPort>(ports);
}
}

View File

@ -34,6 +34,7 @@ import java.io.IOException;
import java.io.PrintWriter;
import java.util.ArrayList;
import java.util.Arrays;
import java.util.Collections;
import java.util.LinkedList;
import java.util.List;
import java.util.Map;
@ -399,13 +400,17 @@ public class Compiler implements MessageConsumer {
progressListener.progress(60);
compileLink();
// 5. extract EEPROM data (from EEMEM directive) to .eep file.
progressListener.progress(70);
runRecipe("recipe.objcopy.eep.pattern");
// 6. build the .hex file
progressListener.progress(80);
runRecipe("recipe.objcopy.hex.pattern");
// 5. run objcopy to generate output files
progressListener.progress(75);
List<String> objcopyPatterns = new ArrayList<String>();
for (String key : prefs.keySet()) {
if (key.startsWith("recipe.objcopy.") && key.endsWith(".pattern"))
objcopyPatterns.add(key);
}
Collections.sort(objcopyPatterns);
for (String recipe : objcopyPatterns) {
runRecipe(recipe);
}
progressListener.progress(90);
return true;
@ -426,7 +431,7 @@ public class Compiler implements MessageConsumer {
TargetPlatform targetPlatform = BaseNoGui.getTargetPlatform();
TargetPlatform corePlatform = null;
PreferencesMap boardPreferences = BaseNoGui.getBoardPreferences();
String core = boardPreferences.get("build.core");
String core = boardPreferences.get("build.core", "arduino");
if (core.contains(":")) {
String[] split = core.split(":");
core = split[1];

View File

@ -5,7 +5,7 @@
Part of the Arduino project - http://www.arduino.cc/
Copyright (c) 2006 David A. Mellis
Copyright (c) 2011 Cristian Maglie <c.maglie@bug.st>
Copyright (c) 2011 Cristian Maglie <c.maglie@arduino.cc>
This program is free software; you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by

View File

@ -63,6 +63,10 @@ public class CommandlineParser {
action = a;
continue;
}
if (args[i].startsWith("-psn")) {
//discard
continue;
}
if (args[i].equals("--verbose") || args[i].equals("-v")) {
doVerboseBuild = true;
doVerboseUpload = true;

View File

@ -4,14 +4,41 @@ import java.io.IOException;
import java.net.InetAddress;
import java.net.InetSocketAddress;
import java.net.Socket;
import java.util.Arrays;
import java.util.List;
public abstract class NetUtils {
private static boolean isReachableByEcho(InetAddress address) {
try {
return address.isReachable(100);
} catch (IOException e) {
return false;
}
}
public static boolean isReachable(InetAddress address, int port) {
return isReachable(address, Arrays.asList(port));
}
public static boolean isReachable(InetAddress address, List<Integer> ports) {
if (isReachableByEcho(address)) {
return true;
}
boolean reachable = false;
for (Integer port : ports) {
reachable = reachable || isPortOpen(address, port);
}
return reachable;
}
private static boolean isPortOpen(InetAddress address, int port) {
Socket socket = null;
try {
socket = new Socket();
socket.connect(new InetSocketAddress(address, port), 100);
socket.connect(new InetSocketAddress(address, port), 300);
return true;
} catch (IOException e) {
return false;

View File

@ -319,4 +319,12 @@ public class PreferencesMap extends LinkedHashMap<String, String> {
return new Boolean(prev);
}
public String get(String key, String defaultValue) {
String value = get(key);
if (value != null) {
return value;
}
return defaultValue;
}
}

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -97,6 +97,10 @@ msgstr "Adhibir fichero..."
msgid "Add Library..."
msgstr "Adhibir biblioteca..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albano"
@ -289,6 +293,10 @@ msgstr "Basco"
msgid "Belarusian"
msgstr "Beloruso"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Tallar"
msgid "Czech"
msgstr "Checo"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danés"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Disminuir sangría"
@ -791,10 +807,6 @@ msgstr "Eixemplos"
msgid "Export canceled, changes must first be saved."
msgstr "Cancelada exportación, os cambeos s'han de salvar antes."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Preguntas mas freqüents"
msgid "Galician"
msgstr "Gallego"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgiano"
@ -892,22 +908,6 @@ msgstr "As variables globals usan {0} bytes d'a memoria dinamica."
msgid "Greek"
msgstr "Griego"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebreu"
@ -1002,6 +1002,10 @@ msgstr "Lituano"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1046,6 +1050,10 @@ msgstr "Nombre d'o nuevo fichero:"
msgid "Nepali"
msgstr "Nepalí"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "A puyada por red fendo servir lo programador no ye suportada"
@ -1145,10 +1153,18 @@ msgstr "Error no fatal entre que se configuraba a apariencia."
msgid "Nope"
msgstr "No."
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Noruego"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Puerto {0} no trobau.\nReintentar a puyada con unatro puerto?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Qüestions d'achustes"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketches (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Esloveno"
@ -1548,6 +1572,10 @@ msgstr "Español"
msgid "Sunshine"
msgstr "Sol"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Sueco"
@ -1556,6 +1584,10 @@ msgstr "Sueco"
msgid "System Default"
msgstr "Achustes Inicials"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1761,6 +1793,10 @@ msgstr "Puyando a la Placa I/U..."
msgid "Uploading..."
msgstr "Puyando..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Usar selección ta buscar"
@ -1810,6 +1846,10 @@ msgstr "WARNING: a biblioteca {0} pareix que s'executa en {1} arquitectura(s) y
msgid "Warning"
msgstr "Warning"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() ha estau renombrau a Wire.read()"
@ -1966,10 +2006,6 @@ msgstr "createNewFile() retornó FALSO."
msgid "enabled in File > Preferences."
msgstr "activala dende Fichero > Preferencias"
#: Base.java:2090
msgid "environment"
msgstr "entorno"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/main/software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/learning/linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignorando grandaria de fuent invalido {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "o nombre ye vuedo"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu ye vuedo"
@ -2037,11 +2061,6 @@ msgstr "{0} retornó {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Adhibir fichero...
#: Base.java:963
Add\ Library...=Adhibir biblioteca...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albano
@ -189,6 +192,9 @@ Basque=Basco
#: ../../../processing/app/Preferences.java:139
Belarusian=Beloruso
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Placa
@ -404,9 +410,15 @@ Cut=Tallar
#: ../../../processing/app/Preferences.java:83
Czech=Checo
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Dan\u00e9s
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Disminuir sangr\u00eda
@ -559,9 +571,6 @@ Examples=Eixemplos
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Cancelada exportaci\u00f3n, os cambeos s'han de salvar antes.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Fallo en ubrir lo programa\: "{0}"
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Preguntas mas freq\u00fcents
#: Preferences.java:96
Galician=Gallego
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgiano
@ -633,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=As variables globals us
#: Preferences.java:98
Greek=Griego
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebreu
@ -709,6 +709,9 @@ Lithuaninan=Lituano
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Nombre d'o nuevo fichero\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepal\u00ed
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=A puyada por red fendo servir lo programador no ye suportada
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal entre que s
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=No.
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Noruego
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=No i hai suficient memoria, veyer http\://www.arduino.cc/en/guide/troubleshooting\#size ta obtener consellos sobre c\u00f3mo reducir o suyo sinyal.
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Puerto {0} no trobau.\nReintentar a puyada con unatro puerto?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Q\u00fcestions d'achustes
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=Localizaci\u00f3n de o sketchbook
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Esloveno
@ -1109,12 +1127,18 @@ Spanish=Espa\u00f1ol
#: Base.java:540
Sunshine=Sol
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Sueco
#: Preferences.java:84
System\ Default=Achustes Inicials
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=Puyando a la Placa I/U...
#: Sketch.java:1622
Uploading...=Puyando...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Usar selecci\u00f3n ta buscar
@ -1279,6 +1306,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Warning
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha estau renombrau a Wire.read()
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() retorn\u00f3 FALSO.
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=activala dende Fichero > Preferencias
#: Base.java:2090
environment=entorno
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/main/software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/learning/linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignorando grandaria de fuent invalido {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=o nombre ye vuedo
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu ye vuedo
@ -1422,10 +1440,6 @@ upload=puyar
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0} Argumento invalido ta --pref, ha d'estar d'a traza "pref\=valura"

View File

@ -100,6 +100,10 @@ msgstr "...اضف ملف"
msgid "Add Library..."
msgstr "اضف مكتبة "
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "ألباني"
@ -292,6 +296,10 @@ msgstr "لغة الباسك"
msgid "Belarusian"
msgstr "بيلاروسي"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -588,10 +596,18 @@ msgstr "قص"
msgid "Czech"
msgstr "تشيكي"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Dansk"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "تقليل البادئة"
@ -794,10 +810,6 @@ msgstr "أمثلة"
msgid "Export canceled, changes must first be saved."
msgstr "لقد ألغي التصدير، يجب حفظ التغييرات أولا"
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -867,6 +879,10 @@ msgstr "اسئلة متكررة"
msgid "Galician"
msgstr "Galego"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "الجورجية"
@ -895,22 +911,6 @@ msgstr ""
msgid "Greek"
msgstr "Greek"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "العبرية"
@ -1005,6 +1005,10 @@ msgstr "Lithuaninan"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1049,6 +1053,10 @@ msgstr "اسم لملف جديد:"
msgid "Nepali"
msgstr "النيبالية"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1148,10 +1156,18 @@ msgstr "خطأ-غير-ضار اثناء اعداد واجة البرنامج"
msgid "Nope"
msgstr "لا يا صديقي"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "النرويجية"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1448,6 +1464,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "المنفذ التسلسلي {0} لم يتم العثور عليه.\nحاول الرفع باستخدام منفذ تلسلسي آخر ?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "ضبط المسائل"
@ -1521,6 +1541,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "اللغة السلوفينية"
@ -1551,6 +1575,10 @@ msgstr "Spanish"
msgid "Sunshine"
msgstr "شروق الشمس"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "اللغة السويدية"
@ -1559,6 +1587,10 @@ msgstr "اللغة السويدية"
msgid "System Default"
msgstr "الاعدادات الافتراضية"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1764,6 +1796,10 @@ msgstr "جاري التحميل إلى اللوحة دخل/خرج ..."
msgid "Uploading..."
msgstr "رفع..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "استخدم المظلل للبحث"
@ -1813,6 +1849,10 @@ msgstr ""
msgid "Warning"
msgstr "تحذير"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "()Wire.receive تم اعادة تسميتها الى ()Wire.read."
@ -1969,10 +2009,6 @@ msgstr "createNewFile() returned false"
msgid "enabled in File > Preferences."
msgstr "مفعل في ملف> تفضيلات."
#: Base.java:2090
msgid "environment"
msgstr "البيئة"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1985,27 +2021,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "تجاهل الخطأ في حجم الخط {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "الاسم فارغ"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "قائمة-المنفد التلسلسي فارغة"
@ -2040,11 +2064,6 @@ msgstr "{0} أرجعت {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | أردوينو {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -59,6 +59,9 @@ Add\ File...=...\u0627\u0636\u0641 \u0645\u0644\u0641
#: Base.java:963
Add\ Library...=\u0627\u0636\u0641 \u0645\u0643\u062a\u0628\u0629
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u0623\u0644\u0628\u0627\u0646\u064a
@ -192,6 +195,9 @@ Basque=\u0644\u063a\u0629 \u0627\u0644\u0628\u0627\u0633\u0643
#: ../../../processing/app/Preferences.java:139
Belarusian=\u0628\u064a\u0644\u0627\u0631\u0648\u0633\u064a
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u0644\u0648\u062d\u0629
@ -407,9 +413,15 @@ Cut=\u0642\u0635
#: ../../../processing/app/Preferences.java:83
Czech=\u062a\u0634\u064a\u0643\u064a
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Dansk
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u062a\u0642\u0644\u064a\u0644 \u0627\u0644\u0628\u0627\u062f\u0626\u0629
@ -562,9 +574,6 @@ Examples=\u0623\u0645\u062b\u0644\u0629
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0644\u0642\u062f \u0623\u0644\u063a\u064a \u0627\u0644\u062a\u0635\u062f\u064a\u0631\u060c \u064a\u062c\u0628 \u062d\u0641\u0638 \u0627\u0644\u062a\u063a\u064a\u064a\u0631\u0627\u062a \u0623\u0648\u0644\u0627
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\u0641\u0634\u0644 \u0641\u064a \u0641\u062a\u062d ketch \: \n"{ 0}"
@ -616,6 +625,9 @@ Frequently\ Asked\ Questions=\u0627\u0633\u0626\u0644\u0629 \u0645\u062a\u0643\u
#: Preferences.java:96
Galician=Galego
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\u0627\u0644\u062c\u0648\u0631\u062c\u064a\u0629
@ -636,18 +648,6 @@ Getting\ Started=\u0627\u0644\u0634\u0631\u0648\u0639 \u0641\u064a \u0627\u0644\
#: Preferences.java:98
Greek=Greek
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\u0627\u0644\u0639\u0628\u0631\u064a\u0629
@ -712,6 +712,9 @@ Lithuaninan=Lithuaninan
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -745,6 +748,9 @@ Name\ for\ new\ file\:=\u0627\u0633\u0645 \u0644\u0645\u0644\u0641 \u062c\u062f\
#: ../../../processing/app/Preferences.java:149
Nepali=\u0627\u0644\u0646\u064a\u0628\u0627\u0644\u064a\u0629
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -820,9 +826,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0623-\u063a\
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u0644\u0627 \u064a\u0627 \u0635\u062f\u064a\u0642\u064a
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\u0627\u0644\u0646\u0631\u0648\u064a\u062c\u064a\u0629
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1041,6 +1053,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0627\u0644\u0645\u0646\u0641\u0630 \u0627\u0644\u062a\u0633\u0644\u0633\u0644\u064a {0} \u0644\u0645 \u064a\u062a\u0645 \u0627\u0644\u0639\u062b\u0648\u0631 \u0639\u0644\u064a\u0647.\n\u062d\u0627\u0648\u0644 \u0627\u0644\u0631\u0641\u0639 \u0628\u0627\u0633\u062a\u062e\u062f\u0627\u0645 \u0645\u0646\u0641\u0630 \u062a\u0644\u0633\u0644\u0633\u064a \u0622\u062e\u0631 ?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u0636\u0628\u0637 \u0627\u0644\u0645\u0633\u0627\u0626\u0644
@ -1093,6 +1108,9 @@ Sketchbook\ location\:=\u0645\u0643\u0627\u0646 \u0643\u062a\u0627\u0628 \u0627\
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0633\u0644\u0648\u0641\u064a\u0646\u064a\u0629
@ -1112,12 +1130,18 @@ Spanish=Spanish
#: Base.java:540
Sunshine=\u0634\u0631\u0648\u0642 \u0627\u0644\u0634\u0645\u0633
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u0627\u0644\u0644\u063a\u0629 \u0627\u0644\u0633\u0648\u064a\u062f\u064a\u0629
#: Preferences.java:84
System\ Default=\u0627\u0644\u0627\u0639\u062f\u0627\u062f\u0627\u062a \u0627\u0644\u0627\u0641\u062a\u0631\u0627\u0636\u064a\u0629
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1246,6 +1270,9 @@ Uploading\ to\ I/O\ Board...=\u062c\u0627\u0631\u064a \u0627\u0644\u062a\u062d\u
#: Sketch.java:1622
Uploading...=\u0631\u0641\u0639...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u0627\u0633\u062a\u062e\u062f\u0645 \u0627\u0644\u0645\u0638\u0644\u0644 \u0644\u0644\u0628\u062d\u062b
@ -1282,6 +1309,9 @@ Visit\ Arduino.cc=Arduino.cc \u0632\u0631 \u0635\u0641\u062d\u0629
#: Base.java:2128
Warning=\u062a\u062d\u0630\u064a\u0631
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=()Wire.receive \u062a\u0645 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u062a\u0647\u0627 \u0627\u0644\u0649 ()Wire.read.
@ -1371,9 +1401,6 @@ createNewFile()\ returned\ false=createNewFile() returned false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\u0645\u0641\u0639\u0644 \u0641\u064a \u0645\u0644\u0641> \u062a\u0641\u0636\u064a\u0644\u0627\u062a.
#: Base.java:2090
environment=\u0627\u0644\u0628\u064a\u0626\u0629
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1383,22 +1410,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u062a\u062c\u0627\u0647\u0644 \u0627\u0644\u062e\u0637\u0623 \u0641\u064a \u062d\u062c\u0645 \u0627\u0644\u062e\u0637 {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=\u0627\u0644\u0627\u0633\u0645 \u0641\u0627\u0631\u063a
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=\u0642\u0627\u0626\u0645\u0629-\u0627\u0644\u0645\u0646\u0641\u062f \u0627\u0644\u062a\u0644\u0633\u0644\u0633\u064a \u0641\u0627\u0631\u063a\u0629
@ -1425,10 +1443,6 @@ upload=\u0631\u0641\u0639
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u0623\u0631\u062f\u0648\u064a\u0646\u0648 {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr ""
msgid "Add Library..."
msgstr "Amestar biblioteca..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr ""
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr ""
@ -791,10 +807,6 @@ msgstr ""
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr ""
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr ""
msgid "Galician"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr ""
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr ""
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr ""
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr ""
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1002,6 +1002,10 @@ msgstr ""
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1046,6 +1050,10 @@ msgstr ""
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr ""
msgid "Nope"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr ""
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr ""
msgid "Sunshine"
msgstr "Soleyero"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr ""
@ -1761,6 +1793,10 @@ msgstr ""
msgid "Uploading..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
@ -1966,10 +2006,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr ""
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr ""
@ -1982,27 +2018,15 @@ msgstr ""
msgid "http://www.arduino.cc/latest.txt"
msgstr ""
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr ""
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
#: Base.java:2080
msgid "index.html"
msgstr ""
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr ""
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2037,11 +2061,6 @@ msgstr ""
msgid "{0} | Arduino {1}"
msgstr ""
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr ""
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@
#: Base.java:963
Add\ Library...=Amestar biblioteca...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -404,9 +410,15 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
!Danish=
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
!Decrease\ Indent=
@ -559,9 +571,6 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
!FAQ.html=
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
#: Preferences.java:96
!Galician=
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -633,18 +645,6 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
#: Preferences.java:98
!Greek=
#: Base.java:2085
!Guide_Environment.html=
#: Base.java:2071
!Guide_MacOSX.html=
#: Base.java:2095
!Guide_Troubleshooting.html=
#: Base.java:2073
!Guide_Windows.html=
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -709,6 +709,9 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -742,6 +745,9 @@ Ignoring\ bad\ library\ name=Inorando un mal nome de biblioteca
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=De veres que non, ye hora de
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
!Nope=
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Quit=Colar
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
!Settings\ issues=
@ -1090,6 +1105,9 @@ Sketchbook\ folder\ disappeared=Desapaeci\u00f3'l direutoriu Cartafueyu de bocet
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Sketchbook\ folder\ disappeared=Desapaeci\u00f3'l direutoriu Cartafueyu de bocet
#: Base.java:540
Sunshine=Soleyero
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
!System\ Default=
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
!Tamil=
@ -1243,6 +1267,9 @@ Time\ for\ a\ Break=Tiempu pa un descansu
#: Sketch.java:1622
!Uploading...=
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1279,6 +1306,9 @@ Time\ for\ a\ Break=Tiempu pa un descansu
#: Base.java:2128
!Warning=
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
@ -1368,9 +1398,6 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
!environment=
#: Editor.java:1108
!http\://arduino.cc/=
@ -1380,22 +1407,13 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
#: Base.java:2075
!http\://www.arduino.cc/playground/Learning/Linux=
#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
#: Base.java:2080
!index.html=
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
!platforms.html=
#: Editor.java:932
!serialMenu\ is\ null=
@ -1422,10 +1440,6 @@ You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day
#, java-format
!{0}\ |\ Arduino\ {1}=
#: Editor.java:1874
#, java-format
!{0}.html=
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "Дадаць Файл"
msgid "Add Library..."
msgstr "Дадаць бібліятэку..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Албанская"
@ -289,6 +293,10 @@ msgstr "мова Баскаў"
msgid "Belarusian"
msgstr "Беларуская"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Выразаць"
msgid "Czech"
msgstr "Чэшская"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Дацкая"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Паменьшыць водступ"
@ -791,10 +807,6 @@ msgstr "Ўзоры"
msgid "Export canceled, changes must first be saved."
msgstr "Экспарт скасаваны, спачатку патрэбна захаваць змены."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Часта Задаваныя Пытанні"
msgid "Galician"
msgstr "Галіцкая"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Грузінская"
@ -892,22 +908,6 @@ msgstr "Глабальныя пераменныя ўжываюць {0} байт
msgid "Greek"
msgstr "Грэцкая"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Іўрыт"
@ -1002,6 +1002,10 @@ msgstr "Літоўская"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Маратхі"
@ -1046,6 +1050,10 @@ msgstr "Імя для новага файла:"
msgid "Nepali"
msgstr "Непальская"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Сеціўная выгрузка праз праграматар не падтрымліваецца"
@ -1145,10 +1153,18 @@ msgstr "Нефатальная памылка падчас наладак вон
msgid "Nope"
msgstr "Не-а"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Нарвежскі Букмал"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Serial-порт {0} ня знойдзены.\nПаспрабаваць выгрузку праз іншы порт?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr ""
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "Скетчы (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Славенская"
@ -1548,6 +1572,10 @@ msgstr "Гішпанская"
msgid "Sunshine"
msgstr "Сонца ўстае"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Шведская"
@ -1556,6 +1584,10 @@ msgstr "Шведская"
msgid "System Default"
msgstr "System Default"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Тамільская"
@ -1761,6 +1793,10 @@ msgstr "Выгрузка ў I/O Board..."
msgid "Uploading..."
msgstr "Выгружаем..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Увага"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() была перайменавана ў Wire.read()."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() вярнула false"
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "асяроддзе"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ігнарую памылковы памер шрыфта {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "імя - null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu is null"
@ -2037,11 +2061,6 @@ msgstr "{0} вярнуў {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=\u0414\u0430\u0434\u0430\u0446\u044c \u0424\u0430\u0439\u043b
#: Base.java:963
Add\ Library...=\u0414\u0430\u0434\u0430\u0446\u044c \u0431\u0456\u0431\u043b\u0456\u044f\u0442\u044d\u043a\u0443...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u0410\u043b\u0431\u0430\u043d\u0441\u043a\u0430\u044f
@ -189,6 +192,9 @@ Basque=\u043c\u043e\u0432\u0430 \u0411\u0430\u0441\u043a\u0430\u045e
#: ../../../processing/app/Preferences.java:139
Belarusian=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0430\u044f
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u041f\u043b\u0430\u0442\u0430
@ -404,9 +410,15 @@ Cut=\u0412\u044b\u0440\u0430\u0437\u0430\u0446\u044c
#: ../../../processing/app/Preferences.java:83
Czech=\u0427\u044d\u0448\u0441\u043a\u0430\u044f
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u0414\u0430\u0446\u043a\u0430\u044f
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u041f\u0430\u043c\u0435\u043d\u044c\u0448\u044b\u0446\u044c \u0432\u043e\u0434\u0441\u0442\u0443\u043f
@ -559,9 +571,6 @@ Examples=\u040e\u0437\u043e\u0440\u044b
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u042d\u043a\u0441\u043f\u0430\u0440\u0442 \u0441\u043a\u0430\u0441\u0430\u0432\u0430\u043d\u044b, \u0441\u043f\u0430\u0447\u0430\u0442\u043a\u0443 \u043f\u0430\u0442\u0440\u044d\u0431\u043d\u0430 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u0437\u043c\u0435\u043d\u044b.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\u041d\u0435 \u045e\u0434\u0430\u043b\u043e\u0441\u044f \u0430\u0434\u0447\u044b\u043d\u0456\u0446\u044c \u0441\u043a\u0435\u0442\u0447\: "{0}"
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=\u0427\u0430\u0441\u0442\u0430 \u0417\u0430\u0434\u
#: Preferences.java:96
Galician=\u0413\u0430\u043b\u0456\u0446\u043a\u0430\u044f
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\u0413\u0440\u0443\u0437\u0456\u043d\u0441\u043a\u0430\u044f
@ -633,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0413\u043b\u0430\u043
#: Preferences.java:98
Greek=\u0413\u0440\u044d\u0446\u043a\u0430\u044f
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\u0406\u045e\u0440\u044b\u0442
@ -709,6 +709,9 @@ Lithuaninan=\u041b\u0456\u0442\u043e\u045e\u0441\u043a\u0430\u044f
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0456
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=\u0406\u043c\u044f \u0434\u043b\u044f \u043d\u043e\u0432\
#: ../../../processing/app/Preferences.java:149
Nepali=\u041d\u0435\u043f\u0430\u043b\u044c\u0441\u043a\u0430\u044f
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=\u0421\u0435\u0446\u0456\u045e\u043d\u0430\u044f \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u043f\u0440\u0430\u0437 \u043f\u0440\u0430\u0433\u0440\u0430\u043c\u0430\u0442\u0430\u0440 \u043d\u0435 \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u041d\u0435\u0444\u0430\u
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u041d\u0435-\u0430
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\u041d\u0430\u0440\u0432\u0435\u0436\u0441\u043a\u0456 \u0411\u0443\u043a\u043c\u0430\u043b
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u0435 \u0445\u0430\u043f\u0430\u0435 \u043f\u0430\u043c\u044f\u0446\u0456; \u0433\u043b\u044f\u0434\u0437\u0456 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0434\u043b\u044f \u043f\u0430\u0440\u0430\u0434\u0430\u045e
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serial-\u043f\u043e\u0440\u0442 {0} \u043d\u044f \u0437\u043d\u043e\u0439\u0434\u0437\u0435\u043d\u044b.\n\u041f\u0430\u0441\u043f\u0440\u0430\u0431\u0430\u0432\u0430\u0446\u044c \u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0443 \u043f\u0440\u0430\u0437 \u0456\u043d\u0448\u044b \u043f\u043e\u0440\u0442?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
!Settings\ issues=
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=\u041c\u0435\u0441\u0446\u0430\u0437\u043d\u0430\u0445\u0
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=\u0421\u043a\u0435\u0442\u0447\u044b (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=\u0421\u043b\u0430\u0432\u0435\u043d\u0441\u043a\u0430\u044f
@ -1109,12 +1127,18 @@ Spanish=\u0413\u0456\u0448\u043f\u0430\u043d\u0441\u043a\u0430\u044f
#: Base.java:540
Sunshine=\u0421\u043e\u043d\u0446\u0430 \u045e\u0441\u0442\u0430\u0435
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u0428\u0432\u0435\u0434\u0441\u043a\u0430\u044f
#: Preferences.java:84
System\ Default=System Default
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u0422\u0430\u043c\u0456\u043b\u044c\u0441\u043a\u0430\u044f
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=\u0412\u044b\u0433\u0440\u0443\u0437\u043a\u0430 \u
#: Sketch.java:1622
Uploading...=\u0412\u044b\u0433\u0440\u0443\u0436\u0430\u0435\u043c...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=\u041d\u0430\u0432\u0435\u0434\u0430\u0446\u044c Arduino.cc
#: Base.java:2128
Warning=\u0423\u0432\u0430\u0433\u0430
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0431\u044b\u043b\u0430 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u043d\u0430 \u045e Wire.read().
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() \u0432\u044f\u0440\u043d\u0443\
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=\u0430\u0441\u044f\u0440\u043e\u0434\u0434\u0437\u0435
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u0456\u0433\u043d\u0430\u0440\u0443\u044e \u043f\u0430\u043c\u044b\u043b\u043a\u043e\u0432\u044b \u043f\u0430\u043c\u0435\u0440 \u0448\u0440\u044b\u0444\u0442\u0430 {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=\u0456\u043c\u044f - null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu is null
@ -1422,10 +1440,6 @@ upload=\u0432\u044b\u0433\u0440\u0443\u0437\u043a\u0456
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: \u041d\u044f\u043f\u0440\u0430\u0432\u0456\u043b\u044c\u043d\u044b \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u0434\u043b\u044f --pref, \u043c\u0430\u0435 \u0431\u044b\u0446\u044c \u0444\u043e\u0440\u043c\u0430 "pref\=value"

View File

@ -98,6 +98,10 @@ msgstr "Добавяне на файл..."
msgid "Add Library..."
msgstr "Добавяне на библиотека..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Албански"
@ -290,6 +294,10 @@ msgstr "Баски"
msgid "Belarusian"
msgstr "Беларуски"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "Изрязване"
msgid "Czech"
msgstr "Чешки"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Датски"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Намали отстъпа"
@ -792,10 +808,6 @@ msgstr "Примери"
msgid "Export canceled, changes must first be saved."
msgstr "Експортирането прератено, промените първо трябва да бъдат записани."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "Често Задавани Въпроси"
msgid "Galician"
msgstr "Галицийски"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Грузински"
@ -893,22 +909,6 @@ msgstr "Глобалните променливи ползват {0} байта
msgid "Greek"
msgstr "Гръцки"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Иврит"
@ -1003,6 +1003,10 @@ msgstr "Литовски"
msgid "Low memory available, stability problems may occur."
msgstr "Достъпната памет е малко. Възможни са проблеми."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Маратхи"
@ -1047,6 +1051,10 @@ msgstr "Име за нов файл:"
msgid "Nepali"
msgstr "Непалски"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Качване по мрежата чрез програматор не се поддържа"
@ -1146,10 +1154,18 @@ msgstr "Не-фатална грешка при установяването н
msgid "Nope"
msgstr "Няма"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Норвежки Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Серийният порт {0} не е намерен.\nПробвайте качване чрез друг сериен порт?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Въпроси, свързани с настройките"
@ -1519,6 +1539,10 @@ msgstr "Не е зададен път до скицника"
msgid "Sketches (*.ino, *.pde)"
msgstr "Скици (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Словенски"
@ -1549,6 +1573,10 @@ msgstr "Испански"
msgid "Sunshine"
msgstr "Слънчева светлина"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Шведски"
@ -1557,6 +1585,10 @@ msgstr "Шведски"
msgid "System Default"
msgstr "Подразбиращ се за системата"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Тамилски"
@ -1762,6 +1794,10 @@ msgstr "Качване към I/O платка..."
msgid "Uploading..."
msgstr "Качване..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Търси маркираното"
@ -1811,6 +1847,10 @@ msgstr "ВНИМАНИЕ: библиотеката {0} твърди, че раб
msgid "Warning"
msgstr "Внимание"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() беше преименувана на Wire.read()."
@ -1967,10 +2007,6 @@ msgstr "createNewFile() върна false"
msgid "enabled in File > Preferences."
msgstr "разрешено във Файл > Предпочитания."
#: Base.java:2090
msgid "environment"
msgstr "среда"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "игнорирам невалидна големина на шрифт {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name е null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu е null"
@ -2038,11 +2062,6 @@ msgstr "{0} върна {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Ардуино {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u044
#: Base.java:963
Add\ Library...=\u0414\u043e\u0431\u0430\u0432\u044f\u043d\u0435 \u043d\u0430 \u0431\u0438\u0431\u043b\u0438\u043e\u0442\u0435\u043a\u0430...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u0410\u043b\u0431\u0430\u043d\u0441\u043a\u0438
@ -190,6 +193,9 @@ Basque=\u0411\u0430\u0441\u043a\u0438
#: ../../../processing/app/Preferences.java:139
Belarusian=\u0411\u0435\u043b\u0430\u0440\u0443\u0441\u043a\u0438
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u041f\u043b\u0430\u0442\u043a\u0430
@ -405,9 +411,15 @@ Cut=\u0418\u0437\u0440\u044f\u0437\u0432\u0430\u043d\u0435
#: ../../../processing/app/Preferences.java:83
Czech=\u0427\u0435\u0448\u043a\u0438
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u0414\u0430\u0442\u0441\u043a\u0438
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u041d\u0430\u043c\u0430\u043b\u0438 \u043e\u0442\u0441\u0442\u044a\u043f\u0430
@ -560,9 +572,6 @@ Examples=\u041f\u0440\u0438\u043c\u0435\u0440\u0438
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0415\u043a\u0441\u043f\u043e\u0440\u0442\u0438\u0440\u0430\u043d\u0435\u0442\u043e \u043f\u0440\u0435\u0440\u0430\u0442\u0435\u043d\u043e, \u043f\u0440\u043e\u043c\u0435\u043d\u0438\u0442\u0435 \u043f\u044a\u0440\u0432\u043e \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0431\u044a\u0434\u0430\u0442 \u0437\u0430\u043f\u0438\u0441\u0430\u043d\u0438.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\u041f\u0440\u043e\u0432\u0430\u043b\u0438 \u0441\u0435 \u043e\u0442\u0432\u0430\u0440\u044f\u043d\u0435\u0442\u043e \u043d\u0430 \u0441\u043a\u0438\u0446\u0430\: "{0}"
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=\u0427\u0435\u0441\u0442\u043e \u0417\u0430\u0434\u
#: Preferences.java:96
Galician=\u0413\u0430\u043b\u0438\u0446\u0438\u0439\u0441\u043a\u0438
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\u0413\u0440\u0443\u0437\u0438\u043d\u0441\u043a\u0438
@ -634,18 +646,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0413\u043b\u043e\u043
#: Preferences.java:98
Greek=\u0413\u0440\u044a\u0446\u043a\u0438
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\u0418\u0432\u0440\u0438\u0442
@ -710,6 +710,9 @@ Lithuaninan=\u041b\u0438\u0442\u043e\u0432\u0441\u043a\u0438
#: ../../../processing/app/Sketch.java:1684
Low\ memory\ available,\ stability\ problems\ may\ occur.=\u0414\u043e\u0441\u0442\u044a\u043f\u043d\u0430\u0442\u0430 \u043f\u0430\u043c\u0435\u0442 \u0435 \u043c\u0430\u043b\u043a\u043e. \u0412\u044a\u0437\u043c\u043e\u0436\u043d\u0438 \u0441\u0430 \u043f\u0440\u043e\u0431\u043b\u0435\u043c\u0438.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u041c\u0430\u0440\u0430\u0442\u0445\u0438
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=\u0418\u043c\u0435 \u0437\u0430 \u043d\u043e\u0432 \u0444
#: ../../../processing/app/Preferences.java:149
Nepali=\u041d\u0435\u043f\u0430\u043b\u0441\u043a\u0438
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043f\u043e \u043c\u0440\u0435\u0436\u0430\u0442\u0430 \u0447\u0440\u0435\u0437 \u043f\u0440\u043e\u0433\u0440\u0430\u043c\u0430\u0442\u043e\u0440 \u043d\u0435 \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u041d\u0435-\u0444\u0430\
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u041d\u044f\u043c\u0430
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\u041d\u043e\u0440\u0432\u0435\u0436\u043a\u0438 Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u041d\u044f\u043c\u0430 \u0434\u043e\u0441\u0442\u0430\u0442\u044a\u0447\u043d\u043e \u043f\u0430\u043c\u0435\u0442; \u0432\u0438\u0436\u0442\u0435 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u0437\u0430 \u0441\u044a\u0432\u0435\u0442\u0438 \u043a\u0430\u043a \u0434\u0430 \u043d\u0430\u043c\u0430\u043b\u0438\u0442\u0435 \u043e\u0431\u0435\u043c\u0430 \u043d\u0430 \u0442\u043e\u0432\u0430, \u043a\u043e\u0435\u0442\u043e \u043f\u0440\u0430\u0432\u0438\u0442\u0435.
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0421\u0435\u0440\u0438\u0439\u043d\u0438\u044f\u0442 \u043f\u043e\u0440\u0442 {0} \u043d\u0435 \u0435 \u043d\u0430\u043c\u0435\u0440\u0435\u043d.\n\u041f\u0440\u043e\u0431\u0432\u0430\u0439\u0442\u0435 \u043a\u0430\u0447\u0432\u0430\u043d\u0435 \u0447\u0440\u0435\u0437 \u0434\u0440\u0443\u0433 \u0441\u0435\u0440\u0438\u0435\u043d \u043f\u043e\u0440\u0442?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u0412\u044a\u043f\u0440\u043e\u0441\u0438, \u0441\u0432\u044a\u0440\u0437\u0430\u043d\u0438 \u0441 \u043d\u0430\u0441\u0442\u0440\u043e\u0439\u043a\u0438\u0442\u0435
@ -1091,6 +1106,9 @@ Sketchbook\ path\ not\ defined=\u041d\u0435 \u0435 \u0437\u0430\u0434\u0430\u043
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=\u0421\u043a\u0438\u0446\u0438 (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=\u0421\u043b\u043e\u0432\u0435\u043d\u0441\u043a\u0438
@ -1110,12 +1128,18 @@ Spanish=\u0418\u0441\u043f\u0430\u043d\u0441\u043a\u0438
#: Base.java:540
Sunshine=\u0421\u043b\u044a\u043d\u0447\u0435\u0432\u0430 \u0441\u0432\u0435\u0442\u043b\u0438\u043d\u0430
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u0428\u0432\u0435\u0434\u0441\u043a\u0438
#: Preferences.java:84
System\ Default=\u041f\u043e\u0434\u0440\u0430\u0437\u0431\u0438\u0440\u0430\u0449 \u0441\u0435 \u0437\u0430 \u0441\u0438\u0441\u0442\u0435\u043c\u0430\u0442\u0430
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u0422\u0430\u043c\u0438\u043b\u0441\u043a\u0438
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=\u041a\u0430\u0447\u0432\u0430\u043d\u0435 \u043a\u
#: Sketch.java:1622
Uploading...=\u041a\u0430\u0447\u0432\u0430\u043d\u0435...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u0422\u044a\u0440\u0441\u0438 \u043c\u0430\u0440\u043a\u0438\u0440\u0430\u043d\u043e\u0442\u043e
@ -1280,6 +1307,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=\u0412\u043d\u0438\u043c\u0430\u043d\u0438\u0435
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0431\u0435\u0448\u0435 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u043d\u0430 \u043d\u0430 Wire.read().
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() \u0432\u044a\u0440\u043d\u0430
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\u0440\u0430\u0437\u0440\u0435\u0448\u0435\u043d\u043e \u0432\u044a\u0432 \u0424\u0430\u0439\u043b > \u041f\u0440\u0435\u0434\u043f\u043e\u0447\u0438\u0442\u0430\u043d\u0438\u044f.
#: Base.java:2090
environment=\u0441\u0440\u0435\u0434\u0430
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u0438\u0433\u043d\u043e\u0440\u0438\u0440\u0430\u043c \u043d\u0435\u0432\u0430\u043b\u0438\u0434\u043d\u0430 \u0433\u043e\u043b\u0435\u043c\u0438\u043d\u0430 \u043d\u0430 \u0448\u0440\u0438\u0444\u0442 {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name \u0435 null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu \u0435 null
@ -1423,10 +1441,6 @@ upload=\u043a\u0430\u0447\u0432\u0430\u043d\u0435
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u0410\u0440\u0434\u0443\u0438\u043d\u043e {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: \u041d\u0435\u0432\u0430\u043b\u0438\u0434\u0435\u043d \u0430\u0440\u0433\u0443\u043c\u0435\u043d\u0442 \u043a\u044a\u043c --pref, \u0442\u0440\u044f\u0431\u0432\u0430 \u0434\u0430 \u0435 \u0432\u044a\u0432 \u0444\u043e\u0440\u043c\u0430\u0442 "pref\=value"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -97,6 +97,10 @@ msgstr "Dodaj datoteku..."
msgid "Add Library..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Izreži"
msgid "Czech"
msgstr "češki"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "danski"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Smanji uvlaku"
@ -791,10 +807,6 @@ msgstr "Primjeri"
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr ""
msgid "Galician"
msgstr "galicijski"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "gruzijski"
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr "grčki"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr ""
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "hebrejski"
@ -1002,6 +1002,10 @@ msgstr "litvanijski"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "marati"
@ -1046,6 +1050,10 @@ msgstr ""
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr ""
msgid "Nope"
msgstr "Ne"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "norveški Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr ""
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr "španski"
msgid "Sunshine"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr "Početno sistemski"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "tamilski"
@ -1761,6 +1793,10 @@ msgstr ""
msgid "Uploading..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Upozorenje"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
@ -1966,10 +2006,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "okruženje"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr ""
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
#: Base.java:2080
msgid "index.html"
msgstr ""
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2037,11 +2061,6 @@ msgstr ""
msgid "{0} | Arduino {1}"
msgstr ""
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Dodaj datoteku...
#: Base.java:963
!Add\ Library...=
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bita) plo\u010de
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Plo\u010da
@ -404,9 +410,15 @@ Cut=Izre\u017ei
#: ../../../processing/app/Preferences.java:83
Czech=\u010de\u0161ki
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=danski
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Smanji uvlaku
@ -559,9 +571,6 @@ Examples=Primjeri
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ French=francuski
#: Preferences.java:96
Galician=galicijski
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=gruzijski
@ -633,18 +645,6 @@ Getting\ Started=Prvi koraci
#: Preferences.java:98
Greek=gr\u010dki
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
!Guide_MacOSX.html=
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
!Guide_Windows.html=
#: ../../../processing/app/Preferences.java:95
Hebrew=hebrejski
@ -709,6 +709,9 @@ Lithuaninan=litvanijski
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=marati
@ -742,6 +745,9 @@ Moving=Premje\u0161tam
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ No=Ne
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Ne
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=norve\u0161ki Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Select\ All=Ozna\u010di sve
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
!Settings\ issues=
@ -1090,6 +1105,9 @@ Sketch\ is\ read-only=Skica je samo za \u010ditanje
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Spanish=\u0161panski
#: Base.java:540
!Sunshine=
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=Po\u010detno sistemski
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=tamilski
@ -1243,6 +1267,9 @@ Undo=Nazad
#: Sketch.java:1622
!Uploading...=
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=Posjeti Arduino.cc
#: Base.java:2128
Warning=Upozorenje
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
@ -1368,9 +1398,6 @@ Yes=Da
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=okru\u017eenje
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
!http\://www.arduino.cc/playground/Learning/Linux=
#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
#: Base.java:2080
!index.html=
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
!serialMenu\ is\ null=
@ -1422,10 +1440,6 @@ platforms.html=platforms.html
#, java-format
!{0}\ |\ Arduino\ {1}=
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -98,6 +98,10 @@ msgstr "Afegeix fitxer..."
msgid "Add Library..."
msgstr "Afegir Llibreria..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albanès"
@ -290,6 +294,10 @@ msgstr "Basc"
msgid "Belarusian"
msgstr "Bielorús"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "Retalla"
msgid "Czech"
msgstr "Txec"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danès"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Disminuir el sagnat"
@ -792,10 +808,6 @@ msgstr "Exemples"
msgid "Export canceled, changes must first be saved."
msgstr "Exportació cancelada, els canvis primer han de desar-se."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "Preguntes Més Freqüents"
msgid "Galician"
msgstr "Gallec"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgià"
@ -893,22 +909,6 @@ msgstr "Les variables globlals fan servir {0} bytes de memòria dinàmica."
msgid "Greek"
msgstr "Grec"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebreu"
@ -1003,6 +1003,10 @@ msgstr "Lituà"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1047,6 +1051,10 @@ msgstr "Escolliu un nom per un nou fitxer:"
msgid "Nepali"
msgstr "Nepali"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Xarxa pujada fent servir programador no soportat"
@ -1146,10 +1154,18 @@ msgstr "Error no fatal mentre s'establien les preferències de l'aparença."
msgid "Nope"
msgstr "Nop"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Noruec Bokmâl"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Port sèrie {0} no trobat.\nRe-intentar la pujada amb un altre port sèrie?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Errors en les preferències"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketches (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Eslovè"
@ -1549,6 +1573,10 @@ msgstr "Espanyol"
msgid "Sunshine"
msgstr "Sol."
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Suec"
@ -1557,6 +1585,10 @@ msgstr "Suec"
msgid "System Default"
msgstr "Per defecte del sistema"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tàmil"
@ -1762,6 +1794,10 @@ msgstr "Pujant a la I/O de la Placa..."
msgid "Uploading..."
msgstr "Actualitzant..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Utilitza la selecció per cercar"
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr "Advertència"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() ha estat reanomenada a Wire.read()."
@ -1967,10 +2007,6 @@ msgstr "createNewFile() ha retornat false"
msgid "enabled in File > Preferences."
msgstr "Activat en Fitxer>Preferències."
#: Base.java:2090
msgid "environment"
msgstr "entorn"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "Ignorant mida de font invàlida {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "El nom es null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu es null"
@ -2038,11 +2062,6 @@ msgstr "{0} ha retornat {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=Afegeix fitxer...
#: Base.java:963
Add\ Library...=Afegir Llibreria...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Alban\u00e8s
@ -190,6 +193,9 @@ Basque=Basc
#: ../../../processing/app/Preferences.java:139
Belarusian=Bielor\u00fas
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Tarja
@ -405,9 +411,15 @@ Cut=Retalla
#: ../../../processing/app/Preferences.java:83
Czech=Txec
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Dan\u00e8s
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Disminuir el sagnat
@ -560,9 +572,6 @@ Examples=Exemples
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3 cancelada, els canvis primer han de desar-se.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=No s\u00b4ha pogut obrir el sketch\: "{0}"
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=Preguntes M\u00e9s Freq\u00fcents
#: Preferences.java:96
Galician=Gallec
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgi\u00e0
@ -634,18 +646,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Les variables globlals
#: Preferences.java:98
Greek=Grec
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebreu
@ -710,6 +710,9 @@ Lithuaninan=Litu\u00e0
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=Escolliu un nom per un nou fitxer\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Xarxa pujada fent servir programador no soportat
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mentre s'es
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Nop
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Noruec Bokm\u00e2l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Mem\u00f2ria insuficient; ves a http\://www.arduino.cc/en/Guide/Troubleshooting\#size pels consells de com reduir-ne la mida.
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e8rie {0} no trobat.\nRe-intentar la pujada amb un altre port s\u00e8rie?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Errors en les prefer\u00e8ncies
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=Ubicaci\u00f3 del Sketchbook\:
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Eslov\u00e8
@ -1110,12 +1128,18 @@ Spanish=Espanyol
#: Base.java:540
Sunshine=Sol.
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Suec
#: Preferences.java:84
System\ Default=Per defecte del sistema
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=T\u00e0mil
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=Pujant a la I/O de la Placa...
#: Sketch.java:1622
Uploading...=Actualitzant...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Utilitza la selecci\u00f3 per cercar
@ -1280,6 +1307,9 @@ Visit\ Arduino.cc=Visita Arduino.cc
#: Base.java:2128
Warning=Advert\u00e8ncia
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha estat reanomenada a Wire.read().
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() ha retornat false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=Activat en Fitxer>Prefer\u00e8ncies.
#: Base.java:2090
environment=entorn
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=Ignorant mida de font inv\u00e0lida {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=El nom es null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu es null
@ -1423,10 +1441,6 @@ upload=Pujar
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argument no v\u00e0lid per --pref, s'espera la forma "pref\=value"

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -6,7 +6,7 @@
# Adam <horcicaa@gmail.com>, 2012.
# <mcha@4makers.cz>, 2012.
# Michal Kocer <mcha@4makers.cz>, 2012.
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/projects/p/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-30 15\:14+0000\nLast-Translator\: Zdeno Seker\u00e1k <etrsek@gmail.com>\nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/projects/p/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n
#: Preferences.java:358 Preferences.java:374
\ \ (requires\ restart\ of\ Arduino)=\ (vy\u017eaduje restart programu Arduino)
@ -21,24 +21,24 @@
(edit\ only\ when\ Arduino\ is\ not\ running)=(editujte pouze kdy\u017e program Arduino nen\u00ed spu\u0161t\u011bn)
#: ../../../processing/app/Base.java:468
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload a --verbose-build m\u016f\u017ee b\u00fdt pou\u017eito jenom spole\u010dne s --verify nebo --upload
#: Sketch.java:746
.pde\ ->\ .ino=.pde -> .ino
#: Base.java:773
<html>\ <head>\ <style\ type\="text/css">b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }</style>\ </head><b>Are\ you\ sure\ you\ want\ to\ Quit?</b><p>Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=<html> <head> <style type\="text/css">b { font\: 13pt "Lucida Grande" }p { font\: 11pt "Lucida Grande"; margin-top\: 8px }</style> </head><b>Jste si jisti, \u017ee chcete Ukon\u010dit?</b><p>Uzav\u0159en\u00edm posledn\u00ed skici se uzav\u0159e cel\u00e9 Arduino.
<html>\ <head>\ <style\ type\="text/css">b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }</style>\ </head><b>Are\ you\ sure\ you\ want\ to\ Quit?</b><p>Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=<html> <head> <style type\="text/css">b { font\: 13pt "Lucida Grande" }p { font\: 11pt "Lucida Grande"; margin-top\: 8px }</style> </head><b>Jste si jisti, \u017ee chcete Ukon\u010dit?</b><p>Uzav\u0159en\u00edm posledn\u00edho projektu se uzav\u0159e cel\u00e9 Arduino.
#: Editor.java:2053
<html>\ <head>\ <style\ type\="text/css">b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }</style>\ </head><b>Do\ you\ want\ to\ save\ changes\ to\ this\ sketch<BR>\ before\ closing?</b><p>If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=<html> <head> <style type\="text/css">b { font\: 13pt "Lucida Grande" }p { font\: 11pt "Lucida Grande"; margin-top\: 8px }</style> </head><b>Chcete p\u0159ed ukon\u010den\u00edm ulo\u017eit zm\u011bny<BR> provedn\u00e9 ve skice?</b><p>Neulo\u017e\u00edte-li je v\u0161echny zm\u011bny budou nen\u00e1vratn\u011b ztraceny.
<html>\ <head>\ <style\ type\="text/css">b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }</style>\ </head><b>Do\ you\ want\ to\ save\ changes\ to\ this\ sketch<BR>\ before\ closing?</b><p>If\ you\ don't\ save,\ your\ changes\ will\ be\ lost.=<html> <head> <style type\="text/css">b { font\: 13pt "Lucida Grande" }p { font\: 11pt "Lucida Grande"; margin-top\: 8px }</style> </head><b>Chcete p\u0159ed ukon\u010den\u00edm ulo\u017eit zm\u011bny<BR> provedn\u00e9 v projektu?</b><p>Neulo\u017e\u00edte-li je v\u0161echny zm\u011bny budou nen\u00e1vratn\u011b ztraceny.
#: Sketch.java:398
#, java-format
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Soubor nazvan\u00fd "{0}" v "{1}" ji\u017e existuje
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Soubor se jm\u00e9nem "{0}" v "{1}" ji\u017e existuje
#: Editor.java:2169
#, java-format
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Adres\u00e1\u0159 "{0}" ji\u017e existuje. Nemohu skicu otev\u0159\u00edt.
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Adres\u00e1\u0159 "{0}" ji\u017e existuje. Nemohu projekt otev\u0159\u00edt.
#: Base.java:2690
#, java-format
@ -48,7 +48,7 @@ A\ library\ named\ {0}\ already\ exists=Knihovna s n\u00e1zvem {0} ji\u017e exis
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=K dispozici je nov\u00e1 verze Arduina,\nChcete otev\u0159\u00edt str\u00e1nku s novou verz\u00ed Arduina?
#: EditorConsole.java:153
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Nastal probl\u00e9m b\u011bhem toho co se syst\u00e9m pokou\u0161el\nsoubory k ulo\u017een\u00ed v\u00fdstupu z konzole.
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Nastal probl\u00e9m b\u011bhem toho co se syst\u00e9m pokou\u0161el\nulo\u017eit soubory z v\u00fdstupu konzole.
#: Editor.java:1116
About\ Arduino=O Arduinu
@ -59,22 +59,25 @@ Add\ File...=P\u0159idat soubor...
#: Base.java:963
Add\ Library...=P\u0159idat knihovnu...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Alb\u00e1n\u0161tina
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=B\u011bhem opravy k\u00f3dov\u00e1n\u00ed souboru se vyskytla chyba.\nNepokou\u0161ejte se o ulo\u017een\u00ed t\u00e9to skici, abyste nep\u0159epsali\np\u016fvodn\u00ed verzi. U\u017eijte Otev\u0159\u00edt k znovuotev\u0159en\u00ed skici a zkuste to znovu.\n
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=B\u011bhem opravy k\u00f3dov\u00e1n\u00ed souboru se vyskytla chyba.\nNepokou\u0161ejte se o ulo\u017een\u00ed tohot projektu, abyste nep\u0159epsali\np\u016fvodn\u00ed verzi. Pou\u017eijte Otev\u0159\u00edt k znovuotev\u0159en\u00ed projektu a zkuste to znovu.\n
#: ../../../processing/app/BaseNoGui.java:528
!An\ error\ occurred\ while\ uploading\ the\ sketch=
An\ error\ occurred\ while\ uploading\ the\ sketch=Nastala chyba p\u0159i nahr\u00e1van\u00ed projektu.
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!An\ error\ occurred\ while\ verifying\ the\ sketch=
An\ error\ occurred\ while\ verifying\ the\ sketch=Nastala chyba p\u0159i verifykaci projektu.
#: ../../../processing/app/BaseNoGui.java:521
!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Nastala chyba p\u0159i verifykaci/nahr\u00e1van\u00ed projektu.
#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Vyskytla se chyba b\u011bhem nahr\u00e1v\u00e1n\u00ed k\u00f3du \npro va\u0161e za\u0159\u00edzen\u00ed.
@ -86,16 +89,16 @@ Arabic=Arab\u0161tina
Aragonese=Aragon\u0161tina
#: tools/Archiver.java:48
Archive\ Sketch=Archivuj skicu
Archive\ Sketch=Archivuj projekt
#: tools/Archiver.java:109
Archive\ sketch\ as\:=Archivuj skicu jako\:
Archive\ sketch\ as\:=Archivuj projekt jako\:
#: tools/Archiver.java:139
Archive\ sketch\ canceled.=Archivov\u00e1n\u00ed skici bylo p\u0159eru\u0161eno.
Archive\ sketch\ canceled.=Archivov\u00e1n\u00ed projektu bylo p\u0159eru\u0161eno.
#: tools/Archiver.java:75
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Archivov\u00e1n\u00ed skici bylo ukon\u010deno, proto\u017ee\nskicu ne\u0161lo ulo\u017eit.
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Archivov\u00e1n\u00ed projektu bylo ukon\u010deno, proto\u017ee\nprojekt ne\u0161lo ulo\u017eit.
#: ../../../processing/app/I18n.java:83
Arduino\ ARM\ (32-bits)\ Boards=Desky Arduino ARM (32-bits)
@ -104,13 +107,13 @@ Arduino\ ARM\ (32-bits)\ Boards=Desky Arduino ARM (32-bits)
Arduino\ AVR\ Boards=Desky Arduino AVR
#: Editor.java:2137
!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino IDE m\u016f\u017ee otev\u0159\u00edt jenom sv\u00e9 vlastn\u00ed projekty\nnebo dal\u0161\u00ed soubory kon\u010d\u00edc\u00ed na p\u0159\u00edponu .ino nebo .pde
#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nem\u016f\u017ee b\u011b\u017eet, jeliko\u017e se mu nepoda\u0159ilo\nvytvo\u0159it adres\u00e1\u0159 pro ulo\u017een\u00ed va\u0161ich nastaven\u00ed.
#: Base.java:1889
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem\u016f\u017ee be\u017eet, proto\u017ee nemohlo\nvytvo\u0159it adres\u00e1\u0159 pro ulo\u017een\u00ed va\u0161eho skic\u00e1\u0159e (Sketchbook).
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem\u016f\u017ee be\u017eet, proto\u017ee nemohlo\nvytvo\u0159it adres\u00e1\u0159 pro ulo\u017een\u00ed va\u0161\u00edch projekt\u016f (Sketchbook).
#: Base.java:240
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Arduino vy\u017eaduje k b\u011bhu pln\u00e9 JDK (nesta\u010d\u00ed jen JRE)\nNainstalujte si pros\u00edm plnou verzi JDK 1.5 \u010di nov\u011bj\u0161\u00ed.\nV\u00edce informac\u00ed nalezenete v referen\u010dn\u00ed p\u0159\u00edru\u010dce.
@ -123,7 +126,7 @@ Arduino\:\ =Arduino\:
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Jste si jisti, \u017ee chcete smazat "{0}"?
#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Jste si jist\u00fd, \u017ee chcete smazat tuto skicu?
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Jste si jist\u00fd, \u017ee chcete smazat tento projekt?
#: ../../../processing/app/Base.java:356
Argument\ required\ for\ --board=Pro je --board nutn\u00fd argument
@ -132,7 +135,7 @@ Argument\ required\ for\ --board=Pro je --board nutn\u00fd argument
Argument\ required\ for\ --curdir=Pro je --curdir nutn\u00fd argument
#: ../../../processing/app/Base.java:385
!Argument\ required\ for\ --get-pref=
Argument\ required\ for\ --get-pref=Vy\u017eaduje se argument pro --get-pref
#: ../../../processing/app/Base.java:363
Argument\ required\ for\ --port=Pro --port je nutn\u00fd argument
@ -150,7 +153,7 @@ Armenian=Arm\u00e9n\u0161tina
Asturian=Astur\u0161tina
#: ../../../processing/app/debug/Compiler.java:145
!Authorization\ required=
Authorization\ required=Nutn\u00e1 autorizace
#: tools/AutoFormat.java:91
Auto\ Format=Automatick\u00e9 form\u00e1tov\u00e1n\u00ed
@ -184,7 +187,7 @@ Bad\ error\ line\:\ {0}=Chyba na \u0159\u00e1dce\: {0}
Bad\ file\ selected=Vybr\u00e1n \u0161patn\u00fd soubor
#: ../../../processing/app/debug/Compiler.java:89
!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=
Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=\u0160patn\u00fd n\u00e1vrh p\u0159im\u00e1rn\u00edho souboru nebo adres\u00e1rov\u00e1 struktura.
#: ../../../processing/app/Preferences.java:149
Basque=Baski\u010dtina
@ -192,6 +195,9 @@ Basque=Baski\u010dtina
#: ../../../processing/app/Preferences.java:139
Belarusian=B\u011bloru\u0161tina
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=V\u00fdvojov\u00e1 deska
@ -232,11 +238,11 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Vypaluji za
#: ../../../processing/app/Base.java:379
#, java-format
!Can\ only\ pass\ one\ of\:\ {0}=
Can\ only\ pass\ one\ of\:\ {0}=Lze jenom jednou\: {0}
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
Can't\ find\ the\ sketch\ in\ the\ specified\ path=Nem\u016f\u017eu naj\u00edt projekt ve vybran\u00e9 ceste.
#: ../../../processing/app/Preferences.java:92
Canadian\ French=Kanadsk\u00e1 francou\u0161tina
@ -249,7 +255,7 @@ Cancel=Storno
Cannot\ Rename=Nelze zmenit n\u00e1zev
#: ../../../processing/app/Base.java:465
!Cannot\ specify\ any\ sketch\ files=
Cannot\ specify\ any\ sketch\ files=Nem\u016f\u017eu naj\u00edt \u017e\u00e1dn\u00e9 n\u00e1vrhy.
#: SerialMonitor.java:112
Carriage\ return=N\u00e1vrat voz\u00edku (CR)
@ -285,7 +291,7 @@ Close=Zav\u0159\u00edt
Comment/Uncomment=Zakomentovat/Odkomentovat
#: Sketch.java:1608 Editor.java:1890
Compiling\ sketch...=Kompiluji skicu...
Compiling\ sketch...=Kompiluji projekt...
#: EditorConsole.java:152
Console\ Error=Chyba Konzole
@ -304,16 +310,16 @@ Copy\ for\ Forum=Kop\u00edrovat pro u\u017eit\u00ed ve f\u00f3ru
#: Sketch.java:1089
#, java-format
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nemohu p\u0159idat ''{0}'' do skici.
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nemohu p\u0159idat ''{0}'' do projektu.
#: Editor.java:2188
Could\ not\ copy\ to\ a\ proper\ location.=Nemohu kop\u00edrovat do spr\u00e1vn\u00e9ho um\u00edst\u011bn\u00ed.
#: Editor.java:2179
Could\ not\ create\ the\ sketch\ folder.=Nemohu vytvo\u0159it adres\u00e1t pro skicu.
Could\ not\ create\ the\ sketch\ folder.=Nemohu vytvo\u0159it adres\u00e1\u0159 s projekty.
#: Editor.java:2206
Could\ not\ create\ the\ sketch.=Nemohu vytvo\u0159it skicu.
Could\ not\ create\ the\ sketch.=Nemohu vytvo\u0159it projekt.
#: Sketch.java:617
#, java-format
@ -348,13 +354,13 @@ Could\ not\ open\ the\ URL\n{0}=Nemohu otev\u0159\u00edt URL\n{0}
Could\ not\ open\ the\ folder\n{0}=Nemohu otev\u0159\u00edt adres\u00e1\u0159\n{0}
#: Sketch.java:1769
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Nepoda\u0159ilo se znovu ulo\u017eit skicu. T\u00edm jsme se dostali do probl\u00e9m\u016f,\nkter\u00e9 p\u016fjdou vy\u0159e\u0161it jen zkop\u00edrov\u00e1n\u00edm k\u00f3du do jin\u00e9ho editoru p\u0159es copy&paste.
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Nepoda\u0159ilo se znovu ulo\u017eit projekt. T\u00edm jsme se dostali do probl\u00e9m\u016f,\nkter\u00e9 p\u016fjdou vy\u0159e\u0161it jen zkop\u00edrov\u00e1n\u00edm k\u00f3du do jin\u00e9ho editoru p\u0159es copy&paste.
#: Sketch.java:1768
Could\ not\ re-save\ sketch=Skicu ne\u0161lo znovu ulo\u017eit
Could\ not\ re-save\ sketch=Projekt ne\u0161lo znovu ulo\u017eit
#: Theme.java:52
!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nen\u00ed mo\u017eno \u010d\u00edst nastaven\u00ed barevn\u00e9ho sch\u00e9matu\nBude nutno reinstalovat Adruino.
#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nebylo mo\u017en\u00e9 na\u010d\u00edst syst\u00e9mov\u00e9 nastaven\u00ed.\nP\u0159einstalujte Arduino.
@ -371,13 +377,13 @@ Could\ not\ remove\ old\ version\ of\ {0}=Nemohu smazat starou verzi {0}
Could\ not\ rename\ "{0}"\ to\ "{1}"=Nepoda\u0159ilo se zm\u011bnit jm\u00e9no z "{0}" na "{1}"
#: Sketch.java:475
Could\ not\ rename\ the\ sketch.\ (0)=Nepoda\u0159ilo se p\u0159ejmenovat skicu. (0)
Could\ not\ rename\ the\ sketch.\ (0)=Nepoda\u0159ilo se p\u0159ejmenovat projekt. (0)
#: Sketch.java:496
Could\ not\ rename\ the\ sketch.\ (1)=Nepoda\u0159ilo se p\u0159ejmenovat skicu. (1)
Could\ not\ rename\ the\ sketch.\ (1)=Nepoda\u0159ilo se p\u0159ejmenovat projekt. (1)
#: Sketch.java:503
Could\ not\ rename\ the\ sketch.\ (2)=Nepoda\u0159ilo se zm\u011bnit n\u00e1zev skici (2)
Could\ not\ rename\ the\ sketch.\ (2)=Nepoda\u0159ilo se zm\u011bnit n\u00e1zev projektu (2)
#: Base.java:2492
#, java-format
@ -387,7 +393,7 @@ Could\ not\ replace\ {0}=Nemohu zm\u011bnit {0}
Could\ not\ write\ build\ preferences\ file=Nelze zapsat soubor nastaven\u00ed
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=Skicu nebylo mo\u017en\u00e9 archivovat
Couldn't\ archive\ sketch=Projekt nebylo mo\u017en\u00e9 archivovat
#: Sketch.java:1647
Couldn't\ determine\ program\ size\:\ {0}=Nemohu ur\u010dit velikost souboru\: {0}
@ -396,7 +402,7 @@ Couldn't\ determine\ program\ size\:\ {0}=Nemohu ur\u010dit velikost souboru\: {
Couldn't\ do\ it=Nemohu to vykonat
#: debug/BasicUploader.java:209
Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Na vybran\u00e9m portu nemohu nal\u00e9zt p\u0159\u00edslu\u0161n\u00fd board /v\u00fdvojovou desku/. Zkontrolujte pros\u00edm, zda je vybr\u00e1n spr\u00e1vn\u00fd port.\\n V p\u0159\u00edpad\u011b, \u017ee port je v po\u0159\u00e1dku, zkuste stisknout tla\u010d\u00edtko Reset na prototypov\u00e9 desce ihned pot\u00e9 co zah\u00e1j\u00edte upload skici.
Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=Na vybran\u00e9m portu nemohu nal\u00e9zt p\u0159\u00edslu\u0161n\u00fd board /v\u00fdvojovou desku/. Zkontrolujte pros\u00edm, zda je vybr\u00e1n spr\u00e1vn\u00fd port.\\n V p\u0159\u00edpad\u011b, \u017ee port je v po\u0159\u00e1dku, zkuste stisknout tla\u010d\u00edtko Reset na prototypov\u00e9 desce ihned pot\u00e9 co zah\u00e1j\u00edte upload projektu.
#: ../../../processing/app/Preferences.java:82
Croatian=Chorvat\u0161tina
@ -407,9 +413,15 @@ Cut=Vyjmout
#: ../../../processing/app/Preferences.java:83
Czech=\u010ce\u0161tina
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=D\u00e1n\u0161tina
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Zmen\u0161it odsazen\u00ed
@ -420,7 +432,7 @@ Delete=Smazat
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Za\u0159\u00edzen\u00ed neodpov\u00edd\u00e1, zkontrolujte zda je p\u0159ipojen seriov\u00fd port a nebo RESETujte v\u00fdvojovou desku (board) p\u0159ed exportem
#: tools/FixEncoding.java:57
Discard\ all\ changes\ and\ reload\ sketch?=Zapomenout v\u0161echny zm\u011bny a skicu znovu nahr\u00e1t?
Discard\ all\ changes\ and\ reload\ sketch?=Zapomenout v\u0161echny zm\u011bny a projekt znovu nahr\u00e1t?
#: ../../../processing/app/Preferences.java:438
Display\ line\ numbers=Zobrazit \u010d\u00edsla \u0159\u00e1dk\u016f
@ -436,7 +448,7 @@ Done\ burning\ bootloader.=Vypalov\u00e1n\u00ed zavad\u011b\u010de ukon\u010deno
#: ../../../processing/app/BaseNoGui.java:507
#: ../../../processing/app/BaseNoGui.java:552
!Done\ compiling=
Done\ compiling=Kompilace skon\u010den\u00e1
#: Editor.java:1911 Editor.java:1928
Done\ compiling.=Kompilace ukon\u010dena.
@ -445,10 +457,10 @@ Done\ compiling.=Kompilace ukon\u010dena.
Done\ printing.=Tisk ukon\u010den.
#: ../../../processing/app/BaseNoGui.java:514
!Done\ uploading=
Done\ uploading=Nahr\u00e1v\u00e1n\u00ed ukon\u010deno
#: Editor.java:2395 Editor.java:2431
Done\ uploading.=Konec uploadu.
Done\ uploading.=Konec nahr\u00e1van\u00ed.
#: Preferences.java:91
Dutch=Nizozem\u0161tina
@ -526,7 +538,7 @@ Error\ while\ burning\ bootloader.=Chyba p\u0159i vypalov\u00e1n\u00ed zavad\u01
Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Chyba p\u0159i vypalov\u00e1n\u00ed bootloaderu\: chyb\u00ed konfigura\u010dn\u00ed parametr '{0}'
#: ../../../../../app/src/processing/app/Editor.java:1940
!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=
Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Nastala chyba p\u0159i kompilaci\: chybej\u00edci '{0}' konfigura\u010dn\u00ed parametr
#: SketchCode.java:83
#, java-format
@ -536,19 +548,19 @@ Error\ while\ loading\ code\ {0}=Chyba p\u0159i nahr\u00e1v\u00e1n\u00ed k\u00f3
Error\ while\ printing.=Chyba b\u011bhem tisku.
#: ../../../processing/app/BaseNoGui.java:528
!Error\ while\ uploading=
Error\ while\ uploading=Nastala chyba p\u0159i nahr\u00e1v\u00e1n\u00ed
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Chyba b\u011bheme uploadu\: chyb\u00ed konfigura\u010dn\u00ed parametr '{0}'
Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Chyba b\u011bheme nahr\u00e1v\u00e1n\u00ed\: chyb\u00ed konfigura\u010dn\u00ed parametr '{0}'
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!Error\ while\ verifying=
Error\ while\ verifying=Nastala chyby p\u0159i verifykaci
#: ../../../processing/app/BaseNoGui.java:521
!Error\ while\ verifying/uploading=
Error\ while\ verifying/uploading=Nastala chyby p\u0159i verifykaci/nahr\u00e1v\u00e1n\u00ed.
#: Preferences.java:93
Estonian=Eston\u0161tina
@ -562,12 +574,9 @@ Examples=P\u0159\u00edklady
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Export byl p\u0159eru\u0161en, je t\u0159eba nejprve ulo\u017eit soubor.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Nezada\u0159ilo se otev\u0159\u00edt skicu\: "{0}"
Failed\ to\ open\ sketch\:\ "{0}"=Nezada\u0159ilo se otev\u0159\u00edt projekt\: "{0}"
#: Editor.java:491
File=Soubor
@ -605,7 +614,7 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
#, java-format
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=
Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=Vynucen\u00fd reset za pomoci 1200bps otev\u0159\u00edt/zav\u0159\u00edt na porte {0}
#: Preferences.java:95
French=Francou\u0161tina
@ -616,6 +625,9 @@ Frequently\ Asked\ Questions=\u010casto kladen\u00e9 ot\u00e1zky
#: Preferences.java:96
Galician=Galicij\u0161tina
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Gruz\u00edn\u0161tina
@ -636,18 +648,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globaln\u00ed prom\u011
#: Preferences.java:98
Greek=\u0158e\u010dtina
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebrej\u0161tina
@ -658,7 +658,7 @@ Help=N\u00e1pov\u011bda
Hindi=Hind\u0161tina
#: Sketch.java:295
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Co takhle skicu nejprve ulo\u017eit\nne\u017e mu budeme m\u011bnit jm\u00e9no?
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Co takhle projekt nejprve ulo\u017eit\nne\u017e mu budeme m\u011bnit jm\u00e9no?
#: Sketch.java:882
How\ very\ Borges\ of\ you=To je trochu nelogick\u00e9
@ -679,7 +679,7 @@ Ignoring\ sketch\ with\ bad\ name=Ignoruji skicu chybn\u00e9ho jm\u00e9na
Import\ Library...=Import knihovny...
#: ../../../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?=V Arduino 1.0 se zm\u011bnila defaultn\u00ed p\u0159\u00edpona pro soubory\nz .pde na .ino. Nov\u00e9 skici (a to plat\u00ed i pro ty, kter\u00e9 vznikly\npomoc\u00ed "Ulo\u017e jako") budou obsahovat tuto novou p\u0159\u00edponu.\nP\u0159\u00edpona existuj\u00edc\u00edch skic se zm\u011bn\u00ed p\u0159i jejich nov\u00e9m ulo\u017een\u00ed,\ntuto vlastnost lze zm\u011bnit v nastaven\u00ed.\n\nUlo\u017eit skicu a zm\u011bnit jej\u00ed p\u0159\u00edponu na .ino?
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?=V Arduino 1.0 se zm\u011bnila defaultn\u00ed p\u0159\u00edpona pro soubory\nz .pde na .ino. Nov\u00e9 projekty (a to plat\u00ed i pro ty, kter\u00e9 vznikly\npomoc\u00ed "Ulo\u017e jako") budou obsahovat tuto novou p\u0159\u00edponu.\nP\u0159\u00edpona existuj\u00edc\u00edch projekt\u016f se zm\u011bn\u00ed p\u0159i jejich nov\u00e9m ulo\u017een\u00ed,\ntuto vlastnost lze zm\u011bnit v nastaven\u00ed.\n\nUlo\u017eit projekt a zm\u011bnit jeho p\u0159\u00edponu na .ino?
#: Editor.java:1216 Editor.java:2757
Increase\ Indent=Zv\u011bt\u0161it odsazen\u00ed
@ -710,7 +710,10 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Knihovna by
Lithuaninan=Litev\u0161tina
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
Low\ memory\ available,\ stability\ problems\ may\ occur.=M\u00e1la dostupn\u00e9 pam\u011bti, m\u00fa\u017eou nastat probl\u00e9my se stabilitou.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Mar\u00e1th\u0161tina
@ -722,7 +725,7 @@ Message=Zpr\u00e1va
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Chyb\u00ed ukon\u010duj\u00edc\u00ed znaky "*/" koment\u00e1\u0159e
#: ../../../processing/app/BaseNoGui.java:455
!Mode\ not\ supported=
Mode\ not\ supported=M\u00f3d nen\u00ed podporov\u00e1n
#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dal\u0161\u00ed volby mohou b\u00fdt m\u011bn\u011bny p\u0159\u00edmo v souboru
@ -731,10 +734,10 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Dal\u0161\u00ed volb
Moving=P\u0159esouv\u00e1m
#: ../../../processing/app/BaseNoGui.java:484
!Multiple\ files\ not\ supported=
Multiple\ files\ not\ supported=V\u00edcen\u00e1sobn\u00ed soubory nejsou podporov\u00e1n\u00fd
#: ../../../processing/app/Base.java:395
Must\ specify\ exactly\ one\ sketch\ file=Mus\u00edte ozna\u010dit pr\u00e1v\u011b jeden soubor se skicou
Must\ specify\ exactly\ one\ sketch\ file=Mus\u00edte ozna\u010dit pr\u00e1v\u011b jeden soubor s projektem
#: ../../../processing/app/Preferences.java:158
N'Ko=N'Ko
@ -745,6 +748,9 @@ Name\ for\ new\ file\:=Jm\u00e9no nov\u00e9ho souboru\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nep\u00e1l\u0161tina
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Uploadovan\u00ed po s\u00edti pomoc\u00ed program\u00e1toru nen\u00ed podporov\u00e1no
@ -767,7 +773,7 @@ Next\ Tab=N\u00e1sleduj\u00edc\u00ed Z\u00e1lo\u017eka
No=Ne
#: ../../../processing/app/debug/Compiler.java:146
!No\ athorization\ data\ found=
No\ athorization\ data\ found=Autoriza\u010dn\u00ed data nebyly nalezeny
#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nem\u00e1te vybr\u00e1n model v\u00fdvojov\u00e9 desky (boardu); vyberte model boardu v N\u00e1stroje (Tools) > Board
@ -776,10 +782,10 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu
No\ changes\ necessary\ for\ Auto\ Format.=Pro autoform\u00e1tov\u00e1n\u00ed nejsou t\u0159eba zm\u011bny.
#: ../../../processing/app/BaseNoGui.java:665
!No\ command\ line\ parameters\ found=
No\ command\ line\ parameters\ found=Nabyly nalezeny \u017e\u00e1dn\u00e9 parametry pro p\u0159\u00edkazovou \u0159\u00e1dku
#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=Ke skice nebyly p\u0159id\u00e1ny \u017e\u00e1dn\u00e9 soubory.
No\ files\ were\ added\ to\ the\ sketch.=K projektu nebyly p\u0159id\u00e1ny \u017e\u00e1dn\u00e9 soubory.
#: Platform.java:167
No\ launcher\ available=Nen\u00ed k dispozici \u017e\u00e1dn\u00fd launcher
@ -788,7 +794,7 @@ No\ launcher\ available=Nen\u00ed k dispozici \u017e\u00e1dn\u00fd launcher
No\ line\ ending=Chybn\u00fd konec \u0159\u00e1dky
#: ../../../processing/app/BaseNoGui.java:665
!No\ parameters=
No\ parameters=\u017d\u00e1dn\u00e9 parametry
#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Opravdu, p\u0159i\u0161el v\u00e1\u0161 \u010das na tro\u0161ku \u010derstv\u00e9ho vzduchu.
@ -799,10 +805,10 @@ No\ reference\ available\ for\ "{0}"=Pro "{0}" nelze nal\u00e9zt odkaz v referen
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!No\ sketch=
No\ sketch=\u017d\u00e1dn\u00fd n\u00e1vrh
#: ../../../processing/app/BaseNoGui.java:428
!No\ sketchbook=
No\ sketchbook=\u017d\u00e1dn\u00e1 n\u00e1vrhov\u00e1 kniha
#: ../../../processing/app/Sketch.java:204
No\ valid\ code\ files\ found=Nebyly nalezeny soubory obsahuj\u00edc\u00ed validn\u00ed k\u00f3d
@ -820,9 +826,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nez\u00e1va\u017en\u00e1 c
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Ne
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nedostatek pem\u011bti; na http\://www.arduino.cc/en/Guide/Troubleshooting\#size naleznete typy jak velikost redukovat.
@ -831,10 +843,10 @@ Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size
OK=OK
#: Sketch.java:992 Editor.java:376
One\ file\ added\ to\ the\ sketch.=Jeden soubor byl p\u0159id\u00e1n ke skice.
One\ file\ added\ to\ the\ sketch.=Jeden soubor byl p\u0159id\u00e1n k projektu.
#: ../../../processing/app/BaseNoGui.java:455
!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=
Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Jenom --verify, --upload nebo --get-pref jsou podporov\u00e1n\u00fd
#: EditorToolbar.java:41
Open=Otev\u0159\u00edt
@ -843,7 +855,7 @@ Open=Otev\u0159\u00edt
Open\ URL=Otev\u0159i URL
#: Base.java:636
Open\ an\ Arduino\ sketch...=Otev\u0159i Arduino skicu...
Open\ an\ Arduino\ sketch...=Otev\u0159i Arduino projekt...
#: EditorToolbar.java:46
Open\ in\ Another\ Window=Otev\u0159i v nov\u00e9m okn\u011b
@ -867,17 +879,17 @@ Persian=Per\u0161tina
Persian\ (Iran)=Per\u0161tina (Ir\u00e1n)
#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Pros\u00edm importujte knihovnu SPI z Skica (Sketch) > Import knihovny (Import Library).
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Pros\u00edm importujte knihovnu SPI z Projekt\u016f (Sketch) > Import knihovny (Import Library).
#: ../../../processing/app/debug/Compiler.java:529
Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importujte knihovnu pro Wire z menu\: Skica > Vlo\u017e knihovnu.
Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Importujte knihovnu pro Wire z menu\: Projekt > Vlo\u017e knihovnu.
#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=Nainstalujte si pros\u00edm JDK 1.5 \u010di nov\u011bj\u0161\u00ed.
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Pros\u00edm veberte program\u00e1tor z N\u00e1stroje->Program\u00e1torsk\u00e9 menu
#: Preferences.java:110
Polish=Pol\u0161tina
@ -998,19 +1010,19 @@ Save\ changes\ before\ export?=Ulo\u017eit zm\u011bny p\u0159ed exportem?
Save\ changes\ to\ "{0}"?\ \ =Ulo\u017eit zm\u011bny do "{0}"?
#: Sketch.java:825
Save\ sketch\ folder\ as...=Ulo\u017e adres\u00e1\u0159 pro skicu jako...
Save\ sketch\ folder\ as...=Ulo\u017e adres\u00e1\u0159 pro projekty jako...
#: ../../../../../app/src/processing/app/Preferences.java:425
!Save\ when\ verifying\ or\ uploading=
Save\ when\ verifying\ or\ uploading=Ulo\u017eit v okamihu veryfikace nebo nahr\u00e1v\u00e1n\u00ed
#: Editor.java:2270 Editor.java:2308
Saving...=Ukl\u00e1d\u00e1m...
#: ../../../processing/app/FindReplace.java:131
!Search\ all\ Sketch\ Tabs=
Search\ all\ Sketch\ Tabs=Hledej v z\u00e1lo\u017ece Projekty
#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=Vyberte (nebo vytvo\u0159te nov\u00fd) adres\u00e1\u0159 pro skic\u00e1\u0159...
Select\ (or\ create\ new)\ folder\ for\ sketches...=Vyberte (nebo vytvo\u0159te nov\u00fd) adres\u00e1\u0159 pro projekty...
#: Editor.java:1198 Editor.java:2739
Select\ All=Vybrat v\u0161e
@ -1019,10 +1031,10 @@ Select\ All=Vybrat v\u0161e
Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=Vyberte soubor typu ZIP nebo adres\u00e1\u0159, kter\u00fd obsahuje knihovnu, kterou chcete p\u0159id\u00e1vat
#: Sketch.java:975
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Vyberte obr\u00e1zek a nebo jin\u00fd datov\u00fd soubor k nakop\u00edrov\u00e1n\u00ed do va\u0161\u00ed skici.
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Vyberte obr\u00e1zek a nebo jin\u00fd datov\u00fd soubor k nakop\u00edrov\u00e1n\u00ed do va\u0161eho projektu.
#: Preferences.java:330
Select\ new\ sketchbook\ location=Vyberte nov\u00e9 um\u00edsten\u00ed skic\u00e1\u0159e
Select\ new\ sketchbook\ location=Vyberte nov\u00e9 um\u00edsten\u00ed pro va\u0161e projekty
#: ../../../processing/app/debug/Compiler.java:146
Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=Vybran\u00e1 v\u00fdvojov\u00e1 deska z\u00e1vis\u00ed na j\u00e1d\u0159e '{0}' (neinstalov\u00e1no).
@ -1039,13 +1051,16 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#: Editor.java:2343
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seriov\u00fd port {0} nenalezen\nM\u00e1m zkusit upload na jin\u00fd seriov\u00fd port?
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Seriov\u00fd port {0} nenalezen\nM\u00e1m zkusit nahr\u00e1vat na jin\u00fd seriov\u00fd port?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Probl\u00e9m s Nastaven\u00edm
#: Editor.java:641
Show\ Sketch\ Folder=Zobraz adres\u00e1\u0159 skici
Show\ Sketch\ Folder=Zobraz adres\u00e1\u0159 s projekty
#: ../../../processing/app/EditorStatus.java:468
Show\ verbose\ output\ during\ compilation=Zobrazit v\u00edce informac\u00ed b\u011bhem kompilace
@ -1054,57 +1069,60 @@ Show\ verbose\ output\ during\ compilation=Zobrazit v\u00edce informac\u00ed b\u
Show\ verbose\ output\ during\:\ =Zobrazit v\u00edce informac\u00ed v\u00fdstupu b\u011bhem\:
#: Editor.java:607
Sketch=Skica
Sketch=Projekt
#: Sketch.java:1754
Sketch\ Disappeared=Skica zmizela
Sketch\ Disappeared=Projekt zmizel
#: Base.java:1411
Sketch\ Does\ Not\ Exist=Skica neexistuje
Sketch\ Does\ Not\ Exist=Projekt neexistuje
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
Sketch\ is\ Read-Only=Tato skica je ozna\u010dena "Jen pro \u010dten\u00ed"
Sketch\ is\ Read-Only=Tento projekt je ozna\u010den "Jen pro \u010dten\u00ed"
#: Sketch.java:294
Sketch\ is\ Untitled=Skica je Nepojmenovan\u00e1
Sketch\ is\ Untitled=Projekt je Nepojmenovan\u00fd
#: Sketch.java:720
Sketch\ is\ read-only=Skica je ozna\u010dena "Jen pro \u010dten\u00ed"
Sketch\ is\ read-only=Projekt je ozna\u010den "Jen pro \u010dten\u00ed"
#: Sketch.java:1653
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Skica je moc velk\u00e1; na http\://www.arduino.cc/en/Guide/Troubleshooting\#size naleznete typy jak skicu zmen\u0161it.
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Projekt je moc velk\u00fd; na http\://www.arduino.cc/en/Guide/Troubleshooting\#size naleznete typy jak projekt zmen\u0161it.
#: ../../../processing/app/Sketch.java:1639
#, java-format
Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=Skica zab\u00edr\u00e1 {0} byt\u016f ({2}%%) \u00falo\u017en\u00e9ho m\u00edsta pro program. Maximum je {1} byt\u016f.
Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=Projekt zab\u00edr\u00e1 {0} byt\u016f ({2}%%) \u00falo\u017en\u00e9ho m\u00edsta pro program. Maximum je {1} byt\u016f.
#: Editor.java:510
Sketchbook=Skic\u00e1\u0159
Sketchbook=Projekty
#: Base.java:258
Sketchbook\ folder\ disappeared=Zmizel adres\u00e1\u0159 Skic\u00e1\u0159e.
Sketchbook\ folder\ disappeared=Zmizel adres\u00e1\u0159 s Projekty.
#: Preferences.java:315
Sketchbook\ location\:=Um\u00edst\u011bn\u00ed skic\u00e1\u0159e\:
Sketchbook\ location\:=Um\u00edst\u011bn\u00ed projekt\u016f\:
#: ../../../processing/app/BaseNoGui.java:428
!Sketchbook\ path\ not\ defined=
Sketchbook\ path\ not\ defined=Adres\u00e1\u0159 ke knize projekt\u016f nen\u00ed definov\u00e1n
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Skici (*.ino, *.pde)
Sketches\ (*.ino,\ *.pde)=Projekty (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Slovin\u0161tina
#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u011bkter\u00e9 soubory jsou ozna\u010den\u00e9 "Jen pro \u010dten\u00ed", proto ulo\u017ete\nskicu na j\u00edn\u00e9 m\u00edsto a zkuste tuto akci znovu.
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u011bkter\u00e9 soubory jsou ozna\u010den\u00e9 "Jen pro \u010dten\u00ed", proto ulo\u017ete\nprojekt na j\u00edn\u00e9 m\u00edsto a zkuste tuto akci znovu.
#: Sketch.java:721
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=N\u011bkter\u00e9 soubory jsou ozna\u010den\u00e9 "Jen pro \u010dten\u00ed", proto\nulo\u017ete skicu znovu av\u010dak na jin\u00e9 m\u00edsto.
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=N\u011bkter\u00e9 soubory jsou ozna\u010den\u00e9 "Jen pro \u010dten\u00ed", proto\nulo\u017ete projekt znovu na jin\u00e9 m\u00edsto.
#: Sketch.java:457
#, java-format
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Pardon, skica (\u010di adres\u00e1\u0159) jm\u00e9na "{0}" ji\u017e existuje.
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=Pardon, projekt (\u010di adres\u00e1\u0159) jm\u00e9na "{0}" ji\u017e existuje.
#: Preferences.java:115
Spanish=\u0160pan\u011bl\u0161tina
@ -1112,12 +1130,18 @@ Spanish=\u0160pan\u011bl\u0161tina
#: Base.java:540
Sunshine=Slunceee\!
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u0160v\u00e9d\u0161tina
#: Preferences.java:84
System\ Default=Podle opera\u010dn\u00edho syst\u00e9mu
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil\u0161tina
@ -1125,7 +1149,7 @@ Tamil=Tamil\u0161tina
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Kl\u00ed\u010dov\u00e9 slovo 'BYTE' nen\u00ed podporov\u00e1no.
#: ../../../processing/app/BaseNoGui.java:484
!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=
The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=parametr --upload je podporov\u00e1n jenom na jednom souboru
#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=U t\u0159\u00eddy Client byl zm\u011bn\u011bn n\u00e1zev na EthernetClient.
@ -1141,7 +1165,7 @@ The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=N\u00e1sledu
#: Editor.java:2147
#, java-format
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Soubor "{0}" mus\u00ed b\u00fdt ulo\u017een \nv adres\u00e1\u0159i pro skicu pojmenovan\u00e9m "{1}".\nM\u00e1m vytvo\u0159it adres\u00e1\u0159, p\u0159esunout tam soubor a pokra\u010dovat?
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Soubor "{0}" mus\u00ed b\u00fdt ulo\u017een \nv adres\u00e1\u0159i pro projekty pojmenovan\u00e9m "{1}".\nM\u00e1m vytvo\u0159it adres\u00e1\u0159, p\u0159esunout tam soubor a pokra\u010dovat?
#: Base.java:1054 Base.java:2674
#, java-format
@ -1154,23 +1178,23 @@ The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\
The\ name\ cannot\ start\ with\ a\ period.=Jm\u00e9no souboru nesm\u00ed za\u010d\u00ednat te\u010dkou.
#: Base.java:1412
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Vybran\u00e1 skica ji\u017e neexistuje.\nZkuste restartovat Arduino a t\u00edm\nse obnov\u00ed i polo\u017eky ve Skic\u00e1\u0159i.
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Vybran\u00fd projekt ji\u017e neexistuje.\nZkuste restartovat Arduino a t\u00edm\nse obnov\u00ed i polo\u017eky ve Projektech.
#: Base.java:1430
#, java-format
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=N\u00e1zev skici "{0}" nelze pou\u017e\u00edt.\nN\u00e1zev skici m\u016f\u017ee obsahovat jen z\u00e1kladn\u00ed p\u00edsmena a \u010d\u00edsla\n(tedy pouze ASCII znaky, bez mezer, n\u00e1zev nesm\u00ed za\u010d\u00ednat \u010d\u00edslem).\nAby se v\u00e1m tato zpr\u00e1va nezobrazovala sma\u017ete skicu z\n{1}
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=N\u00e1zev projektu "{0}" nelze pou\u017e\u00edt.\nN\u00e1zev projektu m\u016f\u017ee obsahovat jen z\u00e1kladn\u00ed p\u00edsmena a \u010d\u00edsla\n(tedy pouze ASCII znaky, bez mezer, n\u00e1zev nesm\u00ed za\u010d\u00ednat \u010d\u00edslem).\nAby se v\u00e1m tato zpr\u00e1va nezobrazovala sma\u017ete projekt z\n{1}
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Skica zmizela.\n Pokus\u00edm se znovu ulo\u017eit na stejn\u00e9 m\u00edsto,\nale krom k\u00f3du bude v\u0161echno ostatn\u00ed ztraceno\!
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\!
#: ../../../processing/app/Sketch.java:2028
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=N\u00e1zev skici je pot\u0159eba zm\u011bnit. N\u00e1zev skici je mo\u017en\u00e9 slo\u017eit pouze z ASCII znak\u016f a \u010d\u00edsel (\u010d\u00edslem v\u0161ak nem\u016f\u017ee za\u010d\u00ednat). N\u00e1zev mus\u00ed m\u00edt d\u00e9lku m\u00e9n\u011b jak 64 znak\u016f.
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=N\u00e1zev projektu je pot\u0159eba zm\u011bnit. N\u00e1zev projektu je mo\u017en\u00e9 slo\u017eit pouze z ASCII znak\u016f a \u010d\u00edsel (\u010d\u00edslem v\u0161ak nem\u016f\u017ee za\u010d\u00ednat). N\u00e1zev mus\u00ed m\u00edt d\u00e9lku m\u00e9n\u011b jak 64 znak\u016f.
#: Base.java:259
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Adres\u00e1\u0159 skic\u00e1\u0159e (Sketchbook folder) ji\u017e neexistuje.\nArduino se pokus\u00ed p\u0159epnout do defaultn\u00edho um\u00edst\u011bn\u00ed skic\u00e1\u0159e\na adres\u00e1\u0159 pro skic\u00e1\u0159 (Sketchbook) vytvo\u0159\u00ed na tomto m\u00edst\u011b.\nArduino pak o sob\u011b p\u0159estane mluvit \nve t\u0159et\u00ed osob\u011b.
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Adres\u00e1\u0159 projekt\u016f (Sketchbook folder) ji\u017e neexistuje.\nArduino se pokus\u00ed p\u0159epnout do defaultn\u00edho um\u00edst\u011bn\u00ed projektov\u00e9ho adres\u00e1\u0159e\na adres\u00e1\u0159 pro projekty (Sketchbook) vytvo\u0159\u00ed na tomto m\u00edst\u011b.\nArduino pak o sob\u011b p\u0159estane mluvit \nve t\u0159et\u00ed osob\u011b.
#: ../../../processing/app/debug/Compiler.java:201
!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=
Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=V souboru platform.txt od poskytovatele t\u0159et\u00edch stran nen\u00ed definov\u00e1no compiler.path. Oznamte to pros\u00edm spr\u00e1vci hardwaru t\u0159et\u00edch stran.
#: Sketch.java:1075
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Tento soubor byl ji\u017e na toto m\u00edsto nakop\u00edrov\u00e1n\nze kter\u00e9ho jsi jej zkou\u0161el p\u0159idat.\nNemohu to ud\u011blat.
@ -1194,14 +1218,14 @@ Turkish=Ture\u010dtina
Type\ board\ password\ to\ access\ its\ console=Zadejte p\u0159\u00edstupov\u00e9 heslo ke konsoli v\u00fdvojov\u00e9 desky
#: ../../../processing/app/Sketch.java:1673
Type\ board\ password\ to\ upload\ a\ new\ sketch=Zadejte heslo pro upload skici na v\u00fdvojovou desku
Type\ board\ password\ to\ upload\ a\ new\ sketch=Zadejte heslo pro nahr\u00e1v\u00e1n\u00ed projektu na v\u00fdvojovou desku
#: ../../../processing/app/Preferences.java:118
Ukrainian=Ukrajin\u0161tina
#: ../../../processing/app/Editor.java:2524
#: ../../../processing/app/NetworkMonitor.java:145
Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Nemohu se p\u0159ipojit\: vyu\u017e\u00edv\u00e1 skica bridge?
Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=Nemohu se p\u0159ipojit\: pou\u017e\u00edv\u00e1 projekt bridge?
#: ../../../processing/app/NetworkMonitor.java:130
Unable\ to\ connect\:\ retrying=Nemohu se p\u0159ipojit\: zkou\u0161\u00edm znovu
@ -1226,25 +1250,28 @@ Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\
Update=Aktualizovat
#: Preferences.java:428
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=P\u0159i ukl\u00e1d\u00e1n\u00ed aktualizuj p\u0159\u00edponu souboru se skicou (.pde -> .ino)
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=P\u0159i ukl\u00e1d\u00e1n\u00ed aktualizuj p\u0159\u00edponu souboru projektu (.pde -> .ino)
#: EditorToolbar.java:41 Editor.java:545
Upload=Uploadovat
Upload=Nahr\u00e1t
#: EditorToolbar.java:46 Editor.java:553
Upload\ Using\ Programmer=Uploadovat pomoc\u00ed program\u00e1toru
Upload\ Using\ Programmer=Nahr\u00e1t pomoc\u00ed program\u00e1toru
#: Editor.java:2403 Editor.java:2439
Upload\ canceled.=Upload p\u0159eru\u0161en.
Upload\ canceled.=Nahr\u00e1v\u00e1n\u00ed p\u0159eru\u0161eno.
#: ../../../processing/app/Sketch.java:1678
Upload\ cancelled=Upload p\u0159eru\u0161en
Upload\ cancelled=Nahr\u00e1v\u00e1n\u00ed p\u0159eru\u0161eno.
#: Editor.java:2378
Uploading\ to\ I/O\ Board...=Uploaduji na I/O boardu (v\u00fdvojov\u00e9 desky)...
Uploading\ to\ I/O\ Board...=Nahr\u00e1v\u00e1m na I/O boardu (v\u00fdvojov\u00e9 desky)...
#: Sketch.java:1622
Uploading...=Uploaduji...
Uploading...=Nahr\u00e1v\u00e1m...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Pro vyhled\u00e1n\u00ed u\u017eij v\u00fdb\u011br
@ -1267,7 +1294,7 @@ Verify=Ov\u011b\u0159it
Verify\ /\ Compile=Ov\u011b\u0159it / Kompilovat
#: Preferences.java:400
Verify\ code\ after\ upload=Ov\u011b\u0159it k\u00f3d po uploadu
Verify\ code\ after\ upload=Ov\u011b\u0159it k\u00f3d po nahr\u00e1t\u00ed
#: ../../../processing/app/Preferences.java:154
Vietnamese=Vietnam\u0161tina
@ -1282,6 +1309,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Upozorn\u011bn\u00ed
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Funkci Wire.receive() byl zm\u011bn\u011bn n\u00e1zev na Wire.read().
@ -1301,25 +1331,25 @@ Yes=Ano
You\ can't\ fool\ me=Mne nep\u0159echytra\u010d\u00ed\u0161.
#: Sketch.java:411
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Soubor s p\u0159\u00edponou .cpp nesm\u00ed m\u00edt stejn\u00e9 jm\u00e9no jako skica.
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Soubor s p\u0159\u00edponou .cpp nesm\u00ed m\u00edt stejn\u00e9 jm\u00e9no jako projekt.
#: Sketch.java:421
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze p\u0159ejmenovat skicu na "{0}"\nproto\u017ee soubor stejn\u00e9ho jm\u00e9na av\u0161ak s p\u0159\u00edponou .cpp u\u017e existuje.
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze p\u0159ejmenovat projekt na "{0}"\nproto\u017ee soubor stejn\u00e9ho jm\u00e9na av\u0161ak s p\u0159\u00edponou .cpp ji\u017e existuje.
#: Sketch.java:861
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze ulo\u017eit skicu jako "{0}"\nproto\u017ee skica obsahuje soubor .cpp stejn\u00e9ho n\u00e1zvu.
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze ulo\u017eit projekt jako "{0}"\nproto\u017ee projekt obsahuje soubor .cpp stejn\u00e9ho n\u00e1zvu.
#: Sketch.java:883
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nelze ukl\u00e1dat skicu do adres\u00e1\u0159e uvnit\u0159 sebe sama.\nDo\u0161lo by k zacyklen\u00ed do nekone\u010dna.
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nelze ukl\u00e1dat projekt do adres\u00e1\u0159e uvnit\u0159 sebe sama.\nDo\u0161lo by k zacyklen\u00ed do nekone\u010dna.
#: Base.java:1888
You\ forgot\ your\ sketchbook=Zapom\u011bli jste si sv\u016fj skic\u00e1\u0159
You\ forgot\ your\ sketchbook=Zapom\u011bli jste si sv\u016fj projekt
#: ../../../processing/app/AbstractMonitor.java:92
You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=Stiskli jste {0}, av\u0161ak nic nebylo posl\u00e1no. Nem\u011bli byste nastavit nataven\u00ed konce \u0159\u00e1dku?
#: Base.java:536
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Pro dne\u0161ek jste se dostali na limit mo\u017en\u00fdch automatick\u00fdch\njmen pro pojmenov\u00e1v\u00e1n\u00ed skic. Co se j\u00edt tro\u0161ku proj\u00edt?
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Pro dne\u0161ek jste se dostali na limit mo\u017en\u00fdch automatick\u00fdch\njmen pro pojmenov\u00e1v\u00e1n\u00ed projekt\u016f. Co se j\u00edt tro\u0161ku proj\u00edt?
#: Base.java:2638
ZIP\ files\ or\ folders=ZIP soubory \u010di adres\u00e1\u0159e
@ -1333,7 +1363,7 @@ Zip\ doesn't\ contain\ a\ library=ZIP neobsahuje knihovnu pro Arduino
#: SketchCode.java:258
#, java-format
!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" obsahuje neuzn\u00e1m\u00e9 znaky. Pokud tento k\u00f3d byl vytvo\u0159en pomoc\u00ed star\u0161\u00ed verze Arduino, mo\u017en\u00e1 budete muset pou\u017e\u00edt N\u00e1stroje -> Opravit K\u00f3dov\u00e1n\u00ed & Na\u010d\u00edst znovu aktualizovan\u00fd projekt za pou\u017eit\u00ed k\u00f3dov\u00e1n\u00ed UTF-8. Pokud ne, budete mo\u017en\u00e1 muset muset odstranit \u0161patn\u00e9 znaky, tak se zbav\u00edte tohoto varov\u00e1n\u00ed.
#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nOd verze Arduino 0019, knihovna Ethernet z\u00e1vis\u00ed na knihovn\u011b SPI.\nZd\u00e1 se, \u017ee ji\u017e vyuz\u017e\u00edv\u00e1te jin\u00e9 knihovny, kter\u00e1 z\u00e1vis\u00ed na knihovn\u011b SPI.\n\n
@ -1371,9 +1401,6 @@ createNewFile()\ returned\ false=funkce createNewFile() navr\u00e1tila false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=povoleno v Soubor > Vlastnosti
#: Base.java:2090
environment=prost\u0159ed\u00ed
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1383,21 +1410,12 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignoruji nepovolenou velikost fontu {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name je null
#: Base.java:2090
platforms.html=platforms.html
name\ is\ null=jm\u00e9no je null
#: Editor.java:932
serialMenu\ is\ null=serialMenu je null
@ -1425,25 +1443,21 @@ upload=nahr\u00e1v\u00e1n\u00ed (upload)
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Nespr\u00e1vn\u00fd argument pro --pref; m\u011bl by b\u00fdt ve form\u011b "pref\=value"
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Chybn\u00fd argument pro --pref; m\u011bl by b\u00fdt ve form\u011b "pref\=value"
#: ../../../processing/app/Base.java:476
#, java-format
{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nesp\u00e1r\u00e1vn\u011b zvolen\u00fd n\u00e1zev v\u00fdvojov\u00e9 desky; m\u011blo by m\u00edt formu "package\:arch\:board" \u010di "package\:arch\:board\:options"
{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Chybn\u011b zvolen\u00fd n\u00e1zev v\u00fdvojov\u00e9 desky; m\u011bl by m\u00edt formu "package\:arch\:board" \u010di "package\:arch\:board\:options"
#: ../../../processing/app/Base.java:509
#, java-format
{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Nespr\u00e1vn\u00e1 volba pro "{1}" volbu pro v\u00fdvojovou desku "{2}"
{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Chybn\u00e1 volba pro "{1}" volbu pro v\u00fdvojovou desku "{2}"
#: ../../../processing/app/Base.java:507
#, java-format
{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Nespr\u00e1vn\u00e1 volba pro v\u00fdvojovou desku "{1}"
{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Chybn\u00e1 volba pro v\u00fdvojovou desku "{1}"
#: ../../../processing/app/Base.java:502
#, java-format

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -97,6 +97,10 @@ msgstr "Tilføj fil..."
msgid "Add Library..."
msgstr "Tilføj bibliotek..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albansk"
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Klip"
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Dansk"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr ""
@ -791,10 +807,6 @@ msgstr "Eksempler"
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Ofte stillede spørgsmål"
msgid "Galician"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr "Græsk"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1002,6 +1002,10 @@ msgstr ""
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1046,6 +1050,10 @@ msgstr ""
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr ""
msgid "Nope"
msgstr "Nej"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr ""
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr "Spansk"
msgid "Sunshine"
msgstr "Solskin"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Svensk"
@ -1556,6 +1584,10 @@ msgstr "Svensk"
msgid "System Default"
msgstr "Standard instillinger"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamilsk"
@ -1761,6 +1793,10 @@ msgstr ""
msgid "Uploading..."
msgstr "Uploader..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Advarsel"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
@ -1966,10 +2006,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "miljø"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2037,11 +2061,6 @@ msgstr ""
msgid "{0} | Arduino {1}"
msgstr ""
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr ""
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Tilf\u00f8j fil...
#: Base.java:963
Add\ Library...=Tilf\u00f8j bibliotek...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albansk
@ -189,6 +192,9 @@ Auto\ Format\ finished.=Automatisk formatering udf\u00f8rt.
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -404,9 +410,15 @@ Cut=Klip
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Dansk
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
!Decrease\ Indent=
@ -559,9 +571,6 @@ Examples=Eksempler
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Ofte stillede sp\u00f8rgsm\u00e5l
#: Preferences.java:96
!Galician=
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -633,18 +645,6 @@ Getting\ Started=Kom i gang
#: Preferences.java:98
Greek=Gr\u00e6sk
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -709,6 +709,9 @@ Latvian=Lettisk
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -742,6 +745,9 @@ Moving=Flytter
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ No=Nej
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Nej
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Send=Send
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
!Settings\ issues=
@ -1090,6 +1105,9 @@ Send=Send
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Spanish=Spansk
#: Base.java:540
Sunshine=Solskin
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Svensk
#: Preferences.java:84
System\ Default=Standard instillinger
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamilsk
@ -1243,6 +1267,9 @@ Upload=Upload
#: Sketch.java:1622
Uploading...=Uploader...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=Bes\u00f8g Arduino.cc
#: Base.java:2128
Warning=Advarsel
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
@ -1368,9 +1398,6 @@ ZIP\ files\ or\ folders=ZIP filer eller mapper
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=milj\u00f8
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
!serialMenu\ is\ null=
@ -1422,10 +1440,6 @@ platforms.html=platforms.html
#, java-format
!{0}\ |\ Arduino\ {1}=
#: Editor.java:1874
#, java-format
!{0}.html=
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -98,6 +98,10 @@ msgstr "Datei hinzufügen"
msgid "Add Library..."
msgstr "Bibliothek hinzufügen..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albanisch"
@ -290,6 +294,10 @@ msgstr "Baskisch"
msgid "Belarusian"
msgstr "Weißrussisch"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "Ausschneiden"
msgid "Czech"
msgstr "Tschechisch"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Dänisch"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Ausrücken"
@ -792,10 +808,6 @@ msgstr "Beispiele"
msgid "Export canceled, changes must first be saved."
msgstr "Export abgebrochen, Änderungen müssen erst gespeichert werden."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "Häufig gestellte Fragen"
msgid "Galician"
msgstr "Galizisch"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgisch"
@ -893,22 +909,6 @@ msgstr "Globale Variablen verwenden {0} Bytes des dynamischen Speichers."
msgid "Greek"
msgstr "Griechisch"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebräisch"
@ -1003,6 +1003,10 @@ msgstr "Litauisch"
msgid "Low memory available, stability problems may occur."
msgstr "Wenig Speicher verfügbar, es können Stabilitätsprobleme auftreten."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathisch"
@ -1047,6 +1051,10 @@ msgstr "Name der neuen Datei:"
msgid "Nepali"
msgstr "Nepali"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Netzwerkupload in Verwendung des Programmers wird nicht unterstützt"
@ -1146,10 +1154,18 @@ msgstr "Kleiner Fehler beim Einstellen des Erscheinungsbildes."
msgid "Nope"
msgstr "Nein"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norwegisches Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Serieller Port {0} nicht gefunden.\nMit einem anderen seriellen Port versuchen?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Problem mit den Einstellungen"
@ -1519,6 +1539,10 @@ msgstr "Sketchbook-Speicherort nicht definiert"
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketche (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Slowenisch"
@ -1549,6 +1573,10 @@ msgstr "Spanisch"
msgid "Sunshine"
msgstr "Sonnenschein"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Schwedisch"
@ -1557,6 +1585,10 @@ msgstr "Schwedisch"
msgid "System Default"
msgstr "Systemstandard"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamilisch"
@ -1762,6 +1794,10 @@ msgstr "Hochladen zur E/A-Platine..."
msgid "Uploading..."
msgstr "Hochladen..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Auswahl für Suche verwenden"
@ -1811,6 +1847,10 @@ msgstr "WARNUNG: Bibliothek {0} behauptet auf {1} Architektur(en) ausgeführt we
msgid "Warning"
msgstr "Warnung"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() wurde in Wire.read() umbenannt"
@ -1967,10 +2007,6 @@ msgstr "createNewFile() gab einen Fehler zurück"
msgid "enabled in File > Preferences."
msgstr "aktiviert in Datei > Einstellungen"
#: Base.java:2090
msgid "environment"
msgstr "Umgebung"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "Unzulässige Zeichengröße {0} wird ignoriert"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "Name ist null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu ist null"
@ -2038,11 +2062,6 @@ msgstr "{0} gab {1} zurück"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=Datei hinzuf\u00fcgen
#: Base.java:963
Add\ Library...=Bibliothek hinzuf\u00fcgen...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albanisch
@ -190,6 +193,9 @@ Basque=Baskisch
#: ../../../processing/app/Preferences.java:139
Belarusian=Wei\u00dfrussisch
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Platine
@ -405,9 +411,15 @@ Cut=Ausschneiden
#: ../../../processing/app/Preferences.java:83
Czech=Tschechisch
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=D\u00e4nisch
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Ausr\u00fccken
@ -560,9 +572,6 @@ Examples=Beispiele
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Export abgebrochen, \u00c4nderungen m\u00fcssen erst gespeichert werden.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Sketch\: "{0}" konnte nicht ge\u00f6ffnet werden
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=H\u00e4ufig gestellte Fragen
#: Preferences.java:96
Galician=Galizisch
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgisch
@ -634,18 +646,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globale Variablen verwe
#: Preferences.java:98
Greek=Griechisch
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebr\u00e4isch
@ -710,6 +710,9 @@ Lithuaninan=Litauisch
#: ../../../processing/app/Sketch.java:1684
Low\ memory\ available,\ stability\ problems\ may\ occur.=Wenig Speicher verf\u00fcgbar, es k\u00f6nnen Stabilit\u00e4tsprobleme auftreten.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathisch
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=Name der neuen Datei\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Netzwerkupload in Verwendung des Programmers wird nicht unterst\u00fctzt
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Kleiner Fehler beim Einste
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Nein
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norwegisches Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nicht genug Speicher; unter http\://www.arduino.cc/en/Guide/Troubleshooting\#size finden sich Hinweise, um die Gr\u00f6\u00dfe zu verringern.
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serieller Port {0} nicht gefunden.\nMit einem anderen seriellen Port versuchen?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Problem mit den Einstellungen
@ -1091,6 +1106,9 @@ Sketchbook\ path\ not\ defined=Sketchbook-Speicherort nicht definiert
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketche (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Slowenisch
@ -1110,12 +1128,18 @@ Spanish=Spanisch
#: Base.java:540
Sunshine=Sonnenschein
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Schwedisch
#: Preferences.java:84
System\ Default=Systemstandard
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamilisch
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=Hochladen zur E/A-Platine...
#: Sketch.java:1622
Uploading...=Hochladen...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Auswahl f\u00fcr Suche verwenden
@ -1280,6 +1307,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Warnung
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() wurde in Wire.read() umbenannt
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() gab einen Fehler zur\u00fcck
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=aktiviert in Datei > Einstellungen
#: Base.java:2090
environment=Umgebung
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=Unzul\u00e4ssige Zeichengr\u00f6\u00dfe {0} wird ignoriert
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=Name ist null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu ist null
@ -1423,10 +1441,6 @@ upload=Hochladen
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Ung\u00fcltiges Argument f\u00fcr --pref, sollte in der Form "pref\=Wert" sein

View File

@ -98,6 +98,10 @@ msgstr ""
msgid "Add Library..."
msgstr "Προσθήκη βιβλιοθήκης"
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -290,6 +294,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr ""
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Δανέζικα"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr ""
@ -792,10 +808,6 @@ msgstr ""
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr ""
msgid "Galician"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -893,22 +909,6 @@ msgstr ""
msgid "Greek"
msgstr "Ελληνικά"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Οδηγός_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Οδηγός_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1003,6 +1003,10 @@ msgstr "Λιθουανίας"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1047,6 +1051,10 @@ msgstr ""
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1146,10 +1154,18 @@ msgstr "Μη μοιραίο λάθος συνέβη κατα την εδραίω
msgid "Nope"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Προβλήματα επιλογών"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1549,6 +1573,10 @@ msgstr "Ισπανικά"
msgid "Sunshine"
msgstr "Λιακάδα"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1557,6 +1585,10 @@ msgstr ""
msgid "System Default"
msgstr "Προεπιλογές συστήματος"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Ταμίλ"
@ -1762,6 +1794,10 @@ msgstr ""
msgid "Uploading..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr "Ειδοποίηση"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
@ -1967,10 +2007,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "Περιβάλλον"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr ""
@ -1983,27 +2019,15 @@ msgstr ""
msgid "http://www.arduino.cc/latest.txt"
msgstr ""
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2038,11 +2062,6 @@ msgstr ""
msgid "{0} | Arduino {1}"
msgstr ""
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr ""
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ A\ library\ named\ {0}\ already\ exists=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u0
#: Base.java:963
Add\ Library...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -190,6 +193,9 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -405,9 +411,15 @@ Could\ not\ replace\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u0394\u03b1\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
!Decrease\ Indent=
@ -560,9 +572,6 @@ Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -614,6 +623,9 @@ French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac
#: Preferences.java:96
!Galician=
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -634,18 +646,6 @@ German=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
#: Preferences.java:98
Greek=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=\u039f\u03b4\u03b7\u03b3\u03cc\u03c2_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=\u039f\u03b4\u03b7\u03b3\u03cc\u03c2_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -710,6 +710,9 @@ Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -743,6 +746,9 @@ Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u039c\u03b7 \u03bc\u03bf\
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
!Nope=
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1039,6 +1051,9 @@ Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u0
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u03a0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=\u0398\u03ad\u03c3\u03b7 Sketchbook\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1128,18 @@ Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac
#: Base.java:540
Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u03a4\u03b1\u03bc\u03af\u03bb
@ -1244,6 +1268,9 @@ Upload\ Using\ Programmer=\u0395\u03be\u03b1\u03b3\u03ce\u03b3\u03b7 \u039c\u03a
#: Sketch.java:1622
!Uploading...=
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1280,6 +1307,9 @@ Verify=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7
#: Base.java:2128
Warning=\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
@ -1369,9 +1399,6 @@ Zip\ doesn't\ contain\ a\ library=\u03a4\u03bf \u03c3\u03c5\u03bc\u03c0\u03b9\u0
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd
#: Editor.java:1108
!http\://arduino.cc/=
@ -1381,22 +1408,13 @@ environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
!serialMenu\ is\ null=
@ -1423,10 +1441,6 @@ platforms.html=platforms.html
#, java-format
!{0}\ |\ Arduino\ {1}=
#: Editor.java:1874
#, java-format
!{0}.html=
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "Add File..."
msgid "Add Library..."
msgstr "Add Library..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albanian"
@ -289,6 +293,10 @@ msgstr "Basque"
msgid "Belarusian"
msgstr "Belarusian"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Cut"
msgid "Czech"
msgstr "Czech"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danish"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Decrease Indent"
@ -791,10 +807,6 @@ msgstr "Examples"
msgid "Export canceled, changes must first be saved."
msgstr "Export canceled, changes must first be saved."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Frequently Asked Questions"
msgid "Galician"
msgstr "Galician"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgian"
@ -892,22 +908,6 @@ msgstr "Global variables use {0} bytes of dynamic memory."
msgid "Greek"
msgstr "Greek"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebrew"
@ -1002,6 +1002,10 @@ msgstr "Lithuaninan"
msgid "Low memory available, stability problems may occur."
msgstr "Low memory available, stability problems may occur."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1046,6 +1050,10 @@ msgstr "Name for new file:"
msgid "Nepali"
msgstr "Nepali"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Network upload using programmer not supported"
@ -1145,10 +1153,18 @@ msgstr "Non-fatal error while setting the Look & Feel."
msgid "Nope"
msgstr "Nope"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norwegian Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Serial port {0} not found.\nRetry the upload with another serial port?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Settings issues"
@ -1518,6 +1538,10 @@ msgstr "Sketchbook path not defined"
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketches (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Slovenian"
@ -1548,6 +1572,10 @@ msgstr "Spanish"
msgid "Sunshine"
msgstr "Sunshine"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Swedish"
@ -1556,6 +1584,10 @@ msgstr "Swedish"
msgid "System Default"
msgstr "System Default"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1761,6 +1793,10 @@ msgstr "Uploading to I/O Board..."
msgid "Uploading..."
msgstr "Uploading..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Use Selection For Find"
@ -1810,6 +1846,10 @@ msgstr "WARNING: library {0} claims to run on {1} architecture(s) and may be inc
msgid "Warning"
msgstr "Warning"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() has been renamed Wire.read()."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() returned false"
msgid "enabled in File > Preferences."
msgstr "enabled in File > Preferences."
#: Base.java:2090
msgid "environment"
msgstr "environment"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignoring invalid font size {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name is null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu is null"
@ -2037,11 +2061,6 @@ msgstr "{0} returned {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Add File...
#: Base.java:963
Add\ Library...=Add Library...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albanian
@ -189,6 +192,9 @@ Basque=Basque
#: ../../../processing/app/Preferences.java:139
Belarusian=Belarusian
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Board
@ -404,9 +410,15 @@ Cut=Cut
#: ../../../processing/app/Preferences.java:83
Czech=Czech
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Danish
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Decrease Indent
@ -559,9 +571,6 @@ Examples=Examples
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Export canceled, changes must first be saved.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Failed to open sketch\: "{0}"
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Frequently Asked Questions
#: Preferences.java:96
Galician=Galician
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgian
@ -633,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Global variables use {0
#: Preferences.java:98
Greek=Greek
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebrew
@ -709,6 +709,9 @@ Lithuaninan=Lithuaninan
#: ../../../processing/app/Sketch.java:1684
Low\ memory\ available,\ stability\ problems\ may\ occur.=Low memory available, stability problems may occur.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Name for new file\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Network upload using programmer not supported
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Non-fatal error while sett
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Nope
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Not enough memory; see http\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips on reducing your footprint.
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serial port {0} not found.\nRetry the upload with another serial port?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Settings issues
@ -1090,6 +1105,9 @@ Sketchbook\ path\ not\ defined=Sketchbook path not defined
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Slovenian
@ -1109,12 +1127,18 @@ Spanish=Spanish
#: Base.java:540
Sunshine=Sunshine
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Swedish
#: Preferences.java:84
System\ Default=System Default
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=Uploading to I/O Board...
#: Sketch.java:1622
Uploading...=Uploading...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Use Selection For Find
@ -1279,6 +1306,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Warning
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() has been renamed Wire.read().
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() returned false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=enabled in File > Preferences.
#: Base.java:2090
environment=environment
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignoring invalid font size {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name is null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu is null
@ -1422,10 +1440,6 @@ upload=upload
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Invalid argument to --pref, should be of the form "pref\=value"

View File

@ -8,8 +8,8 @@ msgstr ""
"Project-Id-Version: Arduino IDE 1.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
"PO-Revision-Date: 2015-01-14 17:10+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2015-02-17 17:26+0000\n"
"Last-Translator: Andi Chandler <andi@gowling.com>\n"
"Language-Team: English (United Kingdom) (http://www.transifex.com/projects/p/arduino-ide-15/language/en_GB/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -37,7 +37,7 @@ msgstr "(edit only when Arduino is not running)"
msgid ""
"--verbose, --verbose-upload and --verbose-build can only be used together "
"with --verify or --upload"
msgstr ""
msgstr "--verbose, --verbose-upload and --verbose-build can only be used together with --verify or --upload"
#: Sketch.java:746
msgid ".pde -> .ino"
@ -97,6 +97,10 @@ msgstr "Add File..."
msgid "Add Library..."
msgstr "Add Library..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albanian"
@ -110,17 +114,17 @@ msgstr "An error occurred while trying to fix the file encoding.\nDo not attempt
#: ../../../processing/app/BaseNoGui.java:528
msgid "An error occurred while uploading the sketch"
msgstr ""
msgstr "An error occurred while uploading the sketch"
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
msgid "An error occurred while verifying the sketch"
msgstr ""
msgstr "An error occurred while verifying the sketch"
#: ../../../processing/app/BaseNoGui.java:521
msgid "An error occurred while verifying/uploading the sketch"
msgstr ""
msgstr "An error occurred while verifying/uploading the sketch"
#: Base.java:228
msgid ""
@ -166,7 +170,7 @@ msgstr "Arduino AVR Boards"
msgid ""
"Arduino can only open its own sketches\n"
"and other files ending in .ino or .pde"
msgstr ""
msgstr "Arduino can only open its own sketches\nand other files ending in .ino or .pde"
#: Base.java:1682
msgid ""
@ -210,7 +214,7 @@ msgstr "Argument required for --curdir"
#: ../../../processing/app/Base.java:385
msgid "Argument required for --get-pref"
msgstr ""
msgstr "Argument required for --get-pref"
#: ../../../processing/app/Base.java:363
msgid "Argument required for --port"
@ -234,7 +238,7 @@ msgstr "Asturian"
#: ../../../processing/app/debug/Compiler.java:145
msgid "Authorization required"
msgstr ""
msgstr "Authorisation required"
#: tools/AutoFormat.java:91
msgid "Auto Format"
@ -279,7 +283,7 @@ msgstr "Bad file selected"
#: ../../../processing/app/debug/Compiler.java:89
msgid "Bad sketch primary file or bad sketch directory structure"
msgstr ""
msgstr "Bad sketch primary file or bad sketch directory structure"
#: ../../../processing/app/Preferences.java:149
msgid "Basque"
@ -289,6 +293,10 @@ msgstr "Basque"
msgid "Belarusian"
msgstr "Belarusian"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -344,12 +352,12 @@ msgstr "Burning bootloader to I/O Board (this may take a minute)..."
#: ../../../processing/app/Base.java:379
#, java-format
msgid "Can only pass one of: {0}"
msgstr ""
msgstr "Can only pass one of: {0}"
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
msgid "Can't find the sketch in the specified path"
msgstr ""
msgstr "Can't find the sketch in the specified path"
#: ../../../processing/app/Preferences.java:92
msgid "Canadian French"
@ -366,7 +374,7 @@ msgstr "Cannot Rename"
#: ../../../processing/app/Base.java:465
msgid "Cannot specify any sketch files"
msgstr ""
msgstr "Cannot specify any sketch files"
#: SerialMonitor.java:112
msgid "Carriage return"
@ -511,7 +519,7 @@ msgstr "Could not re-save sketch"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
msgstr "Could not read colour theme settings.\nYou'll need to reinstall Arduino."
#: Preferences.java:219
msgid ""
@ -585,10 +593,18 @@ msgstr "Cut"
msgid "Czech"
msgstr "Czech"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danish"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Decrease Indent"
@ -626,7 +642,7 @@ msgstr "Done burning bootloader."
#: ../../../processing/app/BaseNoGui.java:507
#: ../../../processing/app/BaseNoGui.java:552
msgid "Done compiling"
msgstr ""
msgstr "Done compiling"
#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
@ -638,7 +654,7 @@ msgstr "Done printing."
#: ../../../processing/app/BaseNoGui.java:514
msgid "Done uploading"
msgstr ""
msgstr "Done uploading"
#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
@ -745,7 +761,7 @@ msgstr "Error while burning bootloader: missing '{0}' configuration parameter"
#: ../../../../../app/src/processing/app/Editor.java:1940
msgid "Error while compiling: missing '{0}' configuration parameter"
msgstr ""
msgstr "Error while compiling: missing '{0}' configuration parameter"
#: SketchCode.java:83
#, java-format
@ -758,7 +774,7 @@ msgstr "Error while printing."
#: ../../../processing/app/BaseNoGui.java:528
msgid "Error while uploading"
msgstr ""
msgstr "Error while uploading"
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
@ -769,11 +785,11 @@ msgstr "Error while uploading: missing '{0}' configuration parameter"
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
msgid "Error while verifying"
msgstr ""
msgstr "Error while verifying"
#: ../../../processing/app/BaseNoGui.java:521
msgid "Error while verifying/uploading"
msgstr ""
msgstr "Error while verifying/uploading"
#: Preferences.java:93
msgid "Estonian"
@ -791,10 +807,6 @@ msgstr "Examples"
msgid "Export canceled, changes must first be saved."
msgstr "Export canceled, changes must first be saved."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -850,7 +862,7 @@ msgstr "For information on installing libraries, see: http://arduino.cc/en/Guide
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
#, java-format
msgid "Forcing reset using 1200bps open/close on port {0}"
msgstr ""
msgstr "Forcing reset using 1200bps open/close on port {0}"
#: Preferences.java:95
msgid "French"
@ -864,6 +876,10 @@ msgstr "Frequently Asked Questions"
msgid "Galician"
msgstr "Galician"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgian"
@ -892,22 +908,6 @@ msgstr "Global variables use {0} bytes of dynamic memory."
msgid "Greek"
msgstr "Greek"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebrew"
@ -1000,6 +1000,10 @@ msgstr "Lithuaninan"
#: ../../../processing/app/Sketch.java:1684
msgid "Low memory available, stability problems may occur."
msgstr "Low memory available, stability problems may occur."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
@ -1016,7 +1020,7 @@ msgstr "Missing the */ from the end of a /* comment */"
#: ../../../processing/app/BaseNoGui.java:455
msgid "Mode not supported"
msgstr ""
msgstr "Mode not supported"
#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
@ -1028,7 +1032,7 @@ msgstr "Moving"
#: ../../../processing/app/BaseNoGui.java:484
msgid "Multiple files not supported"
msgstr ""
msgstr "Multiple files not supported"
#: ../../../processing/app/Base.java:395
msgid "Must specify exactly one sketch file"
@ -1046,6 +1050,10 @@ msgstr "Name for new file:"
msgid "Nepali"
msgstr "Nepali"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Network upload using programmer not supported"
@ -1076,7 +1084,7 @@ msgstr "No"
#: ../../../processing/app/debug/Compiler.java:146
msgid "No athorization data found"
msgstr ""
msgstr "No athorisation data found"
#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
@ -1088,7 +1096,7 @@ msgstr "No changes necessary for Auto Format."
#: ../../../processing/app/BaseNoGui.java:665
msgid "No command line parameters found"
msgstr ""
msgstr "No command line parameters found"
#: Editor.java:373
msgid "No files were added to the sketch."
@ -1104,7 +1112,7 @@ msgstr "No line ending"
#: ../../../processing/app/BaseNoGui.java:665
msgid "No parameters"
msgstr ""
msgstr "No parameters"
#: Base.java:541
msgid "No really, time for some fresh air for you."
@ -1118,11 +1126,11 @@ msgstr "No reference available for \"{0}\""
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
msgid "No sketch"
msgstr ""
msgstr "No sketch"
#: ../../../processing/app/BaseNoGui.java:428
msgid "No sketchbook"
msgstr ""
msgstr "No sketchbook"
#: ../../../processing/app/Sketch.java:204
msgid "No valid code files found"
@ -1145,10 +1153,18 @@ msgstr "Non-fatal error while setting the Look & Feel."
msgid "Nope"
msgstr "Nope"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norwegian Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1166,7 +1182,7 @@ msgstr "One file added to the sketch."
#: ../../../processing/app/BaseNoGui.java:455
msgid "Only --verify, --upload or --get-pref are supported"
msgstr ""
msgstr "Only --verify, --upload or --get-pref are supported"
#: EditorToolbar.java:41
msgid "Open"
@ -1223,7 +1239,7 @@ msgstr "Please install JDK 1.5 or later"
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
msgid "Please select a programmer from Tools->Programmer menu"
msgstr ""
msgstr "Please select a programmer from Tools->Programmer menu"
#: Preferences.java:110
msgid "Polish"
@ -1389,7 +1405,7 @@ msgstr "Save sketch folder as..."
#: ../../../../../app/src/processing/app/Preferences.java:425
msgid "Save when verifying or uploading"
msgstr ""
msgstr "Save when verifying or uploading"
#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
@ -1397,7 +1413,7 @@ msgstr "Saving..."
#: ../../../processing/app/FindReplace.java:131
msgid "Search all Sketch Tabs"
msgstr ""
msgstr "Search all Sketch Tabs"
#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Serial port {0} not found.\nRetry the upload with another serial port?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Settings issues"
@ -1512,12 +1532,16 @@ msgstr "Sketchbook location:"
#: ../../../processing/app/BaseNoGui.java:428
msgid "Sketchbook path not defined"
msgstr ""
msgstr "Sketchbook path not defined"
#: ../../../processing/app/Base.java:785
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketches (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Slovenian"
@ -1548,6 +1572,10 @@ msgstr "Spanish"
msgid "Sunshine"
msgstr "Sunshine"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Swedish"
@ -1556,6 +1584,10 @@ msgstr "Swedish"
msgid "System Default"
msgstr "System Default"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1566,7 +1598,7 @@ msgstr "The 'BYTE' keyword is no longer supported."
#: ../../../processing/app/BaseNoGui.java:484
msgid "The --upload option supports only one file at a time"
msgstr ""
msgstr "The --upload option supports only one file at a time"
#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
@ -1655,7 +1687,7 @@ msgstr "The sketchbook folder no longer exists.\nArduino will switch to the defa
msgid ""
"Third-party platform.txt does not define compiler.path. Please report this "
"to the third-party hardware maintainer."
msgstr ""
msgstr "Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer."
#: Sketch.java:1075
msgid ""
@ -1761,6 +1793,10 @@ msgstr "Uploading to I/O Board..."
msgid "Uploading..."
msgstr "Uploading..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Use Selection For Find"
@ -1810,6 +1846,10 @@ msgstr "WARNING: library {0} claims to run on {1} architecture(s) and may be inc
msgid "Warning"
msgstr "Warning"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() has been renamed Wire.read()."
@ -1893,7 +1933,7 @@ msgid ""
"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload "
"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the"
" bad characters to get rid of this warning."
msgstr ""
msgstr "\"{0}\" contains unrecognised characters.If this code was created with an older version of Arduino,you may need to use Tools -> Fix Encoding & Reload to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the bad characters to get rid of this warning."
#: debug/Compiler.java:409
msgid ""
@ -1966,10 +2006,6 @@ msgstr "createNewFile() returned false"
msgid "enabled in File > Preferences."
msgstr "enabled in File > Preferences."
#: Base.java:2090
msgid "environment"
msgstr "environment"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignoring invalid font size {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name is null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu is null"
@ -2037,11 +2061,6 @@ msgstr "{0} returned {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -3,7 +3,7 @@
# This file is distributed under the same license as the PACKAGE package.
#
# Translators:
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/projects/p/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-02-17 17\:26+0000\nLast-Translator\: Andi Chandler <andi@gowling.com>\nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/projects/p/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
#: Preferences.java:358 Preferences.java:374
\ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino)
@ -18,7 +18,7 @@
(edit\ only\ when\ Arduino\ is\ not\ running)=(edit only when Arduino is not running)
#: ../../../processing/app/Base.java:468
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload and --verbose-build can only be used together with --verify or --upload
#: Sketch.java:746
.pde\ ->\ .ino=.pde -> .ino
@ -56,6 +56,9 @@ Add\ File...=Add File...
#: Base.java:963
Add\ Library...=Add Library...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albanian
@ -63,15 +66,15 @@ Albanian=Albanian
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=An error occurred while trying to fix the file encoding.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n
#: ../../../processing/app/BaseNoGui.java:528
!An\ error\ occurred\ while\ uploading\ the\ sketch=
An\ error\ occurred\ while\ uploading\ the\ sketch=An error occurred while uploading the sketch
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!An\ error\ occurred\ while\ verifying\ the\ sketch=
An\ error\ occurred\ while\ verifying\ the\ sketch=An error occurred while verifying the sketch
#: ../../../processing/app/BaseNoGui.java:521
!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=An error occurred while verifying/uploading the sketch
#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=An unknown error occurred while trying to load\nplatform-specific code for your machine.
@ -101,7 +104,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Arduino ARM (32-bits) Boards
Arduino\ AVR\ Boards=Arduino AVR Boards
#: Editor.java:2137
!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino can only open its own sketches\nand other files ending in .ino or .pde
#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino cannot run because it could not\ncreate a folder to store your settings.
@ -129,7 +132,7 @@ Argument\ required\ for\ --board=Argument required for --board
Argument\ required\ for\ --curdir=Argument required for --curdir
#: ../../../processing/app/Base.java:385
!Argument\ required\ for\ --get-pref=
Argument\ required\ for\ --get-pref=Argument required for --get-pref
#: ../../../processing/app/Base.java:363
Argument\ required\ for\ --port=Argument required for --port
@ -147,7 +150,7 @@ Armenian=Armenian
Asturian=Asturian
#: ../../../processing/app/debug/Compiler.java:145
!Authorization\ required=
Authorization\ required=Authorisation required
#: tools/AutoFormat.java:91
Auto\ Format=Auto Format
@ -181,7 +184,7 @@ Bad\ error\ line\:\ {0}=Bad error line\: {0}
Bad\ file\ selected=Bad file selected
#: ../../../processing/app/debug/Compiler.java:89
!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=
Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Bad sketch primary file or bad sketch directory structure
#: ../../../processing/app/Preferences.java:149
Basque=Basque
@ -189,6 +192,9 @@ Basque=Basque
#: ../../../processing/app/Preferences.java:139
Belarusian=Belarusian
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Board
@ -229,11 +235,11 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Burning boo
#: ../../../processing/app/Base.java:379
#, java-format
!Can\ only\ pass\ one\ of\:\ {0}=
Can\ only\ pass\ one\ of\:\ {0}=Can only pass one of\: {0}
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
Can't\ find\ the\ sketch\ in\ the\ specified\ path=Can't find the sketch in the specified path
#: ../../../processing/app/Preferences.java:92
Canadian\ French=Canadian French
@ -246,7 +252,7 @@ Cancel=Cancel
Cannot\ Rename=Cannot Rename
#: ../../../processing/app/Base.java:465
!Cannot\ specify\ any\ sketch\ files=
Cannot\ specify\ any\ sketch\ files=Cannot specify any sketch files
#: SerialMonitor.java:112
Carriage\ return=Carriage return
@ -351,7 +357,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this
Could\ not\ re-save\ sketch=Could not re-save sketch
#: Theme.java:52
!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read colour theme settings.\nYou'll need to reinstall Arduino.
#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Could not read default settings.\nYou'll need to reinstall Arduino.
@ -404,9 +410,15 @@ Cut=Cut
#: ../../../processing/app/Preferences.java:83
Czech=Czech
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Danish
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Decrease Indent
@ -433,7 +445,7 @@ Done\ burning\ bootloader.=Done burning bootloader.
#: ../../../processing/app/BaseNoGui.java:507
#: ../../../processing/app/BaseNoGui.java:552
!Done\ compiling=
Done\ compiling=Done compiling
#: Editor.java:1911 Editor.java:1928
Done\ compiling.=Done compiling.
@ -442,7 +454,7 @@ Done\ compiling.=Done compiling.
Done\ printing.=Done printing.
#: ../../../processing/app/BaseNoGui.java:514
!Done\ uploading=
Done\ uploading=Done uploading
#: Editor.java:2395 Editor.java:2431
Done\ uploading.=Done uploading.
@ -523,7 +535,7 @@ Error\ while\ burning\ bootloader.=Error while burning bootloader.
Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Error while burning bootloader\: missing '{0}' configuration parameter
#: ../../../../../app/src/processing/app/Editor.java:1940
!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=
Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Error while compiling\: missing '{0}' configuration parameter
#: SketchCode.java:83
#, java-format
@ -533,7 +545,7 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0}
Error\ while\ printing.=Error while printing.
#: ../../../processing/app/BaseNoGui.java:528
!Error\ while\ uploading=
Error\ while\ uploading=Error while uploading
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
@ -542,10 +554,10 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Error while
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!Error\ while\ verifying=
Error\ while\ verifying=Error while verifying
#: ../../../processing/app/BaseNoGui.java:521
!Error\ while\ verifying/uploading=
Error\ while\ verifying/uploading=Error while verifying/uploading
#: Preferences.java:93
Estonian=Estonian
@ -559,9 +571,6 @@ Examples=Examples
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Export canceled, changes must first be saved.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Failed to open sketch\: "{0}"
@ -602,7 +611,7 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
#, java-format
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=
Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=Forcing reset using 1200bps open/close on port {0}
#: Preferences.java:95
French=French
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Frequently Asked Questions
#: Preferences.java:96
Galician=Galician
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgian
@ -633,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Global variables use {0
#: Preferences.java:98
Greek=Greek
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebrew
@ -707,7 +707,10 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Library add
Lithuaninan=Lithuaninan
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
Low\ memory\ available,\ stability\ problems\ may\ occur.=Low memory available, stability problems may occur.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -719,7 +722,7 @@ Message=Message
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Missing the */ from the end of a /* comment */
#: ../../../processing/app/BaseNoGui.java:455
!Mode\ not\ supported=
Mode\ not\ supported=Mode not supported
#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=More preferences can be edited directly in the file
@ -728,7 +731,7 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=More preferences can
Moving=Moving
#: ../../../processing/app/BaseNoGui.java:484
!Multiple\ files\ not\ supported=
Multiple\ files\ not\ supported=Multiple files not supported
#: ../../../processing/app/Base.java:395
Must\ specify\ exactly\ one\ sketch\ file=Must specify exactly one sketch file
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Name for new file\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Network upload using programmer not supported
@ -764,7 +770,7 @@ Next\ Tab=Next Tab
No=No
#: ../../../processing/app/debug/Compiler.java:146
!No\ athorization\ data\ found=
No\ athorization\ data\ found=No athorisation data found
#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=No board selected; please choose a board from the Tools > Board menu.
@ -773,7 +779,7 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu
No\ changes\ necessary\ for\ Auto\ Format.=No changes necessary for Auto Format.
#: ../../../processing/app/BaseNoGui.java:665
!No\ command\ line\ parameters\ found=
No\ command\ line\ parameters\ found=No command line parameters found
#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=No files were added to the sketch.
@ -785,7 +791,7 @@ No\ launcher\ available=No launcher available
No\ line\ ending=No line ending
#: ../../../processing/app/BaseNoGui.java:665
!No\ parameters=
No\ parameters=No parameters
#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=No really, time for some fresh air for you.
@ -796,10 +802,10 @@ No\ reference\ available\ for\ "{0}"=No reference available for "{0}"
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!No\ sketch=
No\ sketch=No sketch
#: ../../../processing/app/BaseNoGui.java:428
!No\ sketchbook=
No\ sketchbook=No sketchbook
#: ../../../processing/app/Sketch.java:204
No\ valid\ code\ files\ found=No valid code files found
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Non-fatal error while sett
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Nope
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Not enough memory; see http\://www.arduino.cc/en/Guide/Troubleshooting\#size for tips on reducing your footprint.
@ -831,7 +843,7 @@ OK=OK
One\ file\ added\ to\ the\ sketch.=One file added to the sketch.
#: ../../../processing/app/BaseNoGui.java:455
!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=
Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Only --verify, --upload or --get-pref are supported
#: EditorToolbar.java:41
Open=Open
@ -874,7 +886,7 @@ Please\ install\ JDK\ 1.5\ or\ later=Please install JDK 1.5 or later
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Please select a programmer from Tools->Programmer menu
#: Preferences.java:110
Polish=Polish
@ -998,13 +1010,13 @@ Save\ changes\ to\ "{0}"?\ \ =Save changes to "{0}"?
Save\ sketch\ folder\ as...=Save sketch folder as...
#: ../../../../../app/src/processing/app/Preferences.java:425
!Save\ when\ verifying\ or\ uploading=
Save\ when\ verifying\ or\ uploading=Save when verifying or uploading
#: Editor.java:2270 Editor.java:2308
Saving...=Saving...
#: ../../../processing/app/FindReplace.java:131
!Search\ all\ Sketch\ Tabs=
Search\ all\ Sketch\ Tabs=Search all Sketch Tabs
#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=Select (or create new) folder for sketches...
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serial port {0} not found.\nRetry the upload with another serial port?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Settings issues
@ -1085,11 +1100,14 @@ Sketchbook\ folder\ disappeared=Sketchbook folder disappeared
Sketchbook\ location\:=Sketchbook location\:
#: ../../../processing/app/BaseNoGui.java:428
!Sketchbook\ path\ not\ defined=
Sketchbook\ path\ not\ defined=Sketchbook path not defined
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Slovenian
@ -1109,12 +1127,18 @@ Spanish=Spanish
#: Base.java:540
Sunshine=Sunshine
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Swedish
#: Preferences.java:84
System\ Default=System Default
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1122,7 +1146,7 @@ Tamil=Tamil
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=The 'BYTE' keyword is no longer supported.
#: ../../../processing/app/BaseNoGui.java:484
!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=
The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=The --upload option supports only one file at a time
#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=The Client class has been renamed EthernetClient.
@ -1167,7 +1191,7 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=The sketchbook folder no longer exists.\nArduino will switch to the default sketchbook\nlocation, and create a new sketchbook folder if\nnecessary. Arduino will then stop talking about\nhimself in the third person.
#: ../../../processing/app/debug/Compiler.java:201
!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=
Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Third-party platform.txt does not define compiler.path. Please report this to the third-party hardware maintainer.
#: Sketch.java:1075
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=This file has already been copied to the\nlocation from which where you're trying to add it.\nI ain't not doin nuthin'.
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=Uploading to I/O Board...
#: Sketch.java:1622
Uploading...=Uploading...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Use Selection For Find
@ -1279,6 +1306,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Warning
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() has been renamed Wire.read().
@ -1330,7 +1360,7 @@ Zip\ doesn't\ contain\ a\ library=Zip doesn't contain a library
#: SketchCode.java:258
#, java-format
!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contains unrecognised characters.If this code was created with an older version of Arduino,you may need to use Tools -> Fix Encoding & Reload to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the bad characters to get rid of this warning.
#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nAs of Arduino 0019, the Ethernet library depends on the SPI library.\nYou appear to be using it or another library that depends on the SPI library.\n\n
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() returned false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=enabled in File > Preferences.
#: Base.java:2090
environment=environment
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignoring invalid font size {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name is null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu is null
@ -1422,10 +1440,6 @@ upload=upload
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Invalid argument to --pref, should be of the form "pref\=value"

View File

@ -99,6 +99,10 @@ msgstr "Añadir fichero..."
msgid "Add Library..."
msgstr "Añadir libreria..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albano"
@ -291,6 +295,10 @@ msgstr "Vasco"
msgid "Belarusian"
msgstr "Beloruso"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -587,10 +595,18 @@ msgstr "Cortar"
msgid "Czech"
msgstr "Checo"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danés"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Disminuir Sangría"
@ -793,10 +809,6 @@ msgstr "Ejemplos"
msgid "Export canceled, changes must first be saved."
msgstr "Cancelada exportación, los cambios se han de salvar antes."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -866,6 +878,10 @@ msgstr "Pregustas Más Frecuentes"
msgid "Galician"
msgstr "Gallego"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgiano"
@ -894,22 +910,6 @@ msgstr "Variables globales usan {0} bytes de memoria dinamica."
msgid "Greek"
msgstr "Griego"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebreo"
@ -1004,6 +1004,10 @@ msgstr "Lituano"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1048,6 +1052,10 @@ msgstr "Nombre del nuevo fichero:"
msgid "Nepali"
msgstr "Nepalí"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1147,10 +1155,18 @@ msgstr "Error no fatal mientras se configuraba el Look & Feel"
msgid "Nope"
msgstr "No."
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Noruego"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1447,6 +1463,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Puerto {0} no encontrado.\n¿Reintentar la subida con otro puerto?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Cuestiones de ajustes"
@ -1520,6 +1540,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketches (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Esloveno"
@ -1550,6 +1574,10 @@ msgstr "Español"
msgid "Sunshine"
msgstr "Sol"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Sueco"
@ -1558,6 +1586,10 @@ msgstr "Sueco"
msgid "System Default"
msgstr "Ajustes Iniciales"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1763,6 +1795,10 @@ msgstr "Subiendo a la Placa I/O..."
msgid "Uploading..."
msgstr "Subiendo..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Usar selección para buscar"
@ -1812,6 +1848,10 @@ msgstr ""
msgid "Warning"
msgstr "alerta"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() ha sido renombrado a Wire.read()"
@ -1968,10 +2008,6 @@ msgstr "createNewFile() retornó FALSO."
msgid "enabled in File > Preferences."
msgstr "activala desde Archivo > Preferencias"
#: Base.java:2090
msgid "environment"
msgstr "entorno"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1984,27 +2020,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignorando tamaño de fuente incorrento {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "Nombre está vacío"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu está vacío"
@ -2039,11 +2063,6 @@ msgstr "{0} retornó {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -58,6 +58,9 @@ Add\ File...=A\u00f1adir fichero...
#: Base.java:963
Add\ Library...=A\u00f1adir libreria...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albano
@ -191,6 +194,9 @@ Basque=Vasco
#: ../../../processing/app/Preferences.java:139
Belarusian=Beloruso
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Placa
@ -406,9 +412,15 @@ Cut=Cortar
#: ../../../processing/app/Preferences.java:83
Czech=Checo
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Dan\u00e9s
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Disminuir Sangr\u00eda
@ -561,9 +573,6 @@ Examples=Ejemplos
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Cancelada exportaci\u00f3n, los cambios se han de salvar antes.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -615,6 +624,9 @@ Frequently\ Asked\ Questions=Pregustas M\u00e1s Frecuentes
#: Preferences.java:96
Galician=Gallego
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgiano
@ -635,18 +647,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Variables globales usan
#: Preferences.java:98
Greek=Griego
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebreo
@ -711,6 +711,9 @@ Lithuaninan=Lituano
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -744,6 +747,9 @@ Name\ for\ new\ file\:=Nombre del nuevo fichero\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepal\u00ed
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -819,9 +825,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mientras se
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=No.
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Noruego
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=No hay suficiente memoria, ver http\://www.arduino.cc/en/Guide/Troubleshooting\#size para obtener consejos sobre c\u00f3mo reducir su huella.
@ -1040,6 +1052,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Puerto {0} no encontrado.\n\u00bfReintentar la subida con otro puerto?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Cuestiones de ajustes
@ -1092,6 +1107,9 @@ Sketchbook\ location\:=Localizaci\u00f3n de proyecto
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketches (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Esloveno
@ -1111,12 +1129,18 @@ Spanish=Espa\u00f1ol
#: Base.java:540
Sunshine=Sol
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Sueco
#: Preferences.java:84
System\ Default=Ajustes Iniciales
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1245,6 +1269,9 @@ Uploading\ to\ I/O\ Board...=Subiendo a la Placa I/O...
#: Sketch.java:1622
Uploading...=Subiendo...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Usar selecci\u00f3n para buscar
@ -1281,6 +1308,9 @@ Visit\ Arduino.cc=Visita Arduino.cc
#: Base.java:2128
Warning=alerta
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ha sido renombrado a Wire.read()
@ -1370,9 +1400,6 @@ createNewFile()\ returned\ false=createNewFile() retorn\u00f3 FALSO.
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=activala desde Archivo > Preferencias
#: Base.java:2090
environment=entorno
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1382,22 +1409,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o de fuente incorrento {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=Nombre est\u00e1 vac\u00edo
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu est\u00e1 vac\u00edo
@ -1424,10 +1442,6 @@ upload=Subir
#, java-format
{0}\ |\ Arduino\ {1}={0} Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -96,6 +96,10 @@ msgstr "Lisa fail…"
msgid "Add Library..."
msgstr "Lisa teek…"
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -288,6 +292,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -584,10 +592,18 @@ msgstr "Lõika"
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Taani"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Vähenda taanet"
@ -790,10 +806,6 @@ msgstr "Näited"
msgid "Export canceled, changes must first be saved."
msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -863,6 +875,10 @@ msgstr "Korduma Kippuvad Küsimused"
msgid "Galician"
msgstr "Galeegi"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -891,22 +907,6 @@ msgstr ""
msgid "Greek"
msgstr "Kreeka"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1001,6 +1001,10 @@ msgstr "Leedu"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1045,6 +1049,10 @@ msgstr "Uue faili nimi:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1144,10 +1152,18 @@ msgstr "Mitte-saatsulik viga välimuse seadmises."
msgid "Nope"
msgstr "Vabandust"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1444,6 +1460,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Jadaport {0} puudub.\nProovin mõnda teist porti?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Probleem seadetega"
@ -1517,6 +1537,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1547,6 +1571,10 @@ msgstr "Hispaania"
msgid "Sunshine"
msgstr "Särasilm"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1555,6 +1583,10 @@ msgstr ""
msgid "System Default"
msgstr "Süsteemi vaikimisi keel"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr ""
@ -1760,6 +1792,10 @@ msgstr "I/O plaadile laadimine…"
msgid "Uploading..."
msgstr "Üleslaadimine…"
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Kasuta otsimiseks valikut"
@ -1809,6 +1845,10 @@ msgstr ""
msgid "Warning"
msgstr "Hoiatus"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() on muudetud Wire.read()."
@ -1965,10 +2005,6 @@ msgstr "createNewFile() ebaõnnestus"
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "Töökeskkond"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1981,27 +2017,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "vigase fondi suuruse {0} eiramine"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name on null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu on null"
@ -2036,11 +2060,6 @@ msgstr "{0} tagastas {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -55,6 +55,9 @@ Add\ File...=Lisa fail\u2026
#: Base.java:963
Add\ Library...=Lisa teek\u2026
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -188,6 +191,9 @@ Bad\ file\ selected=Vigane fail valitud
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -403,9 +409,15 @@ Cut=L\u00f5ika
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Taani
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=V\u00e4henda taanet
@ -558,9 +570,6 @@ Examples=N\u00e4ited
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatused peavad olema enne salvestatud.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -612,6 +621,9 @@ Frequently\ Asked\ Questions=Korduma Kippuvad K\u00fcsimused
#: Preferences.java:96
Galician=Galeegi
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -632,18 +644,6 @@ Getting\ Started=Alustamine
#: Preferences.java:98
Greek=Kreeka
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -708,6 +708,9 @@ Lithuaninan=Leedu
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -741,6 +744,9 @@ Name\ for\ new\ file\:=Uue faili nimi\:
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -816,9 +822,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Mitte-saatsulik viga v\u00
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Vabandust
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1037,6 +1049,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Jadaport {0} puudub.\nProovin m\u00f5nda teist porti?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Probleem seadetega
@ -1089,6 +1104,9 @@ Sketchbook\ location\:=Visandite asukoht\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1108,12 +1126,18 @@ Spanish=Hispaania
#: Base.java:540
Sunshine=S\u00e4rasilm
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=S\u00fcsteemi vaikimisi keel
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
!Tamil=
@ -1242,6 +1266,9 @@ Uploading\ to\ I/O\ Board...=I/O plaadile laadimine\u2026
#: Sketch.java:1622
Uploading...=\u00dcleslaadimine\u2026
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Kasuta otsimiseks valikut
@ -1278,6 +1305,9 @@ Visit\ Arduino.cc=K\u00fclasta Arduino.cc
#: Base.java:2128
Warning=Hoiatus
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on muudetud Wire.read().
@ -1367,9 +1397,6 @@ createNewFile()\ returned\ false=createNewFile() eba\u00f5nnestus
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=T\u00f6\u00f6keskkond
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1379,22 +1406,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=vigase fondi suuruse {0} eiramine
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name on null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu on null
@ -1421,10 +1439,6 @@ upload=\u00fcleslaadimise ajal
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "Lisa fail..."
msgid "Add Library..."
msgstr "Lisa teek..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Lõika"
msgid "Czech"
msgstr "Tšehhi"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Taani"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Vähenda taanet"
@ -791,10 +807,6 @@ msgstr "Näited"
msgid "Export canceled, changes must first be saved."
msgstr "Eksport katkestatud. Muudatused peavad olema enne salvestatud."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Korduma Kippuvad Küsimused"
msgid "Galician"
msgstr "Galeegi"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Gruusia"
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr "Kreeka"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Heebria"
@ -1002,6 +1002,10 @@ msgstr "Leedu"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1046,6 +1050,10 @@ msgstr "Uue faili nimi:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr "Mitte-saatsulik viga välimuse seadmises."
msgid "Nope"
msgstr "Vabandust"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norra (Bokmål)"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Jadaport {0} puudub.\nProovin mõnda teist porti?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Probleem seadetega"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr "Hispaania"
msgid "Sunshine"
msgstr "Särasilm"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr "Süsteemi vaikimisi keel"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamili"
@ -1761,6 +1793,10 @@ msgstr "I/O plaadile laadimine..."
msgid "Uploading..."
msgstr "Üleslaadimine..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Kasuta otsimiseks valikut"
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Hoiatus"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() on muudetud Wire.read()."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() ebaõnnestus"
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "Töökeskkond"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "vigase fondi suuruse \"{0}\" eiramine"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name on null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu on null"
@ -2037,11 +2061,6 @@ msgstr "{0} tagastas {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Lisa fail...
#: Base.java:963
Add\ Library...=Lisa teek...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Bad\ file\ selected=Vigane fail valitud
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Plaat
@ -404,9 +410,15 @@ Cut=L\u00f5ika
#: ../../../processing/app/Preferences.java:83
Czech=T\u0161ehhi
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Taani
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=V\u00e4henda taanet
@ -559,9 +571,6 @@ Examples=N\u00e4ited
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport katkestatud. Muudatused peavad olema enne salvestatud.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Korduma Kippuvad K\u00fcsimused
#: Preferences.java:96
Galician=Galeegi
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Gruusia
@ -633,18 +645,6 @@ Getting\ Started=Alustamine
#: Preferences.java:98
Greek=Kreeka
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Heebria
@ -709,6 +709,9 @@ Lithuaninan=Leedu
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Uue faili nimi\:
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Mitte-saatsulik viga v\u00
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Vabandust
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norra (Bokm\u00e5l)
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Jadaport {0} puudub.\nProovin m\u00f5nda teist porti?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Probleem seadetega
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=Visandite asukoht\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Spanish=Hispaania
#: Base.java:540
Sunshine=S\u00e4rasilm
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=S\u00fcsteemi vaikimisi keel
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamili
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=I/O plaadile laadimine...
#: Sketch.java:1622
Uploading...=\u00dcleslaadimine...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Kasuta otsimiseks valikut
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=K\u00fclasta Arduino.cc
#: Base.java:2128
Warning=Hoiatus
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on muudetud Wire.read().
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() eba\u00f5nnestus
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=T\u00f6\u00f6keskkond
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=vigase fondi suuruse "{0}" eiramine
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name on null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu on null
@ -1422,10 +1440,6 @@ upload=\u00fcleslaadimise ajal
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "افزودن پرونده..."
msgid "Add Library..."
msgstr "و کتابخانه ..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "آلبانیایی"
@ -289,6 +293,10 @@ msgstr "باسکی"
msgid "Belarusian"
msgstr "بلاروسی"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "بریدن"
msgid "Czech"
msgstr "چکی (زبان کشور چک)"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "دانمارکی"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "کاهش تورفتگی"
@ -791,10 +807,6 @@ msgstr "نمونه‌ها"
msgid "Export canceled, changes must first be saved."
msgstr "خارج‌سازی فسخ‌گردید، تغییرات ابتدا می‌بایست ذخیره گردند."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "سوال‌های متداول پرسیده‌شده"
msgid "Galician"
msgstr "گالیسی"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "گرجی"
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr "یونانی"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "عبری"
@ -1002,6 +1002,10 @@ msgstr "لیتوانیایی"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "مراتی"
@ -1046,6 +1050,10 @@ msgstr "نام برای پروندهٔ جدید:"
msgid "Nepali"
msgstr "نپالی"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr "خطای غیر وخیمی هنگام تنظیم ظاهر."
msgid "Nope"
msgstr "نفی"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "نروژی"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "درگاه سریال {0} یافت نشد.\nانجام مجدد باگذاری با درگاه سریالی دیگر؟"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "مشکلات تنظیمات"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "طرح ها (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "اسلونیایی"
@ -1548,6 +1572,10 @@ msgstr "اسپانیایی"
msgid "Sunshine"
msgstr "طلوع"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "سوئدی"
@ -1556,6 +1584,10 @@ msgstr "سوئدی"
msgid "System Default"
msgstr "پیش فرض سیستم"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "تامیل"
@ -1761,6 +1793,10 @@ msgstr "بارگذاری به برد I/O..."
msgid "Uploading..."
msgstr "بارگذاری..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "استفاده از گزینش برای یافتن"
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "اخطار"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() به Wire.read() تغییرنام پیداکرده‌است."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() مقدار فالس برگرداند"
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "محیط"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "درنظر نگرفتن اندازهٔ قلم نامناسب {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name تهی است"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu تهی است"
@ -2037,11 +2061,6 @@ msgstr "{0}،{1} را بازگرداند"
msgid "{0} | Arduino {1}"
msgstr "{0} | آردئینو {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=\u0627\u0641\u0632\u0648\u062f\u0646 \u067e\u0631\u0648\u0646\u062f
#: Base.java:963
Add\ Library...=\u0648 \u06a9\u062a\u0627\u0628\u062e\u0627\u0646\u0647 ...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u0622\u0644\u0628\u0627\u0646\u06cc\u0627\u06cc\u06cc
@ -189,6 +192,9 @@ Basque=\u0628\u0627\u0633\u06a9\u06cc
#: ../../../processing/app/Preferences.java:139
Belarusian=\u0628\u0644\u0627\u0631\u0648\u0633\u06cc
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u0628\u0631\u062f
@ -404,9 +410,15 @@ Cut=\u0628\u0631\u06cc\u062f\u0646
#: ../../../processing/app/Preferences.java:83
Czech=\u0686\u06a9\u06cc (\u0632\u0628\u0627\u0646 \u06a9\u0634\u0648\u0631 \u0686\u06a9)
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u062f\u0627\u0646\u0645\u0627\u0631\u06a9\u06cc
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u06a9\u0627\u0647\u0634 \u062a\u0648\u0631\u0641\u062a\u06af\u06cc
@ -559,9 +571,6 @@ Examples=\u0646\u0645\u0648\u0646\u0647\u200c\u0647\u0627
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u062e\u0627\u0631\u062c\u200c\u0633\u0627\u0632\u06cc \u0641\u0633\u062e\u200c\u06af\u0631\u062f\u06cc\u062f\u060c \u062a\u063a\u06cc\u06cc\u0631\u0627\u062a \u0627\u0628\u062a\u062f\u0627 \u0645\u06cc\u200c\u0628\u0627\u06cc\u0633\u062a \u0630\u062e\u06cc\u0631\u0647 \u06af\u0631\u062f\u0646\u062f.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\u0646\u0627\u0645\u0648\u0641\u0642 \u0628\u0648\u062f \u0628\u0627\u0632 \u0634\u062f\u0646 \u0637\u0631\u062d\: "{0}"
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=\u0633\u0648\u0627\u0644\u200c\u0647\u0627\u06cc \u
#: Preferences.java:96
Galician=\u06af\u0627\u0644\u06cc\u0633\u06cc
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\u06af\u0631\u062c\u06cc
@ -633,18 +645,6 @@ Getting\ Started=\u0634\u0631\u0648\u0639 \u06a9\u0627\u0631
#: Preferences.java:98
Greek=\u06cc\u0648\u0646\u0627\u0646\u06cc
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\u0639\u0628\u0631\u06cc
@ -709,6 +709,9 @@ Lithuaninan=\u0644\u06cc\u062a\u0648\u0627\u0646\u06cc\u0627\u06cc\u06cc
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u0645\u0631\u0627\u062a\u06cc
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=\u0646\u0627\u0645 \u0628\u0631\u0627\u06cc \u067e\u0631\
#: ../../../processing/app/Preferences.java:149
Nepali=\u0646\u067e\u0627\u0644\u06cc
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u062e\u0637\u0627\u06cc \
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u0646\u0641\u06cc
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\u0646\u0631\u0648\u0698\u06cc
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644 {0} \u06cc\u0627\u0641\u062a \u0646\u0634\u062f.\n\u0627\u0646\u062c\u0627\u0645 \u0645\u062c\u062f\u062f \u0628\u0627\u06af\u0630\u0627\u0631\u06cc \u0628\u0627 \u062f\u0631\u06af\u0627\u0647 \u0633\u0631\u06cc\u0627\u0644\u06cc \u062f\u06cc\u06af\u0631\u061f
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u0645\u0634\u06a9\u0644\u0627\u062a \u062a\u0646\u0638\u06cc\u0645\u0627\u062a
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=\u0645\u0648\u0642\u0639\u06cc\u062a \u06a9\u062a\u0627\u
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=\u0637\u0631\u062d \u0647\u0627 (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=\u0627\u0633\u0644\u0648\u0646\u06cc\u0627\u06cc\u06cc
@ -1109,12 +1127,18 @@ Spanish=\u0627\u0633\u067e\u0627\u0646\u06cc\u0627\u06cc\u06cc
#: Base.java:540
Sunshine=\u0637\u0644\u0648\u0639
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u0633\u0648\u0626\u062f\u06cc
#: Preferences.java:84
System\ Default=\u067e\u06cc\u0634 \u0641\u0631\u0636 \u0633\u06cc\u0633\u062a\u0645
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u062a\u0627\u0645\u06cc\u0644
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc \u
#: Sketch.java:1622
Uploading...=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u0627\u0633\u062a\u0641\u0627\u062f\u0647 \u0627\u0632 \u06af\u0632\u06cc\u0646\u0634 \u0628\u0631\u0627\u06cc \u06cc\u0627\u0641\u062a\u0646
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=\u0628\u0627\u0632\u062f\u06cc\u062f Arduino.cc
#: Base.java:2128
Warning=\u0627\u062e\u0637\u0627\u0631
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0628\u0647 Wire.read() \u062a\u063a\u06cc\u06cc\u0631\u0646\u0627\u0645 \u067e\u06cc\u062f\u0627\u06a9\u0631\u062f\u0647\u200c\u0627\u0633\u062a.
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() \u0645\u0642\u062f\u0627\u0631
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=\u0645\u062d\u06cc\u0637
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u062f\u0631\u0646\u0638\u0631 \u0646\u06af\u0631\u0641\u062a\u0646 \u0627\u0646\u062f\u0627\u0632\u0647\u0654 \u0642\u0644\u0645 \u0646\u0627\u0645\u0646\u0627\u0633\u0628 {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name \u062a\u0647\u06cc \u0627\u0633\u062a
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu \u062a\u0647\u06cc \u0627\u0633\u062a
@ -1422,10 +1440,6 @@ upload=\u0628\u0627\u0631\u06af\u0630\u0627\u0631\u06cc
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u0622\u0631\u062f\u0626\u06cc\u0646\u0648 {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "Lisää tiedosto..."
msgid "Add Library..."
msgstr "Lisää kirjasto..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr "Belarusia"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Leikkaa"
msgid "Czech"
msgstr "Tsekki"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "tanska"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Vähennä sisennystä"
@ -791,10 +807,6 @@ msgstr "Esimerkit"
msgid "Export canceled, changes must first be saved."
msgstr "Vienti peruttu, muutokset tulee tallentaa ensin."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Usein kysytyt kysymykset"
msgid "Galician"
msgstr "galego"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgia"
@ -892,22 +908,6 @@ msgstr "Globaalit muuttujat käyttävät {0} tavua dynaamista muistia."
msgid "Greek"
msgstr "kreikka"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Heprea"
@ -1002,6 +1002,10 @@ msgstr "liettua"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "marathi"
@ -1046,6 +1050,10 @@ msgstr "Uuden tiedoston nimi:"
msgid "Nepali"
msgstr "Nepali"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Verkkolähetys ohjelmoijaa käyttäen ei ole tuettu."
@ -1145,10 +1153,18 @@ msgstr "Ulkonäköä asetettaessa tapahtui pieni virhe."
msgid "Nope"
msgstr "Ehei"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norjan bokmäl"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Sarjaporttia {0} ei löydy.\nKokeile lähettämistä toisella sarjaportilla?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Asetuksissa on ongelmia"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "Ohjelmat (.ino, .pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Slovenia"
@ -1548,6 +1572,10 @@ msgstr "espanja"
msgid "Sunshine"
msgstr "Täydellistä"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Ruotsi"
@ -1556,6 +1584,10 @@ msgstr "Ruotsi"
msgid "System Default"
msgstr "Järjestelmän oletus"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "tamili"
@ -1761,6 +1793,10 @@ msgstr "Lähetetään I/O levylle..."
msgid "Uploading..."
msgstr "Lähetetään..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Etsi valintaa"
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Varoitus"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() on nimetty Wire.read():ksi."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() palautti epätoden"
msgid "enabled in File > Preferences."
msgstr "sallittu Tiedosto > Asetuksissa"
#: Base.java:2090
msgid "environment"
msgstr "ympäristö"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "sivuutetaan epäkelpo fonttikoko {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nimi on tyhjä"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu on tyhjä"
@ -2037,11 +2061,6 @@ msgstr "{0} palautti {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Lis\u00e4\u00e4 tiedosto...
#: Base.java:963
Add\ Library...=Lis\u00e4\u00e4 kirjasto...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Bad\ file\ selected=V\u00e4\u00e4r\u00e4 tiedosto valittu
#: ../../../processing/app/Preferences.java:139
Belarusian=Belarusia
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Kortti
@ -404,9 +410,15 @@ Cut=Leikkaa
#: ../../../processing/app/Preferences.java:83
Czech=Tsekki
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=tanska
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=V\u00e4henn\u00e4 sisennyst\u00e4
@ -559,9 +571,6 @@ Examples=Esimerkit
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Vienti peruttu, muutokset tulee tallentaa ensin.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Usein kysytyt kysymykset
#: Preferences.java:96
Galician=galego
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgia
@ -633,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globaalit muuttujat k\u
#: Preferences.java:98
Greek=kreikka
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Heprea
@ -709,6 +709,9 @@ Lithuaninan=liettua
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=marathi
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Uuden tiedoston nimi\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Verkkol\u00e4hetys ohjelmoijaa k\u00e4ytt\u00e4en ei ole tuettu.
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Ulkon\u00e4k\u00f6\u00e4 a
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Ehei
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norjan bokm\u00e4l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Ei tarpeeksi muistia; katso http\://www.arduino.cc/en/Guide/Troubleshooting\#size vinkeiksi muistim\u00e4\u00e4r\u00e4n vapauttamiseksi.
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Sarjaporttia {0} ei l\u00f6ydy.\nKokeile l\u00e4hett\u00e4mist\u00e4 toisella sarjaportilla?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Asetuksissa on ongelmia
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=Ohjelmakansion sijainti\:
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Ohjelmat (.ino, .pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Slovenia
@ -1109,12 +1127,18 @@ Spanish=espanja
#: Base.java:540
Sunshine=T\u00e4ydellist\u00e4
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Ruotsi
#: Preferences.java:84
System\ Default=J\u00e4rjestelm\u00e4n oletus
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=tamili
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=L\u00e4hetet\u00e4\u00e4n I/O levylle...
#: Sketch.java:1622
Uploading...=L\u00e4hetet\u00e4\u00e4n...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Etsi valintaa
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=Vieraile Arduino.cc
#: Base.java:2128
Warning=Varoitus
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() on nimetty Wire.read()\:ksi.
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() palautti ep\u00e4toden
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=sallittu Tiedosto > Asetuksissa
#: Base.java:2090
environment=ymp\u00e4rist\u00f6
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=sivuutetaan ep\u00e4kelpo fonttikoko {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=nimi on tyhj\u00e4
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu on tyhj\u00e4
@ -1422,10 +1440,6 @@ upload=l\u00e4hett\u00e4ess\u00e4
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -98,6 +98,10 @@ msgstr "Magdagdag ng File..."
msgid "Add Library..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -290,6 +294,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "I-Cut"
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danish"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Bawasan ang Indent"
@ -792,10 +808,6 @@ msgstr "Mga Halimbawa"
msgid "Export canceled, changes must first be saved."
msgstr "Nakansela ang pag export, kailangan muna i-save ang mga nagawa."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "Mga Karaniwang Tanong"
msgid "Galician"
msgstr "Galician"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -893,22 +909,6 @@ msgstr ""
msgid "Greek"
msgstr "Greek"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1003,6 +1003,10 @@ msgstr ""
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1047,6 +1051,10 @@ msgstr "Pangalan para sa bagong file:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1146,10 +1154,18 @@ msgstr "Non-fatal error habang nagseset ng Look & Feel"
msgid "Nope"
msgstr "Hindi"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Hindi makita ang serial port na {0}.\nSubukan muli ang pagupload gamit ang ibang serial port?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "May problema sa Settings"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1549,6 +1573,10 @@ msgstr "Spanish"
msgid "Sunshine"
msgstr "Sinag ng araw"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1557,6 +1585,10 @@ msgstr ""
msgid "System Default"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr ""
@ -1762,6 +1794,10 @@ msgstr "Ina-upload sa I/O Board..."
msgid "Uploading..."
msgstr "Inaupload..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Gamitin ang Napili sa Paghahanap"
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr "Warning"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() ay pinangalanang Wire.read()."
@ -1967,10 +2007,6 @@ msgstr "createNewFile() ay nagbalik ng false"
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "environment"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "hindi papansinin ang maling sukat ng font {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "ang pangalan ay null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu ay null"
@ -2038,11 +2062,6 @@ msgstr "{0} ay nagbalik ng {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Magdagdag ng File...
#: Base.java:963
!Add\ Library...=
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Bad\ file\ selected=Mali ang File na napili
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Board
@ -404,9 +410,15 @@ Cut=I-Cut
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Danish
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Bawasan ang Indent
@ -559,9 +571,6 @@ Examples=Mga Halimbawa
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Nakansela ang pag export, kailangan muna i-save ang mga nagawa.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Mga Karaniwang Tanong
#: Preferences.java:96
Galician=Galician
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -633,18 +645,6 @@ Getting\ Started=Mga Patnubay sa Pagsisimula
#: Preferences.java:98
Greek=Greek
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -709,6 +709,9 @@ Latvian=Latvian
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Pangalan para sa bagong file\:
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Non-fatal error habang nag
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Hindi
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Hindi makita ang serial port na {0}.\nSubukan muli ang pagupload gamit ang ibang serial port?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=May problema sa Settings
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=Lokasyon ng Sketchbook\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Spanish=Spanish
#: Base.java:540
Sunshine=Sinag ng araw
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
!System\ Default=
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
!Tamil=
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=Ina-upload sa I/O Board...
#: Sketch.java:1622
Uploading...=Inaupload...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Gamitin ang Napili sa Paghahanap
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=Bisitahin ang Arduino.cc
#: Base.java:2128
Warning=Warning
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() ay pinangalanang Wire.read().
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() ay nagbalik ng false
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=environment
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=hindi papansinin ang maling sukat ng font {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=ang pangalan ay null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu ay null
@ -1422,10 +1440,6 @@ upload=upload
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -15,8 +15,8 @@ msgstr ""
"Project-Id-Version: Arduino IDE 1.5\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
"PO-Revision-Date: 2015-01-14 17:10+0000\n"
"Last-Translator: Cristian Maglie <c.maglie@arduino.cc>\n"
"PO-Revision-Date: 2015-02-19 14:55+0000\n"
"Last-Translator: Vincent Moulin <contact@nilux.org>\n"
"Language-Team: French (http://www.transifex.com/projects/p/arduino-ide-15/language/fr/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
@ -44,7 +44,7 @@ msgstr "(éditer uniquement lorsque Arduino ne s'exécute pas)"
msgid ""
"--verbose, --verbose-upload and --verbose-build can only be used together "
"with --verify or --upload"
msgstr ""
msgstr "--verbose, --verbose-upload et --verbose-build ne peuvent être utilisées qu'avec --verify ou --upload"
#: Sketch.java:746
msgid ".pde -> .ino"
@ -104,6 +104,10 @@ msgstr "Ajouter un fichier..."
msgid "Add Library..."
msgstr "Ajouter bibliothèque..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "albanais"
@ -117,17 +121,17 @@ msgstr "Une erreur est survenue lors de la réparation de l'encodage du fichier.
#: ../../../processing/app/BaseNoGui.java:528
msgid "An error occurred while uploading the sketch"
msgstr ""
msgstr "Une erreur est survenue lors du téléversement du croquis"
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
msgid "An error occurred while verifying the sketch"
msgstr ""
msgstr "Une erreur est survenue lors de la vérification du croquis"
#: ../../../processing/app/BaseNoGui.java:521
msgid "An error occurred while verifying/uploading the sketch"
msgstr ""
msgstr "Une erreur est survenue lors de la vérification et du téléversement du croquis"
#: Base.java:228
msgid ""
@ -173,7 +177,7 @@ msgstr "Cartes Arduino AVR"
msgid ""
"Arduino can only open its own sketches\n"
"and other files ending in .ino or .pde"
msgstr ""
msgstr "Arduino ne peut ouvrir que ses propres croquis\nou les fichiers ayant pour extension .ino ou .pde"
#: Base.java:1682
msgid ""
@ -217,7 +221,7 @@ msgstr "Paramètre obligatoire avec --curdir"
#: ../../../processing/app/Base.java:385
msgid "Argument required for --get-pref"
msgstr ""
msgstr "Paramètre obligatoire avec --get-pref"
#: ../../../processing/app/Base.java:363
msgid "Argument required for --port"
@ -241,7 +245,7 @@ msgstr "asturien"
#: ../../../processing/app/debug/Compiler.java:145
msgid "Authorization required"
msgstr ""
msgstr "Autorisation requise"
#: tools/AutoFormat.java:91
msgid "Auto Format"
@ -286,7 +290,7 @@ msgstr "Mauvais fichier sélectionné"
#: ../../../processing/app/debug/Compiler.java:89
msgid "Bad sketch primary file or bad sketch directory structure"
msgstr ""
msgstr "Le fichier principal ou la structure du dossier du croquis n'est pas conforme"
#: ../../../processing/app/Preferences.java:149
msgid "Basque"
@ -296,6 +300,10 @@ msgstr "basque"
msgid "Belarusian"
msgstr "biélorusse"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -356,7 +364,7 @@ msgstr ""
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
msgid "Can't find the sketch in the specified path"
msgstr ""
msgstr "Le croquis n'est pas dans le chemin spécifié"
#: ../../../processing/app/Preferences.java:92
msgid "Canadian French"
@ -373,7 +381,7 @@ msgstr "Impossible de renommer"
#: ../../../processing/app/Base.java:465
msgid "Cannot specify any sketch files"
msgstr ""
msgstr "Aucun croquis n'a a été spécifié"
#: SerialMonitor.java:112
msgid "Carriage return"
@ -518,7 +526,7 @@ msgstr "Impossible de réenregistrer le croquis"
msgid ""
"Could not read color theme settings.\n"
"You'll need to reinstall Arduino."
msgstr ""
msgstr "Les préférences de couleurs n'ont pas pu être lues.\nVeuillez réinstaller l'environnement Arduino."
#: Preferences.java:219
msgid ""
@ -592,10 +600,18 @@ msgstr "Couper"
msgid "Czech"
msgstr "tchèque"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "danois"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Réduire l'indentation"
@ -633,7 +649,7 @@ msgstr "Gravure de la séquence d'initialisation terminée."
#: ../../../processing/app/BaseNoGui.java:507
#: ../../../processing/app/BaseNoGui.java:552
msgid "Done compiling"
msgstr ""
msgstr "Compilation terminée"
#: Editor.java:1911 Editor.java:1928
msgid "Done compiling."
@ -645,7 +661,7 @@ msgstr "Impression terminée."
#: ../../../processing/app/BaseNoGui.java:514
msgid "Done uploading"
msgstr ""
msgstr "Téléversement terminé"
#: Editor.java:2395 Editor.java:2431
msgid "Done uploading."
@ -752,7 +768,7 @@ msgstr "Erreur lors de la gravure de la séquence d'initialisation : le paramèt
#: ../../../../../app/src/processing/app/Editor.java:1940
msgid "Error while compiling: missing '{0}' configuration parameter"
msgstr ""
msgstr "Erreur lors de la compilation : le paramètre de configuration « {0} » est manquant"
#: SketchCode.java:83
#, java-format
@ -765,7 +781,7 @@ msgstr "Erreur d'impression."
#: ../../../processing/app/BaseNoGui.java:528
msgid "Error while uploading"
msgstr ""
msgstr "Erreur lors du téléversement"
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
@ -776,11 +792,11 @@ msgstr "Erreur lors du téléversement : le paramètre de configuration « {0}
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
msgid "Error while verifying"
msgstr ""
msgstr "Erreur lors de la vérification"
#: ../../../processing/app/BaseNoGui.java:521
msgid "Error while verifying/uploading"
msgstr ""
msgstr "Erreur lors de la vérification et du téléversement."
#: Preferences.java:93
msgid "Estonian"
@ -798,10 +814,6 @@ msgstr "Exemples"
msgid "Export canceled, changes must first be saved."
msgstr "Exportation annulée, les changements doivent d'abord être enregistrés."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -871,6 +883,10 @@ msgstr "Foire aux questions"
msgid "Galician"
msgstr "galicien"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "géorgien"
@ -899,22 +915,6 @@ msgstr "Les variables globales utilisent {0} octets de mémoire dynamique."
msgid "Greek"
msgstr "grec"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "hébreu"
@ -1007,6 +1007,10 @@ msgstr "lituanien"
#: ../../../processing/app/Sketch.java:1684
msgid "Low memory available, stability problems may occur."
msgstr "La mémoire disponible faible, des problèmes de stabilité pourraient survenir."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
@ -1023,7 +1027,7 @@ msgstr "Il manque */ à la fin du /* commentaire */"
#: ../../../processing/app/BaseNoGui.java:455
msgid "Mode not supported"
msgstr ""
msgstr "Mode non supporté"
#: Preferences.java:449
msgid "More preferences can be edited directly in the file"
@ -1035,7 +1039,7 @@ msgstr "Déplacement"
#: ../../../processing/app/BaseNoGui.java:484
msgid "Multiple files not supported"
msgstr ""
msgstr "Vous ne pouvez fournir qu'un fichier à la fois"
#: ../../../processing/app/Base.java:395
msgid "Must specify exactly one sketch file"
@ -1053,6 +1057,10 @@ msgstr "Nom du nouveau fichier :"
msgid "Nepali"
msgstr "népalais"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Le téléversement par réseau en utilisant le programmateur n'est pas pris en charge"
@ -1083,7 +1091,7 @@ msgstr "Non"
#: ../../../processing/app/debug/Compiler.java:146
msgid "No athorization data found"
msgstr ""
msgstr "Aucun donnée d'autenfication trouvée"
#: debug/Compiler.java:126
msgid "No board selected; please choose a board from the Tools > Board menu."
@ -1095,7 +1103,7 @@ msgstr "Aucun changement nécessaire pour le formatage automatique."
#: ../../../processing/app/BaseNoGui.java:665
msgid "No command line parameters found"
msgstr ""
msgstr "Aucun paramètre de ligne de commande trouvé"
#: Editor.java:373
msgid "No files were added to the sketch."
@ -1111,7 +1119,7 @@ msgstr "Pas de fin de ligne"
#: ../../../processing/app/BaseNoGui.java:665
msgid "No parameters"
msgstr ""
msgstr "Aucun paramètre"
#: Base.java:541
msgid "No really, time for some fresh air for you."
@ -1125,11 +1133,11 @@ msgstr "Aucune référence disponible pour « {0} »"
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
msgid "No sketch"
msgstr ""
msgstr "Aucun croquis"
#: ../../../processing/app/BaseNoGui.java:428
msgid "No sketchbook"
msgstr ""
msgstr "Aucun carnet de croquis"
#: ../../../processing/app/Sketch.java:204
msgid "No valid code files found"
@ -1152,10 +1160,18 @@ msgstr "Erreur non fatale pendant les réglages d'apparence."
msgid "Nope"
msgstr "Non"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "norvégien Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1173,7 +1189,7 @@ msgstr "Un fichier a été ajouté au croquis."
#: ../../../processing/app/BaseNoGui.java:455
msgid "Only --verify, --upload or --get-pref are supported"
msgstr ""
msgstr "Seuls --verify, --upload ou --get-pref sont supportés"
#: EditorToolbar.java:41
msgid "Open"
@ -1230,7 +1246,7 @@ msgstr "Veuillez installer JDK 1.5 ou ultérieur"
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
msgid "Please select a programmer from Tools->Programmer menu"
msgstr ""
msgstr "Veuillez sélectionner un programmateur dans le menu Outils > Programmateur"
#: Preferences.java:110
msgid "Polish"
@ -1396,7 +1412,7 @@ msgstr "Enregistrer le dossier des croquis sous..."
#: ../../../../../app/src/processing/app/Preferences.java:425
msgid "Save when verifying or uploading"
msgstr ""
msgstr "Sauvegarder avant la vérification ou le téléversement"
#: Editor.java:2270 Editor.java:2308
msgid "Saving..."
@ -1404,7 +1420,7 @@ msgstr "Enregistrement..."
#: ../../../processing/app/FindReplace.java:131
msgid "Search all Sketch Tabs"
msgstr ""
msgstr "Chercher dans tous les onglets des croquis"
#: Base.java:1909
msgid "Select (or create new) folder for sketches..."
@ -1452,6 +1468,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Port série {0} introuvable.\nRéessayer le téléversement à partir d''un autre port série ?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Problèmes de paramètres"
@ -1519,12 +1539,16 @@ msgstr "Emplacement du carnet de croquis"
#: ../../../processing/app/BaseNoGui.java:428
msgid "Sketchbook path not defined"
msgstr ""
msgstr "Le chemin du carnet de croquis n'est pas défini"
#: ../../../processing/app/Base.java:785
msgid "Sketches (*.ino, *.pde)"
msgstr "Croquis (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "slovène"
@ -1555,6 +1579,10 @@ msgstr "espagnol"
msgid "Sunshine"
msgstr "Soleil"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "suédois"
@ -1563,6 +1591,10 @@ msgstr "suédois"
msgid "System Default"
msgstr "Langue du système"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "tamoul"
@ -1573,7 +1605,7 @@ msgstr "Le mot-clé « BYTE » n'est plus pris en charge."
#: ../../../processing/app/BaseNoGui.java:484
msgid "The --upload option supports only one file at a time"
msgstr ""
msgstr "Le paramètre --upload n'accepte qu'un fichier à la fois"
#: debug/Compiler.java:426
msgid "The Client class has been renamed EthernetClient."
@ -1662,7 +1694,7 @@ msgstr "Le dossier contenant les croquis n'existe plus.\nArduino va aller à l'e
msgid ""
"Third-party platform.txt does not define compiler.path. Please report this "
"to the third-party hardware maintainer."
msgstr ""
msgstr "Le fichier platform.txt du matériel tiers ne précise pas compiler.path. Veuillez en référer au fabricant du matériel."
#: Sketch.java:1075
msgid ""
@ -1768,6 +1800,10 @@ msgstr "Téléversement vers la carte E/S..."
msgid "Uploading..."
msgstr "Téléversement..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Utiliser la sélection pour trouver"
@ -1817,6 +1853,10 @@ msgstr "ATTENTION : la bibliothèque {0} prétend être exécutable sur la (ou l
msgid "Warning"
msgstr "Avertissement"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() a été renommée Wire.read()."
@ -1900,7 +1940,7 @@ msgid ""
"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload "
"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the"
" bad characters to get rid of this warning."
msgstr ""
msgstr "\"{0}\" contient des caractères non reconnus. Si ce code a été écrit sur une ancienne version d'Arduino, il se peut que vous ayez à cliquer sur \"Outils > Réparer l'encodage et recharger\" pour passer à l'encodage UTF-8. Si ça ne marche pas, la suppression des caractères problématiques peut régler ce problème."
#: debug/Compiler.java:409
msgid ""
@ -1973,10 +2013,6 @@ msgstr "createNewFile() a renvoyé false"
msgid "enabled in File > Preferences."
msgstr "était activée dans Fichier > Préférences."
#: Base.java:2090
msgid "environment"
msgstr "environnement"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1989,27 +2025,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignore la taille de police invalide {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nom est nul"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu est nul"
@ -2044,11 +2068,6 @@ msgstr "{0} a retourné {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -10,7 +10,7 @@
# <eskimon@outlook.com>, 2012.
# Philippe Rivet <philipe.rivet at gmail.com>, 2012.
# <rdoume@gmail.com>, 2012.
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-01-14 17\:10+0000\nLast-Translator\: Cristian Maglie <c.maglie@arduino.cc>\nLanguage-Team\: French (http\://www.transifex.com/projects/p/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-02-19 14\:55+0000\nLast-Translator\: Vincent Moulin <contact@nilux.org>\nLanguage-Team\: French (http\://www.transifex.com/projects/p/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
#: Preferences.java:358 Preferences.java:374
\ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino)
@ -25,7 +25,7 @@
(edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas)
#: ../../../processing/app/Base.java:468
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload et --verbose-build ne peuvent \u00eatre utilis\u00e9es qu'avec --verify ou --upload
#: Sketch.java:746
.pde\ ->\ .ino=.pde -> .ino
@ -63,6 +63,9 @@ Add\ File...=Ajouter un fichier...
#: Base.java:963
Add\ Library...=Ajouter biblioth\u00e8que...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=albanais
@ -70,15 +73,15 @@ Albanian=albanais
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Une erreur est survenue lors de la r\u00e9paration de l'encodage du fichier.\nNe pas tenter d'enregistrer ce croquis, car cela pourrait \u00e9craser\nl'ancienne version. Utiliser Ouvrir pour r\u00e9ouvrir le croquis et r\u00e9essayer.\n
#: ../../../processing/app/BaseNoGui.java:528
!An\ error\ occurred\ while\ uploading\ the\ sketch=
An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors du t\u00e9l\u00e9versement du croquis
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!An\ error\ occurred\ while\ verifying\ the\ sketch=
An\ error\ occurred\ while\ verifying\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification du croquis
#: ../../../processing/app/BaseNoGui.java:521
!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification et du t\u00e9l\u00e9versement du croquis
#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Une erreur inconnue est survenue en essayant de\ncharger du code sp\u00e9cifique \u00e0 votre plate-forme.
@ -108,7 +111,7 @@ Arduino\ ARM\ (32-bits)\ Boards=Cartes Arduino ARM (32-bits)
Arduino\ AVR\ Boards=Cartes Arduino AVR
#: Editor.java:2137
!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Arduino ne peut ouvrir que ses propres croquis\nou les fichiers ayant pour extension .ino ou .pde
#: Base.java:1682
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino ne peut s'ex\u00e9cuter car il ne peut\ncr\u00e9er un dossier pour sauvegarder vos param\u00e8tres.
@ -136,7 +139,7 @@ Argument\ required\ for\ --board=Param\u00e8tre obligatoire avec --board
Argument\ required\ for\ --curdir=Param\u00e8tre obligatoire avec --curdir
#: ../../../processing/app/Base.java:385
!Argument\ required\ for\ --get-pref=
Argument\ required\ for\ --get-pref=Param\u00e8tre obligatoire avec --get-pref
#: ../../../processing/app/Base.java:363
Argument\ required\ for\ --port=Param\u00e8tre obligatoire avec --port
@ -154,7 +157,7 @@ Armenian=arm\u00e9nien
Asturian=asturien
#: ../../../processing/app/debug/Compiler.java:145
!Authorization\ required=
Authorization\ required=Autorisation requise
#: tools/AutoFormat.java:91
Auto\ Format=Formatage automatique
@ -188,7 +191,7 @@ Bad\ error\ line\:\ {0}=Erreur \u00e0 la ligne\u00a0\: {0}
Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9
#: ../../../processing/app/debug/Compiler.java:89
!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=
Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Le fichier principal ou la structure du dossier du croquis n'est pas conforme
#: ../../../processing/app/Preferences.java:149
Basque=basque
@ -196,6 +199,9 @@ Basque=basque
#: ../../../processing/app/Preferences.java:139
Belarusian=bi\u00e9lorusse
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Type de carte
@ -240,7 +246,7 @@ Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Grave la s\
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
Can't\ find\ the\ sketch\ in\ the\ specified\ path=Le croquis n'est pas dans le chemin sp\u00e9cifi\u00e9
#: ../../../processing/app/Preferences.java:92
Canadian\ French=fran\u00e7ais - Canada
@ -253,7 +259,7 @@ Cancel=Annuler
Cannot\ Rename=Impossible de renommer
#: ../../../processing/app/Base.java:465
!Cannot\ specify\ any\ sketch\ files=
Cannot\ specify\ any\ sketch\ files=Aucun croquis n'a a \u00e9t\u00e9 sp\u00e9cifi\u00e9
#: SerialMonitor.java:112
Carriage\ return=Retour chariot
@ -358,7 +364,7 @@ Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this
Could\ not\ re-save\ sketch=Impossible de r\u00e9enregistrer le croquis
#: Theme.java:52
!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Les pr\u00e9f\u00e9rences de couleurs n'ont pas pu \u00eatre lues.\nVeuillez r\u00e9installer l'environnement Arduino.
#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer l'environnement Arduino.
@ -411,9 +417,15 @@ Cut=Couper
#: ../../../processing/app/Preferences.java:83
Czech=tch\u00e8que
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=danois
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=R\u00e9duire l'indentation
@ -440,7 +452,7 @@ Done\ burning\ bootloader.=Gravure de la s\u00e9quence d'initialisation termin\u
#: ../../../processing/app/BaseNoGui.java:507
#: ../../../processing/app/BaseNoGui.java:552
!Done\ compiling=
Done\ compiling=Compilation termin\u00e9e
#: Editor.java:1911 Editor.java:1928
Done\ compiling.=Compilation termin\u00e9e.
@ -449,7 +461,7 @@ Done\ compiling.=Compilation termin\u00e9e.
Done\ printing.=Impression termin\u00e9e.
#: ../../../processing/app/BaseNoGui.java:514
!Done\ uploading=
Done\ uploading=T\u00e9l\u00e9versement termin\u00e9
#: Editor.java:2395 Editor.java:2431
Done\ uploading.=T\u00e9l\u00e9versement termin\u00e9
@ -530,7 +542,7 @@ Error\ while\ burning\ bootloader.=Erreur lors de la gravure de la s\u00e9quence
Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors de la gravure de la s\u00e9quence d'initialisation \: le param\u00e8tre de configuration \u00ab {0} \u00bb est manquant
#: ../../../../../app/src/processing/app/Editor.java:1940
!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=
Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors de la compilation \: le param\u00e8tre de configuration \u00ab {0} \u00bb est manquant
#: SketchCode.java:83
#, java-format
@ -540,7 +552,7 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0}
Error\ while\ printing.=Erreur d'impression.
#: ../../../processing/app/BaseNoGui.java:528
!Error\ while\ uploading=
Error\ while\ uploading=Erreur lors du t\u00e9l\u00e9versement
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
@ -549,10 +561,10 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!Error\ while\ verifying=
Error\ while\ verifying=Erreur lors de la v\u00e9rification
#: ../../../processing/app/BaseNoGui.java:521
!Error\ while\ verifying/uploading=
Error\ while\ verifying/uploading=Erreur lors de la v\u00e9rification et du t\u00e9l\u00e9versement.
#: Preferences.java:93
Estonian=estonien
@ -566,9 +578,6 @@ Examples=Exemples
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportation annul\u00e9e, les changements doivent d'abord \u00eatre enregistr\u00e9s.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Impossible d''ouvrir le croquis \: \u00ab {0} \u00bb
@ -620,6 +629,9 @@ Frequently\ Asked\ Questions=Foire aux questions
#: Preferences.java:96
Galician=galicien
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=g\u00e9orgien
@ -640,18 +652,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Les variables globales
#: Preferences.java:98
Greek=grec
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=h\u00e9breu
@ -714,7 +714,10 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=La biblioth
Lithuaninan=lituanien
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
Low\ memory\ available,\ stability\ problems\ may\ occur.=La m\u00e9moire disponible faible, des probl\u00e8mes de stabilit\u00e9 pourraient survenir.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=marathe
@ -726,7 +729,7 @@ Message=Message
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Il manque */ \u00e0 la fin du /* commentaire */
#: ../../../processing/app/BaseNoGui.java:455
!Mode\ not\ supported=
Mode\ not\ supported=Mode non support\u00e9
#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Davantage de pr\u00e9f\u00e9rences peuvent \u00eatre \u00e9dit\u00e9es directement dans le fichier
@ -735,7 +738,7 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Davantage de pr\u00e
Moving=D\u00e9placement
#: ../../../processing/app/BaseNoGui.java:484
!Multiple\ files\ not\ supported=
Multiple\ files\ not\ supported=Vous ne pouvez fournir qu'un fichier \u00e0 la fois
#: ../../../processing/app/Base.java:395
Must\ specify\ exactly\ one\ sketch\ file=Il faut sp\u00e9cifier un et un seul fichier de croquis
@ -749,6 +752,9 @@ Name\ for\ new\ file\:=Nom du nouveau fichier\u00a0\:
#: ../../../processing/app/Preferences.java:149
Nepali=n\u00e9palais
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Le t\u00e9l\u00e9versement par r\u00e9seau en utilisant le programmateur n'est pas pris en charge
@ -771,7 +777,7 @@ Next\ Tab=Onglet suivant
No=Non
#: ../../../processing/app/debug/Compiler.java:146
!No\ athorization\ data\ found=
No\ athorization\ data\ found=Aucun donn\u00e9e d'autenfication trouv\u00e9e
#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > Type de carte.
@ -780,7 +786,7 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu
No\ changes\ necessary\ for\ Auto\ Format.=Aucun changement n\u00e9cessaire pour le formatage automatique.
#: ../../../processing/app/BaseNoGui.java:665
!No\ command\ line\ parameters\ found=
No\ command\ line\ parameters\ found=Aucun param\u00e8tre de ligne de commande trouv\u00e9
#: Editor.java:373
No\ files\ were\ added\ to\ the\ sketch.=Aucun fichier n'a \u00e9t\u00e9 ajout\u00e9 au croquis.
@ -792,7 +798,7 @@ No\ launcher\ available=Aucun lanceur disponible
No\ line\ ending=Pas de fin de ligne
#: ../../../processing/app/BaseNoGui.java:665
!No\ parameters=
No\ parameters=Aucun param\u00e8tre
#: Base.java:541
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Non vraiment, vous devriez aller prendre l'air.
@ -803,10 +809,10 @@ No\ reference\ available\ for\ "{0}"=Aucune r\u00e9f\u00e9rence disponible pour
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!No\ sketch=
No\ sketch=Aucun croquis
#: ../../../processing/app/BaseNoGui.java:428
!No\ sketchbook=
No\ sketchbook=Aucun carnet de croquis
#: ../../../processing/app/Sketch.java:204
No\ valid\ code\ files\ found=Aucun fichiers de code valides trouv\u00e9s
@ -824,9 +830,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erreur non fatale pendant
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Non
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=norv\u00e9gien Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=M\u00e9more insuffisante ; consulter la page http\://www.arduino.cc/en/Guide/Troubleshooting\#size pour obtenir des astuces sur comment le r\u00e9duire.
@ -838,7 +850,7 @@ OK=OK
One\ file\ added\ to\ the\ sketch.=Un fichier a \u00e9t\u00e9 ajout\u00e9 au croquis.
#: ../../../processing/app/BaseNoGui.java:455
!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=
Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=Seuls --verify, --upload ou --get-pref sont support\u00e9s
#: EditorToolbar.java:41
Open=Ouvrir
@ -881,7 +893,7 @@ Please\ install\ JDK\ 1.5\ or\ later=Veuillez installer JDK 1.5 ou ult\u00e9rieu
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=Veuillez s\u00e9lectionner un programmateur dans le menu Outils > Programmateur
#: Preferences.java:110
Polish=polonais
@ -1005,13 +1017,13 @@ Save\ changes\ to\ "{0}"?\ \ =Enregistrer les changements dans \u00ab\u00a0{0}\u
Save\ sketch\ folder\ as...=Enregistrer le dossier des croquis sous...
#: ../../../../../app/src/processing/app/Preferences.java:425
!Save\ when\ verifying\ or\ uploading=
Save\ when\ verifying\ or\ uploading=Sauvegarder avant la v\u00e9rification ou le t\u00e9l\u00e9versement
#: Editor.java:2270 Editor.java:2308
Saving...=Enregistrement...
#: ../../../processing/app/FindReplace.java:131
!Search\ all\ Sketch\ Tabs=
Search\ all\ Sketch\ Tabs=Chercher dans tous les onglets des croquis
#: Base.java:1909
Select\ (or\ create\ new)\ folder\ for\ sketches...=S\u00e9lectionner (ou cr\u00e9er) un dossier de croquis...
@ -1045,6 +1057,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e9rie {0} introuvable.\nR\u00e9essayer le t\u00e9l\u00e9versement \u00e0 partir d''un autre port s\u00e9rie\u00a0?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Probl\u00e8mes de param\u00e8tres
@ -1092,11 +1107,14 @@ Sketchbook\ folder\ disappeared=Le dossier contenant les croquis a disparu
Sketchbook\ location\:=Emplacement du carnet de croquis
#: ../../../processing/app/BaseNoGui.java:428
!Sketchbook\ path\ not\ defined=
Sketchbook\ path\ not\ defined=Le chemin du carnet de croquis n'est pas d\u00e9fini
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Croquis (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=slov\u00e8ne
@ -1116,12 +1134,18 @@ Spanish=espagnol
#: Base.java:540
Sunshine=Soleil
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=su\u00e9dois
#: Preferences.java:84
System\ Default=Langue du syst\u00e8me
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=tamoul
@ -1129,7 +1153,7 @@ Tamil=tamoul
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Le mot-cl\u00e9 \u00ab\u00a0BYTE\u00a0\u00bb n'est plus pris en charge.
#: ../../../processing/app/BaseNoGui.java:484
!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=
The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=Le param\u00e8tre --upload n'accepte qu'un fichier \u00e0 la fois
#: debug/Compiler.java:426
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=La classe Client a \u00e9t\u00e9 renomm\u00e9e EthernetClient
@ -1174,7 +1198,7 @@ The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Le dossier contenant les croquis n'existe plus.\nArduino va aller \u00e0 l'emplacement\npar d\u00e9faut, et cr\u00e9er un nouveau dossier\nsi n\u00e9cessaire. Arduino cessera ensuite\nde parler de lui-m\u00eame \u00e0 la troisi\u00e8me personne.
#: ../../../processing/app/debug/Compiler.java:201
!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=
Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=Le fichier platform.txt du mat\u00e9riel tiers ne pr\u00e9cise pas compiler.path. Veuillez en r\u00e9f\u00e9rer au fabricant du mat\u00e9riel.
#: Sketch.java:1075
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Ce fichier a d\u00e9j\u00e0 \u00e9t\u00e9 copi\u00e9 \u00e0\nl'emplacement duquel vous essayez de l'ajouter.\nJ'frai rien dans ce cas-l\u00e0.
@ -1250,6 +1274,9 @@ Uploading\ to\ I/O\ Board...=T\u00e9l\u00e9versement vers la carte E/S...
#: Sketch.java:1622
Uploading...=T\u00e9l\u00e9versement...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Utiliser la s\u00e9lection pour trouver
@ -1286,6 +1313,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Avertissement
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() a \u00e9t\u00e9 renomm\u00e9e Wire.read().
@ -1337,7 +1367,7 @@ Zip\ doesn't\ contain\ a\ library=Le fichier Zip ne contient pas de biblioth\u00
#: SketchCode.java:258
#, java-format
!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contient des caract\u00e8res non reconnus. Si ce code a \u00e9t\u00e9 \u00e9crit sur une ancienne version d'Arduino, il se peut que vous ayez \u00e0 cliquer sur "Outils > R\u00e9parer l'encodage et recharger" pour passer \u00e0 l'encodage UTF-8. Si \u00e7a ne marche pas, la suppression des caract\u00e8res probl\u00e9matiques peut r\u00e9gler ce probl\u00e8me.
#: debug/Compiler.java:409
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nDepuis Arduino 0019, la biblioth\u00e8que Ethernet d\u00e9pend de la biblioth\u00e8que SPI.\nVous semblez l'utiliser ou une autre biblioth\u00e8que qui d\u00e9pend de la biblioth\u00e8que SPI.\n\n
@ -1375,9 +1405,6 @@ createNewFile()\ returned\ false=createNewFile() a renvoy\u00e9 false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\u00e9tait activ\u00e9e dans Fichier > Pr\u00e9f\u00e9rences.
#: Base.java:2090
environment=environnement
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1387,22 +1414,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignore la taille de police invalide {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=nom est nul
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu est nul
@ -1429,10 +1447,6 @@ upload=t\u00e9l\u00e9versement
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0} \: Argument de --pref incorrect, doit \u00eatre de la forme \u00ab pref\=valeur \u00bb

View File

@ -98,6 +98,10 @@ msgstr "Ajouter un fichier..."
msgid "Add Library..."
msgstr "Ajouter une bibliothèque..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -290,6 +294,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "Couper"
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danois"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Réduire l'indentation"
@ -792,10 +808,6 @@ msgstr "Exemples"
msgid "Export canceled, changes must first be saved."
msgstr "Exportation annulée, les changements doivent d'abord être enregistrés."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "Foire aux questions"
msgid "Galician"
msgstr "Galicien"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -893,22 +909,6 @@ msgstr ""
msgid "Greek"
msgstr "Grec"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1003,6 +1003,10 @@ msgstr "Lithuanien"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1047,6 +1051,10 @@ msgstr "Nom du nouveau fichier:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1146,10 +1154,18 @@ msgstr "Erreur non fatale lors du changement d'apparence."
msgid "Nope"
msgstr "Non"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Port série {0} introuvable.\nRéessayer le téléversement à partir d''un autre port série ?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Problèmes de paramètres"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1549,6 +1573,10 @@ msgstr "Espagnol"
msgid "Sunshine"
msgstr "Soleil"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1557,6 +1585,10 @@ msgstr ""
msgid "System Default"
msgstr "Défaut du système"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamoul"
@ -1762,6 +1794,10 @@ msgstr "Téléversement vers la carte E/S..."
msgid "Uploading..."
msgstr "Téléversement..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Utiliser la sélection pour trouver"
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr "Avertissement"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() a été renommée Wire.read()."
@ -1967,10 +2007,6 @@ msgstr "createNewFile() a renvoyé false"
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "environnement"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignore la taille de police invalide {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nom est nul"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu est nul"
@ -2038,11 +2062,6 @@ msgstr "{0} a retourné {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=Ajouter un fichier...
#: Base.java:963
Add\ Library...=Ajouter une biblioth\u00e8que...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -190,6 +193,9 @@ Bad\ file\ selected=Mauvais fichier s\u00e9lectionn\u00e9
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -405,9 +411,15 @@ Cut=Couper
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Danois
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=R\u00e9duire l'indentation
@ -560,9 +572,6 @@ Examples=Exemples
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportation annul\u00e9e, les changements doivent d'abord \u00eatre enregistr\u00e9s.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=Foire aux questions
#: Preferences.java:96
Galician=Galicien
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -634,18 +646,6 @@ Getting\ Started=Aide pour d\u00e9buter
#: Preferences.java:98
Greek=Grec
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -710,6 +710,9 @@ Lithuaninan=Lithuanien
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=Nom du nouveau fichier\:
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Erreur non fatale lors du
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Non
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e9rie {0} introuvable.\nR\u00e9essayer le t\u00e9l\u00e9versement \u00e0 partir d''un autre port s\u00e9rie ?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Probl\u00e8mes de param\u00e8tres
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=Emplacement du carnet de croquis\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1128,18 @@ Spanish=Espagnol
#: Base.java:540
Sunshine=Soleil
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=D\u00e9faut du syst\u00e8me
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamoul
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=T\u00e9l\u00e9versement vers la carte E/S...
#: Sketch.java:1622
Uploading...=T\u00e9l\u00e9versement...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Utiliser la s\u00e9lection pour trouver
@ -1280,6 +1307,9 @@ Visit\ Arduino.cc=Visiter Arduino.cc
#: Base.java:2128
Warning=Avertissement
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() a \u00e9t\u00e9 renomm\u00e9e Wire.read().
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() a renvoy\u00e9 false
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=environnement
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignore la taille de police invalide {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=nom est nul
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu est nul
@ -1423,10 +1441,6 @@ upload=t\u00e9l\u00e9versement
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -97,6 +97,10 @@ msgstr "Engadir un ficheiro..."
msgid "Add Library..."
msgstr "Engadir unha biblioteca..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Cortar"
msgid "Czech"
msgstr "Checo"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danés"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Diminuír o sangrado"
@ -791,10 +807,6 @@ msgstr "Exemplos"
msgid "Export canceled, changes must first be saved."
msgstr "Exportación cancelada, primeiro débense garda-los cambios."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Preguntas frecuentes"
msgid "Galician"
msgstr "Galego"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Xeorxiano"
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr "Grego"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebreo"
@ -1002,6 +1002,10 @@ msgstr "Lituano"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Maratí"
@ -1046,6 +1050,10 @@ msgstr "Nome do novo ficheiro:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr "Produciuse un erro non grave mentres se configuraba a aparencia."
msgid "Nope"
msgstr "Negativo"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Noruegués Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "O porto serie {0} non foi atopado\nVolver a tenta-la carga con outro porto serie?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Problemas de configuración"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr "Español"
msgid "Sunshine"
msgstr "O sol brilla"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr "Predeterminado do sistema"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1761,6 +1793,10 @@ msgstr "Cargando á Tarxeta de E/S..."
msgid "Uploading..."
msgstr "Estase a cargar..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Usar a escolla para buscar"
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Alerta"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() foi renomeada a Wire.read()."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() devolveu valor falso"
msgid "enabled in File > Preferences."
msgstr "activado en Ficheiro > Preferencias"
#: Base.java:2090
msgid "environment"
msgstr "entorno"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "ignorando tamaño inválido de tipo de letra {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nome é nulo"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu é nulo"
@ -2037,11 +2061,6 @@ msgstr "{0} devolveu {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=Engadir un ficheiro...
#: Base.java:963
Add\ Library...=Engadir unha biblioteca...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Bad\ file\ selected=Escolleuse un ficheiro danado
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Placa
@ -404,9 +410,15 @@ Cut=Cortar
#: ../../../processing/app/Preferences.java:83
Czech=Checo
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Dan\u00e9s
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Diminu\u00edr o sangrado
@ -559,9 +571,6 @@ Examples=Exemplos
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportaci\u00f3n cancelada, primeiro d\u00e9bense garda-los cambios.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=Preguntas frecuentes
#: Preferences.java:96
Galician=Galego
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Xeorxiano
@ -633,18 +645,6 @@ Getting\ Started=Comezando
#: Preferences.java:98
Greek=Grego
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebreo
@ -709,6 +709,9 @@ Lithuaninan=Lituano
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marat\u00ed
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=Nome do novo ficheiro\:
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Produciuse un erro non gra
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Negativo
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Noruegu\u00e9s Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=O porto serie {0} non foi atopado\nVolver a tenta-la carga con outro porto serie?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Problemas de configuraci\u00f3n
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=Ubicaci\u00f3n do Sketchbook\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Spanish=Espa\u00f1ol
#: Base.java:540
Sunshine=O sol brilla
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=Predeterminado do sistema
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=Cargando \u00e1 Tarxeta de E/S...
#: Sketch.java:1622
Uploading...=Estase a cargar...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Usar a escolla para buscar
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=Visitar Arduino.cc
#: Base.java:2128
Warning=Alerta
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() foi renomeada a Wire.read().
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() devolveu valor falso
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=activado en Ficheiro > Preferencias
#: Base.java:2090
environment=entorno
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o inv\u00e1lido de tipo de letra {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=nome \u00e9 nulo
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu \u00e9 nulo
@ -1422,10 +1440,6 @@ upload=carga
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@ -98,6 +98,10 @@ msgstr "फाइल जोङिये"
msgid "Add Library..."
msgstr "ग्रन्थ जोड़े"
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "अल्बानी"
@ -290,6 +294,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "कट"
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "इन्डेन्ट कम कीजिये"
@ -792,10 +808,6 @@ msgstr "उदाहरण"
msgid "Export canceled, changes must first be saved."
msgstr "निर्यात रद्द कर दिया गया, बदलाव पहले सेव कीजिये "
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "अकसर पूछे जाने वाले प्रश्न"
msgid "Galician"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -893,22 +909,6 @@ msgstr ""
msgid "Greek"
msgstr ""
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1003,6 +1003,10 @@ msgstr ""
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "मराठी "
@ -1047,6 +1051,10 @@ msgstr "नयी फाइल का नाम "
msgid "Nepali"
msgstr "नेपाली "
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1146,10 +1154,18 @@ msgstr "रूप और महसूस है की स्थापना क
msgid "Nope"
msgstr "नहीं "
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "सीरियल पोर्ट नंबर {0} नहीं मिला \nउपलोड को जारी रखें किसी और पोर्ट को सेलेक्ट करके ?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "मुद्दे की स्थापना"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1549,6 +1573,10 @@ msgstr ""
msgid "Sunshine"
msgstr "सूर्य किरन"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1557,6 +1585,10 @@ msgstr ""
msgid "System Default"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "तमिल "
@ -1762,6 +1794,10 @@ msgstr "इ/ओ बोर्ड पर उपलोड हो रहा है..
msgid "Uploading..."
msgstr "अपलोड हो रहा है ....."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "ढूँढने के लिये सिलेक्शन का उपयोग कीजिये"
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr "चेतावनी"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() का नामकरण Wire.read() हो गया है"
@ -1967,10 +2007,6 @@ msgstr "createNewFile() गलत रिटर्न "
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "वातावरण "
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr ""
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "अवैध फॉण्ट आकार को नज़रंदाज़ करें {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "नाम मे कुछ नही है"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "सीरियलमेनू मे कुछ नही है"
@ -2038,11 +2062,6 @@ msgstr "{0} लौटाया {1} "
msgid "{0} | Arduino {1}"
msgstr "{0} | अर्दुइनो {1} "
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=\u092b\u093e\u0907\u0932 \u091c\u094b\u0919\u093f\u092f\u0947
#: Base.java:963
Add\ Library...=\u0917\u094d\u0930\u0928\u094d\u0925 \u091c\u094b\u095c\u0947
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u0905\u0932\u094d\u092c\u093e\u0928\u0940
@ -190,6 +193,9 @@ Bad\ file\ selected=\u0916\u0930\u093e\u092c \u092b\u093e\u0907\u0932 \u091a\u09
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u092c\u094b\u0930\u094d\u0921
@ -405,9 +411,15 @@ Cut=\u0915\u091f
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
!Danish=
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u0907\u0928\u094d\u0921\u0947\u0928\u094d\u091f \u0915\u092e \u0915\u0940\u091c\u093f\u092f\u0947
@ -560,9 +572,6 @@ Examples=\u0909\u0926\u093e\u0939\u0930\u0923
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0928\u093f\u0930\u094d\u092f\u093e\u0924 \u0930\u0926\u094d\u0926 \u0915\u0930 \u0926\u093f\u092f\u093e \u0917\u092f\u093e, \u092c\u0926\u0932\u093e\u0935 \u092a\u0939\u0932\u0947 \u0938\u0947\u0935 \u0915\u0940\u091c\u093f\u092f\u0947
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\u0938\u094d\u0915\u0947\u091a\: "{0}" \u0916\u094b\u0932\u0928\u0947 \u092e\u0947\u0902 \u0905\u0938\u092b\u0932
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=\u0905\u0915\u0938\u0930 \u092a\u0942\u091b\u0947 \
#: Preferences.java:96
!Galician=
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -634,18 +646,6 @@ Getting\ Started=\u092a\u094d\u0930\u093e\u0930\u0902\u092d \u0915\u0930\u0928\u
#: Preferences.java:98
!Greek=
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -710,6 +710,9 @@ Japanese=\u091c\u093e\u092a\u093e\u0928\u0940
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u092e\u0930\u093e\u0920\u0940
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=\u0928\u092f\u0940 \u092b\u093e\u0907\u0932 \u0915\u093e
#: ../../../processing/app/Preferences.java:149
Nepali=\u0928\u0947\u092a\u093e\u0932\u0940
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u0930\u0942\u092a \u0914\
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u0928\u0939\u0940\u0902
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0938\u0940\u0930\u093f\u092f\u0932 \u092a\u094b\u0930\u094d\u091f \u0928\u0902\u092c\u0930 {0} \u0928\u0939\u0940\u0902 \u092e\u093f\u0932\u093e \n\u0909\u092a\u0932\u094b\u0921 \u0915\u094b \u091c\u093e\u0930\u0940 \u0930\u0916\u0947\u0902 \u0915\u093f\u0938\u0940 \u0914\u0930 \u092a\u094b\u0930\u094d\u091f \u0915\u094b \u0938\u0947\u0932\u0947\u0915\u094d\u091f \u0915\u0930\u0915\u0947 ?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u092e\u0941\u0926\u094d\u0926\u0947 \u0915\u0940 \u0938\u094d\u0925\u093e\u092a\u0928\u093e
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093f\
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1128,18 @@ Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u092e\u093e\u09
#: Base.java:540
Sunshine=\u0938\u0942\u0930\u094d\u092f \u0915\u093f\u0930\u0928
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
!System\ Default=
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u0924\u092e\u093f\u0932
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=\u0907/\u0913 \u092c\u094b\u0930\u094d\u0921 \u092a
#: Sketch.java:1622
Uploading...=\u0905\u092a\u0932\u094b\u0921 \u0939\u094b \u0930\u0939\u093e \u0939\u0948 .....
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u0922\u0942\u0901\u0922\u0928\u0947 \u0915\u0947 \u0932\u093f\u092f\u0947 \u0938\u093f\u0932\u0947\u0915\u094d\u0936\u0928 \u0915\u093e \u0909\u092a\u092f\u094b\u0917 \u0915\u0940\u091c\u093f\u092f\u0947
@ -1280,6 +1307,9 @@ Visit\ Arduino.cc=Arduino.cc \u0926\u0947\u0916\u093f\u092f\u0947
#: Base.java:2128
Warning=\u091a\u0947\u0924\u093e\u0935\u0928\u0940
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u0915\u093e \u0928\u093e\u092e\u0915\u0930\u0923 Wire.read() \u0939\u094b \u0917\u092f\u093e \u0939\u0948
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() \u0917\u0932\u0924 \u0930\u093f
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=\u0935\u093e\u0924\u093e\u0935\u0930\u0923
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u0905\u0935\u0948\u0927 \u092b\u0949\u0923\u094d\u091f \u0906\u0915\u093e\u0930 \u0915\u094b \u0928\u091c\u093c\u0930\u0902\u0926\u093e\u091c\u093c \u0915\u0930\u0947\u0902 {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=\u0928\u093e\u092e \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=\u0938\u0940\u0930\u093f\u092f\u0932\u092e\u0947\u0928\u0942 \u092e\u0947 \u0915\u0941\u091b \u0928\u0939\u0940 \u0939\u0948
@ -1423,10 +1441,6 @@ upload=\u0909\u092a\u0932\u094b\u0921
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -98,6 +98,10 @@ msgstr "Dodaj datoteku..."
msgid "Add Library..."
msgstr "Dodavanje biblioteke..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albanian"
@ -290,6 +294,10 @@ msgstr "Basque"
msgid "Belarusian"
msgstr "Belarusian"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "Izreži"
msgid "Czech"
msgstr "Czech"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danish"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Smanji razmak"
@ -792,10 +808,6 @@ msgstr "Primjeri"
msgid "Export canceled, changes must first be saved."
msgstr "Prekinuto exportiranje, potrebno je prvo pohraniti promjene."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "Učestalo postavljena pitanja"
msgid "Galician"
msgstr "Galician"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgian"
@ -893,22 +909,6 @@ msgstr "Globalne promjenjljive koriste {0} bajtova RAM-a"
msgid "Greek"
msgstr "German"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Hebrew"
@ -1003,6 +1003,10 @@ msgstr "Lithuaninan"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1047,6 +1051,10 @@ msgstr "Naziv nove datoteke:"
msgid "Nepali"
msgstr "Nepali"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Mrežno prebacivanje uporabom programatora nije moguće"
@ -1146,10 +1154,18 @@ msgstr "Upozorenje pri postavljanju parametara radne okoline."
msgid "Nope"
msgstr "Ništa"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norwegian Bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Serijski port {0} nij pronađen.\nDa pokušam prijenos s drugim serijskim portom?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Problem s postavkama"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "Skice (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Slovenian"
@ -1549,6 +1573,10 @@ msgstr "Spanish"
msgid "Sunshine"
msgstr "Sunčeve zrake"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Swedish"
@ -1557,6 +1585,10 @@ msgstr "Swedish"
msgid "System Default"
msgstr "Osnovne sistemske postavke"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1762,6 +1794,10 @@ msgstr "Prenošenje na I/O ploču..."
msgid "Uploading..."
msgstr "Prenošenje..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Iskoristi selekciju za pretragu"
@ -1811,6 +1847,10 @@ msgstr "UPOZORENJE: biblioteka {0} je pisana za izvršavanje na {1} arhitekturi(
msgid "Warning"
msgstr "Upozorenje"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() je preimenovan u Wire.read()"
@ -1967,10 +2007,6 @@ msgstr "createNewFile() vratio je false"
msgid "enabled in File > Preferences."
msgstr "omogućeno u File > Preferences."
#: Base.java:2090
msgid "environment"
msgstr "okolina"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "zanemari pogrešnu visinu {0} fonta "
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name je null"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu je null"
@ -2038,11 +2062,6 @@ msgstr "{0} vratio {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=Dodaj datoteku...
#: Base.java:963
Add\ Library...=Dodavanje biblioteke...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albanian
@ -190,6 +193,9 @@ Basque=Basque
#: ../../../processing/app/Preferences.java:139
Belarusian=Belarusian
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Plo\u010dica
@ -405,9 +411,15 @@ Cut=Izre\u017ei
#: ../../../processing/app/Preferences.java:83
Czech=Czech
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Danish
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Smanji razmak
@ -560,9 +572,6 @@ Examples=Primjeri
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Prekinuto exportiranje, potrebno je prvo pohraniti promjene.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Gre\u0161ka otvaranja skice\: "{0}"
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=U\u010destalo postavljena pitanja
#: Preferences.java:96
Galician=Galician
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgian
@ -634,18 +646,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globalne promjenjljive
#: Preferences.java:98
Greek=German
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Hebrew
@ -710,6 +710,9 @@ Lithuaninan=Lithuaninan
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=Naziv nove datoteke\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepali
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Mre\u017eno prebacivanje uporabom programatora nije mogu\u0107e
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Upozorenje pri postavljanj
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Ni\u0161ta
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Nema dovoljno memorije; vidi http\://www.arduino.cc/en/Guide/Troubleshooting\#size za savjete kako smanjiti program.
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Serijski port {0} nij prona\u0111en.\nDa poku\u0161am prijenos s drugim serijskim portom?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Problem s postavkama
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=Lokacija skica\:
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Skice (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Slovenian
@ -1110,12 +1128,18 @@ Spanish=Spanish
#: Base.java:540
Sunshine=Sun\u010deve zrake
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Swedish
#: Preferences.java:84
System\ Default=Osnovne sistemske postavke
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=Preno\u0161enje na I/O plo\u010du...
#: Sketch.java:1622
Uploading...=Preno\u0161enje...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Iskoristi selekciju za pretragu
@ -1280,6 +1307,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Upozorenje
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() je preimenovan u Wire.read()
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() vratio je false
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=omogu\u0107eno u File > Preferences.
#: Base.java:2090
environment=okolina
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=zanemari pogre\u0161nu visinu {0} fonta
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name je null
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu je null
@ -1423,10 +1441,6 @@ upload=prijenos
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Neispravan argument --stavka, treba biti u formi "stavka\=vrijednost"

View File

@ -97,6 +97,10 @@ msgstr "Fájl hozzáadása..."
msgid "Add Library..."
msgstr "Függvénykönyvtár hozzáadása..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albán"
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr ""
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr ""
@ -791,10 +807,6 @@ msgstr ""
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr ""
msgid "Galician"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr ""
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1002,6 +1002,10 @@ msgstr "Litván"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1046,6 +1050,10 @@ msgstr "Új file neve:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr "Nem-végzetes hiba a kinézet beállítása során - a program férfi g
msgid "Nope"
msgstr "Dehogy, nem"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Kimenetek beállítása"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr "Spanyol"
msgid "Sunshine"
msgstr "Napfény"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1761,6 +1793,10 @@ msgstr ""
msgid "Uploading..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Figyelmeztetés"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "A Wire.receive() új neve: Wire.read()."
@ -1966,10 +2006,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "környezet"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr ""
@ -1982,27 +2018,15 @@ msgstr ""
msgid "http://www.arduino.cc/latest.txt"
msgstr ""
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "hibás fontméret kihagyása: {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2037,11 +2061,6 @@ msgstr "{0} eredménye {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr ""
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa...
#: Base.java:963
Add\ Library...=F\u00fcggv\u00e9nyk\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Alb\u00e1n
@ -189,6 +192,9 @@ Automatically\ associate\ .ino\ files\ with\ Arduino=Automatikus kiterjeszt\u00e
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -404,9 +410,15 @@ Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0}
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
!Danish=
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
!Decrease\ Indent=
@ -559,9 +571,6 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: Preferences.java:96
!Galician=
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -633,18 +645,6 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: Preferences.java:98
!Greek=
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -709,6 +709,9 @@ Lithuaninan=Litv\u00e1n
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=\u00daj file neve\:
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Nem-v\u00e9gzetes hiba a k
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Dehogy, nem
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Kimenetek be\u00e1ll\u00edt\u00e1sa
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=SketchBook helye\:
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Spanish=Spanyol
#: Base.java:540
Sunshine=Napf\u00e9ny
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
!System\ Default=
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1243,6 +1267,9 @@ Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketch fri
#: Sketch.java:1622
!Uploading...=
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1279,6 +1306,9 @@ Verify\ code\ after\ upload=K\u00f3d ellen\u0151rz\u00e9s felt\u00f6lt\u00e9s ut
#: Base.java:2128
Warning=Figyelmeztet\u00e9s
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=A Wire.receive() \u00faj neve\: Wire.read().
@ -1368,9 +1398,6 @@ compilation\ =ford\u00edt\u00e1skor
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=k\u00f6rnyezet
#: Editor.java:1108
!http\://arduino.cc/=
@ -1380,22 +1407,13 @@ environment=k\u00f6rnyezet
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=hib\u00e1s fontm\u00e9ret kihagy\u00e1sa\: {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
!serialMenu\ is\ null=
@ -1422,10 +1440,6 @@ upload=felt\u00f6lt\u00e9skor
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
!{0}.html=
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "Ավելացնել նիշք․․․"
msgid "Add Library..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr ""
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Դանիերեն"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr ""
@ -791,10 +807,6 @@ msgstr "Օրինակներ"
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr ""
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Հաճախ տրվող հարցեր"
msgid "Galician"
msgstr "Գալիսերեն"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -892,22 +908,6 @@ msgstr ""
msgid "Greek"
msgstr "Հունարեն"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr ""
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr ""
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr ""
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr ""
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1002,6 +1002,10 @@ msgstr "Լիտվաներեն"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1046,6 +1050,10 @@ msgstr ""
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1145,10 +1153,18 @@ msgstr ""
msgid "Nope"
msgstr "Չէ"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr ""
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr ""
msgid "Sunshine"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr "Համակարգի լռելյայն"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr ""
@ -1761,6 +1793,10 @@ msgstr ""
msgid "Uploading..."
msgstr "Ներբեռնում․․․"
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "Ուշադրություն"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
@ -1966,10 +2006,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr "միջավայր"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr ""
@ -1982,27 +2018,15 @@ msgstr ""
msgid "http://www.arduino.cc/latest.txt"
msgstr ""
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr ""
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
#: Base.java:2080
msgid "index.html"
msgstr ""
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr ""
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2037,11 +2061,6 @@ msgstr ""
msgid "{0} | Arduino {1}"
msgstr ""
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr ""
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u056b
#: Base.java:963
!Add\ Library...=
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -404,9 +410,15 @@ Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u0534\u0561\u0576\u056b\u0565\u0580\u0565\u0576
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
!Decrease\ Indent=
@ -559,9 +571,6 @@ Examples=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
!FAQ.html=
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=\u0540\u0561\u0573\u0561\u056d \u057f\u0580\u057e\u
#: Preferences.java:96
Galician=\u0533\u0561\u056c\u056b\u057d\u0565\u0580\u0565\u0576
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -633,18 +645,6 @@ German=\u0533\u0565\u0580\u0574\u0561\u0576\u0565\u0580\u0565\u0576
#: Preferences.java:98
Greek=\u0540\u0578\u0582\u0576\u0561\u0580\u0565\u0576
#: Base.java:2085
!Guide_Environment.html=
#: Base.java:2071
!Guide_MacOSX.html=
#: Base.java:2095
!Guide_Troubleshooting.html=
#: Base.java:2073
!Guide_Windows.html=
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -709,6 +709,9 @@ Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -742,6 +745,9 @@ Moving=\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -817,9 +823,15 @@ No=\u0548\u0579
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u0549\u0567
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1038,6 +1050,9 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
!Settings\ issues=
@ -1090,6 +1105,9 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1109,12 +1127,18 @@ Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c
#: Base.java:540
!Sunshine=
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
!Tamil=
@ -1243,6 +1267,9 @@ Upload=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c
#: Sketch.java:1622
Uploading...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u2024\u2024\u2024
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1279,6 +1306,9 @@ Verify=\u054d\u057f\u0578\u0582\u0563\u0565\u056c
#: Base.java:2128
Warning=\u0548\u0582\u0577\u0561\u0564\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
@ -1368,9 +1398,6 @@ Yes=\u0531\u0575\u0578
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580
#: Editor.java:1108
!http\://arduino.cc/=
@ -1380,22 +1407,13 @@ environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580
#: UpdateCheck.java:53
!http\://www.arduino.cc/latest.txt=
#: Base.java:2075
!http\://www.arduino.cc/playground/Learning/Linux=
#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
#: Base.java:2080
!index.html=
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
!platforms.html=
#: Editor.java:932
!serialMenu\ is\ null=
@ -1422,10 +1440,6 @@ environment=\u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580
#, java-format
!{0}\ |\ Arduino\ {1}=
#: Editor.java:1874
#, java-format
!{0}.html=
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "Tambah Berkas..."
msgid "Add Library..."
msgstr "Tambah pustaka..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Bahasa Albania"
@ -289,6 +293,10 @@ msgstr "Bahasa Basque"
msgid "Belarusian"
msgstr "Bahasa Belarusia"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "Potong"
msgid "Czech"
msgstr "Bahasa Ceko"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Bahasa Denmark"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Menurunkan Indentasi"
@ -791,10 +807,6 @@ msgstr "Contoh"
msgid "Export canceled, changes must first be saved."
msgstr "Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "Pertanyaan yang Sering Ditanyakan"
msgid "Galician"
msgstr "Bahasa Galisia"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Bahasa Georgia"
@ -892,22 +908,6 @@ msgstr "Variabel global menggunakan {0} byte dari memori dinamik."
msgid "Greek"
msgstr "Bahasa Yunani"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Bahasa Ibrani"
@ -1002,6 +1002,10 @@ msgstr ""
msgid "Low memory available, stability problems may occur."
msgstr "Memori rendah tersedia, masalah stabilitas dapat terjadi."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1046,6 +1050,10 @@ msgstr "Nama untuk berkas baru:"
msgid "Nepali"
msgstr "Bahasa Nepal"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Unggah jaringan menggunakan programmer tidak didukung"
@ -1145,10 +1153,18 @@ msgstr ""
msgid "Nope"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Mengatur masalah"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr ""
msgid "Sunshine"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1556,6 +1584,10 @@ msgstr ""
msgid "System Default"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr ""
@ -1761,6 +1793,10 @@ msgstr "Mengunggah ke papan I/O..."
msgid "Uploading..."
msgstr "Mengunggah..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Gunakan Seleksi Untuk Cari"
@ -1810,6 +1846,10 @@ msgstr "PERINGATAN: pustaka {0} mengklaim berjalan di {1} arsitektur (s) dan mun
msgid "Warning"
msgstr "Peringatan"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() telah diubah namanya Wire.read()."
@ -1966,10 +2006,6 @@ msgstr "buatBerkasBaru() mengembalikan salah"
msgid "enabled in File > Preferences."
msgstr "diaktifkan pada Berkas > Preferensi."
#: Base.java:2090
msgid "environment"
msgstr "lingkungan"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "mengabaikan ukuran fonta tidak sah {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nama adalah tidak ada"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu adalah tidak ada"
@ -2037,11 +2061,6 @@ msgstr "{0} mengembalikan {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -17,7 +17,7 @@
#: Preferences.java:478
(edit\ only\ when\ Arduino\ is\ not\ running)=(sunting hanya ketika Arduino tidak berjalan)
#: ../../../processing/app/helpers/CommandlineParser.java:172
#: ../../../processing/app/Base.java:468
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
#: Sketch.java:746
@ -56,22 +56,25 @@ Add\ File...=Tambah Berkas...
#: Base.java:963
Add\ Library...=Tambah pustaka...
#: ../../../../../app/src/processing/app/Preferences.java:110
!Albanian=
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Bahasa Albania
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Sebuah galat terjadi ketika mencoba memperbaiki pengkodean berkas.\nDo not attempt to save this sketch as it may overwrite\nthe old version. Use Open to re-open the sketch and try again.\n
#: ../../../processing/app/BaseNoGui.java:528
!An\ error\ occurred\ while\ uploading\ the\ sketch=
An\ error\ occurred\ while\ uploading\ the\ sketch=Galat terjadi ketika mengunggah sketsa
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!An\ error\ occurred\ while\ verifying\ the\ sketch=
An\ error\ occurred\ while\ verifying\ the\ sketch=Galat terjadi ketika memeriksa sketsa
#: ../../../processing/app/BaseNoGui.java:521
!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Galat terjadi ketika memeriksa/mengunggah sketsa
#: Base.java:228
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Galat tidak diketahui terjadi ketika mencoba memuat\nkode khusus platform untuk mesin adna
@ -122,23 +125,23 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=Apakah anda yakin ingin menghapus
#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=Apakah anda yakin ingin menghapus sketsa ini?
#: ../../../processing/app/helpers/CommandlineParser.java:100
!Argument\ required\ for\ --board=
#: ../../../processing/app/Base.java:356
Argument\ required\ for\ --board=Argumen diperlukan untuk --board
#: ../../../processing/app/helpers/CommandlineParser.java:118
!Argument\ required\ for\ --curdir=
#: ../../../processing/app/Base.java:370
Argument\ required\ for\ --curdir=Argumen diperlukan untuk --curdir
#: ../../../processing/app/helpers/CommandlineParser.java:60
!Argument\ required\ for\ --get-pref=
#: ../../../processing/app/Base.java:385
Argument\ required\ for\ --get-pref=Argumen diperlukan untuk --get-pref
#: ../../../processing/app/helpers/CommandlineParser.java:109
!Argument\ required\ for\ --port=
#: ../../../processing/app/Base.java:363
Argument\ required\ for\ --port=Argumen diperlukan untuk --port
#: ../../../processing/app/helpers/CommandlineParser.java:140
!Argument\ required\ for\ --pref=
#: ../../../processing/app/Base.java:377
Argument\ required\ for\ --pref=Argumen diperlukan untuk --pref
#: ../../../processing/app/helpers/CommandlineParser.java:153
!Argument\ required\ for\ --preferences-file=
#: ../../../processing/app/Base.java:384
Argument\ required\ for\ --preferences-file=Argumen diperlukan untuk --preferences-file
#: ../../../processing/app/Preferences.java:137
Armenian=Bahasa Armenia
@ -147,7 +150,7 @@ Armenian=Bahasa Armenia
Asturian=Bahasa Asturia
#: ../../../processing/app/debug/Compiler.java:145
!Authorization\ required=
Authorization\ required=Otorisasi diperlukan
#: tools/AutoFormat.java:91
Auto\ Format=Format Otomatis
@ -181,14 +184,17 @@ Bad\ error\ line\:\ {0}=Galat baris buruk\: {0}
Bad\ file\ selected=Berkas buruk dipilih
#: ../../../processing/app/debug/Compiler.java:89
!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=
Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=Berkas utama sketsa buruk atau struktur direktori sketsa buruk
#: ../../../../../app/src/processing/app/Preferences.java:163
!Basque=
#: ../../../processing/app/Preferences.java:149
Basque=Bahasa Basque
#: ../../../processing/app/Preferences.java:139
Belarusian=Bahasa Belarusia
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Papan
@ -212,8 +218,8 @@ Browse=Telusuri
#: Sketch.java:1392 Sketch.java:1423
Build\ folder\ disappeared\ or\ could\ not\ be\ written=Folder bangun menghilang atau tidak dapat ditulis
#: ../../../processing/app/debug/Compiler.java:211
!Build\ options\ changed,\ rebuilding\ all=
#: ../../../processing/app/Sketch.java:1530
Build\ options\ changed,\ rebuilding\ all=Opsi bangun berubah, membangun kembali semuanya
#: ../../../processing/app/Preferences.java:80
Bulgarian=Bahasa Bulgaria
@ -227,13 +233,13 @@ Burn\ Bootloader=Membakar Bootloader
#: Editor.java:2504
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Membakar bootloader ke papan I/O (ini mungkin memakan waktu satu menit)
#: ../../../processing/app/helpers/CommandlineParser.java:54
#: ../../../processing/app/Base.java:379
#, java-format
!Can\ only\ pass\ one\ of\:\ {0}=
Can\ only\ pass\ one\ of\:\ {0}=Hanya bisa melewati satu dari\: {0}
#: ../../../processing/app/BaseNoGui.java:504
#: ../../../processing/app/BaseNoGui.java:549
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
Can't\ find\ the\ sketch\ in\ the\ specified\ path=Tidak dapat menemukan sketsa di jalur yang ditentukan
#: ../../../processing/app/Preferences.java:92
Canadian\ French=Bahasa Perancis Kanada
@ -245,8 +251,8 @@ Cancel=Batalkan
#: Sketch.java:455
Cannot\ Rename=Tidak dapat Diubah nama
#: ../../../processing/app/helpers/CommandlineParser.java:169
!Cannot\ specify\ any\ sketch\ files=
#: ../../../processing/app/Base.java:465
Cannot\ specify\ any\ sketch\ files=Tidak bisa menentukan berkas sketsa
#: SerialMonitor.java:112
!Carriage\ return=
@ -356,8 +362,8 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.
#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Tidak dapat membaca pengaturan baku.\nAnda harus memasang ulang Arduino.
#: ../../../processing/app/debug/Compiler.java:206
!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=
#: ../../../processing/app/Sketch.java:1525
Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=Tidak dapat membaca berkas preferensi bangun, membangun kembali semua
#: Base.java:2482
#, java-format
@ -380,8 +386,8 @@ Could\ not\ rename\ the\ sketch.\ (2)=Tidak dapat mengubah nama sketsa. (2)
#, java-format
Could\ not\ replace\ {0}=Tidak dapat diganti {0}
#: ../../../processing/app/debug/Compiler.java:107
!Could\ not\ write\ build\ preferences\ file=
#: ../../../processing/app/Sketch.java:1579
Could\ not\ write\ build\ preferences\ file=Tidak dapat menulis berkas preferensi bangun
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=Tidak dapat mengarsipkan sketsa
@ -404,9 +410,15 @@ Cut=Potong
#: ../../../processing/app/Preferences.java:83
Czech=Bahasa Ceko
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Bahasa Denmark
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Menurunkan Indentasi
@ -433,7 +445,7 @@ Done\ burning\ bootloader.=Selesai membakar bootloader.
#: ../../../processing/app/BaseNoGui.java:507
#: ../../../processing/app/BaseNoGui.java:552
!Done\ compiling=
Done\ compiling=Selesai mengkompilasi
#: Editor.java:1911 Editor.java:1928
Done\ compiling.=Selesai mengkompilasi.
@ -442,7 +454,7 @@ Done\ compiling.=Selesai mengkompilasi.
Done\ printing.=Selesai mencetak.
#: ../../../processing/app/BaseNoGui.java:514
!Done\ uploading=
Done\ uploading=Selesai mengunggah
#: Editor.java:2395 Editor.java:2431
Done\ uploading.=Selesai mengunggah.
@ -523,7 +535,7 @@ Error\ while\ burning\ bootloader.=Galat ketika membakar bootloader.
Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=Galat ketika membakar bootloader\: kehilangan '{0}' parameter konfigurasi
#: ../../../../../app/src/processing/app/Editor.java:1940
!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=
Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=Galat ketika mengkompilasi\: kehilangan '{0}' parameter konfigurasi
#: SketchCode.java:83
#, java-format
@ -533,7 +545,7 @@ Error\ while\ loading\ code\ {0}=Galat ketika memuat kode {0}
Error\ while\ printing.=Galat ketika mencetak.
#: ../../../processing/app/BaseNoGui.java:528
!Error\ while\ uploading=
Error\ while\ uploading=Galat ketika mengunggah
#: ../../../processing/app/Editor.java:2409
#: ../../../processing/app/Editor.java:2449
@ -542,10 +554,10 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Galat ketika
#: ../../../processing/app/BaseNoGui.java:506
#: ../../../processing/app/BaseNoGui.java:551
#: ../../../processing/app/BaseNoGui.java:554
!Error\ while\ verifying=
Error\ while\ verifying=Galat ketika memeriksa
#: ../../../processing/app/BaseNoGui.java:521
!Error\ while\ verifying/uploading=
Error\ while\ verifying/uploading=Galat ketika memeriksa/mengunggah
#: Preferences.java:93
Estonian=Bahasa Estonia
@ -559,13 +571,9 @@ Examples=Contoh
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Ekspor dibatalkan, perubahan harus disimpan terlebih dahulu.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/BaseNoGui.java:460
#: ../../../../../app/src/processing/app/Base.java:251
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
Failed\ to\ open\ sketch\:\ "{0}"=Gagal membuka sketsa\: "{0}"
#: Editor.java:491
File=Berkas
@ -603,7 +611,7 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
#, java-format
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=
Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=Memaksa menyetel ulang menggunakan 1200bps buka / tutup pada port {0}
#: Preferences.java:95
French=Bahasa Perancis
@ -614,6 +622,9 @@ Frequently\ Asked\ Questions=Pertanyaan yang Sering Ditanyakan
#: Preferences.java:96
Galician=Bahasa Galisia
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Bahasa Georgia
@ -634,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Variabel global menggun
#: Preferences.java:98
Greek=Bahasa Yunani
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Bahasa Ibrani
@ -707,8 +706,11 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=Pustaka tel
#: Preferences.java:106
!Lithuaninan=
#: ../../../processing/app/debug/Compiler.java:333
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../processing/app/Sketch.java:1684
Low\ memory\ available,\ stability\ problems\ may\ occur.=Memori rendah tersedia, masalah stabilitas dapat terjadi.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -720,7 +722,7 @@ Message=Pesan
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Kehilangan * / dari akhir sebuah / * komentar * /
#: ../../../processing/app/BaseNoGui.java:455
!Mode\ not\ supported=
Mode\ not\ supported=Mode tidak didukung
#: Preferences.java:449
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Preferensi yang lebih dapat disunting langsung di berkas
@ -729,12 +731,12 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Preferensi yang lebi
Moving=Memindahkan
#: ../../../processing/app/BaseNoGui.java:484
!Multiple\ files\ not\ supported=
Multiple\ files\ not\ supported=Banyak berkas tidak didukung
#: ../../../processing/app/helpers/CommandlineParser.java:166
!Must\ specify\ exactly\ one\ sketch\ file=
#: ../../../processing/app/Base.java:395
Must\ specify\ exactly\ one\ sketch\ file=Harus menentukan setidaknya satu berkas sketsa
#: ../../../../../app/src/processing/app/Preferences.java:172
#: ../../../processing/app/Preferences.java:158
!N'Ko=
#: Sketch.java:282
@ -743,6 +745,9 @@ Name\ for\ new\ file\:=Nama untuk berkas baru\:
#: ../../../processing/app/Preferences.java:149
Nepali=Bahasa Nepal
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Unggah jaringan menggunakan programmer tidak didukung
@ -765,7 +770,7 @@ Next\ Tab=Tab Selanjutnya
No=Tidak
#: ../../../processing/app/debug/Compiler.java:146
!No\ athorization\ data\ found=
No\ athorization\ data\ found=Tidak ada data otorisasi ditemukan
#: debug/Compiler.java:126
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Tidak ada papan yang dipilih; silakan pilih sebuah papan dari Alat > menu Papan.
@ -802,7 +807,7 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu
#: ../../../processing/app/BaseNoGui.java:428
!No\ sketchbook=
#: ../../../processing/app/SketchData.java:135
#: ../../../processing/app/Sketch.java:204
!No\ valid\ code\ files\ found=
#: ../../../processing/app/Base.java:309
@ -818,9 +823,15 @@ No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
!Nope=
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -861,20 +872,20 @@ Open...=Buka...
#: Preferences.java:109
!Persian=
#: ../../../../../app/src/processing/app/Preferences.java:175
#: ../../../processing/app/Preferences.java:161
!Persian\ (Iran)=
#: debug/Compiler.java:408
!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
#: ../../../processing/app/debug/Compiler.java:807
#: ../../../processing/app/debug/Compiler.java:529
!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=Silakan instal JDK 1.5 atau lebih baru
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:249
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:294
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
#: Preferences.java:110
@ -1004,7 +1015,7 @@ Quit=Keluar
#: Editor.java:2270 Editor.java:2308
!Saving...=
#: ../../../../../app/src/processing/app/FindReplace.java:116
#: ../../../processing/app/FindReplace.java:131
!Search\ all\ Sketch\ Tabs=
#: Base.java:1909
@ -1039,6 +1050,9 @@ Quit=Keluar
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Mengatur masalah
@ -1091,6 +1105,9 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1127,18 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada
#: Base.java:540
!Sunshine=
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
!System\ Default=
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
!Tamil=
@ -1161,13 +1184,13 @@ Sketchbook\ folder\ disappeared=Folder sketchbook tidak ada
#: Sketch.java:1755
!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
#: ../../../../../app/src/processing/app/Sketch.java:1470
#: ../../../processing/app/Sketch.java:2028
!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=
#: Base.java:259
!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
#: ../../../processing/app/debug/Compiler.java:464
#: ../../../processing/app/debug/Compiler.java:201
!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=
#: Sketch.java:1075
@ -1244,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=Mengunggah ke papan I/O...
#: Sketch.java:1622
Uploading...=Mengunggah...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Gunakan Seleksi Untuk Cari
@ -1273,13 +1299,16 @@ Verify\ code\ after\ upload=Memeriksa kode setelah unggah
#: Editor.java:1105
Visit\ Arduino.cc=Kunjungi Arduino.cc
#: ../../../processing/app/debug/Compiler.java:375
#: ../../../processing/app/debug/Compiler.java:115
#, java-format
!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=
WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=PERINGATAN\: pustaka {0} mengklaim berjalan di {1} arsitektur (s) dan mungkin tidak kompatibel dengan papan saat ini yang berjalan pada arsitektur(s) {2}.
#: Base.java:2128
Warning=Peringatan
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() telah diubah namanya Wire.read().
@ -1369,9 +1398,6 @@ createNewFile()\ returned\ false=buatBerkasBaru() mengembalikan salah
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=diaktifkan pada Berkas > Preferensi.
#: Base.java:2090
environment=lingkungan
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=mengabaikan ukuran fonta tidak sah {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=nama adalah tidak ada
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu adalah tidak ada
@ -1404,9 +1421,9 @@ serialMenu\ is\ null=serialMenu adalah tidak ada
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=port serial yang terpilih {0} tidak ada atau papan anda tidak tersambung
#: ../../../processing/app/helpers/CommandlineParser.java:158
#: ../../../processing/app/Base.java:389
#, java-format
!unknown\ option\:\ {0}=
unknown\ option\:\ {0}=opsi tidak diketahui\: {0}
#: Preferences.java:391
upload=unggah
@ -1423,38 +1440,34 @@ upload=unggah
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#: ../../../processing/app/Base.java:519
#, java-format
{0}.html={0}.html
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argumen tidak valid untuk --pref, seharusnya dalam bentuk "preferensi\=nilai"
#: ../../../processing/app/helpers/CommandlineParser.java:226
#: ../../../processing/app/Base.java:476
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=
{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: Nama papan tidak sah, seharusnya dalam bentuk "paket\: arsitektur\: papan" atau "paket\: arsitektur\: papan\:opsi"
#: ../../../processing/app/helpers/CommandlineParser.java:183
#: ../../../processing/app/Base.java:509
#, java-format
!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"=
{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: Opsi tidak valid untuk "{1}" opsi untuk papan "{2}"
#: ../../../processing/app/helpers/CommandlineParser.java:216
#: ../../../processing/app/Base.java:507
#, java-format
!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"=
{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: Opsi tidak sah untuk papan "{1}"
#: ../../../processing/app/helpers/CommandlineParser.java:214
#: ../../../processing/app/Base.java:502
#, java-format
!{0}\:\ Invalid\ option\ for\ board\ "{1}"=
{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: Opsi tidak sah, seharusnya dalam bentuk "nama \= nilai"
#: ../../../processing/app/helpers/CommandlineParser.java:209
#: ../../../processing/app/Base.java:486
#, java-format
!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"=
{0}\:\ Unknown\ architecture={0}\: Arsitektur tidak diketahui
#: ../../../processing/app/helpers/CommandlineParser.java:193
#: ../../../processing/app/Base.java:491
#, java-format
!{0}\:\ Unknown\ architecture=
{0}\:\ Unknown\ board={0}\: Papan tidak diketahui
#: ../../../processing/app/helpers/CommandlineParser.java:198
#: ../../../processing/app/Base.java:481
#, java-format
!{0}\:\ Unknown\ board=
#: ../../../processing/app/helpers/CommandlineParser.java:188
#, java-format
!{0}\:\ Unknown\ package=
{0}\:\ Unknown\ package={0}\: Paket tidak diketahui

View File

@ -100,6 +100,10 @@ msgstr "Aggiungi file..."
msgid "Add Library..."
msgstr "Aggiungi libreria..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "Albanese"
@ -292,6 +296,10 @@ msgstr "Basco"
msgid "Belarusian"
msgstr "Bielorusso"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -588,10 +596,18 @@ msgstr "Taglia"
msgid "Czech"
msgstr "Ceco"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "Danese"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "Diminuisci indentazione"
@ -794,10 +810,6 @@ msgstr "Esempi"
msgid "Export canceled, changes must first be saved."
msgstr "Esportazione annullata, le modifiche devono essere prima salvate"
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -867,6 +879,10 @@ msgstr "Domande frequenti"
msgid "Galician"
msgstr "Galiziano"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "Georgiano"
@ -895,22 +911,6 @@ msgstr "Le variabili globali usano {0} byte di memoria dinamica."
msgid "Greek"
msgstr "Greco"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "Ebraico"
@ -1005,6 +1005,10 @@ msgstr "Lituano"
msgid "Low memory available, stability problems may occur."
msgstr "Poca memoria disponibile, potrebbero presentarsi problemi di stabilità."
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "Marathi"
@ -1049,6 +1053,10 @@ msgstr "Nome del nuovo file:"
msgid "Nepali"
msgstr "Nepalese"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "Il caricamento tramite un programmatore via rete non è supportato"
@ -1148,10 +1156,18 @@ msgstr "Errore non fatale durante la configurazione dell'aspetto grafico"
msgid "Nope"
msgstr "Per niente"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "Norvegese bokmål"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1448,6 +1464,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "Porta seriale {0} non trovata. Riprovare il caricamento con un'altra porta seriale?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "Problemi nelle impostazioni"
@ -1521,6 +1541,10 @@ msgstr "Percorso dello sketchbook non definito"
msgid "Sketches (*.ino, *.pde)"
msgstr "Sketch (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "Sloveno"
@ -1551,6 +1575,10 @@ msgstr "Spagnolo"
msgid "Sunshine"
msgstr "Sole splendente"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "Svedese"
@ -1559,6 +1587,10 @@ msgstr "Svedese"
msgid "System Default"
msgstr "Default di sistema"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "Tamil"
@ -1764,6 +1796,10 @@ msgstr "Sto caricando sulla scheda di I/O..."
msgid "Uploading..."
msgstr "Sto caricando..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "Trova testo selezionato"
@ -1813,6 +1849,10 @@ msgstr "ATTENZIONE: la libreria {0} dichiara di funzionare sulle architetture {1
msgid "Warning"
msgstr "Attenzione"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive() è stata rinominata Wire.read()"
@ -1969,10 +2009,6 @@ msgstr "createNewFile() ha restituito falso"
msgid "enabled in File > Preferences."
msgstr "abilitato in \"File > Impostazioni\""
#: Base.java:2090
msgid "environment"
msgstr "ambiente di sviluppo"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1985,27 +2021,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "Ignoro grandezza del font non valida {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name è nullo"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu è nullo"
@ -2040,11 +2064,6 @@ msgstr "{0} ha restituito {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -59,6 +59,9 @@ Add\ File...=Aggiungi file...
#: Base.java:963
Add\ Library...=Aggiungi libreria...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=Albanese
@ -192,6 +195,9 @@ Basque=Basco
#: ../../../processing/app/Preferences.java:139
Belarusian=Bielorusso
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=Scheda
@ -407,9 +413,15 @@ Cut=Taglia
#: ../../../processing/app/Preferences.java:83
Czech=Ceco
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=Danese
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=Diminuisci indentazione
@ -562,9 +574,6 @@ Examples=Esempi
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=Esportazione annullata, le modifiche devono essere prima salvate
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=Impossibile aprire lo sketch\: "{0}"
@ -616,6 +625,9 @@ Frequently\ Asked\ Questions=Domande frequenti
#: Preferences.java:96
Galician=Galiziano
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=Georgiano
@ -636,18 +648,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Le variabili globali us
#: Preferences.java:98
Greek=Greco
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=Ebraico
@ -712,6 +712,9 @@ Lithuaninan=Lituano
#: ../../../processing/app/Sketch.java:1684
Low\ memory\ available,\ stability\ problems\ may\ occur.=Poca memoria disponibile, potrebbero presentarsi problemi di stabilit\u00e0.
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=Marathi
@ -745,6 +748,9 @@ Name\ for\ new\ file\:=Nome del nuovo file\:
#: ../../../processing/app/Preferences.java:149
Nepali=Nepalese
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=Il caricamento tramite un programmatore via rete non \u00e8 supportato
@ -820,9 +826,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Errore non fatale durante
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=Per niente
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=Norvegese bokm\u00e5l
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=Memoria esaurita; guarda http\://www.arduino.cc/en/Guide/Troubleshooting\#size per consigli su come ridurne l'utilizzo.
@ -1041,6 +1053,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Porta seriale {0} non trovata. Riprovare il caricamento con un'altra porta seriale?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=Problemi nelle impostazioni
@ -1093,6 +1108,9 @@ Sketchbook\ path\ not\ defined=Percorso dello sketchbook non definito
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=Sketch (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=Sloveno
@ -1112,12 +1130,18 @@ Spanish=Spagnolo
#: Base.java:540
Sunshine=Sole splendente
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=Svedese
#: Preferences.java:84
System\ Default=Default di sistema
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=Tamil
@ -1246,6 +1270,9 @@ Uploading\ to\ I/O\ Board...=Sto caricando sulla scheda di I/O...
#: Sketch.java:1622
Uploading...=Sto caricando...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=Trova testo selezionato
@ -1282,6 +1309,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=Attenzione
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() \u00e8 stata rinominata Wire.read()
@ -1371,9 +1401,6 @@ createNewFile()\ returned\ false=createNewFile() ha restituito falso
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=abilitato in "File > Impostazioni"
#: Base.java:2090
environment=ambiente di sviluppo
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1383,22 +1410,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=Ignoro grandezza del font non valida {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name \u00e8 nullo
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu \u00e8 nullo
@ -1425,10 +1443,6 @@ upload=carica
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: Argomento non valido per --pref, dovrebbe essere nel formato "pref\=valore"

View File

@ -97,6 +97,10 @@ msgstr "הוסף קובץ..."
msgid "Add Library..."
msgstr "הוסף ספריה..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "אלבנית"
@ -289,6 +293,10 @@ msgstr "באסקית"
msgid "Belarusian"
msgstr "בלארוסית"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "גזור"
msgid "Czech"
msgstr "קזחסטן"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "דנית"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "הקטן הזחה"
@ -791,10 +807,6 @@ msgstr "דוגמאות"
msgid "Export canceled, changes must first be saved."
msgstr "חובה לשמור שינויים לפני, הייצוא בוטל."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "שאלות נפוצות"
msgid "Galician"
msgstr "גאלית"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "גרגוריאנית"
@ -892,22 +908,6 @@ msgstr "משתמשים גלובלים משתמשים ב{0} בייט של זכר
msgid "Greek"
msgstr "יוונית"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "עברית"
@ -1002,6 +1002,10 @@ msgstr "ליטאית"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "מארית"
@ -1046,6 +1050,10 @@ msgstr "שם קובץ חדש:"
msgid "Nepali"
msgstr "נפאלית"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "העלאת רשת בשימוש דרך (?) אינה נתמכת."
@ -1145,10 +1153,18 @@ msgstr "ארעה שגיאה לא קריטית בזמן שינוי המראה."
msgid "Nope"
msgstr "לא"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "נרווגית"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "פורט סיריאלי {0} לא נמצא.\nלנסות להעלות עם פורט סיריאלי אחר?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "בעיה בהגדרות"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1548,6 +1572,10 @@ msgstr "ספרדית"
msgid "Sunshine"
msgstr "אור שמש"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "שבדית"
@ -1556,6 +1584,10 @@ msgstr "שבדית"
msgid "System Default"
msgstr "ברירת מחדל של המערכת"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "טאמילית"
@ -1761,6 +1793,10 @@ msgstr "מעלה ללוח I/O"
msgid "Uploading..."
msgstr "מעלה..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "השתמש בבחירה לצורכי חיפוש"
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "אזהרה"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "()Wire.receive שונתה ל ()Wire.read."
@ -1966,10 +2006,6 @@ msgstr "createNewFile() החזיר ערך שלילי"
msgid "enabled in File > Preferences."
msgstr "מאופשר ב קובץ > העדפות"
#: Base.java:2090
msgid "environment"
msgstr "סביבה"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "מתעלם מגודל פונט לא חוקי {0}"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "השם ריק"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "תפריט סיריאלי ריק"
@ -2037,11 +2061,6 @@ msgstr "{0} החזיר {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | ארדואינו {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -17,7 +17,7 @@
#: Preferences.java:478
(edit\ only\ when\ Arduino\ is\ not\ running)=(\u05e2\u05e8\u05d5\u05da \u05e8\u05e7 \u05db\u05e9\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d0\u05d9\u05e0\u05d5 \u05d1\u05de\u05e6\u05d1 \u05e8\u05d9\u05e6\u05d4)
#: ../../../processing/app/helpers/CommandlineParser.java:172
#: ../../../processing/app/Base.java:468
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
#: Sketch.java:746
@ -56,8 +56,11 @@ Add\ File...=\u05d4\u05d5\u05e1\u05e3 \u05e7\u05d5\u05d1\u05e5...
#: Base.java:963
Add\ Library...=\u05d4\u05d5\u05e1\u05e3 \u05e1\u05e4\u05e8\u05d9\u05d4...
#: ../../../../../app/src/processing/app/Preferences.java:110
!Albanian=
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u05d0\u05dc\u05d1\u05e0\u05d9\u05ea
#: tools/FixEncoding.java:77
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u05d4\u05ea\u05e8\u05d7\u05e9\u05d4 \u05e9\u05d2\u05d0\u05d9\u05d4 \u05d1\u05e0\u05e1\u05d9\u05d5\u05df \u05dc\u05ea\u05e7\u05df \u05d0\u05ea \u05e7\u05d9\u05d3\u05d5\u05d3 \u05d4\u05e7\u05d5\u05d1\u05e5.\n\u05dc\u05d0 \u05dc\u05e0\u05e1\u05d5\u05ea \u05dc\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d4\u05d9\u05d0 \u05d9\u05db\u05d5\u05dc\u05d4 \u05dc\u05d3\u05e8\u05d5\u05e1\n\u05d0\u05ea \u05d4\u05d2\u05e8\u05e1\u05d0 \u05d4\u05d9\u05e9\u05e0\u05d4. \u05e0\u05d0 \u05dc\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1- \u05e4\u05ea\u05d7 \u05db\u05d3\u05d9 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d5\u05dc\u05e0\u05e1\u05d5\u05ea \u05e9\u05d5\u05d1.\n
@ -122,23 +125,23 @@ Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u05d4\u05d0\u05dd \u05d0\u05ea\u0
#: Sketch.java:587
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u05d4\u05d0\u05dd \u05d0\u05ea\u05d4 \u05d1\u05d8\u05d5\u05d7 \u05e9\u05d0\u05ea\u05d4 \u05e8\u05d5\u05e6\u05d4 \u05dc\u05de\u05d7\u05d5\u05e7 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05d4\u05d6\u05d5?
#: ../../../processing/app/helpers/CommandlineParser.java:100
!Argument\ required\ for\ --board=
#: ../../../processing/app/Base.java:356
Argument\ required\ for\ --board=\u05d0\u05e8\u05d2\u05d5\u05de\u05e0\u05d8 \u05d3\u05e8\u05d5\u05e9 \u05e2\u05d1\u05d5\u05e8 --board
#: ../../../processing/app/helpers/CommandlineParser.java:118
!Argument\ required\ for\ --curdir=
#: ../../../processing/app/Base.java:370
Argument\ required\ for\ --curdir=\u05d0\u05e8\u05d2\u05d5\u05de\u05e0\u05d8 \u05d3\u05e8\u05d5\u05e9 \u05e2\u05d1\u05d5\u05e8 --curdir
#: ../../../processing/app/helpers/CommandlineParser.java:60
#: ../../../processing/app/Base.java:385
!Argument\ required\ for\ --get-pref=
#: ../../../processing/app/helpers/CommandlineParser.java:109
!Argument\ required\ for\ --port=
#: ../../../processing/app/Base.java:363
Argument\ required\ for\ --port=\u05d0\u05e8\u05d2\u05d5\u05de\u05e0\u05d8 \u05d3\u05e8\u05d5\u05e9 \u05e2\u05d1\u05d5\u05e8 --port
#: ../../../processing/app/helpers/CommandlineParser.java:140
!Argument\ required\ for\ --pref=
#: ../../../processing/app/Base.java:377
Argument\ required\ for\ --pref=\u05d0\u05e8\u05d2\u05d5\u05de\u05e0\u05d8 \u05d3\u05e8\u05d5\u05e9 \u05e2\u05d1\u05d5\u05e8 --pref
#: ../../../processing/app/helpers/CommandlineParser.java:153
!Argument\ required\ for\ --preferences-file=
#: ../../../processing/app/Base.java:384
Argument\ required\ for\ --preferences-file=\u05d0\u05e8\u05d2\u05d5\u05de\u05e0\u05d8 \u05d3\u05e8\u05d5\u05e9 \u05e2\u05d1\u05d5\u05e8 --prereferences-files
#: ../../../processing/app/Preferences.java:137
Armenian=\u05d0\u05e8\u05de\u05e0\u05d9\u05ea
@ -183,12 +186,15 @@ Bad\ file\ selected=\u05e0\u05d1\u05d7\u05e8 \u05e7\u05d5\u05d1\u05e5 \u05dc\u05
#: ../../../processing/app/debug/Compiler.java:89
!Bad\ sketch\ primary\ file\ or\ bad\ sketch\ directory\ structure=
#: ../../../../../app/src/processing/app/Preferences.java:163
!Basque=
#: ../../../processing/app/Preferences.java:149
Basque=\u05d1\u05d0\u05e1\u05e7\u05d9\u05ea
#: ../../../processing/app/Preferences.java:139
Belarusian=\u05d1\u05dc\u05d0\u05e8\u05d5\u05e1\u05d9\u05ea
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u05dc\u05d5\u05d7
@ -212,8 +218,8 @@ Browse=\u05d7\u05e4\u05e9
#: Sketch.java:1392 Sketch.java:1423
Build\ folder\ disappeared\ or\ could\ not\ be\ written=\u05e1\u05e4\u05e8\u05d9\u05d4 \u05d4-build \u05e0\u05de\u05d7\u05e7\u05d4 \u05d0\u05d5 \u05e9\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05db\u05ea\u05d5\u05d1 \u05dc\u05ea\u05d5\u05db\u05d4
#: ../../../processing/app/debug/Compiler.java:211
!Build\ options\ changed,\ rebuilding\ all=
#: ../../../processing/app/Sketch.java:1530
Build\ options\ changed,\ rebuilding\ all=\u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d1\u05e0\u05d9\u05d9\u05d4 \u05d4\u05e9\u05ea\u05e0\u05d5, \u05d1\u05d5\u05e0\u05d4 \u05de\u05d7\u05d3\u05e9
#: ../../../processing/app/Preferences.java:80
Bulgarian=\u05d1\u05d5\u05dc\u05d2\u05e8\u05d9\u05ea
@ -227,7 +233,7 @@ Burn\ Bootloader=\u05e6\u05e8\u05d9\u05d1\u05ea \u05ea\u05d5\u05db\u05e0\u05ea \
#: Editor.java:2504
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u05e6\u05d5\u05e8\u05d1 \u05ea\u05d5\u05db\u05e0\u05ea \u05d4\u05e4\u05e2\u05dc\u05d4 \u05dc\u05dc\u05d5\u05d7 I\\O (\u05d6\u05d4 \u05d9\u05d9\u05de\u05e9\u05da \u05db\u05d3\u05e7\u05d4)...
#: ../../../processing/app/helpers/CommandlineParser.java:54
#: ../../../processing/app/Base.java:379
#, java-format
!Can\ only\ pass\ one\ of\:\ {0}=
@ -245,7 +251,7 @@ Cancel=\u05d1\u05d8\u05dc
#: Sketch.java:455
Cannot\ Rename=\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e8\u05d5\u05ea \u05dc\u05e9\u05e0\u05d5\u05ea \u05e9\u05dd
#: ../../../processing/app/helpers/CommandlineParser.java:169
#: ../../../processing/app/Base.java:465
!Cannot\ specify\ any\ sketch\ files=
#: SerialMonitor.java:112
@ -356,8 +362,8 @@ Could\ not\ re-save\ sketch=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05e9\u
#: Preferences.java:219
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u05d0\u05e8\u05e2\u05d4 \u05e9\u05d2\u05d9\u05d0\u05d4 \u05d1\u05e7\u05e8\u05d9\u05d0\u05ea \u05d4\u05d2\u05d3\u05e8\u05d5\u05ea \u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc.\n\u05d0\u05e0\u05d0 \u05d4\u05ea\u05e7\u05df \u05de\u05d7\u05d3\u05e9 \u05d0\u05ea \u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5.
#: ../../../processing/app/debug/Compiler.java:206
!Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=
#: ../../../processing/app/Sketch.java:1525
Could\ not\ read\ prevous\ build\ preferences\ file,\ rebuilding\ all=\u05dc\u05d0 \u05de\u05e1\u05d5\u05d2\u05dc \u05dc\u05e7\u05e8\u05d5\u05d0 \u05d0\u05e4\u05e9\u05e8\u05d5\u05d9\u05d5\u05ea \u05d1\u05e0\u05d9\u05d9\u05d4 \u05e7\u05d5\u05d3\u05de\u05d5\u05ea, \u05d1\u05d5\u05e0\u05d4 \u05d4\u05db\u05d5\u05dc
#: Base.java:2482
#, java-format
@ -380,8 +386,8 @@ Could\ not\ rename\ the\ sketch.\ (2)=\u05d0\u05d9\u05df \u05d0\u05e4\u05e9\u05e
#, java-format
Could\ not\ replace\ {0}=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05d7\u05dc\u05d9\u05e3 \u05d0\u05ea {0}
#: ../../../processing/app/debug/Compiler.java:107
!Could\ not\ write\ build\ preferences\ file=
#: ../../../processing/app/Sketch.java:1579
Could\ not\ write\ build\ preferences\ file=\u05dc\u05d0 \u05de\u05e1\u05d5\u05d2\u05dc \u05dc\u05db\u05ea\u05d5\u05d1 \u05dc\u05e7\u05d5\u05d1\u05e5 \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea \u05d1\u05e0\u05d9\u05d9\u05d4
#: tools/Archiver.java:74
Couldn't\ archive\ sketch=\u05dc\u05d0 \u05e0\u05d9\u05ea\u05df \u05dc\u05d4\u05db\u05e0\u05d9\u05e1 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05dc\u05d0\u05e8\u05db\u05d9\u05d5\u05df
@ -404,9 +410,15 @@ Cut=\u05d2\u05d6\u05d5\u05e8
#: ../../../processing/app/Preferences.java:83
Czech=\u05e7\u05d6\u05d7\u05e1\u05d8\u05df
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u05d3\u05e0\u05d9\u05ea
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u05d4\u05e7\u05d8\u05df \u05d4\u05d6\u05d7\u05d4
@ -559,13 +571,9 @@ Examples=\u05d3\u05d5\u05d2\u05de\u05d0\u05d5\u05ea
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u05d7\u05d5\u05d1\u05d4 \u05dc\u05e9\u05de\u05d5\u05e8 \u05e9\u05d9\u05e0\u05d5\u05d9\u05d9\u05dd \u05dc\u05e4\u05e0\u05d9, \u05d4\u05d9\u05d9\u05e6\u05d5\u05d0 \u05d1\u05d5\u05d8\u05dc.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/BaseNoGui.java:460
#: ../../../../../app/src/processing/app/Base.java:251
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
Failed\ to\ open\ sketch\:\ "{0}"=\u05dc\u05d0 \u05d4\u05e6\u05dc\u05d9\u05d7 \u05dc\u05e4\u05ea\u05d5\u05d7 \u05d0\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4\: "{0}"
#: Editor.java:491
File=\u05e7\u05d5\u05d1\u05e5
@ -614,6 +622,9 @@ Frequently\ Asked\ Questions=\u05e9\u05d0\u05dc\u05d5\u05ea \u05e0\u05e4\u05d5\u
#: Preferences.java:96
Galician=\u05d2\u05d0\u05dc\u05d9\u05ea
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\u05d2\u05e8\u05d2\u05d5\u05e8\u05d9\u05d0\u05e0\u05d9\u05ea
@ -634,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u05de\u05e9\u05ea\u05d
#: Preferences.java:98
Greek=\u05d9\u05d5\u05d5\u05e0\u05d9\u05ea
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\u05e2\u05d1\u05e8\u05d9\u05ea
@ -707,9 +706,12 @@ Library\ added\ to\ your\ libraries.\ Check\ "Import\ library"\ menu=\u05d4\u05e
#: Preferences.java:106
Lithuaninan=\u05dc\u05d9\u05d8\u05d0\u05d9\u05ea
#: ../../../processing/app/debug/Compiler.java:333
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u05de\u05d0\u05e8\u05d9\u05ea
@ -731,10 +733,10 @@ Moving=\u05de\u05e2\u05d1\u05d9\u05e8
#: ../../../processing/app/BaseNoGui.java:484
!Multiple\ files\ not\ supported=
#: ../../../processing/app/helpers/CommandlineParser.java:166
!Must\ specify\ exactly\ one\ sketch\ file=
#: ../../../processing/app/Base.java:395
Must\ specify\ exactly\ one\ sketch\ file=\u05e2\u05dc\u05d9\u05da \u05dc\u05e6\u05d9\u05d9\u05df \u05e7\u05d5\u05d1\u05e5 \u05e1\u05e7\u05d9\u05e6\u05d4 \u05d0\u05d7\u05d3 \u05d1\u05dc\u05d1\u05d3
#: ../../../../../app/src/processing/app/Preferences.java:172
#: ../../../processing/app/Preferences.java:158
!N'Ko=
#: Sketch.java:282
@ -743,6 +745,9 @@ Name\ for\ new\ file\:=\u05e9\u05dd \u05e7\u05d5\u05d1\u05e5 \u05d7\u05d3\u05e9\
#: ../../../processing/app/Preferences.java:149
Nepali=\u05e0\u05e4\u05d0\u05dc\u05d9\u05ea
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=\u05d4\u05e2\u05dc\u05d0\u05ea \u05e8\u05e9\u05ea \u05d1\u05e9\u05d9\u05de\u05d5\u05e9 \u05d3\u05e8\u05da (?) \u05d0\u05d9\u05e0\u05d4 \u05e0\u05ea\u05de\u05db\u05ea.
@ -802,8 +807,8 @@ No\ reference\ available\ for\ "{0}"=\u05d0\u05d9\u05df \u05d9\u05d9\u05d7\u05d5
#: ../../../processing/app/BaseNoGui.java:428
!No\ sketchbook=
#: ../../../processing/app/SketchData.java:135
!No\ valid\ code\ files\ found=
#: ../../../processing/app/Sketch.java:204
No\ valid\ code\ files\ found=\u05e7\u05d1\u05e6\u05d9 \u05e7\u05d5\u05d3 \u05e7\u05d1\u05d9\u05dc\u05d9\u05dd \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5
#: ../../../processing/app/Base.java:309
No\ valid\ configured\ cores\ found\!\ Exiting...=\u05dc\u05d0 \u05e0\u05de\u05e6\u05d0\u05d5 \u05dc\u05d9\u05d1\u05d5\u05ea \u05ea\u05e7\u05d9\u05e0\u05d5\u05ea-\u05de\u05d5\u05d2\u05d3\u05e8\u05d5\u05ea\! \u05d9\u05d5\u05e6\u05d0...
@ -818,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u05d0\u05e8\u05e2\u05d4 \
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u05dc\u05d0
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\u05e0\u05e8\u05d5\u05d5\u05d2\u05d9\u05ea
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -861,20 +872,20 @@ Paste=\u05d4\u05d3\u05d1\u05e7
#: Preferences.java:109
Persian=\u05e4\u05e8\u05e1\u05d9\u05ea
#: ../../../../../app/src/processing/app/Preferences.java:175
!Persian\ (Iran)=
#: ../../../processing/app/Preferences.java:161
Persian\ (Iran)=\u05e4\u05e8\u05e1\u05d9\u05ea (\u05d0\u05d9\u05e8\u05d0\u05df)
#: debug/Compiler.java:408
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u05d0\u05e0\u05d0 \u05d9\u05d9\u05d1\u05d0 \u05d0\u05ea \u05e1\u05e4\u05e8\u05d9\u05d9\u05ea \u05d4-SPI \u05de\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05e7\u05d9\u05e6\u05d4 -> \u05d9\u05d9\u05d1\u05d0 \u05e1\u05e4\u05e8\u05d9\u05d4.
#: ../../../processing/app/debug/Compiler.java:807
#: ../../../processing/app/debug/Compiler.java:529
!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
#: Base.java:239
Please\ install\ JDK\ 1.5\ or\ later=\u05d0\u05e0\u05d0 \u05d4\u05ea\u05e7\u05df JDK \u05d2\u05d9\u05e8\u05e1\u05d4 1.5 \u05d5\u05de\u05e2\u05dc\u05d4
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:249
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:294
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
#: Preferences.java:110
@ -1004,7 +1015,7 @@ Save\ sketch\ folder\ as...=\u05e9\u05de\u05d5\u05e8 \u05d0\u05ea \u05ea\u05d9\u
#: Editor.java:2270 Editor.java:2308
Saving...=\u05e9\u05d5\u05de\u05e8...
#: ../../../../../app/src/processing/app/FindReplace.java:116
#: ../../../processing/app/FindReplace.java:131
!Search\ all\ Sketch\ Tabs=
#: Base.java:1909
@ -1039,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u05e4\u05d5\u05e8\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 {0} \u05dc\u05d0 \u05e0\u05de\u05e6\u05d0.\n\u05dc\u05e0\u05e1\u05d5\u05ea \u05dc\u05d4\u05e2\u05dc\u05d5\u05ea \u05e2\u05dd \u05e4\u05d5\u05e8\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 \u05d0\u05d7\u05e8?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u05d1\u05e2\u05d9\u05d4 \u05d1\u05d4\u05d2\u05d3\u05e8\u05d5\u05ea
@ -1091,6 +1105,9 @@ Sketchbook\ location\:=\u05de\u05d9\u05e7\u05d5\u05dd \u05d7\u05d5\u05d1\u05e8\u
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1127,18 @@ Spanish=\u05e1\u05e4\u05e8\u05d3\u05d9\u05ea
#: Base.java:540
Sunshine=\u05d0\u05d5\u05e8 \u05e9\u05de\u05e9
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u05e9\u05d1\u05d3\u05d9\u05ea
#: Preferences.java:84
System\ Default=\u05d1\u05e8\u05d9\u05e8\u05ea \u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05d4\u05de\u05e2\u05e8\u05db\u05ea
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u05d8\u05d0\u05de\u05d9\u05dc\u05d9\u05ea
@ -1161,13 +1184,13 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
#: Sketch.java:1755
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u05ea\u05d9\u05e7\u05d9\u05d9\u05ea \u05d4\u05e1\u05e7\u05d9\u05e6\u05d4 \u05e0\u05e2\u05dc\u05de\u05d4. \u05d9\u05d1\u05d5\u05e6\u05e2 \u05e0\u05d9\u05e1\u05d9\u05d5\u05df \u05dc\u05e9\u05de\u05d5\u05e8 \u05de\u05d7\u05d3\u05e9 \u05d1\u05d0\u05d5\u05ea\u05d5 \u05de\u05d9\u05e7\u05d5\u05dd, \u05d0\u05d1\u05dc \u05db\u05dc \u05d4\u05d3\u05d1\u05e8\u05d9\u05dd \u05de\u05dc\u05d1\u05d3 \u05d4\u05e7\u05d5\u05d3 \u05d9\u05d9\u05de\u05d7\u05e7\u05d5.
#: ../../../../../app/src/processing/app/Sketch.java:1470
#: ../../../processing/app/Sketch.java:2028
!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=
#: Base.java:259
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u05d4\u05e1\u05e4\u05e8\u05d9\u05d4 \u05e9\u05dc \u05e1\u05e4\u05e8 \u05d4\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05dc\u05d0 \u05e7\u05d9\u05d9\u05de\u05ea \u05d9\u05d5\u05ea\u05e8.\n\u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d9\u05e9\u05ea\u05de\u05e9 \u05d1\u05de\u05d9\u05e7\u05d5\u05dd \u05d1\u05e8\u05d9\u05e8\u05ea \u05d4\u05de\u05d7\u05d3\u05dc \u05e9\u05dc \u05e1\u05e4\u05e8 \u05d4\u05e1\u05e7\u05d9\u05e6\u05d5\u05ea \u05d5\u05d9\u05e6\u05d5\u05e8 \u05e1\u05e4\u05e8\u05d9\u05d4 \u05d7\u05d3\u05e9\u05d4 \u05dc\u05e4\u05d9 \u05d4\u05e6\u05d5\u05e8\u05da.\n\u05d4\u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 \u05d9\u05e4\u05e1\u05d9\u05e7 \u05dc\u05d3\u05d1\u05e8 \u05e2\u05dc \u05e2\u05e6\u05de\u05d5 \u05d1\u05d2\u05d5\u05e3 \u05e9\u05dc\u05d9\u05e9\u05d9.
#: ../../../processing/app/debug/Compiler.java:464
#: ../../../processing/app/debug/Compiler.java:201
!Third-party\ platform.txt\ does\ not\ define\ compiler.path.\ Please\ report\ this\ to\ the\ third-party\ hardware\ maintainer.=
#: Sketch.java:1075
@ -1244,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=\u05de\u05e2\u05dc\u05d4 \u05dc\u05dc\u05d5\u05d7 I
#: Sketch.java:1622
Uploading...=\u05de\u05e2\u05dc\u05d4...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u05d4\u05e9\u05ea\u05de\u05e9 \u05d1\u05d1\u05d7\u05d9\u05e8\u05d4 \u05dc\u05e6\u05d5\u05e8\u05db\u05d9 \u05d7\u05d9\u05e4\u05d5\u05e9
@ -1273,13 +1299,16 @@ Vietnamese=\u05d5\u05d5\u05d9\u05d0\u05d8\u05e0\u05d0\u05de\u05d9\u05ea
#: Editor.java:1105
Visit\ Arduino.cc=\u05d1\u05e7\u05e8 \u05d1 Arduino.cc
#: ../../../processing/app/debug/Compiler.java:375
#: ../../../processing/app/debug/Compiler.java:115
#, java-format
!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=
#: Base.java:2128
Warning=\u05d0\u05d6\u05d4\u05e8\u05d4
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=()Wire.receive \u05e9\u05d5\u05e0\u05ea\u05d4 \u05dc ()Wire.read.
@ -1369,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile() \u05d4\u05d7\u05d6\u05d9\u05e8
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\u05de\u05d0\u05d5\u05e4\u05e9\u05e8 \u05d1 \u05e7\u05d5\u05d1\u05e5 > \u05d4\u05e2\u05d3\u05e4\u05d5\u05ea
#: Base.java:2090
environment=\u05e1\u05d1\u05d9\u05d1\u05d4
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u05de\u05ea\u05e2\u05dc\u05dd \u05de\u05d2\u05d5\u05d3\u05dc \u05e4\u05d5\u05e0\u05d8 \u05dc\u05d0 \u05d7\u05d5\u05e7\u05d9 {0}
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=\u05d4\u05e9\u05dd \u05e8\u05d9\u05e7
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 \u05e8\u05d9\u05e7
@ -1404,7 +1421,7 @@ serialMenu\ is\ null=\u05ea\u05e4\u05e8\u05d9\u05d8 \u05e1\u05d9\u05e8\u05d9\u05
#, java-format
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u05d4\u05e4\u05d5\u05e8\u05d8 \u05d4\u05e1\u05d9\u05e8\u05d9\u05d0\u05dc\u05d9 \u05e9\u05e0\u05d1\u05d7\u05e8 {0} \u05d0\u05d9\u05e0\u05d5 \u05e7\u05d9\u05d9\u05dd \u05d0\u05d5 \u05e9\u05d4\u05dc\u05d5\u05d7 \u05d0\u05d9\u05e0\u05d5 \u05de\u05d7\u05d5\u05d1\u05e8
#: ../../../processing/app/helpers/CommandlineParser.java:158
#: ../../../processing/app/Base.java:389
#, java-format
!unknown\ option\:\ {0}=
@ -1423,38 +1440,34 @@ upload=\u05d4\u05e2\u05dc\u05d0\u05d4
#, java-format
{0}\ |\ Arduino\ {1}={0} | \u05d0\u05e8\u05d3\u05d5\u05d0\u05d9\u05e0\u05d5 {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/helpers/CommandlineParser.java:226
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=
#: ../../../processing/app/helpers/CommandlineParser.java:183
#: ../../../processing/app/Base.java:476
#, java-format
!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"=
#: ../../../processing/app/helpers/CommandlineParser.java:216
#: ../../../processing/app/Base.java:509
#, java-format
!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"=
#: ../../../processing/app/helpers/CommandlineParser.java:214
#: ../../../processing/app/Base.java:507
#, java-format
!{0}\:\ Invalid\ option\ for\ board\ "{1}"=
#: ../../../processing/app/helpers/CommandlineParser.java:209
#: ../../../processing/app/Base.java:502
#, java-format
!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"=
#: ../../../processing/app/helpers/CommandlineParser.java:193
#: ../../../processing/app/Base.java:486
#, java-format
!{0}\:\ Unknown\ architecture=
#: ../../../processing/app/helpers/CommandlineParser.java:198
#: ../../../processing/app/Base.java:491
#, java-format
!{0}\:\ Unknown\ board=
#: ../../../processing/app/helpers/CommandlineParser.java:188
#: ../../../processing/app/Base.java:481
#, java-format
!{0}\:\ Unknown\ package=

View File

@ -98,6 +98,10 @@ msgstr "ファイルを追加..."
msgid "Add Library..."
msgstr "ライブラリをインストール..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "アルバニア語"
@ -290,6 +294,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "切り取り"
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "デンマーク語"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "インデントを減らす"
@ -792,10 +808,6 @@ msgstr "スケッチの例"
msgid "Export canceled, changes must first be saved."
msgstr "エクスポートを中止しました。エクスポートを行う前に保存する必要があります。"
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "よくある質問"
msgid "Galician"
msgstr "ガリシア語"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -893,22 +909,6 @@ msgstr "グローバル変数は {0}バイトの動的メモリを使用して
msgid "Greek"
msgstr "ギリシア語"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1003,6 +1003,10 @@ msgstr "リトアニア語"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "マラーティ語"
@ -1047,6 +1051,10 @@ msgstr "新規ファイルの名前:"
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1146,10 +1154,18 @@ msgstr "GUIの挙動の設定中にエラーが発生しましたが、重大で
msgid "Nope"
msgstr "エラー"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "シリアルポート「{0}」が存在しません。\nシリアルポートを変更して、もう一度書き込みますか"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "設定に関する問題"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "スケッチ (*.ino, *pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1549,6 +1573,10 @@ msgstr "スペイン語"
msgid "Sunshine"
msgstr "終わりにしましょう"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1557,6 +1585,10 @@ msgstr ""
msgid "System Default"
msgstr "パソコンの設定に従う"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "タミル語"
@ -1762,6 +1794,10 @@ msgstr "マイコンボードに書き込んでいます..."
msgid "Uploading..."
msgstr "マイコンボードに書き込んでいます..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "選択されている文字列を検索"
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr "警告"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "「Wire.receive()」は、「Wire.read()」に名称変更されました。"
@ -1967,10 +2007,6 @@ msgstr "createNewFile()がfalseを返しました。"
msgid "enabled in File > Preferences."
msgstr "ファイル > 設定 で有効にする"
#: Base.java:2090
msgid "environment"
msgstr "environment"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "フォントサイズの指定「{0}」が異常なので無視します。"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "nameがnullです"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenuがnullです"
@ -2038,11 +2062,6 @@ msgstr "{0}が{1}を返しました。"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0...
#: Base.java:963
Add\ Library...=\u30e9\u30a4\u30d6\u30e9\u30ea\u3092\u30a4\u30f3\u30b9\u30c8\u30fc\u30eb...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u30a2\u30eb\u30d0\u30cb\u30a2\u8a9e
@ -190,6 +193,9 @@ Bad\ file\ selected=\u9593\u9055\u3063\u305f\u30d5\u30a1\u30a4\u30eb\u3092\u958b
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u30dc\u30fc\u30c9
@ -405,9 +411,15 @@ Cut=\u5207\u308a\u53d6\u308a
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u30c7\u30f3\u30de\u30fc\u30af\u8a9e
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u30a4\u30f3\u30c7\u30f3\u30c8\u3092\u6e1b\u3089\u3059
@ -560,9 +572,6 @@ Examples=\u30b9\u30b1\u30c3\u30c1\u306e\u4f8b
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=\u3088\u304f\u3042\u308b\u8cea\u554f
#: Preferences.java:96
Galician=\u30ac\u30ea\u30b7\u30a2\u8a9e
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -634,18 +646,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u30b0\u30ed\u30fc\u30d
#: Preferences.java:98
Greek=\u30ae\u30ea\u30b7\u30a2\u8a9e
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -710,6 +710,9 @@ Lithuaninan=\u30ea\u30c8\u30a2\u30cb\u30a2\u8a9e
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u30de\u30e9\u30fc\u30c6\u30a3\u8a9e
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=\u65b0\u898f\u30d5\u30a1\u30a4\u30eb\u306e\u540d\u524d\uf
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI\u306e\u6319\u52d5\u306
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u30a8\u30e9\u30fc
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u5341\u5206\u306a\u30e1\u30e2\u30ea\u304c\u3042\u308a\u307e\u305b\u3093\u3002\nhttp\://www.arduino.cc/en/Guide/Troubleshooting\#size\n\u306b\u3066\u30d5\u30c3\u30c8\u30d7\u30ea\u30f3\u30c8\u3092\u7bc0\u7d04\u3059\u308b\u305f\u3081\u306e\u65b9\u6cd5\u3092\u95b2\u89a7\u3067\u304d\u307e\u3059\u3002
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u5909\u66f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u66f8\u304d\u8fbc\u307f\u307e\u3059\u304b\uff1f
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u8a2d\u5b9a\u306b\u95a2\u3059\u308b\u554f\u984c
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=\u30b9\u30b1\u30c3\u30c1 (*.ino, *pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1128,18 @@ Spanish=\u30b9\u30da\u30a4\u30f3\u8a9e
#: Base.java:540
Sunshine=\u7d42\u308f\u308a\u306b\u3057\u307e\u3057\u3087\u3046
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
System\ Default=\u30d1\u30bd\u30b3\u30f3\u306e\u8a2d\u5b9a\u306b\u5f93\u3046
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u30bf\u30df\u30eb\u8a9e
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u6
#: Sketch.java:1622
Uploading...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u9078\u629e\u3055\u308c\u3066\u3044\u308b\u6587\u5b57\u5217\u3092\u691c\u7d22
@ -1280,6 +1307,9 @@ Visit\ Arduino.cc=Arduino.cc\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u958b\u30
#: Base.java:2128
Warning=\u8b66\u544a
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=\u300cWire.receive()\u300d\u306f\u3001\u300cWire.read()\u300d\u306b\u540d\u79f0\u5909\u66f4\u3055\u308c\u307e\u3057\u305f\u3002
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile()\u304cfalse\u3092\u8fd4\u3057\u3
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\u30d5\u30a1\u30a4\u30eb > \u8a2d\u5b9a \u3067\u6709\u52b9\u306b\u3059\u308b
#: Base.java:2090
environment=environment
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u30d5\u30a9\u30f3\u30c8\u30b5\u30a4\u30ba\u306e\u6307\u5b9a\u300c{0}\u300d\u304c\u7570\u5e38\u306a\u306e\u3067\u7121\u8996\u3057\u307e\u3059\u3002
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name\u304cnull\u3067\u3059
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu\u304cnull\u3067\u3059
@ -1423,10 +1441,6 @@ upload=\u66f8\u304d\u8fbc\u307f
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -98,6 +98,10 @@ msgstr "ფაილის დამატება..."
msgid "Add Library..."
msgstr "ბიბლიოთეკის დამატება..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr "ალბანური"
@ -290,6 +294,10 @@ msgstr "ბასკური"
msgid "Belarusian"
msgstr "ბელარუსული"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr "ამოჭრა"
msgid "Czech"
msgstr "ჩეხური"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "დანიური"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "დაშორების შემცირება"
@ -792,10 +808,6 @@ msgstr "მაგალითები"
msgid "Export canceled, changes must first be saved."
msgstr "გატანა გაუქმებულია, რადგან ჯერ საჭიროა შეინახოთ ცვლილებები."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr "ხშირად დასმული შეკითხვები"
msgid "Galician"
msgstr "გალისიური"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "ქართული"
@ -893,22 +909,6 @@ msgstr "გლობალური ცვლადები იყენებ
msgid "Greek"
msgstr "ბერძნული"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "ებრაული"
@ -1003,6 +1003,10 @@ msgstr "ლიტვური"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "მარათჰი"
@ -1047,6 +1051,10 @@ msgstr "ახალი ფაილის სახელი:"
msgid "Nepali"
msgstr "ნეპალური"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "მხარდაუჭერელია პროგრამატორის მეშვეობით ქსელური ატვირთვა"
@ -1146,10 +1154,18 @@ msgstr "შეცდომა გაფორმების დაყენე
msgid "Nope"
msgstr "არა"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "ნორვეგიული ბუკმოლი"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "მიმდეცრობითი პორტი {0} ვერ მოიძებნა.\nგსურთ სცადოთ სხვა მიმდევრობითი პორტით?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "მომართვის დაბრკოლება"
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "ჩანახატები (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "სლოვენური"
@ -1549,6 +1573,10 @@ msgstr "ესპანური"
msgid "Sunshine"
msgstr "მზიანი ამინდია"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "შვედური"
@ -1557,6 +1585,10 @@ msgstr "შვედური"
msgid "System Default"
msgstr "სისტემის ნაგულისხმები"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "ტამილური"
@ -1762,6 +1794,10 @@ msgstr "ატვირთვა I/O დაფაში..."
msgid "Uploading..."
msgstr "ატვირთვა..."
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "ძიება მონიშნულში"
@ -1811,6 +1847,10 @@ msgstr "გაფრთხილება: ბიბლიოთეკა {0}
msgid "Warning"
msgstr "გაფრთხილება"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive()-ის ახალი სახელია Wire.read()."
@ -1967,10 +2007,6 @@ msgstr "createNewFile() დააბრუნა უარყოფა"
msgid "enabled in File > Preferences."
msgstr "ჩართულია მენიუში ფაილი > პარამეტრები."
#: Base.java:2090
msgid "environment"
msgstr "environment"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "შრიფტის ბათილი ზომა {0} უგულებელყოფილია"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name არის ბათილი"
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu არის ბათილი"
@ -2038,11 +2062,6 @@ msgstr "{0}-მ დააბრუნა {1}"
msgid "{0} | Arduino {1}"
msgstr "{0} | Arduino {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@ Add\ File...=\u10e4\u10d0\u10d8\u10da\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2
#: Base.java:963
Add\ Library...=\u10d1\u10d8\u10d1\u10da\u10d8\u10dd\u10d7\u10d4\u10d9\u10d8\u10e1 \u10d3\u10d0\u10db\u10d0\u10e2\u10d4\u10d1\u10d0...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
Albanian=\u10d0\u10da\u10d1\u10d0\u10dc\u10e3\u10e0\u10d8
@ -190,6 +193,9 @@ Basque=\u10d1\u10d0\u10e1\u10d9\u10e3\u10e0\u10d8
#: ../../../processing/app/Preferences.java:139
Belarusian=\u10d1\u10d4\u10da\u10d0\u10e0\u10e3\u10e1\u10e3\u10da\u10d8
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\u10d3\u10d0\u10e4\u10d0
@ -405,9 +411,15 @@ Cut=\u10d0\u10db\u10dd\u10ed\u10e0\u10d0
#: ../../../processing/app/Preferences.java:83
Czech=\u10e9\u10d4\u10ee\u10e3\u10e0\u10d8
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\u10d3\u10d0\u10dc\u10d8\u10e3\u10e0\u10d8
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\u10d3\u10d0\u10e8\u10dd\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10db\u10ea\u10d8\u10e0\u10d4\u10d1\u10d0
@ -560,9 +572,6 @@ Examples=\u10db\u10d0\u10d2\u10d0\u10da\u10d8\u10d7\u10d4\u10d1\u10d8
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u10d2\u10d0\u10e2\u10d0\u10dc\u10d0 \u10d2\u10d0\u10e3\u10e5\u10db\u10d4\u10d1\u10e3\u10da\u10d8\u10d0, \u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10ef\u10d4\u10e0 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd\u10d0 \u10e8\u10d4\u10d8\u10dc\u10d0\u10ee\u10dd\u10d7 \u10ea\u10d5\u10da\u10d8\u10da\u10d4\u10d1\u10d4\u10d1\u10d8.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\u10d5\u10d4\u10e0 \u10db\u10dd\u10ee\u10d4\u10e0\u10ee\u10d3\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10d2\u10d0\u10ee\u10e1\u10dc\u10d0\: "{0}"
@ -614,6 +623,9 @@ Frequently\ Asked\ Questions=\u10ee\u10e8\u10d8\u10e0\u10d0\u10d3 \u10d3\u10d0\u
#: Preferences.java:96
Galician=\u10d2\u10d0\u10da\u10d8\u10e1\u10d8\u10e3\u10e0\u10d8
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\u10e5\u10d0\u10e0\u10d7\u10e3\u10da\u10d8
@ -634,18 +646,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u10d2\u10da\u10dd\u10d
#: Preferences.java:98
Greek=\u10d1\u10d4\u10e0\u10eb\u10dc\u10e3\u10da\u10d8
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\u10d4\u10d1\u10e0\u10d0\u10e3\u10da\u10d8
@ -710,6 +710,9 @@ Lithuaninan=\u10da\u10d8\u10e2\u10d5\u10e3\u10e0\u10d8
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\u10db\u10d0\u10e0\u10d0\u10d7\u10f0\u10d8
@ -743,6 +746,9 @@ Name\ for\ new\ file\:=\u10d0\u10ee\u10d0\u10da\u10d8 \u10e4\u10d0\u10d8\u10da\u
#: ../../../processing/app/Preferences.java:149
Nepali=\u10dc\u10d4\u10de\u10d0\u10da\u10e3\u10e0\u10d8
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=\u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10e3\u10ed\u10d4\u10e0\u10d4\u10da\u10d8\u10d0 \u10de\u10e0\u10dd\u10d2\u10e0\u10d0\u10db\u10d0\u10e2\u10dd\u10e0\u10d8\u10e1 \u10db\u10d4\u10e8\u10d5\u10d4\u10dd\u10d1\u10d8\u10d7 \u10e5\u10e1\u10d4\u10da\u10e3\u10e0\u10d8 \u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0
@ -818,9 +824,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=\u10e8\u10d4\u10ea\u10d3\u
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\u10d0\u10e0\u10d0
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\u10dc\u10dd\u10e0\u10d5\u10d4\u10d2\u10d8\u10e3\u10da\u10d8 \u10d1\u10e3\u10d9\u10db\u10dd\u10da\u10d8
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u10db\u10d4\u10ee\u10e1\u10d8\u10d4\u10e0\u10d4\u10d1\u10d0 \u10d0\u10e0\u10d0\u10e1\u10d0\u10d9\u10db\u10d0\u10e0\u10d8\u10e1\u10d8\u10d0; \u10d8\u10ee\u10d8\u10da\u10d4\u10d7 http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u10d8\u10db\u10d8\u10e1\u10d7\u10d5\u10d8\u10e1 \u10e0\u10dd\u10db \u10d2\u10d0\u10d4\u10ea\u10dc\u10dd\u10d7 \u10db\u10d8\u10d7\u10d8\u10d7\u10d4\u10d1\u10d4\u10d1\u10e1 \u10e1\u10d0\u10ed\u10d8\u10e0\u10dd \u10db\u10d4\u10ee\u10e1\u10d8\u10d4\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10db\u10ea\u10d8\u10e0\u10d4\u10d1\u10d8\u10e1 \u10e8\u10d4\u10e1\u10d0\u10ee\u10d4\u10d1.
@ -1039,6 +1051,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u10db\u10d8\u10db\u10d3\u10d4\u10ea\u10e0\u10dd\u10d1\u10d8\u10d7\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8 {0} \u10d5\u10d4\u10e0 \u10db\u10dd\u10d8\u10eb\u10d4\u10d1\u10dc\u10d0.\n\u10d2\u10e1\u10e3\u10e0\u10d7 \u10e1\u10ea\u10d0\u10d3\u10dd\u10d7 \u10e1\u10ee\u10d5\u10d0 \u10db\u10d8\u10db\u10d3\u10d4\u10d5\u10e0\u10dd\u10d1\u10d8\u10d7\u10d8 \u10de\u10dd\u10e0\u10e2\u10d8\u10d7?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\u10db\u10dd\u10db\u10d0\u10e0\u10d7\u10d5\u10d8\u10e1 \u10d3\u10d0\u10d1\u10e0\u10d9\u10dd\u10da\u10d4\u10d1\u10d0
@ -1091,6 +1106,9 @@ Sketchbook\ location\:=\u10d0\u10da\u10d1\u10dd\u10db\u10d8\u10e1 \u10db\u10d3\u
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=\u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d4\u10d1\u10d8 (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=\u10e1\u10da\u10dd\u10d5\u10d4\u10dc\u10e3\u10e0\u10d8
@ -1110,12 +1128,18 @@ Spanish=\u10d4\u10e1\u10de\u10d0\u10dc\u10e3\u10e0\u10d8
#: Base.java:540
Sunshine=\u10db\u10d6\u10d8\u10d0\u10dc\u10d8 \u10d0\u10db\u10d8\u10dc\u10d3\u10d8\u10d0
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\u10e8\u10d5\u10d4\u10d3\u10e3\u10e0\u10d8
#: Preferences.java:84
System\ Default=\u10e1\u10d8\u10e1\u10e2\u10d4\u10db\u10d8\u10e1 \u10dc\u10d0\u10d2\u10e3\u10da\u10d8\u10e1\u10ee\u10db\u10d4\u10d1\u10d8
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\u10e2\u10d0\u10db\u10d8\u10da\u10e3\u10e0\u10d8
@ -1244,6 +1268,9 @@ Uploading\ to\ I/O\ Board...=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0 I/
#: Sketch.java:1622
Uploading...=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0...
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\u10eb\u10d8\u10d4\u10d1\u10d0 \u10db\u10dd\u10dc\u10d8\u10e8\u10dc\u10e3\u10da\u10e8\u10d8
@ -1280,6 +1307,9 @@ WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be
#: Base.java:2128
Warning=\u10d2\u10d0\u10e4\u10e0\u10d7\u10ee\u10d8\u10da\u10d4\u10d1\u10d0
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()-\u10d8\u10e1 \u10d0\u10ee\u10d0\u10da\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10d0 Wire.read().
@ -1369,9 +1399,6 @@ createNewFile()\ returned\ false=createNewFile() \u10d3\u10d0\u10d0\u10d1\u10e0\
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\u10e9\u10d0\u10e0\u10d7\u10e3\u10da\u10d8\u10d0 \u10db\u10d4\u10dc\u10d8\u10e3\u10e8\u10d8 \u10e4\u10d0\u10d8\u10da\u10d8 > \u10de\u10d0\u10e0\u10d0\u10db\u10d4\u10e2\u10e0\u10d4\u10d1\u10d8.
#: Base.java:2090
environment=environment
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\u10e8\u10e0\u10d8\u10e4\u10e2\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d8 \u10d6\u10dd\u10db\u10d0 {0} \u10e3\u10d2\u10e3\u10da\u10d4\u10d1\u10d4\u10da\u10e7\u10dd\u10e4\u10d8\u10da\u10d8\u10d0
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d8
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu \u10d0\u10e0\u10d8\u10e1 \u10d1\u10d0\u10d7\u10d8\u10da\u10d8
@ -1423,10 +1441,6 @@ upload=\u10d0\u10e2\u10d5\u10d8\u10e0\u10d7\u10d5\u10d0
#, java-format
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -97,6 +97,10 @@ msgstr "파일 추가…"
msgid "Add Library..."
msgstr "라이브러리 추가…"
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -289,6 +293,10 @@ msgstr ""
msgid "Belarusian"
msgstr "벨로루시어"
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -585,10 +593,18 @@ msgstr "잘라내기"
msgid "Czech"
msgstr "체코어"
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr "덴마크어"
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr "들여쓰기 삭제"
@ -791,10 +807,6 @@ msgstr "예제"
msgid "Export canceled, changes must first be saved."
msgstr "내보내기 취소, 변경 사항은 먼저 저장되야 합니다."
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -864,6 +876,10 @@ msgstr "자주 묻는 질문"
msgid "Galician"
msgstr "갈리시아어"
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr "조지안어"
@ -892,22 +908,6 @@ msgstr "전역 변수는 {0} 바이트의 동적 메모리를 사용."
msgid "Greek"
msgstr "그리스어"
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr "히브리어"
@ -1002,6 +1002,10 @@ msgstr "리투아니아어"
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr "마라티어"
@ -1046,6 +1050,10 @@ msgstr "새로운 파일을 위한 이름:"
msgid "Nepali"
msgstr "네팔어"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr "프로그래머를 사용한 네트워크 업로드는 지원하지 않음"
@ -1145,10 +1153,18 @@ msgstr "GUI 동작을 설정할 때 에러가 발생을 했지만 치명적이
msgid "Nope"
msgstr "아니요"
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr "노르웨이 브크몰어"
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1445,6 +1461,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr "시리얼 포트 {0} 를 찾을 수 없습니다.\n다른 시리얼 포트로 업로드를 다시 시도하시겠습니까?"
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr "설정 문제"
@ -1518,6 +1538,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr "스케치 (*.ino, *.pde)"
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr "슬로베니아어"
@ -1548,6 +1572,10 @@ msgstr "스페인어"
msgid "Sunshine"
msgstr "햇살"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr "스웨덴어"
@ -1556,6 +1584,10 @@ msgstr "스웨덴어"
msgid "System Default"
msgstr "시스템 기본설정"
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr "타밀어"
@ -1761,6 +1793,10 @@ msgstr "I/O 보드에 업로드…"
msgid "Uploading..."
msgstr "업로딩…"
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr "찾기위해 선택된 부분을 사용"
@ -1810,6 +1846,10 @@ msgstr ""
msgid "Warning"
msgstr "경고"
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr "Wire.receive()는 Wire.read()로 이름이 변경되었습니다."
@ -1966,10 +2006,6 @@ msgstr "createNewFile()가 false를 반환했습니다"
msgid "enabled in File > Preferences."
msgstr "파일 > 설정에 사용가능하게 됨"
#: Base.java:2090
msgid "environment"
msgstr "환경설정"
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1982,27 +2018,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr "잘못된 글꼴 크기 {0}를 무시"
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr "name 이 null입니다."
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr "serialMenu가 Null입니다"
@ -2037,11 +2061,6 @@ msgstr "{0} 가 {1}를 리턴했습니다"
msgid "{0} | Arduino {1}"
msgstr "{0} | 아두이노 {1}"
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -56,6 +56,9 @@ Add\ File...=\ud30c\uc77c \ucd94\uac00\u2026
#: Base.java:963
Add\ Library...=\ub77c\uc774\ube0c\ub7ec\ub9ac \ucd94\uac00\u2026
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -189,6 +192,9 @@ Bad\ file\ selected=\uc798\ubabb\ub41c \ud30c\uc77c\uc774 \uc120\ud0dd\ub410\uc2
#: ../../../processing/app/Preferences.java:139
Belarusian=\ubca8\ub85c\ub8e8\uc2dc\uc5b4
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
Board=\ubcf4\ub4dc
@ -404,9 +410,15 @@ Cut=\uc798\ub77c\ub0b4\uae30
#: ../../../processing/app/Preferences.java:83
Czech=\uccb4\ucf54\uc5b4
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
Danish=\ub374\ub9c8\ud06c\uc5b4
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
Decrease\ Indent=\ub4e4\uc5ec\uc4f0\uae30 \uc0ad\uc81c
@ -559,9 +571,6 @@ Examples=\uc608\uc81c
#: Editor.java:2482
Export\ canceled,\ changes\ must\ first\ be\ saved.=\ub0b4\ubcf4\ub0b4\uae30 \ucde8\uc18c, \ubcc0\uacbd \uc0ac\ud56d\uc740 \uba3c\uc800 \uc800\uc7a5\ub418\uc57c \ud569\ub2c8\ub2e4.
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
Failed\ to\ open\ sketch\:\ "{0}"=\uc5f4\uae30 \uc2e4\ud328 \uc2a4\ucf00\uce58\: "{0}"
@ -613,6 +622,9 @@ Frequently\ Asked\ Questions=\uc790\uc8fc \ubb3b\ub294 \uc9c8\ubb38
#: Preferences.java:96
Galician=\uac08\ub9ac\uc2dc\uc544\uc5b4
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
Georgian=\uc870\uc9c0\uc548\uc5b4
@ -633,18 +645,6 @@ Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\uc804\uc5ed \ubcc0\uc2
#: Preferences.java:98
Greek=\uadf8\ub9ac\uc2a4\uc5b4
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
Hebrew=\ud788\ube0c\ub9ac\uc5b4
@ -709,6 +709,9 @@ Lithuaninan=\ub9ac\ud22c\uc544\ub2c8\uc544\uc5b4
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
Marathi=\ub9c8\ub77c\ud2f0\uc5b4
@ -742,6 +745,9 @@ Name\ for\ new\ file\:=\uc0c8\ub85c\uc6b4 \ud30c\uc77c\uc744 \uc704\ud55c \uc774
#: ../../../processing/app/Preferences.java:149
Nepali=\ub124\ud314\uc5b4
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
Network\ upload\ using\ programmer\ not\ supported=\ud504\ub85c\uadf8\ub798\uba38\ub97c \uc0ac\uc6a9\ud55c \ub124\ud2b8\uc6cc\ud06c \uc5c5\ub85c\ub4dc\ub294 \uc9c0\uc6d0\ud558\uc9c0 \uc54a\uc74c
@ -817,9 +823,15 @@ Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI \ub3d9\uc791\uc744 \uc
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
Nope=\uc544\ub2c8\uc694
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
Norwegian\ Bokm\u00e5l=\ub178\ub974\uc6e8\uc774 \ube0c\ud06c\ubab0\uc5b4
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\uba54\ubaa8\ub9ac\uac00 \ucda9\ubd84\ud558\uc9c0 \uc54a\uc74c; \uba54\ubaa8\ub9ac\ub97c \uc904\uc774\uae30 \uc704\ud55c \ud301\uc744 \uc704\ud574 \ucc38\uace0 http\://www.arduino.cc/en/Guide/Troubleshooting\#size
@ -1038,6 +1050,9 @@ Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the
#, java-format
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\uc2dc\ub9ac\uc5bc \ud3ec\ud2b8 {0} \ub97c \ucc3e\uc744 \uc218 \uc5c6\uc2b5\ub2c8\ub2e4.\n\ub2e4\ub978 \uc2dc\ub9ac\uc5bc \ud3ec\ud2b8\ub85c \uc5c5\ub85c\ub4dc\ub97c \ub2e4\uc2dc \uc2dc\ub3c4\ud558\uc2dc\uaca0\uc2b5\ub2c8\uae4c?
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
Settings\ issues=\uc124\uc815 \ubb38\uc81c
@ -1090,6 +1105,9 @@ Sketchbook\ location\:=\uc2a4\ucf00\uce58\ubd81 \uc704\uce58\:
#: ../../../processing/app/Base.java:785
Sketches\ (*.ino,\ *.pde)=\uc2a4\ucf00\uce58 (*.ino, *.pde)
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
Slovenian=\uc2ac\ub85c\ubca0\ub2c8\uc544\uc5b4
@ -1109,12 +1127,18 @@ Spanish=\uc2a4\ud398\uc778\uc5b4
#: Base.java:540
Sunshine=\ud587\uc0b4
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
Swedish=\uc2a4\uc6e8\ub374\uc5b4
#: Preferences.java:84
System\ Default=\uc2dc\uc2a4\ud15c \uae30\ubcf8\uc124\uc815
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
Tamil=\ud0c0\ubc00\uc5b4
@ -1243,6 +1267,9 @@ Uploading\ to\ I/O\ Board...=I/O \ubcf4\ub4dc\uc5d0 \uc5c5\ub85c\ub4dc\u2026
#: Sketch.java:1622
Uploading...=\uc5c5\ub85c\ub529\u2026
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
Use\ Selection\ For\ Find=\ucc3e\uae30\uc704\ud574 \uc120\ud0dd\ub41c \ubd80\ubd84\uc744 \uc0ac\uc6a9
@ -1279,6 +1306,9 @@ Visit\ Arduino.cc=Arduino.cc \ubc29\ubb38\ud558\uae30
#: Base.java:2128
Warning=\uacbd\uace0
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()\ub294 Wire.read()\ub85c \uc774\ub984\uc774 \ubcc0\uacbd\ub418\uc5c8\uc2b5\ub2c8\ub2e4.
@ -1368,9 +1398,6 @@ createNewFile()\ returned\ false=createNewFile()\uac00 false\ub97c \ubc18\ud658\
#: ../../../processing/app/EditorStatus.java:469
enabled\ in\ File\ >\ Preferences.=\ud30c\uc77c > \uc124\uc815\uc5d0 \uc0ac\uc6a9\uac00\ub2a5\ud558\uac8c \ub428
#: Base.java:2090
environment=\ud658\uacbd\uc124\uc815
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1380,22 +1407,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
ignoring\ invalid\ font\ size\ {0}=\uc798\ubabb\ub41c \uae00\uaf34 \ud06c\uae30 {0}\ub97c \ubb34\uc2dc
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
name\ is\ null=name \uc774 null\uc785\ub2c8\ub2e4.
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
serialMenu\ is\ null=serialMenu\uac00 Null\uc785\ub2c8\ub2e4
@ -1422,10 +1440,6 @@ upload=\uc5c5\ub85c\ub4dc
#, java-format
{0}\ |\ Arduino\ {1}={0} | \uc544\ub450\uc774\ub178 {1}
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

View File

@ -98,6 +98,10 @@ msgstr ""
msgid "Add Library..."
msgstr "Pridėti bibleoteką..."
#: ../../../../../app/src/processing/app/Preferences.java:161
msgid "Afrikaans"
msgstr ""
#: ../../../processing/app/Preferences.java:96
msgid "Albanian"
msgstr ""
@ -290,6 +294,10 @@ msgstr ""
msgid "Belarusian"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:165
msgid "Bengali (India)"
msgstr ""
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
msgid "Board"
@ -586,10 +594,18 @@ msgstr ""
msgid "Czech"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:119
msgid "Czech (Czech Republic)"
msgstr ""
#: Preferences.java:90
msgid "Danish"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:120
msgid "Danish (Denmark)"
msgstr ""
#: Editor.java:1224 Editor.java:2765
msgid "Decrease Indent"
msgstr ""
@ -792,10 +808,6 @@ msgstr ""
msgid "Export canceled, changes must first be saved."
msgstr ""
#: Base.java:2100
msgid "FAQ.html"
msgstr "FAQ.html"
#: ../../../processing/app/Base.java:416
#, java-format
msgid "Failed to open sketch: \"{0}\""
@ -865,6 +877,10 @@ msgstr ""
msgid "Galician"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:176
msgid "Galician (Spain)"
msgstr ""
#: ../../../processing/app/Preferences.java:94
msgid "Georgian"
msgstr ""
@ -893,22 +909,6 @@ msgstr ""
msgid "Greek"
msgstr ""
#: Base.java:2085
msgid "Guide_Environment.html"
msgstr "Guide_Environment.html"
#: Base.java:2071
msgid "Guide_MacOSX.html"
msgstr "Guide_MacOSX.html"
#: Base.java:2095
msgid "Guide_Troubleshooting.html"
msgstr "Guide_Troubleshooting.html"
#: Base.java:2073
msgid "Guide_Windows.html"
msgstr "Guide_Windows.html"
#: ../../../processing/app/Preferences.java:95
msgid "Hebrew"
msgstr ""
@ -1003,6 +1003,10 @@ msgstr ""
msgid "Low memory available, stability problems may occur."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:180
msgid "Malay (Malaysia)"
msgstr ""
#: Preferences.java:107
msgid "Marathi"
msgstr ""
@ -1047,6 +1051,10 @@ msgstr ""
msgid "Nepali"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Network ports"
msgstr ""
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
msgid "Network upload using programmer not supported"
msgstr ""
@ -1146,10 +1154,18 @@ msgstr ""
msgid "Nope"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:181
msgid "Norwegian"
msgstr ""
#: ../../../processing/app/Preferences.java:108
msgid "Norwegian Bokmål"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:182
msgid "Norwegian Nynorsk"
msgstr ""
#: ../../../processing/app/Sketch.java:1656
msgid ""
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
@ -1446,6 +1462,10 @@ msgid ""
"Retry the upload with another serial port?"
msgstr ""
#: ../../../../../app/src/processing/app/Editor.java:65
msgid "Serial ports"
msgstr ""
#: Base.java:1681
msgid "Settings issues"
msgstr ""
@ -1519,6 +1539,10 @@ msgstr ""
msgid "Sketches (*.ino, *.pde)"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:185
msgid "Slovak"
msgstr ""
#: ../../../processing/app/Preferences.java:152
msgid "Slovenian"
msgstr ""
@ -1549,6 +1573,10 @@ msgstr ""
msgid "Sunshine"
msgstr "Saulės šviesa"
#: ../../../../../app/src/processing/app/Preferences.java:187
msgid "Swahili"
msgstr ""
#: ../../../processing/app/Preferences.java:153
msgid "Swedish"
msgstr ""
@ -1557,6 +1585,10 @@ msgstr ""
msgid "System Default"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:188
msgid "Talossan"
msgstr ""
#: Preferences.java:116
msgid "Tamil"
msgstr ""
@ -1762,6 +1794,10 @@ msgstr ""
msgid "Uploading..."
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:189
msgid "Urdu (Pakistan)"
msgstr ""
#: Editor.java:1269
msgid "Use Selection For Find"
msgstr ""
@ -1811,6 +1847,10 @@ msgstr ""
msgid "Warning"
msgstr ""
#: ../../../../../app/src/processing/app/Preferences.java:190
msgid "Western Frisian"
msgstr ""
#: debug/Compiler.java:444
msgid "Wire.receive() has been renamed Wire.read()."
msgstr ""
@ -1967,10 +2007,6 @@ msgstr ""
msgid "enabled in File > Preferences."
msgstr ""
#: Base.java:2090
msgid "environment"
msgstr ""
#: Editor.java:1108
msgid "http://arduino.cc/"
msgstr "http://arduino.cc/"
@ -1983,27 +2019,15 @@ msgstr "http://www.arduino.cc/en/Main/Software"
msgid "http://www.arduino.cc/latest.txt"
msgstr "http://www.arduino.cc/latest.txt"
#: Base.java:2075
msgid "http://www.arduino.cc/playground/Learning/Linux"
msgstr "http://www.arduino.cc/playground/Learning/Linux"
#: Preferences.java:625
#, java-format
msgid "ignoring invalid font size {0}"
msgstr ""
#: Base.java:2080
msgid "index.html"
msgstr "index.html"
#: Editor.java:936 Editor.java:943
msgid "name is null"
msgstr ""
#: Base.java:2090
msgid "platforms.html"
msgstr "platforms.html"
#: Editor.java:932
msgid "serialMenu is null"
msgstr ""
@ -2038,11 +2062,6 @@ msgstr ""
msgid "{0} | Arduino {1}"
msgstr ""
#: Editor.java:1874
#, java-format
msgid "{0}.html"
msgstr "{0}.html"
#: ../../../processing/app/Base.java:519
#, java-format
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""

View File

@ -57,6 +57,9 @@
#: Base.java:963
Add\ Library...=Prid\u0117ti bibleotek\u0105...
#: ../../../../../app/src/processing/app/Preferences.java:161
!Afrikaans=
#: ../../../processing/app/Preferences.java:96
!Albanian=
@ -190,6 +193,9 @@ Add\ Library...=Prid\u0117ti bibleotek\u0105...
#: ../../../processing/app/Preferences.java:139
!Belarusian=
#: ../../../../../app/src/processing/app/Preferences.java:165
!Bengali\ (India)=
#: ../../../processing/app/Base.java:1433
#: ../../../processing/app/Editor.java:707
!Board=
@ -405,9 +411,15 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0}
#: ../../../processing/app/Preferences.java:83
!Czech=
#: ../../../../../app/src/processing/app/Preferences.java:119
!Czech\ (Czech\ Republic)=
#: Preferences.java:90
!Danish=
#: ../../../../../app/src/processing/app/Preferences.java:120
!Danish\ (Denmark)=
#: Editor.java:1224 Editor.java:2765
!Decrease\ Indent=
@ -560,9 +572,6 @@ Could\ not\ open\ the\ folder\n{0}=Ne\u012fmanoma atidaryti aplank\u0105\n{0}
#: Editor.java:2482
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
#: Base.java:2100
FAQ.html=FAQ.html
#: ../../../processing/app/Base.java:416
#, java-format
!Failed\ to\ open\ sketch\:\ "{0}"=
@ -614,6 +623,9 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: Preferences.java:96
!Galician=
#: ../../../../../app/src/processing/app/Preferences.java:176
!Galician\ (Spain)=
#: ../../../processing/app/Preferences.java:94
!Georgian=
@ -634,18 +646,6 @@ For\ information\ on\ installing\ libraries,\ see\:\ http\://arduino.cc/en/Guide
#: Preferences.java:98
!Greek=
#: Base.java:2085
Guide_Environment.html=Guide_Environment.html
#: Base.java:2071
Guide_MacOSX.html=Guide_MacOSX.html
#: Base.java:2095
Guide_Troubleshooting.html=Guide_Troubleshooting.html
#: Base.java:2073
Guide_Windows.html=Guide_Windows.html
#: ../../../processing/app/Preferences.java:95
!Hebrew=
@ -710,6 +710,9 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas
#: ../../../processing/app/Sketch.java:1684
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
#: ../../../../../app/src/processing/app/Preferences.java:180
!Malay\ (Malaysia)=
#: Preferences.java:107
!Marathi=
@ -743,6 +746,9 @@ Ignoring\ bad\ library\ name=Ignoruojamas blogas bibleotekos pavadinimas
#: ../../../processing/app/Preferences.java:149
!Nepali=
#: ../../../../../app/src/processing/app/Editor.java:65
!Network\ ports=
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
!Network\ upload\ using\ programmer\ not\ supported=
@ -818,9 +824,15 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Na tikrai, tau laikas \u012f
#: Sketch.java:396 Sketch.java:410 Sketch.java:419 Sketch.java:859
!Nope=
#: ../../../../../app/src/processing/app/Preferences.java:181
!Norwegian=
#: ../../../processing/app/Preferences.java:108
!Norwegian\ Bokm\u00e5l=
#: ../../../../../app/src/processing/app/Preferences.java:182
!Norwegian\ Nynorsk=
#: ../../../processing/app/Sketch.java:1656
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
@ -1039,6 +1051,9 @@ Quit=I\u0161eiti
#, java-format
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
#: ../../../../../app/src/processing/app/Editor.java:65
!Serial\ ports=
#: Base.java:1681
!Settings\ issues=
@ -1091,6 +1106,9 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f
#: ../../../processing/app/Base.java:785
!Sketches\ (*.ino,\ *.pde)=
#: ../../../../../app/src/processing/app/Preferences.java:185
!Slovak=
#: ../../../processing/app/Preferences.java:152
!Slovenian=
@ -1110,12 +1128,18 @@ Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ f
#: Base.java:540
Sunshine=Saul\u0117s \u0161viesa
#: ../../../../../app/src/processing/app/Preferences.java:187
!Swahili=
#: ../../../processing/app/Preferences.java:153
!Swedish=
#: Preferences.java:84
!System\ Default=
#: ../../../../../app/src/processing/app/Preferences.java:188
!Talossan=
#: Preferences.java:116
!Tamil=
@ -1244,6 +1268,9 @@ Time\ for\ a\ Break=Laikas pertraukai
#: Sketch.java:1622
!Uploading...=
#: ../../../../../app/src/processing/app/Preferences.java:189
!Urdu\ (Pakistan)=
#: Editor.java:1269
!Use\ Selection\ For\ Find=
@ -1280,6 +1307,9 @@ Time\ for\ a\ Break=Laikas pertraukai
#: Base.java:2128
!Warning=
#: ../../../../../app/src/processing/app/Preferences.java:190
!Western\ Frisian=
#: debug/Compiler.java:444
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
@ -1369,9 +1399,6 @@ Time\ for\ a\ Break=Laikas pertraukai
#: ../../../processing/app/EditorStatus.java:469
!enabled\ in\ File\ >\ Preferences.=
#: Base.java:2090
!environment=
#: Editor.java:1108
http\://arduino.cc/=http\://arduino.cc/
@ -1381,22 +1408,13 @@ http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
#: UpdateCheck.java:53
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
#: Base.java:2075
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
#: Preferences.java:625
#, java-format
!ignoring\ invalid\ font\ size\ {0}=
#: Base.java:2080
index.html=index.html
#: Editor.java:936 Editor.java:943
!name\ is\ null=
#: Base.java:2090
platforms.html=platforms.html
#: Editor.java:932
!serialMenu\ is\ null=
@ -1423,10 +1441,6 @@ platforms.html=platforms.html
#, java-format
!{0}\ |\ Arduino\ {1}=
#: Editor.java:1874
#, java-format
{0}.html={0}.html
#: ../../../processing/app/Base.java:519
#, java-format
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=

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