mirror of
https://github.com/arduino/Arduino.git
synced 2025-03-13 10:29:35 +01:00
commit
c0e03e34f4
@ -40,7 +40,6 @@ import processing.app.EditorConsole;
|
||||
|
||||
import javax.swing.*;
|
||||
import javax.swing.text.BadLocationException;
|
||||
import javax.swing.text.Document;
|
||||
import javax.swing.text.SimpleAttributeSet;
|
||||
import java.io.ByteArrayOutputStream;
|
||||
import java.io.PrintStream;
|
||||
@ -57,8 +56,7 @@ public class ConsoleOutputStream extends ByteArrayOutputStream {
|
||||
private final PrintStream printStream;
|
||||
private final StringBuilder buffer;
|
||||
private final Timer timer;
|
||||
private JScrollPane scrollPane;
|
||||
private Document document;
|
||||
private volatile EditorConsole editorConsole;
|
||||
|
||||
public ConsoleOutputStream(SimpleAttributeSet attributes, PrintStream printStream) {
|
||||
this.attributes = attributes;
|
||||
@ -66,19 +64,15 @@ public class ConsoleOutputStream extends ByteArrayOutputStream {
|
||||
this.buffer = new StringBuilder();
|
||||
|
||||
this.timer = new Timer(100, (e) -> {
|
||||
if (scrollPane != null) {
|
||||
synchronized (scrollPane) {
|
||||
scrollPane.getHorizontalScrollBar().setValue(0);
|
||||
scrollPane.getVerticalScrollBar().setValue(scrollPane.getVerticalScrollBar().getMaximum());
|
||||
}
|
||||
if (editorConsole != null) {
|
||||
editorConsole.scrollDown();
|
||||
}
|
||||
});
|
||||
timer.setRepeats(false);
|
||||
}
|
||||
|
||||
public synchronized void setCurrentEditorConsole(EditorConsole console) {
|
||||
this.scrollPane = console;
|
||||
this.document = console.getDocument();
|
||||
public void setCurrentEditorConsole(EditorConsole console) {
|
||||
this.editorConsole = console;
|
||||
}
|
||||
|
||||
public synchronized void flush() {
|
||||
@ -102,7 +96,7 @@ public class ConsoleOutputStream extends ByteArrayOutputStream {
|
||||
}
|
||||
|
||||
private void resetBufferIfDocumentEmpty() {
|
||||
if (document != null && document.getLength() == 0) {
|
||||
if (editorConsole != null && editorConsole.isEmpty()) {
|
||||
buffer.setLength(0);
|
||||
}
|
||||
}
|
||||
@ -113,12 +107,10 @@ public class ConsoleOutputStream extends ByteArrayOutputStream {
|
||||
|
||||
printStream.print(line);
|
||||
|
||||
if (document != null) {
|
||||
if (editorConsole != null) {
|
||||
SwingUtilities.invokeLater(() -> {
|
||||
try {
|
||||
String lineWithoutCR = line.replace("\r\n", "\n").replace("\r", "\n");
|
||||
int offset = document.getLength();
|
||||
document.insertString(offset, lineWithoutCR, attributes);
|
||||
editorConsole.insertString(line, attributes);
|
||||
} catch (BadLocationException ble) {
|
||||
//ignore
|
||||
}
|
||||
|
@ -33,14 +33,12 @@ import cc.arduino.contributions.filters.BuiltInPredicate;
|
||||
import cc.arduino.contributions.filters.InstalledPredicate;
|
||||
import cc.arduino.contributions.packages.ContributedPackage;
|
||||
import cc.arduino.contributions.packages.ContributedPlatform;
|
||||
import cc.arduino.view.Event;
|
||||
import processing.app.Base;
|
||||
import processing.app.BaseNoGui;
|
||||
import processing.app.I18n;
|
||||
import processing.app.PreferencesData;
|
||||
|
||||
import javax.swing.*;
|
||||
import java.awt.event.ActionEvent;
|
||||
import java.util.Collection;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
|
@ -38,7 +38,7 @@ public class LibraryTypeComparator implements Comparator<String> {
|
||||
private final List<String> types;
|
||||
|
||||
public LibraryTypeComparator() {
|
||||
this("Arduino", "Recommended", "Contributed");
|
||||
this("Arduino", "Partner", "Recommended", "Contributed");
|
||||
}
|
||||
|
||||
public LibraryTypeComparator(String... types) {
|
||||
|
@ -91,10 +91,11 @@ public class AStyle implements Tool {
|
||||
int line = getLineOfOffset(textArea);
|
||||
int lineOffset = getLineOffset(textArea, line);
|
||||
|
||||
editor.getTextArea().getUndoManager().beginInternalAtomicEdit();
|
||||
textArea.getUndoManager().beginInternalAtomicEdit();
|
||||
editor.removeAllLineHighlights();
|
||||
editor.setText(formattedText);
|
||||
editor.getSketch().setModified(true);
|
||||
editor.getTextArea().getUndoManager().endInternalAtomicEdit();
|
||||
textArea.getUndoManager().endInternalAtomicEdit();
|
||||
|
||||
if (line != -1 && lineOffset != -1) {
|
||||
try {
|
||||
|
@ -53,6 +53,11 @@ public class NotificationPopup extends JDialog {
|
||||
public void componentMoved(ComponentEvent e) {
|
||||
updateLocation(parent);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void componentResized(ComponentEvent e) {
|
||||
updateLocation(parent);
|
||||
}
|
||||
};
|
||||
parent.addComponentListener(parentMovedListener);
|
||||
|
||||
|
@ -37,6 +37,11 @@ import java.util.Map;
|
||||
|
||||
public class SplashScreenHelper {
|
||||
|
||||
private static final int X_OFFSET = 0;
|
||||
private static final int Y_OFFSET = 300;
|
||||
private static final int TEXTAREA_HEIGHT = 30;
|
||||
private static final int TEXTAREA_WIDTH = 475;
|
||||
|
||||
private final Map desktopHints;
|
||||
private final SplashScreen splash;
|
||||
private Rectangle2D.Double splashTextArea;
|
||||
@ -48,37 +53,28 @@ public class SplashScreenHelper {
|
||||
desktopHints = (Map) tk.getDesktopProperty("awt.font.desktophints");
|
||||
}
|
||||
|
||||
public void splashText(String str) {
|
||||
public void splashText(String text) {
|
||||
if (splash == null) {
|
||||
printText(str);
|
||||
printText(text);
|
||||
return;
|
||||
}
|
||||
|
||||
if (!splash.isVisible()) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (splashTextArea == null) {
|
||||
// stake out some area for our status information
|
||||
splashTextArea = new Rectangle2D.Double(0, 300, 520, 30);
|
||||
|
||||
// create the Graphics environment for drawing status info
|
||||
splashGraphics = splash.createGraphics();
|
||||
|
||||
if (desktopHints != null) {
|
||||
splashGraphics.addRenderingHints(desktopHints);
|
||||
}
|
||||
prepareTextAreaAndGraphics();
|
||||
}
|
||||
|
||||
// erase the last status text
|
||||
splashGraphics.setPaint(new Color(245, 245, 245));
|
||||
splashGraphics.fill(splashTextArea);
|
||||
eraseLastStatusText();
|
||||
|
||||
// draw the text
|
||||
splashGraphics.setPaint(Color.BLACK);
|
||||
FontMetrics metrics = splashGraphics.getFontMetrics();
|
||||
splashGraphics.drawString(str, (int) splashTextArea.getX() + 10, (int) splashTextArea.getY() + (30 - metrics.getHeight()) + 4);
|
||||
drawText(text);
|
||||
|
||||
// make sure it's displayed
|
||||
ensureTextIsDiplayed();
|
||||
}
|
||||
|
||||
private void ensureTextIsDiplayed() {
|
||||
synchronized (SplashScreen.class) {
|
||||
if (splash.isVisible()) {
|
||||
splash.update();
|
||||
@ -86,6 +82,27 @@ public class SplashScreenHelper {
|
||||
}
|
||||
}
|
||||
|
||||
private void drawText(String str) {
|
||||
splashGraphics.setPaint(Color.BLACK);
|
||||
FontMetrics metrics = splashGraphics.getFontMetrics();
|
||||
splashGraphics.drawString(str, (int) splashTextArea.getX() + 10, (int) splashTextArea.getY() + (TEXTAREA_HEIGHT - metrics.getHeight()) + 5);
|
||||
}
|
||||
|
||||
private void eraseLastStatusText() {
|
||||
splashGraphics.setPaint(new Color(229, 229, 229));
|
||||
splashGraphics.fill(splashTextArea);
|
||||
}
|
||||
|
||||
private void prepareTextAreaAndGraphics() {
|
||||
splashTextArea = new Rectangle2D.Double(X_OFFSET, Y_OFFSET, TEXTAREA_WIDTH, TEXTAREA_HEIGHT);
|
||||
|
||||
splashGraphics = splash.createGraphics();
|
||||
|
||||
if (desktopHints != null) {
|
||||
splashGraphics.addRenderingHints(desktopHints);
|
||||
}
|
||||
}
|
||||
|
||||
public void close() {
|
||||
if (splash == null) {
|
||||
return;
|
||||
|
@ -4,8 +4,9 @@
|
||||
<Properties>
|
||||
<Property name="defaultCloseOperation" type="int" value="2"/>
|
||||
<Property name="title" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Find")" type="code"/>
|
||||
<Connection code="tr("Find")" type="code"/>
|
||||
</Property>
|
||||
<Property name="resizable" type="boolean" value="false"/>
|
||||
</Properties>
|
||||
<SyntheticProperties>
|
||||
<SyntheticProperty name="formSizePolicy" type="int" value="1"/>
|
||||
@ -84,7 +85,7 @@
|
||||
<Component class="javax.swing.JLabel" name="findLabel">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Find:")" type="code"/>
|
||||
<Connection code="tr("Find:")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<AuxValues>
|
||||
@ -100,7 +101,7 @@
|
||||
<Component class="javax.swing.JLabel" name="replaceLabel">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace with:")" type="code"/>
|
||||
<Connection code="tr("Replace with:")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<AuxValues>
|
||||
@ -117,7 +118,7 @@
|
||||
<Properties>
|
||||
<Property name="selected" type="boolean" value="true"/>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Ignore Case")" type="code"/>
|
||||
<Connection code="tr("Ignore Case")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -125,14 +126,14 @@
|
||||
<Properties>
|
||||
<Property name="selected" type="boolean" value="true"/>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Wrap Around")" type="code"/>
|
||||
<Connection code="tr("Wrap Around")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
<Component class="javax.swing.JCheckBox" name="searchAllFilesBox">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Search all Sketch Tabs")" type="code"/>
|
||||
<Connection code="tr("Search all Sketch Tabs")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
</Component>
|
||||
@ -143,7 +144,7 @@
|
||||
<Component class="javax.swing.JButton" name="findButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Find")" type="code"/>
|
||||
<Connection code="tr("Find")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -153,7 +154,7 @@
|
||||
<Component class="javax.swing.JButton" name="previousButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Previous")" type="code"/>
|
||||
<Connection code="tr("Previous")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -163,7 +164,7 @@
|
||||
<Component class="javax.swing.JButton" name="replaceFindButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace & Find")" type="code"/>
|
||||
<Connection code="tr("Replace & Find")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -173,7 +174,7 @@
|
||||
<Component class="javax.swing.JButton" name="replaceButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace")" type="code"/>
|
||||
<Connection code="tr("Replace")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
@ -183,7 +184,7 @@
|
||||
<Component class="javax.swing.JButton" name="replaceAllButton">
|
||||
<Properties>
|
||||
<Property name="text" type="java.lang.String" editor="org.netbeans.modules.form.RADConnectionPropertyEditor">
|
||||
<Connection code="_("Replace All")" type="code"/>
|
||||
<Connection code="tr("Replace All")" type="code"/>
|
||||
</Property>
|
||||
</Properties>
|
||||
<Events>
|
||||
|
@ -66,8 +66,6 @@ public class FindReplace extends javax.swing.JFrame {
|
||||
buttonsContainer.add(findButton);
|
||||
}
|
||||
|
||||
getRootPane().setDefaultButton(findButton);
|
||||
|
||||
Base.registerWindowCloseKeys(getRootPane(), e -> {
|
||||
setVisible(false);
|
||||
Base.FIND_DIALOG_STATE = findDialogState();
|
||||
@ -85,6 +83,13 @@ public class FindReplace extends javax.swing.JFrame {
|
||||
restoreFindDialogState(state);
|
||||
}
|
||||
|
||||
@Override
|
||||
public void setVisible(boolean b) {
|
||||
getRootPane().setDefaultButton(findButton);
|
||||
|
||||
super.setVisible(b);
|
||||
}
|
||||
|
||||
private Map<String, Object> findDialogState() {
|
||||
Map<String, Object> state = new HashMap<>();
|
||||
state.put(FIND_TEXT, findField.getText());
|
||||
@ -138,6 +143,7 @@ public class FindReplace extends javax.swing.JFrame {
|
||||
|
||||
setDefaultCloseOperation(javax.swing.WindowConstants.DISPOSE_ON_CLOSE);
|
||||
setTitle(tr("Find"));
|
||||
setResizable(false);
|
||||
|
||||
findLabel.setText(tr("Find:"));
|
||||
|
||||
|
@ -48,7 +48,13 @@ import static processing.app.I18n.tr;
|
||||
public class Preferences extends javax.swing.JDialog {
|
||||
|
||||
private final Language[] languages;
|
||||
|
||||
// Languages that are not translated at least to 65% are
|
||||
// kept in the "missingLanguages" array until they have enough
|
||||
// translated strings.
|
||||
@SuppressWarnings("unused")
|
||||
private final Language[] missingLanguages;
|
||||
|
||||
private final WarningItem[] warningItems;
|
||||
private final Base base;
|
||||
|
||||
|
@ -13,7 +13,6 @@ import java.awt.event.WindowEvent;
|
||||
@SuppressWarnings("serial")
|
||||
public abstract class AbstractMonitor extends JFrame implements ActionListener {
|
||||
|
||||
private boolean monitorEnabled;
|
||||
private boolean closed;
|
||||
|
||||
private StringBuffer updateBuffer;
|
||||
@ -78,7 +77,6 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener {
|
||||
updateTimer = new Timer(33, this); // redraw serial monitor at 30 Hz
|
||||
updateTimer.start();
|
||||
|
||||
monitorEnabled = true;
|
||||
closed = false;
|
||||
}
|
||||
|
||||
@ -86,7 +84,6 @@ public abstract class AbstractMonitor extends JFrame implements ActionListener {
|
||||
|
||||
public void enableWindow(boolean enable) {
|
||||
onEnableWindow(enable);
|
||||
monitorEnabled = enable;
|
||||
}
|
||||
|
||||
protected abstract void onEnableWindow(boolean enable);
|
||||
|
@ -748,7 +748,7 @@ public class Base {
|
||||
try {
|
||||
File file = createNewUntitled();
|
||||
if (file != null) {
|
||||
Editor editor = handleOpen(file, true);
|
||||
handleOpen(file, true);
|
||||
}
|
||||
|
||||
} catch (IOException e) {
|
||||
|
@ -41,8 +41,8 @@ import processing.app.forms.PasswordAuthorizationDialog;
|
||||
import processing.app.helpers.OSUtils;
|
||||
import processing.app.helpers.PreferencesMapException;
|
||||
import processing.app.legacy.PApplet;
|
||||
import processing.app.syntax.PdeKeywords;
|
||||
import processing.app.syntax.ArduinoTokenMakerFactory;
|
||||
import processing.app.syntax.PdeKeywords;
|
||||
import processing.app.syntax.SketchTextArea;
|
||||
import processing.app.tools.DiscourseFormat;
|
||||
import processing.app.tools.MenuScroller;
|
||||
@ -2006,7 +2006,7 @@ public class Editor extends JFrame implements RunnerListener {
|
||||
@Override
|
||||
public void run() {
|
||||
try {
|
||||
textarea.removeAllLineHighlights();
|
||||
removeAllLineHighlights();
|
||||
sketch.prepare();
|
||||
sketch.build(verbose, saveHex);
|
||||
statusNotice(tr("Done compiling."));
|
||||
@ -2024,6 +2024,15 @@ public class Editor extends JFrame implements RunnerListener {
|
||||
}
|
||||
}
|
||||
|
||||
public void removeAllLineHighlights() {
|
||||
textarea.removeAllLineHighlights();
|
||||
}
|
||||
|
||||
public void addLineHighlight(int line) throws BadLocationException {
|
||||
textarea.addLineHighlight(line, new Color(1, 0, 0, 0.2f));
|
||||
textarea.setCaretPosition(textarea.getLineStartOffset(line));
|
||||
}
|
||||
|
||||
private class DefaultStopHandler implements Runnable {
|
||||
public void run() {
|
||||
// TODO
|
||||
@ -2276,7 +2285,7 @@ public class Editor extends JFrame implements RunnerListener {
|
||||
public boolean handleSave(boolean immediately) {
|
||||
//stopRunner();
|
||||
handleStop(); // 0136
|
||||
textarea.removeAllLineHighlights();
|
||||
removeAllLineHighlights();
|
||||
|
||||
if (untitled) {
|
||||
return handleSaveAs();
|
||||
@ -2430,7 +2439,7 @@ public class Editor extends JFrame implements RunnerListener {
|
||||
public void run() {
|
||||
|
||||
try {
|
||||
textarea.removeAllLineHighlights();
|
||||
removeAllLineHighlights();
|
||||
if (serialMonitor != null) {
|
||||
serialMonitor.suspend();
|
||||
}
|
||||
@ -2876,8 +2885,7 @@ public class Editor extends JFrame implements RunnerListener {
|
||||
System.err.println(I18n.format(tr("Bad error line: {0}"), line));
|
||||
} else {
|
||||
try {
|
||||
textarea.addLineHighlight(line, new Color(1, 0, 0, 0.2f));
|
||||
textarea.setCaretPosition(textarea.getLineStartOffset(line));
|
||||
addLineHighlight(line);
|
||||
} catch (BadLocationException e1) {
|
||||
e1.printStackTrace();
|
||||
}
|
||||
|
@ -36,7 +36,7 @@ public class EditorConsole extends JScrollPane {
|
||||
private static ConsoleOutputStream out;
|
||||
private static ConsoleOutputStream err;
|
||||
|
||||
public static synchronized void init(SimpleAttributeSet outStyle, PrintStream outStream, SimpleAttributeSet errStyle, PrintStream errStream) {
|
||||
private static synchronized void init(SimpleAttributeSet outStyle, PrintStream outStream, SimpleAttributeSet errStyle, PrintStream errStream) {
|
||||
if (out != null) {
|
||||
return;
|
||||
}
|
||||
@ -116,11 +116,23 @@ public class EditorConsole extends JScrollPane {
|
||||
}
|
||||
}
|
||||
|
||||
public void scrollDown() {
|
||||
getHorizontalScrollBar().setValue(0);
|
||||
getVerticalScrollBar().setValue(getVerticalScrollBar().getMaximum());
|
||||
}
|
||||
|
||||
public boolean isEmpty() {
|
||||
return document.getLength() == 0;
|
||||
}
|
||||
|
||||
public void insertString(String line, SimpleAttributeSet attributes) throws BadLocationException {
|
||||
line = line.replace("\r\n", "\n").replace("\r", "\n");
|
||||
int offset = document.getLength();
|
||||
document.insertString(offset, line, attributes);
|
||||
}
|
||||
|
||||
public String getText() {
|
||||
return consoleTextPane.getText().trim();
|
||||
}
|
||||
|
||||
public Document getDocument() {
|
||||
return document;
|
||||
}
|
||||
}
|
||||
|
@ -24,13 +24,10 @@ package processing.app;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.geom.Rectangle2D;
|
||||
import java.util.Map;
|
||||
|
||||
import javax.swing.JComponent;
|
||||
|
||||
import processing.app.helpers.OSUtils;
|
||||
import processing.app.helpers.PreferencesMap;
|
||||
import processing.app.syntax.SketchTextArea;
|
||||
|
||||
|
||||
/**
|
||||
|
@ -21,12 +21,8 @@
|
||||
|
||||
package processing.app;
|
||||
|
||||
import processing.app.helpers.PreferencesHelper;
|
||||
import processing.app.helpers.PreferencesMap;
|
||||
|
||||
import java.awt.*;
|
||||
import java.io.File;
|
||||
|
||||
|
||||
/**
|
||||
* Storage class for user preferences and environment settings.
|
||||
|
@ -652,14 +652,13 @@ public class Sketch {
|
||||
// make sure there doesn't exist a .cpp file with that name already
|
||||
// but ignore this situation for the first tab, since it's probably being
|
||||
// resaved (with the same name) to another location/folder.
|
||||
for (SketchCode code : data.getCodes()) {
|
||||
if (newName.equalsIgnoreCase(code.getPrettyName()) && code.isExtension("cpp")) {
|
||||
for (int i = 1; i < data.getCodeCount(); i++) {
|
||||
SketchCode code = data.getCode(i);
|
||||
if (newName.equalsIgnoreCase(code.getPrettyName())) {
|
||||
Base.showMessage(tr("Error"),
|
||||
I18n.format(
|
||||
tr("You can't save the sketch as \"{0}\"\n" +
|
||||
"because the sketch already has a .cpp file with that name."),
|
||||
newName
|
||||
));
|
||||
I18n.format(tr("You can't save the sketch as \"{0}\"\n" +
|
||||
"because the sketch already has a file with that name."), newName
|
||||
));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
@ -23,32 +23,31 @@
|
||||
|
||||
package processing.app.tools;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.datatransfer.*;
|
||||
import org.fife.ui.rsyntaxtextarea.Token;
|
||||
import processing.app.Editor;
|
||||
import processing.app.syntax.SketchTextArea;
|
||||
|
||||
import javax.swing.text.BadLocationException;
|
||||
import javax.swing.text.Segment;
|
||||
|
||||
import org.fife.ui.rsyntaxtextarea.Token;
|
||||
|
||||
import processing.app.*;
|
||||
import processing.app.syntax.*;
|
||||
import java.awt.*;
|
||||
import java.awt.datatransfer.Clipboard;
|
||||
import java.awt.datatransfer.StringSelection;
|
||||
|
||||
/**
|
||||
* Format for Discourse Tool
|
||||
* <p/>
|
||||
* <p>
|
||||
* Original code by <A HREF="http://usuarios.iponet.es/imoreta">owd</A>.
|
||||
* Revised and updated for revision 0108 by Ben Fry (10 March 2006).
|
||||
* This code may later be moved to its own 'Tool' plugin, but is included
|
||||
* with release 0108+ while features for the "Tools" menu are in testing.
|
||||
* <p/>
|
||||
* <p>
|
||||
* Updated for 0122 to simply copy the code directly to the clipboard,
|
||||
* rather than opening a new window.
|
||||
* <p/>
|
||||
* <p>
|
||||
* Updated for 0144 to only format the selected lines.
|
||||
* <p/>
|
||||
* <p>
|
||||
* Updated for 1.5.8 - Simplification, using RSyntaxTextArea TokenImpl formatter (08 dec 2014 - Ricardo JL Rufino)
|
||||
* <p/>
|
||||
* <p>
|
||||
* Notes from the original source:
|
||||
* Discourse.java This is a dirty-mix source.
|
||||
* NOTE that: No macs and no keyboard. Unreliable source.
|
||||
@ -57,11 +56,9 @@ import processing.app.syntax.*;
|
||||
*/
|
||||
public class DiscourseFormat {
|
||||
|
||||
private Editor editor;
|
||||
// JTextArea of the actual Editor
|
||||
private SketchTextArea textarea;
|
||||
private boolean html;
|
||||
|
||||
private final Editor editor;
|
||||
private final SketchTextArea textarea;
|
||||
private final boolean html;
|
||||
|
||||
/**
|
||||
* Creates a new window with the formated (YaBB tags) sketchcode
|
||||
@ -74,12 +71,10 @@ public class DiscourseFormat {
|
||||
this.html = html;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Format and render sketch code.
|
||||
*/
|
||||
public void show() {
|
||||
// [code] tag cancels other tags, using [quote]
|
||||
StringBuilder cf = new StringBuilder(html ? "<pre>\n" : "[code]\n");
|
||||
|
||||
int selStart = textarea.getSelectionStart();
|
||||
@ -105,6 +100,7 @@ public class DiscourseFormat {
|
||||
stopLine--;
|
||||
}
|
||||
} catch (BadLocationException e) {
|
||||
// ignore
|
||||
}
|
||||
}
|
||||
|
||||
@ -117,11 +113,9 @@ public class DiscourseFormat {
|
||||
|
||||
StringSelection formatted = new StringSelection(cf.toString());
|
||||
Clipboard clipboard = Toolkit.getDefaultToolkit().getSystemClipboard();
|
||||
clipboard.setContents(formatted, new ClipboardOwner() {
|
||||
public void lostOwnership(Clipboard clipboard, Transferable contents) {
|
||||
// i don't care about ownership
|
||||
}
|
||||
});
|
||||
clipboard.setContents(formatted, (clipboard1, contents) -> {
|
||||
// i don't care about ownership
|
||||
});
|
||||
Clipboard unixclipboard = Toolkit.getDefaultToolkit().getSystemSelection();
|
||||
if (unixclipboard != null) unixclipboard.setContents(formatted, null);
|
||||
|
||||
@ -129,10 +123,11 @@ public class DiscourseFormat {
|
||||
}
|
||||
|
||||
/**
|
||||
* Append a char to a StringBuilder while escaping for proper display in HTML.
|
||||
* @param c input char to escape
|
||||
* @param buffer StringBuilder to append html-safe version of c to.
|
||||
*/
|
||||
* Append a char to a StringBuilder while escaping for proper display in HTML.
|
||||
*
|
||||
* @param c input char to escape
|
||||
* @param buffer StringBuilder to append html-safe version of c to.
|
||||
*/
|
||||
private void appendToHTML(char c, StringBuilder buffer) {
|
||||
if (!html) {
|
||||
buffer.append(c);
|
||||
@ -149,45 +144,32 @@ public class DiscourseFormat {
|
||||
}
|
||||
}
|
||||
|
||||
// A terrible headache...
|
||||
public void appendFormattedLine(StringBuilder cf, int line) {
|
||||
private void appendFormattedLine(StringBuilder buffer, int line) {
|
||||
Segment segment = new Segment();
|
||||
|
||||
// get line text from parent text area
|
||||
textarea.getTextLine(line, segment);
|
||||
|
||||
char[] segmentArray = segment.array;
|
||||
int segmentOffset = segment.offset;
|
||||
int segmentCount = segment.count;
|
||||
// int width = 0;
|
||||
|
||||
if (!html) {
|
||||
char[] segmentArray = segment.array;
|
||||
int segmentOffset = segment.offset;
|
||||
int segmentCount = segment.count;
|
||||
|
||||
for (int j = 0; j < segmentCount; j++) {
|
||||
char c = segmentArray[j + segmentOffset];
|
||||
appendToHTML(c, cf);
|
||||
// int charWidth;
|
||||
// if (c == '\t') {
|
||||
// charWidth = (int) painter.nextTabStop(width, j) - width;
|
||||
// } else {
|
||||
// charWidth = fm.charWidth(c);
|
||||
// }
|
||||
// width += charWidth;
|
||||
appendToHTML(c, buffer);
|
||||
}
|
||||
|
||||
} else {
|
||||
|
||||
Token tokenList = textarea.getTokenListForLine(line);
|
||||
|
||||
while(tokenList != null){
|
||||
if(tokenList.getType() == Token.NULL){
|
||||
cf.append('\n');
|
||||
}else if(tokenList.isPaintable()){
|
||||
tokenList.appendHTMLRepresentation(cf, textarea, false);
|
||||
}
|
||||
|
||||
tokenList = tokenList.getNextToken();
|
||||
}
|
||||
|
||||
return;
|
||||
}
|
||||
|
||||
Token tokenList = textarea.getTokenListForLine(line);
|
||||
|
||||
while (tokenList != null) {
|
||||
if (tokenList.getType() != Token.NULL) {
|
||||
tokenList.appendHTMLRepresentation(buffer, textarea, false);
|
||||
}
|
||||
tokenList = tokenList.getNextToken();
|
||||
}
|
||||
|
||||
buffer.append('\n');
|
||||
}
|
||||
}
|
||||
|
@ -34,7 +34,6 @@ import org.junit.Test;
|
||||
import processing.app.helpers.SketchTextAreaFixture;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNotEquals;
|
||||
|
||||
public class AutoformatProducesOneUndoActionTest extends AbstractGUITest {
|
||||
|
||||
|
@ -29,54 +29,66 @@
|
||||
|
||||
package processing.app.macosx;
|
||||
|
||||
import org.junit.Before;
|
||||
import org.junit.Test;
|
||||
import processing.app.TestHelper;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.io.InputStream;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
|
||||
public class SystemProfilerParserTest {
|
||||
|
||||
private SystemProfilerParser parser;
|
||||
|
||||
@Before
|
||||
public void setUp() throws Exception {
|
||||
parser = new SystemProfilerParser();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void shouldCorrectlyParse() throws Exception {
|
||||
String output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output.txt"));
|
||||
String output = getFileContent("system_profiler_output.txt");
|
||||
assertEquals("0X2341_0X0044", parser.extractVIDAndPID(output, "/dev/cu.usbmodemfa121"));
|
||||
assertEquals("0X2341_0X0044", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfa121"));
|
||||
|
||||
assertEquals("0X2341_0X0044", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodemfa121"));
|
||||
assertEquals("0X2341_0X0044", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfa121"));
|
||||
output = getFileContent("system_profiler_output2.txt");
|
||||
assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/cu.usbmodemfd131"));
|
||||
assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfd131"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output2.txt"));
|
||||
output = getFileContent("system_profiler_output3.txt");
|
||||
assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/cu.usbmodemfd121"));
|
||||
assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfd121"));
|
||||
|
||||
assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodemfd131"));
|
||||
assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfd131"));
|
||||
output = getFileContent("system_profiler_output4.txt");
|
||||
assertEquals("0X2341_0X0041", parser.extractVIDAndPID(output, "/dev/cu.usbmodem411"));
|
||||
assertEquals("0X2341_0X0041", parser.extractVIDAndPID(output, "/dev/tty.usbmodem411"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output3.txt"));
|
||||
output = getFileContent("system_profiler_output5.txt");
|
||||
assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/cu.usbmodem621"));
|
||||
assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/tty.usbmodem621"));
|
||||
|
||||
assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodemfd121"));
|
||||
assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfd121"));
|
||||
output = getFileContent("system_profiler_output6.txt");
|
||||
assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/cu.usbmodem1421"));
|
||||
assertEquals("0X2341_0X8041", parser.extractVIDAndPID(output, "/dev/tty.usbmodem1421"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output4.txt"));
|
||||
output = getFileContent("system_profiler_output7.txt");
|
||||
assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/cu.usbmodem24131"));
|
||||
assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/tty.usbmodem24131"));
|
||||
assertEquals("0X0403_0X6015", parser.extractVIDAndPID(output, "/dev/cu.usbserial-DN0031EV"));
|
||||
assertEquals("0X0403_0X6015", parser.extractVIDAndPID(output, "/dev/tty.usbserial-DN0031EV"));
|
||||
|
||||
assertEquals("0X2341_0X0041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem411"));
|
||||
assertEquals("0X2341_0X0041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem411"));
|
||||
output = getFileContent("system_profiler_output8.txt");
|
||||
assertEquals("0X03EB_0X2157", parser.extractVIDAndPID(output, "/dev/tty.usbmodemfd132"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output5.txt"));
|
||||
// OSX El Capitan
|
||||
output = getFileContent("system_profiler_output9.txt");
|
||||
assertEquals("0X2341_0X8036", parser.extractVIDAndPID(output, "/dev/tty.usbmodemFA121"));
|
||||
}
|
||||
|
||||
assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem621"));
|
||||
assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem621"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output6.txt"));
|
||||
|
||||
assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem1421"));
|
||||
assertEquals("0X2341_0X8041", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem1421"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output7.txt"));
|
||||
|
||||
assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbmodem24131"));
|
||||
assertEquals("0X2341_0X8036", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodem24131"));
|
||||
assertEquals("0X0403_0X6015", new SystemProfilerParser().extractVIDAndPID(output, "/dev/cu.usbserial-DN0031EV"));
|
||||
assertEquals("0X0403_0X6015", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbserial-DN0031EV"));
|
||||
|
||||
output = TestHelper.inputStreamToString(SystemProfilerParserTest.class.getResourceAsStream("system_profiler_output8.txt"));
|
||||
|
||||
assertEquals("0X03EB_0X2157", new SystemProfilerParser().extractVIDAndPID(output, "/dev/tty.usbmodemfd132"));
|
||||
private String getFileContent(String filename) throws IOException {
|
||||
InputStream resource = SystemProfilerParserTest.class.getResourceAsStream(filename);
|
||||
return TestHelper.inputStreamToString(resource);
|
||||
}
|
||||
}
|
||||
|
117
app/test/processing/app/macosx/system_profiler_output9.txt
Normal file
117
app/test/processing/app/macosx/system_profiler_output9.txt
Normal file
@ -0,0 +1,117 @@
|
||||
USB:
|
||||
|
||||
USB 2.0 Bus:
|
||||
|
||||
Host Controller Driver: AppleUSBEHCIPCI
|
||||
PCI Device ID: 0x1c2d
|
||||
PCI Revision ID: 0x0005
|
||||
PCI Vendor ID: 0x8086
|
||||
|
||||
Hub:
|
||||
|
||||
Product ID: 0x2513
|
||||
Vendor ID: 0x0424 (SMSC)
|
||||
Version: b.b3
|
||||
Speed: Up to 480 Mb/sec
|
||||
Location ID: 0xfa100000 / 1
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 2
|
||||
Extra Operating Current (mA): 0
|
||||
Built-In: Yes
|
||||
|
||||
Arduino Leonardo:
|
||||
|
||||
Product ID: 0x8036
|
||||
Vendor ID: 0x2341
|
||||
Version: 1.00
|
||||
Speed: Up to 12 Mb/sec
|
||||
Manufacturer: Arduino LLC
|
||||
Location ID: 0xfa120000 / 3
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 500
|
||||
Extra Operating Current (mA): 0
|
||||
|
||||
BRCM20702 Hub:
|
||||
|
||||
Product ID: 0x4500
|
||||
Vendor ID: 0x0a5c (Broadcom Corp.)
|
||||
Version: 1.00
|
||||
Speed: Up to 12 Mb/sec
|
||||
Manufacturer: Apple Inc.
|
||||
Location ID: 0xfa110000 / 4
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 94
|
||||
Extra Operating Current (mA): 0
|
||||
Built-In: Yes
|
||||
|
||||
Bluetooth USB Host Controller:
|
||||
|
||||
Product ID: 0x8281
|
||||
Vendor ID: 0x05ac (Apple Inc.)
|
||||
Version: 1.51
|
||||
Speed: Up to 12 Mb/sec
|
||||
Manufacturer: Apple Inc.
|
||||
Location ID: 0xfa113000 / 2
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 0
|
||||
Extra Operating Current (mA): 0
|
||||
Built-In: Yes
|
||||
|
||||
USB 2.0 Bus:
|
||||
|
||||
Host Controller Driver: AppleUSBEHCIPCI
|
||||
PCI Device ID: 0x1c26
|
||||
PCI Revision ID: 0x0005
|
||||
PCI Vendor ID: 0x8086
|
||||
|
||||
Hub:
|
||||
|
||||
Product ID: 0x2513
|
||||
Vendor ID: 0x0424 (SMSC)
|
||||
Version: b.b3
|
||||
Speed: Up to 480 Mb/sec
|
||||
Location ID: 0xfd100000 / 1
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 2
|
||||
Extra Operating Current (mA): 0
|
||||
Built-In: Yes
|
||||
|
||||
USB Keyboard:
|
||||
|
||||
Product ID: 0x2000
|
||||
Vendor ID: 0x040b (Weltrend Semiconductor)
|
||||
Version: 2.05
|
||||
Speed: Up to 1.5 Mb/sec
|
||||
Manufacturer: Generic
|
||||
Location ID: 0xfd130000 / 4
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 100
|
||||
Extra Operating Current (mA): 0
|
||||
|
||||
USB OPTICAL MOUSE:
|
||||
|
||||
Product ID: 0x2510
|
||||
Vendor ID: 0x093a (Pixart Imaging, Inc.)
|
||||
Version: 1.00
|
||||
Speed: Up to 1.5 Mb/sec
|
||||
Manufacturer: PIXART
|
||||
Location ID: 0xfd120000 / 3
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 100
|
||||
Extra Operating Current (mA): 0
|
||||
|
||||
IR Receiver:
|
||||
|
||||
Product ID: 0x8242
|
||||
Vendor ID: 0x05ac (Apple Inc.)
|
||||
Version: 0.16
|
||||
Speed: Up to 1.5 Mb/sec
|
||||
Manufacturer: Apple Computer, Inc.
|
||||
Location ID: 0xfd110000 / 2
|
||||
Current Available (mA): 1000
|
||||
Current Required (mA): 100
|
||||
Extra Operating Current (mA): 0
|
||||
Built-In: Yes
|
||||
|
||||
|
||||
|
@ -32,8 +32,6 @@ package processing.app.syntax;
|
||||
import org.fife.ui.rsyntaxtextarea.TokenTypes;
|
||||
import org.junit.Test;
|
||||
import processing.app.AbstractWithPreferencesTest;
|
||||
import processing.app.BaseNoGui;
|
||||
|
||||
import static org.junit.Assert.assertEquals;
|
||||
import static org.junit.Assert.assertNull;
|
||||
|
||||
|
@ -30,9 +30,11 @@
|
||||
package cc.arduino;
|
||||
|
||||
import cc.arduino.i18n.I18NAwareMessageConsumer;
|
||||
import cc.arduino.packages.BoardPort;
|
||||
import org.apache.commons.exec.CommandLine;
|
||||
import org.apache.commons.exec.DefaultExecutor;
|
||||
import org.apache.commons.exec.PumpStreamHandler;
|
||||
import org.apache.commons.lang3.StringUtils;
|
||||
import processing.app.*;
|
||||
import processing.app.debug.*;
|
||||
import processing.app.helpers.PreferencesMap;
|
||||
@ -128,13 +130,14 @@ public class Compiler implements MessageConsumer {
|
||||
|
||||
TargetPlatform platform = board.getContainerPlatform();
|
||||
TargetPackage aPackage = platform.getContainerPackage();
|
||||
String vidpid = VIDPID();
|
||||
|
||||
PreferencesMap prefs = loadPreferences(board, platform, aPackage);
|
||||
PreferencesMap prefs = loadPreferences(board, platform, aPackage, vidpid);
|
||||
|
||||
MessageConsumerOutputStream out = new MessageConsumerOutputStream(new ProgressAwareMessageConsumer(new I18NAwareMessageConsumer(System.out), progListener), "\n");
|
||||
MessageConsumerOutputStream err = new MessageConsumerOutputStream(new I18NAwareMessageConsumer(System.err, Compiler.this), "\n");
|
||||
|
||||
callArduinoBuilder(board, platform, aPackage, BuilderAction.COMPILE, new PumpStreamHandler(out, err));
|
||||
callArduinoBuilder(board, platform, aPackage, vidpid, BuilderAction.COMPILE, new PumpStreamHandler(out, err));
|
||||
|
||||
out.flush();
|
||||
err.flush();
|
||||
@ -149,15 +152,30 @@ public class Compiler implements MessageConsumer {
|
||||
|
||||
size(prefs);
|
||||
|
||||
return sketch.getName() + ".ino";
|
||||
return sketch.getPrimaryFile().getName();
|
||||
}
|
||||
|
||||
private PreferencesMap loadPreferences(TargetBoard board, TargetPlatform platform, TargetPackage aPackage) throws RunnerException, IOException {
|
||||
private String VIDPID() {
|
||||
BoardPort boardPort = BaseNoGui.getDiscoveryManager().find(PreferencesData.get("serial.port"));
|
||||
if (boardPort == null) {
|
||||
return "";
|
||||
}
|
||||
|
||||
String vid = boardPort.getPrefs().get("vid");
|
||||
String pid = boardPort.getPrefs().get("pid");
|
||||
if (StringUtils.isEmpty(vid) || StringUtils.isEmpty(pid)) {
|
||||
return "";
|
||||
}
|
||||
|
||||
return vid.toUpperCase() + "_" + pid.toUpperCase();
|
||||
}
|
||||
|
||||
private PreferencesMap loadPreferences(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, String vidpid) throws RunnerException, IOException {
|
||||
ByteArrayOutputStream stdout = new ByteArrayOutputStream();
|
||||
ByteArrayOutputStream stderr = new ByteArrayOutputStream();
|
||||
MessageConsumerOutputStream err = new MessageConsumerOutputStream(new I18NAwareMessageConsumer(new PrintStream(stderr), Compiler.this), "\n");
|
||||
try {
|
||||
callArduinoBuilder(board, platform, aPackage, BuilderAction.DUMP_PREFS, new PumpStreamHandler(stdout, err));
|
||||
callArduinoBuilder(board, platform, aPackage, vidpid, BuilderAction.DUMP_PREFS, new PumpStreamHandler(stdout, err));
|
||||
} catch (RunnerException e) {
|
||||
System.err.println(new String(stderr.toByteArray()));
|
||||
throw e;
|
||||
@ -167,7 +185,7 @@ public class Compiler implements MessageConsumer {
|
||||
return prefs;
|
||||
}
|
||||
|
||||
private void callArduinoBuilder(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, BuilderAction action, PumpStreamHandler streamHandler) throws RunnerException {
|
||||
private void callArduinoBuilder(TargetBoard board, TargetPlatform platform, TargetPackage aPackage, String vidpid, BuilderAction action, PumpStreamHandler streamHandler) throws RunnerException {
|
||||
File executable = BaseNoGui.getContentFile("arduino-builder");
|
||||
CommandLine commandLine = new CommandLine(executable);
|
||||
commandLine.addArgument(action.value, false);
|
||||
@ -189,14 +207,18 @@ public class Compiler implements MessageConsumer {
|
||||
}
|
||||
});
|
||||
|
||||
commandLine.addArgument("-built-in-libraries", false);
|
||||
commandLine.addArgument("\"" + BaseNoGui.getContentFile("libraries").getAbsolutePath() + "\"", false);
|
||||
commandLine.addArgument("-libraries", false);
|
||||
commandLine.addArgument("\"" + BaseNoGui.getSketchbookLibrariesFolder().getAbsolutePath() + "\"", false);
|
||||
commandLine.addArgument("-libraries", false);
|
||||
commandLine.addArgument("\"" + BaseNoGui.getContentFile("libraries").getAbsolutePath() + "\"", false);
|
||||
|
||||
String fqbn = Stream.of(aPackage.getId(), platform.getId(), board.getId(), boardOptions(board)).filter(s -> !s.isEmpty()).collect(Collectors.joining(":"));
|
||||
commandLine.addArgument("-fqbn=" + fqbn, false);
|
||||
|
||||
if (!"".equals(vidpid)) {
|
||||
commandLine.addArgument("-vid-pid=" + vidpid, false);
|
||||
}
|
||||
|
||||
commandLine.addArgument("-ide-version=" + BaseNoGui.REVISION, false);
|
||||
commandLine.addArgument("-build-path", false);
|
||||
commandLine.addArgument("\"" + buildPath + "\"", false);
|
||||
@ -333,14 +355,17 @@ public class Compiler implements MessageConsumer {
|
||||
try {
|
||||
compiledSketch = StringReplacer.replaceFromMapping(compiledSketch, prefs);
|
||||
copyOfCompiledSketch = StringReplacer.replaceFromMapping(copyOfCompiledSketch, prefs);
|
||||
copyOfCompiledSketch = copyOfCompiledSketch.replaceAll(":", "_");
|
||||
|
||||
Path compiledSketchPath;
|
||||
Path compiledSketchPathInSubfolder = Paths.get(prefs.get("build.path"), "sketch", compiledSketch);
|
||||
Path compiledSketchPathInBuildPath = Paths.get(prefs.get("build.path"), compiledSketch);
|
||||
if (Files.exists(compiledSketchPathInSubfolder)) {
|
||||
compiledSketchPath = compiledSketchPathInSubfolder;
|
||||
} else {
|
||||
} else if (Files.exists(compiledSketchPathInBuildPath)) {
|
||||
compiledSketchPath = compiledSketchPathInBuildPath;
|
||||
} else {
|
||||
return;
|
||||
}
|
||||
|
||||
Path copyOfCompiledSketchFilePath = Paths.get(this.sketch.getFolder().getAbsolutePath(), copyOfCompiledSketch);
|
||||
@ -525,12 +550,12 @@ public class Compiler implements MessageConsumer {
|
||||
}
|
||||
|
||||
if (error.trim().equals("'Mouse' was not declared in this scope")) {
|
||||
error = tr("'Mouse' only supported on the Arduino Leonardo");
|
||||
error = tr("'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?");
|
||||
//msg = _("\nThe 'Mouse' class is only supported on the Arduino Leonardo.\n\n");
|
||||
}
|
||||
|
||||
if (error.trim().equals("'Keyboard' was not declared in this scope")) {
|
||||
error = tr("'Keyboard' only supported on the Arduino Leonardo");
|
||||
error = tr("'Keyboard' not found. Does your sketch include the line '#include <Keyboard.h>'?");
|
||||
//msg = _("\nThe 'Keyboard' class is only supported on the Arduino Leonardo.\n\n");
|
||||
}
|
||||
|
||||
|
@ -97,13 +97,13 @@ public class GPGDetachedSignatureVerifier extends SignatureVerifier {
|
||||
private PGPPublicKey readPublicKey(InputStream input, String keyId) throws IOException, PGPException {
|
||||
PGPPublicKeyRingCollection pgpPub = new PGPPublicKeyRingCollection(PGPUtil.getDecoderStream(input), new BcKeyFingerprintCalculator());
|
||||
|
||||
Iterator keyRingIter = pgpPub.getKeyRings();
|
||||
Iterator<PGPPublicKeyRing> keyRingIter = pgpPub.getKeyRings();
|
||||
while (keyRingIter.hasNext()) {
|
||||
PGPPublicKeyRing keyRing = (PGPPublicKeyRing) keyRingIter.next();
|
||||
PGPPublicKeyRing keyRing = keyRingIter.next();
|
||||
|
||||
Iterator keyIter = keyRing.getPublicKeys();
|
||||
Iterator<PGPPublicKey> keyIter = keyRing.getPublicKeys();
|
||||
while (keyIter.hasNext()) {
|
||||
PGPPublicKey key = (PGPPublicKey) keyIter.next();
|
||||
PGPPublicKey key = keyIter.next();
|
||||
|
||||
if (Long.toHexString(key.getKeyID()).toUpperCase().endsWith(keyId)) {
|
||||
return key;
|
||||
|
@ -33,6 +33,7 @@ import processing.app.I18n;
|
||||
|
||||
import static processing.app.I18n.tr;
|
||||
|
||||
@SuppressWarnings("serial")
|
||||
public class SignatureVerificationFailedException extends Exception {
|
||||
|
||||
public SignatureVerificationFailedException(String filename) {
|
||||
|
@ -282,7 +282,11 @@ public class ContributionInstaller {
|
||||
}
|
||||
|
||||
for (String packageIndexURL : packageIndexURLs) {
|
||||
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
|
||||
try {
|
||||
downloadIndexAndSignature(progress, downloadedPackageIndexFilesAccumulator, packageIndexURL, progressListener);
|
||||
} catch (Exception e) {
|
||||
System.err.println(e.getMessage());
|
||||
}
|
||||
}
|
||||
|
||||
progress.stepDone();
|
||||
|
@ -164,7 +164,7 @@ public class ArchiveExtractor {
|
||||
while (stripPath > 0) {
|
||||
slash = name.indexOf("/", slash);
|
||||
if (slash == -1) {
|
||||
throw new IOException("Invalid archive: it must contains a single root folder");
|
||||
throw new IOException("Invalid archive: it must contain a single root folder");
|
||||
}
|
||||
slash++;
|
||||
stripPath--;
|
||||
@ -174,7 +174,7 @@ public class ArchiveExtractor {
|
||||
|
||||
// Strip the common path prefix when requested
|
||||
if (!name.startsWith(pathPrefix)) {
|
||||
throw new IOException("Invalid archive: it must contains a single root folder while file " + name + " is outside " + pathPrefix);
|
||||
throw new IOException("Invalid archive: it must contain a single root folder while file " + name + " is outside " + pathPrefix);
|
||||
}
|
||||
name = name.substring(pathPrefix.length());
|
||||
if (name.isEmpty()) {
|
||||
@ -185,7 +185,7 @@ public class ArchiveExtractor {
|
||||
File outputLinkedFile = null;
|
||||
if (isLink) {
|
||||
if (!linkName.startsWith(pathPrefix)) {
|
||||
throw new IOException("Invalid archive: it must contains a single root folder while file " + linkName + " is outside " + pathPrefix);
|
||||
throw new IOException("Invalid archive: it must contain a single root folder while file " + linkName + " is outside " + pathPrefix);
|
||||
}
|
||||
linkName = linkName.substring(pathPrefix.length());
|
||||
outputLinkedFile = new File(destFolder, linkName);
|
||||
|
@ -39,9 +39,9 @@ import static processing.app.helpers.filefilters.OnlyDirs.ONLY_DIRS;
|
||||
public class BaseNoGui {
|
||||
|
||||
/** Version string to be used for build */
|
||||
public static final int REVISION = 10606;
|
||||
public static final int REVISION = 10607;
|
||||
/** Extended version string displayed on GUI */
|
||||
public static final String VERSION_NAME = "1.6.6";
|
||||
public static final String VERSION_NAME = "1.6.7";
|
||||
public static final String VERSION_NAME_LONG;
|
||||
|
||||
// Current directory to use for relative paths specified on the
|
||||
@ -618,8 +618,8 @@ public class BaseNoGui {
|
||||
}
|
||||
|
||||
private static void copyStockLibraryIndexIfUpstreamIsMissing(File librariesIndexFile) throws IOException {
|
||||
if (!librariesIndexFile.isFile()) {
|
||||
File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json");
|
||||
File defaultLibraryJsonFile = new File(getContentFile("dist"), "library_index.json");
|
||||
if (!librariesIndexFile.isFile() || (defaultLibraryJsonFile.isFile() && defaultLibraryJsonFile.lastModified() > librariesIndexFile.lastModified())) {
|
||||
if (defaultLibraryJsonFile.isFile()) {
|
||||
FileUtils.copyFile(defaultLibraryJsonFile, librariesIndexFile);
|
||||
} else {
|
||||
|
@ -112,7 +112,11 @@ public class Serial implements SerialPortEventListener {
|
||||
try {
|
||||
port = new SerialPort(iname);
|
||||
port.openPort();
|
||||
port.setParams(irate, idatabits, stopbits, parity, true, true);
|
||||
boolean res = port.setParams(irate, idatabits, stopbits, parity, true, true);
|
||||
if (!res) {
|
||||
System.err.println(format(tr("Error while setting serial port parameters: {0} {1} {2} {3}"),
|
||||
irate, iparity, idatabits, istopbits));
|
||||
}
|
||||
port.addEventListener(this);
|
||||
} catch (SerialPortException e) {
|
||||
if (e.getPortName().startsWith("/dev") && SerialPortException.TYPE_PERMISSION_DENIED.equals(e.getExceptionType())) {
|
||||
|
@ -26,8 +26,13 @@ import processing.app.helpers.FileUtils;
|
||||
|
||||
import java.io.File;
|
||||
import java.io.IOException;
|
||||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
import java.nio.file.Paths;
|
||||
import java.util.Arrays;
|
||||
import java.util.List;
|
||||
import java.util.stream.Collectors;
|
||||
import java.util.stream.Stream;
|
||||
|
||||
import static processing.app.I18n.tr;
|
||||
|
||||
@ -48,11 +53,6 @@ public class SketchCode {
|
||||
|
||||
private boolean modified;
|
||||
|
||||
/**
|
||||
* where this code starts relative to the concat'd code
|
||||
*/
|
||||
private int preprocOffset;
|
||||
|
||||
private Object metadata;
|
||||
|
||||
public SketchCode(File file) {
|
||||
@ -91,35 +91,39 @@ public class SketchCode {
|
||||
}
|
||||
|
||||
|
||||
protected boolean deleteFile(File tempBuildFolder) {
|
||||
protected boolean deleteFile(File tempBuildFolder) throws IOException {
|
||||
if (!file.delete()) {
|
||||
return false;
|
||||
}
|
||||
|
||||
if (!deleteCompiledFilesFrom(tempBuildFolder)) {
|
||||
return false;
|
||||
}
|
||||
List<Path> tempBuildFolders = Stream.of(tempBuildFolder.toPath(), Paths.get(tempBuildFolder.getAbsolutePath(), "sketch"))
|
||||
.filter(path -> Files.exists(path))
|
||||
.collect(Collectors.toList());
|
||||
|
||||
if (!deleteCompiledFilesFrom(new File(tempBuildFolder, "sketch"))) {
|
||||
return false;
|
||||
for (Path folder : tempBuildFolders) {
|
||||
if (!deleteCompiledFilesFrom(folder)) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
|
||||
return true;
|
||||
}
|
||||
|
||||
private boolean deleteCompiledFilesFrom(File tempBuildFolder) {
|
||||
File[] compiledFiles = tempBuildFolder.listFiles(pathname -> {
|
||||
return pathname.getName().startsWith(getFileName());
|
||||
});
|
||||
for (File compiledFile : compiledFiles) {
|
||||
if (!compiledFile.delete()) {
|
||||
private boolean deleteCompiledFilesFrom(Path tempBuildFolder) throws IOException {
|
||||
List<Path> compiledFiles = Files.list(tempBuildFolder)
|
||||
.filter(pathname -> pathname.getFileName().toString().startsWith(getFileName()))
|
||||
.collect(Collectors.toList());
|
||||
|
||||
for (Path compiledFile : compiledFiles) {
|
||||
try {
|
||||
Files.delete(compiledFile);
|
||||
} catch (IOException e) {
|
||||
return false;
|
||||
}
|
||||
}
|
||||
return true;
|
||||
}
|
||||
|
||||
|
||||
protected boolean renameTo(File what) {
|
||||
boolean success = file.renameTo(what);
|
||||
if (success) {
|
||||
@ -181,16 +185,6 @@ public class SketchCode {
|
||||
}
|
||||
|
||||
|
||||
public void setPreprocOffset(int preprocOffset) {
|
||||
this.preprocOffset = preprocOffset;
|
||||
}
|
||||
|
||||
|
||||
public void addPreprocOffset(int extra) {
|
||||
preprocOffset += extra;
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Load this piece of code from a file.
|
||||
*/
|
||||
|
@ -58,12 +58,12 @@ public class FileUtils {
|
||||
public static void copy(File sourceFolder, File destFolder) throws IOException {
|
||||
for (File file : sourceFolder.listFiles()) {
|
||||
File destFile = new File(destFolder, file.getName());
|
||||
if (file.isDirectory()) {
|
||||
if (!destFile.mkdir()) {
|
||||
if (file.isDirectory() && !SOURCE_CONTROL_FOLDERS.contains(file.getName())) {
|
||||
if (!destFile.exists() && !destFile.mkdir()) {
|
||||
throw new IOException("Unable to create folder: " + destFile);
|
||||
}
|
||||
copy(file, destFile);
|
||||
} else {
|
||||
} else if (!file.isDirectory()) {
|
||||
copyFile(file, destFile);
|
||||
}
|
||||
}
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Edrean Ernst <edrean@allesbeste.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Afrikaans (http://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,12 +38,15 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
@ -874,6 +878,11 @@ msgstr ""
|
||||
msgid "Error while printing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,10 +2312,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Edrean Ernst <edrean@allesbeste.com>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Afrikaans (http\://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: af\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Afrikaans (http\://www.transifex.com/mbanzi/arduino-ide-15/language/af/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: af\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
!\ \ (requires\ restart\ of\ Arduino)=
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Arduino\:\ =Arduino\:
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ Yes=Ja
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Daniel Martinez <entaltoaragon@gmail.com>, 2014-2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Aragonese (http://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,13 +38,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Teclau' solament suportau por Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Churi' solament suportau por Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -874,6 +878,11 @@ msgstr "Error mientres se cargaba o codigo {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Error en imprentar."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,11 +2312,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "No puetz renombrar o programa a \"{0}\"\nporque o programa encara tiene un fichero .cpp con ixe nombre"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "No puetz alzar o programa como \"{0}\"\nporque o programa encara tiene un fichero .cpp con ixe nombre"
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Daniel Martinez <entaltoaragon@gmail.com>, 2014-2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Aragonese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: an\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Aragonese (http\://www.transifex.com/mbanzi/arduino-ide-15/language/an/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: an\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(requiere reiniciar Arduino)
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclau' solament suportau por Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Churi' solament suportau por Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Error mientres se cargaba o codigo {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Error en imprentar.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No pued
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz renombrar o programa a "{0}"\nporque o programa encara tiene un fichero .cpp con ixe nombre
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puetz alzar o programa como "{0}"\nporque o programa encara tiene un fichero .cpp con ixe nombre
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puetz alzar o programa dentro d'una carpeta en o suyo interior.\nIsto ser\u00eda infinito.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# alsadi <alsadi@gmail.com>, 2012
|
||||
# amas89 <amas89@gmail.com>, 2012
|
||||
# belal affouri <belal@eshtre.com>, 2015
|
||||
@ -20,7 +21,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Arabic (http://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -43,13 +44,16 @@ msgstr " غير مستخدم : {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr " مستخدم : {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'لوحة المفاتيح' يمكن ان تعمل فقط على لوحة اردوينو ليوناردو"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'الفأرة' يمكن ان تعمل فقط على لوحة اردوينو ليوناردو"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -880,6 +884,11 @@ msgstr "خطأ اثناء تحميل الكود {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr ".خطأ خلال الطباعة "
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "خطأ أثناء التحميل"
|
||||
@ -1034,11 +1043,11 @@ msgstr "المتغيرات العامة تستخدم {0} بايت من الذا
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
msgid "Go to line"
|
||||
msgstr ""
|
||||
msgstr "اذهب الى السطر"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
msgid "Go to line..."
|
||||
msgstr ""
|
||||
msgstr "اذهب الى السطر..."
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
@ -1199,7 +1208,7 @@ msgstr "المكتبة مثبته مسبقا: {0} اصدار {1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
msgid "Line number:"
|
||||
msgstr ""
|
||||
msgstr "رقم السطر:"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Lithuaninan"
|
||||
@ -2301,7 +2310,7 @@ msgstr "لا يمكن ان يكون لديك ملف .cpp مع نفس اسم ال
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2312
|
||||
msgid "You can't import a folder that contains your sketchbook"
|
||||
msgstr ""
|
||||
msgstr "لايمكنك استيراد المجلد الذي يحتوي على شيفرتك البرمجية"
|
||||
|
||||
#: Sketch.java:421
|
||||
msgid ""
|
||||
@ -2309,11 +2318,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "لا يمكن اعادة تسمية الشيفرة البرمجية لـ \"{0}\"\nلأن الشيفرة البرمجية لديه ملف .cpp مسبقا بنفس الاسم"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "لا يمكنك حفظ الشيفرة البرمجية كـ \"{0}\"\nلان الشيفرة البرمجية بالفعل لديه ملف .cpp بنفس الاسم."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# alsadi <alsadi@gmail.com>, 2012
|
||||
# amas89 <amas89@gmail.com>, 2012
|
||||
# belal affouri <belal@eshtre.com>, 2015
|
||||
@ -15,7 +16,7 @@
|
||||
# JAMAL ELMERABETE <jmerabet@procyonst.com>, 2014-2015
|
||||
# Khaled Saleem Baleesh <Kbaleesh@gmail.com>, 2015
|
||||
# Mubarak Qahtani <abu-q76@hotmail.com>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Arabic (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ar\nPlural-Forms\: nplurals\=6; plural\=n\=\=0 ? 0 \: n\=\=1 ? 1 \: n\=\=2 ? 2 \: n%100>\=3 && n%100<\=10 ? 3 \: n%100>\=11 && n%100<\=99 ? 4 \: 5;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Arabic (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ar/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ar\nPlural-Forms\: nplurals\=6; plural\=n\=\=0 ? 0 \: n\=\=1 ? 1 \: n\=\=2 ? 2 \: n%100>\=3 && n%100<\=10 ? 3 \: n%100>\=11 && n%100<\=99 ? 4 \: 5;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u064a\u062a\u0637\u0644\u0628 \u0627\u0639\u0627\u062f\u0629 \u062a\u0634\u063a\u064a\u0644 \u0644\u0644\u0623\u0631\u062f\u0648\u064a\u0646\u0648)
|
||||
@ -28,11 +29,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=\ \u0645\u0633\u062a\u062e\u062f\u0645 \: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='\u0644\u0648\u062d\u0629 \u0627\u0644\u0645\u0641\u0627\u062a\u064a\u062d' \u064a\u0645\u0643\u0646 \u0627\u0646 \u062a\u0639\u0645\u0644 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u064a\u0648\u0646\u0627\u0631\u062f\u0648
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='\u0627\u0644\u0641\u0623\u0631\u0629' \u064a\u0645\u0643\u0646 \u0627\u0646 \u062a\u0639\u0645\u0644 \u0641\u0642\u0637 \u0639\u0644\u0649 \u0644\u0648\u062d\u0629 \u0627\u0631\u062f\u0648\u064a\u0646\u0648 \u0644\u064a\u0648\u0646\u0627\u0631\u062f\u0648
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u0645\u062c\u0644\u062f 'arch' \u0644\u0645 \u064a\u0639\u062f \u0645\u062f\u0639\u0648\u0645\u0627\! \u0644\u0644\u0645\u0632\u064a\u062f \u0645\u0646 \u0627\u0644\u0645\u0639\u0644\u0648\u0645\u0627\u062a http\://goo.gl/gfFJzU
|
||||
@ -634,6 +635,10 @@ Error\ while\ loading\ code\ {0}=\u062e\u0637\u0623 \u0627\u062b\u0646\u0627\u06
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=.\u062e\u0637\u0623 \u062e\u0644\u0627\u0644 \u0627\u0644\u0637\u0628\u0627\u0639\u0629
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=\u062e\u0637\u0623 \u0623\u062b\u0646\u0627\u0621 \u0627\u0644\u062a\u062d\u0645\u064a\u0644
|
||||
|
||||
@ -748,10 +753,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\
|
||||
Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0627\u0644\u0645\u062a\u063a\u064a\u0631\u0627\u062a \u0627\u0644\u0639\u0627\u0645\u0629 \u062a\u0633\u062a\u062e\u062f\u0645 {0} \u0628\u0627\u064a\u062a \u0645\u0646 \u0627\u0644\u0630\u0627\u0643\u0631\u0629 \u0627\u0644\u0645\u062a\u063a\u064a\u0631\u0629.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
!Go\ to\ line=
|
||||
Go\ to\ line=\u0627\u0630\u0647\u0628 \u0627\u0644\u0649 \u0627\u0644\u0633\u0637\u0631
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
!Go\ to\ line...=
|
||||
Go\ to\ line...=\u0627\u0630\u0647\u0628 \u0627\u0644\u0649 \u0627\u0644\u0633\u0637\u0631...
|
||||
|
||||
#: Preferences.java:98
|
||||
Greek=Greek
|
||||
@ -868,7 +873,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0627\u0644\u0645\u0
|
||||
Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0627\u0644\u0645\u0643\u062a\u0628\u0629 \u0645\u062b\u0628\u062a\u0647 \u0645\u0633\u0628\u0642\u0627\: {0} \u0627\u0635\u062f\u0627\u0631 {1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
!Line\ number\:=
|
||||
Line\ number\:=\u0631\u0642\u0645 \u0627\u0644\u0633\u0637\u0631\:
|
||||
|
||||
#: Preferences.java:106
|
||||
Lithuaninan=Lithuaninan
|
||||
@ -1655,13 +1660,13 @@ You\ can't\ fool\ me=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062e\u062f\u0
|
||||
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0646 \u064a\u0643\u0648\u0646 \u0644\u062f\u064a\u0643 \u0645\u0644\u0641 .cpp \u0645\u0639 \u0646\u0641\u0633 \u0627\u0633\u0645 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2312
|
||||
!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=
|
||||
You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0644\u0627\u064a\u0645\u0643\u0646\u0643 \u0627\u0633\u062a\u064a\u0631\u0627\u062f \u0627\u0644\u0645\u062c\u0644\u062f \u0627\u0644\u0630\u064a \u064a\u062d\u062a\u0648\u064a \u0639\u0644\u0649 \u0634\u064a\u0641\u0631\u062a\u0643 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629
|
||||
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0644\u0627 \u064a\u0645\u0643\u0646 \u0627\u0639\u0627\u062f\u0629 \u062a\u0633\u0645\u064a\u0629 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0644\u0640 "{0}"\n\u0644\u0623\u0646 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0644\u062f\u064a\u0647 \u0645\u0644\u0641 .cpp \u0645\u0633\u0628\u0642\u0627 \u0628\u0646\u0641\u0633 \u0627\u0644\u0627\u0633\u0645
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0641\u0638 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0643\u0640 "{0}"\n\u0644\u0627\u0646 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0628\u0627\u0644\u0641\u0639\u0644 \u0644\u062f\u064a\u0647 \u0645\u0644\u0641 .cpp \u0628\u0646\u0641\u0633 \u0627\u0644\u0627\u0633\u0645.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0644\u0627 \u064a\u0645\u0643\u0646\u0643 \u062d\u0641\u0638 \u0627\u0644\u0634\u064a\u0641\u0631\u0629 \u0627\u0644\u0628\u0631\u0645\u062c\u064a\u0629 \u0627\u0644\u0649 \u0645\u062c\u0644\u062f\n \u0628\u062f\u0627\u062e\u0644 \u0646\u0641\u0633\u0647. \u0631\u0628\u0645\u0627 \u062a\u0633\u062a\u0645\u0631 \u0628\u0630\u0644\u0643 \u0627\u0644\u0649 \u0627\u0644\u0627\u0628\u062f.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Xuacu Saturio <xuacusk8@gmail.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Asturian (http://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,12 +38,15 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
@ -874,6 +878,11 @@ msgstr ""
|
||||
msgid "Error while printing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,10 +2312,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Xuacu Saturio <xuacusk8@gmail.com>, 2013
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Asturian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ast\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Asturian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ast/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ast\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
!\ \ (requires\ restart\ of\ Arduino)=
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ Time\ for\ a\ Break=Tiempu pa un descansu
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# debconf <prach.by@gmail.com>, 2013-2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Belarusian (http://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,13 +38,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' падтрымліваецца толькі на Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' падтрымліваецца толькі на Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -874,6 +878,11 @@ msgstr "Памылка падчас загрузкі коду {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Памылка падчас друку."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,11 +2312,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Вы не можаце перайменаваць скетч у \"{0}\",\nтаму што скетч ужо мае .cpp файл з такім імём."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Вы не можаце захаваць як \"{0}\",\nтаму што скетч ужо мае .cpp файл з такім імём."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# debconf <prach.by@gmail.com>, 2013-2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Belarusian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: be\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Belarusian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/be/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: be\nPlural-Forms\: nplurals\=4; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<12 || n%100>14) ? 1 \: n%10\=\=0 || (n%10>\=5 && n%10<\=9) || (n%100>\=11 && n%100<\=14)? 2 \: 3);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u043f\u0430\u0442\u0440\u0430\u0431\u0443\u0435 \u043f\u0435\u0440\u0430\u0437\u0430\u043f\u0443\u0441\u043a Arduino)
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u043d\u0430 Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u043f\u0430\u0434\u0442\u0440\u044b\u043c\u043b\u0456\u0432\u0430\u0435\u0446\u0446\u0430 \u0442\u043e\u043b\u044c\u043a\u0456 \u043d\u0430 Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u04
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u041f\u0430\u043c\u044b\u043b\u043a\u0430 \u043f\u0430\u0434\u0447\u0430\u0441 \u0434\u0440\u0443\u043a\u0443.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0412\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u043f\u0435\u0440\u0430\u0439\u043c\u0435\u043d\u0430\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 "{0}",\n\u0442\u0430\u043c\u0443 \u0448\u0442\u043e \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u043e \u043c\u0430\u0435 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0456\u043c \u0456\u043c\u0451\u043c.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u0437\u0430\u0445\u0430\u0432\u0430\u0446\u044c \u044f\u043a "{0}",\n\u0442\u0430\u043c\u0443 \u0448\u0442\u043e \u0441\u043a\u0435\u0442\u0447 \u0443\u0436\u043e \u043c\u0430\u0435 .cpp \u0444\u0430\u0439\u043b \u0437 \u0442\u0430\u043a\u0456\u043c \u0456\u043c\u0451\u043c.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0412\u044b \u043d\u0435 \u043c\u043e\u0436\u0430\u0446\u0435 \u0437\u0430\u0445\u043e\u045e\u0432\u0430\u0446\u044c \u0441\u043a\u0435\u0442\u0447 \u0443 \u043a\u0430\u0442\u0430\u043b\u043e\u0433\n\u0443\u043d\u0443\u0442\u0440\u044b \u0441\u043a\u0435\u0442\u0447\u0430. \u0413\u044d\u0442\u0430 \u045e\u0441\u0451 \u045e\u0441\u043a\u043b\u0430\u0434\u043d\u0456\u0446\u044c
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Anton Stoychev <antitoxic@gmail.com>, 2013
|
||||
# Valentin Laskov <laskov@festa.bg>, 2012-2015
|
||||
msgid ""
|
||||
@ -15,7 +16,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Bulgarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -38,13 +39,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' се поддържа само от Ардуино Леонардо"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' се поддържа само от Ардуино Леонардо"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -875,6 +879,11 @@ msgstr "Грешка при зареждане на код {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Грешка при отпечатването."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Грешка при качването"
|
||||
@ -2304,11 +2313,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Не може да преименувате скицата на \"{0}\"\nпонеже скицата вече има .cpp файл с това име."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Не можете да запишете скицата като \"{0}\"\nпонеже скицата вече съдържа .cpp файл с това име."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,9 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Anton Stoychev <antitoxic@gmail.com>, 2013
|
||||
# Valentin Laskov <laskov@festa.bg>, 2012-2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Bulgarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Bulgarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bg/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bg\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (\u0438\u0437\u0438\u0441\u043a\u0432\u0430 \u0440\u0435\u0441\u0442\u0430\u0440\u0442\u0438\u0440\u0430\u043d\u0435 \u043d\u0430 \u0410\u0440\u0434\u0443\u0438\u043d\u043e)
|
||||
@ -23,11 +24,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0441\u0430\u043c\u043e \u043e\u0442 \u0410\u0440\u0434\u0443\u0438\u043d\u043e \u041b\u0435\u043e\u043d\u0430\u0440\u0434\u043e
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' \u0441\u0435 \u043f\u043e\u0434\u0434\u044a\u0440\u0436\u0430 \u0441\u0430\u043c\u043e \u043e\u0442 \u0410\u0440\u0434\u0443\u0438\u043d\u043e \u041b\u0435\u043e\u043d\u0430\u0440\u0434\u043e
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u04
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043e\u0442\u043f\u0435\u0447\u0430\u0442\u0432\u0430\u043d\u0435\u0442\u043e.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=\u0413\u0440\u0435\u0448\u043a\u0430 \u043f\u0440\u0438 \u043a\u0430\u0447\u0432\u0430\u043d\u0435\u0442\u043e
|
||||
|
||||
@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u041d\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u043f\u0440\u0435\u0438\u043c\u0435\u043d\u0443\u0432\u0430\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u043d\u0430 "{0}"\n\u043f\u043e\u043d\u0435\u0436\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0432\u0435\u0447\u0435 \u0438\u043c\u0430 .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u043e\u0432\u0430 \u0438\u043c\u0435.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u041d\u0435 \u043c\u043e\u0436\u0435\u0442\u0435 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u043a\u0430\u0442\u043e "{0}"\n\u043f\u043e\u043d\u0435\u0436\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0432\u0435\u0447\u0435 \u0441\u044a\u0434\u044a\u0440\u0436\u0430 .cpp \u0444\u0430\u0439\u043b \u0441 \u0442\u043e\u0432\u0430 \u0438\u043c\u0435.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u041d\u0435 \u043c\u043e\u0436\u0435 \u0434\u0430 \u0437\u0430\u043f\u0438\u0448\u0435\u0442\u0435 \u0441\u043a\u0438\u0446\u0430\u0442\u0430 \u0432 \u043f\u0430\u043f\u043a\u0430\n\u0432 \u0441\u0430\u043c\u0430\u0442\u0430 \u043d\u0435\u044f. \u0422\u043e\u0432\u0430 \u0449\u0435 \u043f\u0440\u043e\u0434\u044a\u043b\u0436\u0438 \u0432\u0435\u0447\u043d\u043e.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Kenan Dervišević, 2013-2014
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Bosnian (http://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,12 +38,15 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
@ -874,6 +878,11 @@ msgstr ""
|
||||
msgid "Error while printing."
|
||||
msgstr "Greška prilikom štampanja."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,10 +2312,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Kenan Dervi\u0161evi\u0107, 2013-2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Bosnian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bs\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Bosnian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/bs/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: bs\nPlural-Forms\: nplurals\=3; plural\=(n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(zahtjeva ponovno pokretanje Arduina)
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error=Gre\u0161ka
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Gre\u0161ka prilikom \u0161tampanja.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ Yes=Da
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Francesc <kiski97@gmail.com>, 2015
|
||||
# Moritz Werner Casero <moritzwernercasero@gmail.com>, 2015
|
||||
# Sergi Pérez Labernia <rndrnd@gmail.com>, 2014
|
||||
@ -18,7 +19,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Catalan (http://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -41,19 +42,22 @@ msgstr "No fet servir:{0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr "fet servir:{0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' només ho suporta l'Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' només ho suporta l'Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more "
|
||||
"information"
|
||||
msgstr ""
|
||||
msgstr "La carpeta 'arch' ja no és suporta! Mira http://goo.gl/gfFJzU per saber més informació."
|
||||
|
||||
#: Preferences.java:478
|
||||
msgid "(edit only when Arduino is not running)"
|
||||
@ -61,11 +65,11 @@ msgstr "(només editar quan l'Arduino no estigui funcionant)"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
msgid "(legacy)"
|
||||
msgstr ""
|
||||
msgstr "(llegat)"
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
msgid "--curdir no longer supported"
|
||||
msgstr ""
|
||||
msgstr "--curdir ja no es suporta."
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
msgid ""
|
||||
@ -125,11 +129,11 @@ msgstr "Una nova versió del software d'Arduino es troba disponible,\nvols visit
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid "A newer {0} package is available"
|
||||
msgstr ""
|
||||
msgstr "Un paquet {0} nou esta disponible."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
msgid "A subfolder of your sketchbook is not a valid library"
|
||||
msgstr ""
|
||||
msgstr "Una sub-carpeta del teu bloc de programaris no és una llibreria vàlida."
|
||||
|
||||
#: Editor.java:1116
|
||||
msgid "About Arduino"
|
||||
@ -163,7 +167,7 @@ msgstr "Albanès"
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Tot"
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
msgid ""
|
||||
@ -878,6 +882,11 @@ msgstr "Error durant la carrega de codi {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Error durant la impressió."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Error mentre es pujava el programàri."
|
||||
@ -2307,11 +2316,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "No pot reanomenar el sketch a \"{0}\"\nper què el sketch ja té un fitxer .cpp amb el mateix nom."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "No pot reanomenar el sketch a \"{0}\"\nper què el sketch ja té un fitxer .cpp amb el mateix nom."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,12 +8,13 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Francesc <kiski97@gmail.com>, 2015
|
||||
# Moritz Werner Casero <moritzwernercasero@gmail.com>, 2015
|
||||
# Sergi P\u00e9rez Labernia <rndrnd@gmail.com>, 2014
|
||||
# shacawine <shacawine@gmail.com>, 2012
|
||||
# Xavier Romero Aguad\u00e9 <xromeva@gmail.com>, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Catalan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ca\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Catalan (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ca/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ca\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u00e9s necessari reiniciar l'Arduino)
|
||||
@ -26,23 +27,23 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=fet servir\:{0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' nom\u00e9s ho suporta l'Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' nom\u00e9s ho suporta l'Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=La carpeta 'arch' ja no \u00e9s suporta\! Mira http\://goo.gl/gfFJzU per saber m\u00e9s informaci\u00f3.
|
||||
|
||||
#: Preferences.java:478
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(nom\u00e9s editar quan l'Arduino no estigui funcionant)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
!(legacy)=
|
||||
(legacy)=(llegat)
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
!--curdir\ no\ longer\ supported=
|
||||
--curdir\ no\ longer\ supported=--curdir ja no es suporta.
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verb\u00f3s, --verb\u00f3s-pujar i -verb\u00f3s-build nom\u00e9s es poden emprar juntes amb --verificar o --pujar
|
||||
@ -82,10 +83,10 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
!A\ newer\ {0}\ package\ is\ available=
|
||||
A\ newer\ {0}\ package\ is\ available=Un paquet {0} nou esta disponible.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=
|
||||
A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Una sub-carpeta del teu bloc de programaris no \u00e9s una llibreria v\u00e0lida.
|
||||
|
||||
#: Editor.java:1116
|
||||
About\ Arduino=Quant a Arduino
|
||||
@ -111,7 +112,7 @@ Albanian=Alban\u00e8s
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
!All=
|
||||
All=Tot
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=Un error ha succe\u00eft provant d'arreglar la codificaci\u00f3 del fitxer.\nNo provi de desar aquest program\u00e0ri, podria sobreescriure\nla versi\u00f3 antiga. Utilitzi "Obrir" per re-obrir el programari tornar-ho a provar.\n
|
||||
@ -632,6 +633,10 @@ Error\ while\ loading\ code\ {0}=Error durant la carrega de codi {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Error durant la impressi\u00f3.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Error mentre es pujava el program\u00e0ri.
|
||||
|
||||
@ -1658,8 +1663,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=No pot
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot reanomenar el sketch a "{0}"\nper qu\u00e8 el sketch ja t\u00e9 un fitxer .cpp amb el mateix nom.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No pot reanomenar el sketch a "{0}"\nper qu\u00e8 el sketch ja t\u00e9 un fitxer .cpp amb el mateix nom.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No pot desar el sketch en una carpeta\ndins del mateix. Aix\u00f2 seria un proc\u00e9s infinit.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# horcicaa <horcicaa@gmail.com>, 2012
|
||||
# fatalwir <fatalwir@seznam.cz>, 2014
|
||||
# Michal Kočer <mcha@4makers.cz>, 2012
|
||||
@ -20,7 +21,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Czech (Czech Republic) (http://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -43,13 +44,16 @@ msgstr " Nepoužitý: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr " Použitý: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' je podporováno pouze u Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' je podporováno pouze u Arduino Leonardo!"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -880,6 +884,11 @@ msgstr "Chyba při nahrávání kódu {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Chyba během tisku."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Nastala chyba při nahrávání"
|
||||
@ -2309,11 +2318,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Nelze přejmenovat projekt na \"{0}\"\nprotože soubor stejného jména avšak s příponou .cpp již existuje."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Nelze uložit projekt jako \"{0}\"\nprotože projekt obsahuje soubor .cpp stejného názvu."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# horcicaa <horcicaa@gmail.com>, 2012
|
||||
# fatalwir <fatalwir@seznam.cz>, 2014
|
||||
# Michal Ko\u010der <mcha@4makers.cz>, 2012
|
||||
@ -15,7 +16,7 @@
|
||||
# Michal Ko\u010der <mcha@4makers.cz>, 2013-2014
|
||||
# Ondrej Novy <novy@ondrej.org>, 2015
|
||||
# Zdeno Seker\u00e1k <etrsek@gmail.com>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Czech (Czech Republic) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/cs_CZ/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: cs_CZ\nPlural-Forms\: nplurals\=3; plural\=(n\=\=1) ? 0 \: (n>\=2 && n<\=4) ? 1 \: 2;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (vy\u017eaduje restart programu Arduino)
|
||||
@ -28,11 +29,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=\ Pou\u017eit\u00fd\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' je podporov\u00e1no pouze u Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' je podporov\u00e1no pouze u Arduino Leonardo\!
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -634,6 +635,10 @@ Error\ while\ loading\ code\ {0}=Chyba p\u0159i nahr\u00e1v\u00e1n\u00ed k\u00f3
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Chyba b\u011bhem tisku.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Nastala chyba p\u0159i nahr\u00e1v\u00e1n\u00ed
|
||||
|
||||
@ -1660,8 +1665,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Nelze importovat
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze p\u0159ejmenovat projekt na "{0}"\nproto\u017ee soubor stejn\u00e9ho jm\u00e9na av\u0161ak s p\u0159\u00edponou .cpp ji\u017e existuje.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nelze ulo\u017eit projekt jako "{0}"\nproto\u017ee projekt obsahuje soubor .cpp stejn\u00e9ho n\u00e1zvu.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nelze ukl\u00e1dat projekt do adres\u00e1\u0159e uvnit\u0159 sebe sama.\nDo\u0161lo by k zacyklen\u00ed do nekone\u010dna.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Jakob Enevoldsen <enevoldsen.jakob@gmail.com>, 2014
|
||||
# Torben Løkke Leth <sshadows@sshadows.dk>, 2012
|
||||
# Torben Løkke Leth <sshadows@sshadows.dk>, 2012
|
||||
@ -17,7 +18,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Danish (Denmark) (http://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -40,13 +41,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' kun understøttet af Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' kun understøttet af Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -877,6 +881,11 @@ msgstr ""
|
||||
msgid "Error while printing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2306,10 +2315,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,11 +8,12 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Jakob Enevoldsen <enevoldsen.jakob@gmail.com>, 2014
|
||||
# Torben L\u00f8kke Leth <sshadows@sshadows.dk>, 2012
|
||||
# Torben L\u00f8kke Leth <sshadows@sshadows.dk>, 2012
|
||||
# Torben L\u00f8kke Leth <sshadows@sshadows.dk>, 2013
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da_DK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Danish (Denmark) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/da_DK/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: da_DK\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
!\ \ (requires\ restart\ of\ Arduino)=
|
||||
@ -25,11 +26,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' kun underst\u00f8ttet af Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' kun underst\u00f8ttet af Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -631,6 +632,10 @@ Error\ compiling.=Fejl i kompilering.
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1657,8 +1662,8 @@ You\ can't\ fool\ me=Du kan ikke snyde mig
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2014-2015
|
||||
# Lukas Bestle <lukas@lu-x.me>, 2013,2015
|
||||
# Dr. Mathias Wilhelm <mathias.wilhelm@freenet.de>, 2012
|
||||
@ -16,7 +17,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: German (Germany) (http://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -39,13 +40,16 @@ msgstr " Nicht benutzt: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr " Benutzt: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' wird nur vom Arduino Leonardo unterstützt"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' wird nur vom Arduino Leonardo unterstützt"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -876,6 +880,11 @@ msgstr "Fehler beim Laden des Quellcodes {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Fehler beim Drucken."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Fehler beim Hochladen"
|
||||
@ -1030,11 +1039,11 @@ msgstr "Globale Variablen verwenden {0} Bytes des dynamischen Speichers."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
msgid "Go to line"
|
||||
msgstr ""
|
||||
msgstr "Springe zu Zeile"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
msgid "Go to line..."
|
||||
msgstr ""
|
||||
msgstr "Springe zu Zeile..."
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
@ -1195,7 +1204,7 @@ msgstr "Bibliothek ist bereits installiert: {0} Version {1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
msgid "Line number:"
|
||||
msgstr ""
|
||||
msgstr "Zeilennummer:"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Lithuaninan"
|
||||
@ -2305,11 +2314,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Sie können den Sketch nicht in \"{0}\" umbenennen,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Sie können den Sketch nicht unter dem Namen \"{0}\" speichern,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,10 +8,11 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Ettore Atalan <atalanttore@googlemail.com>, 2014-2015
|
||||
# Lukas Bestle <lukas@lu-x.me>, 2013,2015
|
||||
# Dr. Mathias Wilhelm <mathias.wilhelm@freenet.de>, 2012
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: German (Germany) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: German (Germany) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/de_DE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: de_DE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (erfordert Neustart von Arduino)
|
||||
@ -24,11 +25,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=\ Benutzt\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' wird nur vom Arduino Leonardo unterst\u00fctzt
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' wird nur vom Arduino Leonardo unterst\u00fctzt
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=Der 'arch'-Ordner wird nicht mehr unterst\u00fctzt\! Bitte besuchen Sie http\://goo.gl/gfFJzU f\u00fcr weitere Informationen.
|
||||
@ -630,6 +631,10 @@ Error\ while\ loading\ code\ {0}=Fehler beim Laden des Quellcodes {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Fehler beim Drucken.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Fehler beim Hochladen
|
||||
|
||||
@ -744,10 +749,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\
|
||||
Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Globale Variablen verwenden {0} Bytes des dynamischen Speichers.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
!Go\ to\ line=
|
||||
Go\ to\ line=Springe zu Zeile
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
!Go\ to\ line...=
|
||||
Go\ to\ line...=Springe zu Zeile...
|
||||
|
||||
#: Preferences.java:98
|
||||
Greek=Griechisch
|
||||
@ -864,7 +869,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Eine Bibliothek kann
|
||||
Library\ is\ already\ installed\:\ {0}\ version\ {1}=Bibliothek ist bereits installiert\: {0} Version {1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
!Line\ number\:=
|
||||
Line\ number\:=Zeilennummer\:
|
||||
|
||||
#: Preferences.java:106
|
||||
Lithuaninan=Litauisch
|
||||
@ -1656,8 +1661,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Sie k\u00f6nnen
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Sie k\u00f6nnen den Sketch nicht in "{0}" umbenennen,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Sie k\u00f6nnen den Sketch nicht unter dem Namen "{0}" speichern,\nda der Sketch bereits eine .cpp-Datei mit diesem Namen hat.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sie k\u00f6nnen den Sketch nicht in seinem\neigenen Ordner speichern.\nDas w\u00fcrde unendlich so weiter gehen.
|
||||
|
@ -8,7 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Dimitris Zervas <01ttouch@gmail.com>, 2012
|
||||
# firewalker <firew4lker@gmail.com>, 2015
|
||||
# Spyridon Papanastasiou <spyridon.papanastasiou@gmail.com>, 2015
|
||||
# Γιάννης Σφακιανάκης <ysfakianakis@gmail.com>, 2013
|
||||
msgid ""
|
||||
@ -16,7 +18,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Greek (Greece) (http://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -39,19 +41,22 @@ msgstr "Όχι σε χρήση: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr "Σε χρήση: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "Το «Keyboard» υποστηρίζεται μόνο από το Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "Το «Mouse» υποστηρίζεται μόνο από το Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more "
|
||||
"information"
|
||||
msgstr ""
|
||||
msgstr "Ο φάκελος 'arch' δεν υποστηρίζεται πλέον! Δείτε στο http://goo.gl/gfFJzU για περισσότερε πληροφορίες"
|
||||
|
||||
#: Preferences.java:478
|
||||
msgid "(edit only when Arduino is not running)"
|
||||
@ -59,7 +64,7 @@ msgstr "(επεξεραστείτε μόνο όταν το Arduino δεν τρέ
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
msgid "(legacy)"
|
||||
msgstr ""
|
||||
msgstr "(παλαιό)"
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
msgid "--curdir no longer supported"
|
||||
@ -69,27 +74,27 @@ msgstr "το --curdir δεν υποστηρίζεται πλέον"
|
||||
msgid ""
|
||||
"--verbose, --verbose-upload and --verbose-build can only be used together "
|
||||
"with --verify or --upload"
|
||||
msgstr "τα --verbose, --verbose-upload και --verbose-build μπορούν να μόνο μαζί με τα --verify ή --upload"
|
||||
msgstr "τα --verbose, --verbose-upload και --verbose-build μπορούν να χρησιμοποιηθούν μόνο μαζί με τα --verify ή --upload"
|
||||
|
||||
#: Sketch.java:746
|
||||
msgid ".pde -> .ino"
|
||||
msgstr ""
|
||||
msgstr ".pde -> .ino"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
|
||||
#, java-format
|
||||
msgid "<br/>Update available for some of your {0}boards{1}"
|
||||
msgstr ""
|
||||
msgstr "<br/>Διαθέσιμη ενημέρωση για μερικές από τις {0}πλακέτες{1} σας"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66
|
||||
#, java-format
|
||||
msgid ""
|
||||
"<br/>Update available for some of your {0}boards{1} and {2}libraries{3}"
|
||||
msgstr ""
|
||||
msgstr "<br/>Διαθέσιμη ενημέρωση για μερικές από τις {0}πλακέτες{1} και {2}βιβλιοθήκες σας{3} σας"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62
|
||||
#, java-format
|
||||
msgid "<br/>Update available for some of your {0}libraries{1}"
|
||||
msgstr ""
|
||||
msgstr "<br/>Διαθέσιμη ενημέρωση για μερικές από τις {0}βιβλιοθήκες{1} σας"
|
||||
|
||||
#: Editor.java:2053
|
||||
msgid ""
|
||||
@ -123,70 +128,70 @@ msgstr "Μια νέα έκδοση του Arduino είναι διαθέσιμη,
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid "A newer {0} package is available"
|
||||
msgstr ""
|
||||
msgstr "Ένα νέο {0} πακέτο είναι διαθέσιμο"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
msgid "A subfolder of your sketchbook is not a valid library"
|
||||
msgstr ""
|
||||
msgstr "Ένας υποφάκελλος του sketchbook σας δεν είναι έγγυρη βιβλιοθήκη"
|
||||
|
||||
#: Editor.java:1116
|
||||
msgid "About Arduino"
|
||||
msgstr ""
|
||||
msgstr "Περί του Arduino"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
msgid "Add .ZIP Library..."
|
||||
msgstr ""
|
||||
msgstr "Προσθήκη βιβλιοθήκης ZIP..."
|
||||
|
||||
#: Editor.java:650
|
||||
msgid "Add File..."
|
||||
msgstr ""
|
||||
msgstr "Προσθήκη αρχείου..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73
|
||||
msgid "Additional Boards Manager URLs"
|
||||
msgstr ""
|
||||
msgstr "Επιπλέον URLs Διαχειριστή Πλακετών"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268
|
||||
msgid "Additional Boards Manager URLs: "
|
||||
msgstr ""
|
||||
msgstr "Επιπλέον URLs Διαχειριστή Πλακετών:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:161
|
||||
msgid "Afrikaans"
|
||||
msgstr ""
|
||||
msgstr "Αφρικανικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:96
|
||||
msgid "Albanian"
|
||||
msgstr ""
|
||||
msgstr "Αλβανικά"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Όλα"
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
msgid ""
|
||||
"An error occurred while trying to fix the file encoding.\n"
|
||||
"Do not attempt to save this sketch as it may overwrite\n"
|
||||
"the old version. Use Open to re-open the sketch and try again.\n"
|
||||
msgstr ""
|
||||
msgstr "Προέκυψε ένα σφάλμα κατά την προσπάθεια επισκευής της κωδικοποίησης του αρχείου.\nΜην προσπαθήσετε να αποθηκεύσετε αυτό το σχέδιο καθώς μπορεί να αντικαταστήσει\nτην παλιά έκδοση. Χρησιμοποιήστε Άνοιγμα για να ανοίξετε πάλι το σχέδιο και προσπαθήστε πάλι.\n"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
|
||||
msgid "An error occurred while updating libraries index!"
|
||||
msgstr ""
|
||||
msgstr "Προέκυψε ένα σφάλμα κατά την ενημέρωση του ευρετηρίου βιβλιοθηκών!"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "An error occurred while uploading the sketch"
|
||||
msgstr ""
|
||||
msgstr "Προέκυψε ένα σφάλμα κατά την φόρτωση του σχεδίου"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
msgid "An error occurred while verifying the sketch"
|
||||
msgstr ""
|
||||
msgstr "Προέκυψε ένα σφάλμα κατά την επικύρωση του σχεδίου"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
msgid "An error occurred while verifying/uploading the sketch"
|
||||
msgstr ""
|
||||
msgstr "Προέκυψε ένα σφάλμα κατά την επικύρωση/φόρτωση του σχεδίου"
|
||||
|
||||
#: Base.java:228
|
||||
msgid ""
|
||||
@ -204,35 +209,35 @@ msgstr "Αραγονίας"
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
msgid "Archive Sketch"
|
||||
msgstr ""
|
||||
msgstr "Αρχειοθέτηση Σχεδίου"
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
msgid "Archive sketch as:"
|
||||
msgstr ""
|
||||
msgstr "Αρχειοθέτηση σχεδίου ως:"
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
msgid "Archive sketch canceled."
|
||||
msgstr ""
|
||||
msgstr "Ακυρώθηκε η αρχειοθέτηση σχεδίου."
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
msgid ""
|
||||
"Archiving the sketch has been canceled because\n"
|
||||
"the sketch couldn't save properly."
|
||||
msgstr ""
|
||||
msgstr "Η αρχειοθέτηση του σχεδίου ακυρώθηκε επειδή\nτο σχέδιο δεν μπορούσε να αποθηκευτεί σωστά."
|
||||
|
||||
#: ../../../processing/app/I18n.java:83
|
||||
msgid "Arduino ARM (32-bits) Boards"
|
||||
msgstr ""
|
||||
msgstr "Πλακέτες Arduino ARM (32-bits)"
|
||||
|
||||
#: ../../../processing/app/I18n.java:82
|
||||
msgid "Arduino AVR Boards"
|
||||
msgstr ""
|
||||
msgstr "Πλακέτες Arduino AVR"
|
||||
|
||||
#: Editor.java:2137
|
||||
msgid ""
|
||||
"Arduino can only open its own sketches\n"
|
||||
"and other files ending in .ino or .pde"
|
||||
msgstr ""
|
||||
msgstr "Το Arduino μπορεί να ανοίξει μόνο δικά του σχέδια\nκαι άλλα αρχεία που τελειώνουν σε .ino ή .pde"
|
||||
|
||||
#: Base.java:1682
|
||||
msgid ""
|
||||
@ -248,133 +253,133 @@ msgstr "Το Arduino δεν εκτελείται διότι δεν μπορεί\
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:471
|
||||
msgid "Arduino: "
|
||||
msgstr ""
|
||||
msgstr "Arduino: "
|
||||
|
||||
#: Sketch.java:588
|
||||
#, java-format
|
||||
msgid "Are you sure you want to delete \"{0}\"?"
|
||||
msgstr ""
|
||||
msgstr "Είστε σίγουρος πως θέλετε να διαγράψετε το \"{0}\";"
|
||||
|
||||
#: Sketch.java:587
|
||||
msgid "Are you sure you want to delete this sketch?"
|
||||
msgstr ""
|
||||
msgstr "Είστε σίγουρος πως θέλετε να διαγράψετε αυτό το σχέδιο;"
|
||||
|
||||
#: ../../../processing/app/Base.java:356
|
||||
msgid "Argument required for --board"
|
||||
msgstr ""
|
||||
msgstr "Απαιτείται όρισμα για το --board"
|
||||
|
||||
#: ../../../processing/app/Base.java:363
|
||||
msgid "Argument required for --port"
|
||||
msgstr ""
|
||||
msgstr "Απαιτείται όρισμα για το --port"
|
||||
|
||||
#: ../../../processing/app/Base.java:377
|
||||
msgid "Argument required for --pref"
|
||||
msgstr ""
|
||||
msgstr "Απαιτείται όρισμα για το --pref"
|
||||
|
||||
#: ../../../processing/app/Base.java:384
|
||||
msgid "Argument required for --preferences-file"
|
||||
msgstr ""
|
||||
msgstr "Απαιτείται όρισμα για το --preferences-file"
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:76
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:83
|
||||
#, java-format
|
||||
msgid "Argument required for {0}"
|
||||
msgstr ""
|
||||
msgstr "Απαιτείται όρισμα για το {0}"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:137
|
||||
msgid "Armenian"
|
||||
msgstr ""
|
||||
msgstr "Αρμένικα"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:138
|
||||
msgid "Asturian"
|
||||
msgstr ""
|
||||
msgstr "Αυστριακά"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:145
|
||||
msgid "Authorization required"
|
||||
msgstr ""
|
||||
msgstr "Απαιτείται εξουσιοδότηση"
|
||||
|
||||
#: tools/AutoFormat.java:91
|
||||
msgid "Auto Format"
|
||||
msgstr ""
|
||||
msgstr "Αυτόματη Διαμόρφωση"
|
||||
|
||||
#: tools/AutoFormat.java:944
|
||||
msgid "Auto Format finished."
|
||||
msgstr ""
|
||||
msgstr "Ολοκληρώθηκε η Αυτόματη Διαμόρφωση."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457
|
||||
msgid "Auto-detect proxy settings"
|
||||
msgstr ""
|
||||
msgstr "Αυτόματη ανίχνευση ρυθμίσεων διαμεσολαβητή"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474
|
||||
msgid "Automatic proxy configuration URL:"
|
||||
msgstr ""
|
||||
msgstr "URL αυτόματης ρύθμισης του διαμεσολαβητή:"
|
||||
|
||||
#: SerialMonitor.java:110
|
||||
msgid "Autoscroll"
|
||||
msgstr ""
|
||||
msgstr "Αυτόματη κύλιση"
|
||||
|
||||
#: Editor.java:2619
|
||||
#, java-format
|
||||
msgid "Bad error line: {0}"
|
||||
msgstr ""
|
||||
msgstr "Κακή γραμμή σφάλματος: {0}"
|
||||
|
||||
#: Editor.java:2136
|
||||
msgid "Bad file selected"
|
||||
msgstr ""
|
||||
msgstr "Επιλέχτηκε κακό αρχείο"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
msgid "Basque"
|
||||
msgstr ""
|
||||
msgstr "Βασκικά "
|
||||
|
||||
#: ../../../processing/app/Preferences.java:139
|
||||
msgid "Belarusian"
|
||||
msgstr ""
|
||||
msgstr "Λευκορωσικά"
|
||||
|
||||
#: ../../../processing/app/Base.java:1433
|
||||
#: ../../../processing/app/Editor.java:707
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
msgstr "Πλακέτα"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62
|
||||
#, java-format
|
||||
msgid "Board {0} (platform {1}, package {2}) is unknown"
|
||||
msgstr ""
|
||||
msgstr "Η Πλακέτα {0} (πλατφόρμα {1}, πακέτο {2}) είναι άγνωστη"
|
||||
|
||||
#: ../../../processing/app/debug/TargetBoard.java:42
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
|
||||
" {3}"
|
||||
msgstr ""
|
||||
msgstr "Η πλακέτα {0}:{1}:{2} δεν καθορίζει μία επιλογή ''build.board''. Αυτόματη ρύθμιση στο: {3}"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:472
|
||||
msgid "Board: "
|
||||
msgstr ""
|
||||
msgstr "Πλακέτα:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
msgid "Boards Manager"
|
||||
msgstr ""
|
||||
msgstr "Διαχειριστής Πλακετών"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1320
|
||||
msgid "Boards Manager..."
|
||||
msgstr ""
|
||||
msgstr "Διαχειριστής Πλακετών..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328
|
||||
msgid "Boards included in this package:"
|
||||
msgstr ""
|
||||
msgstr "Πλακέτες που περιλαμβάνονται σε αυτό το πακέτο:"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1273
|
||||
#, java-format
|
||||
msgid "Bootloader file specified but missing: {0}"
|
||||
msgstr ""
|
||||
msgstr "Το αρχείο του Bootloader έχει καθοριστεί αλλά λείπει: {0}"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:140
|
||||
msgid "Bosnian"
|
||||
msgstr ""
|
||||
msgstr "Βοσνιακά"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Both NL & CR"
|
||||
msgstr ""
|
||||
msgstr "Αμφότερα NL & CR"
|
||||
|
||||
#: Preferences.java:81
|
||||
msgid "Browse"
|
||||
@ -382,45 +387,45 @@ msgstr "Αναζήτηση"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1530
|
||||
msgid "Build options changed, rebuilding all"
|
||||
msgstr ""
|
||||
msgstr "Οι επιλογές Κτισίματος άλλαξαν, αναδόμηση όλων"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1210
|
||||
msgid "Built-in Examples"
|
||||
msgstr ""
|
||||
msgstr "Ενσωματωμένα Παραδείγματα"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:80
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
msgstr "Βουλγάρικα"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:141
|
||||
msgid "Burmese (Myanmar)"
|
||||
msgstr ""
|
||||
msgstr "Burmese (Myanmar)"
|
||||
|
||||
#: Editor.java:708
|
||||
msgid "Burn Bootloader"
|
||||
msgstr ""
|
||||
msgstr "Γράψιμο Bootloader"
|
||||
|
||||
#: Editor.java:2504
|
||||
msgid "Burning bootloader to I/O Board (this may take a minute)..."
|
||||
msgstr ""
|
||||
msgstr "Εγγραφή του Bootloader στην Πλακέτα Ι/Ο (ίσως χρειαστεί λίγο χρόνο)..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77
|
||||
msgid "CRC doesn't match. File is corrupted."
|
||||
msgstr ""
|
||||
msgstr "Ο CRC δεν ταιριάζει. Το αρχείο είναι κατακερματισμένο."
|
||||
|
||||
#: ../../../processing/app/Base.java:379
|
||||
#, java-format
|
||||
msgid "Can only pass one of: {0}"
|
||||
msgstr ""
|
||||
msgstr "Μπορεί μόνο να περάσει ένα από: {0}"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
msgid "Can't find the sketch in the specified path"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να βρεθεί η συγκεκριμένη διαδρομή"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:92
|
||||
msgid "Canadian French"
|
||||
msgstr ""
|
||||
msgstr "Γαλλικά Καναδά"
|
||||
|
||||
#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2064 Editor.java:2145 Editor.java:2465
|
||||
@ -429,15 +434,15 @@ msgstr "Ακύρωση"
|
||||
|
||||
#: Sketch.java:455
|
||||
msgid "Cannot Rename"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να Μετονομαστεί"
|
||||
|
||||
#: ../../../processing/app/Base.java:465
|
||||
msgid "Cannot specify any sketch files"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να καθοριστεί κάποιο αρχείο σχεδίου"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Carriage return"
|
||||
msgstr ""
|
||||
msgstr "Αλλαγή Γραμμής"
|
||||
|
||||
#: Preferences.java:87
|
||||
msgid "Catalan"
|
||||
@ -445,82 +450,82 @@ msgstr "Καταλανικά"
|
||||
|
||||
#: Preferences.java:419
|
||||
msgid "Check for updates on startup"
|
||||
msgstr ""
|
||||
msgstr "Έλεγχος για ενημερώσεις στην εκκίνηση"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:142
|
||||
msgid "Chinese (China)"
|
||||
msgstr ""
|
||||
msgstr "Chinese (China)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
msgid "Chinese (Taiwan)"
|
||||
msgstr ""
|
||||
msgstr "Chinese (Taiwan)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:143
|
||||
msgid "Chinese (Taiwan) (Big5)"
|
||||
msgstr ""
|
||||
msgstr "Chinese (Taiwan) (Big5)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98
|
||||
msgid "Click for a list of unofficial boards support URLs"
|
||||
msgstr ""
|
||||
msgstr "Κλίκ για λίστα URLs υποστήριξης ανεπίσημων πλακετών "
|
||||
|
||||
#: Editor.java:521 Editor.java:2024
|
||||
msgid "Close"
|
||||
msgstr ""
|
||||
msgstr "Κλείσιμο"
|
||||
|
||||
#: Editor.java:1208 Editor.java:2749
|
||||
msgid "Comment/Uncomment"
|
||||
msgstr ""
|
||||
msgstr "Σχολιασμός/Αποσχολιασμός"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266
|
||||
msgid "Compiler warnings: "
|
||||
msgstr ""
|
||||
msgstr "Προειδοποιήσεις Μεταγλωττιστή:"
|
||||
|
||||
#: Sketch.java:1608 Editor.java:1890
|
||||
msgid "Compiling sketch..."
|
||||
msgstr ""
|
||||
msgstr "Μεταγλώττιση σχεδίου..."
|
||||
|
||||
#: Editor.java:1157 Editor.java:2707
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
msgstr "Αντιγραφή"
|
||||
|
||||
#: Editor.java:1177 Editor.java:2723
|
||||
msgid "Copy as HTML"
|
||||
msgstr ""
|
||||
msgstr "Αντιγραφή ως HTML"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:455
|
||||
msgid "Copy error messages"
|
||||
msgstr ""
|
||||
msgstr "Αντιγραφή μηνύματος σφάλματος"
|
||||
|
||||
#: Editor.java:1165 Editor.java:2715
|
||||
msgid "Copy for Forum"
|
||||
msgstr ""
|
||||
msgstr "Αντιγραφή από Φόρουμ"
|
||||
|
||||
#: Sketch.java:1089
|
||||
#, java-format
|
||||
msgid "Could not add ''{0}'' to the sketch."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να γίνει προσθήκη του \"{0}\" στο σχέδιο."
|
||||
|
||||
#: Editor.java:2188
|
||||
msgid "Could not copy to a proper location."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να αντιγραφεί σε μία σωστή τοποθεσία."
|
||||
|
||||
#: Editor.java:2179
|
||||
msgid "Could not create the sketch folder."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να δημιουργηθεί ο φάκελος του σχεδίου."
|
||||
|
||||
#: Editor.java:2206
|
||||
msgid "Could not create the sketch."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να δημιουργηθεί το σχέδιο."
|
||||
|
||||
#: Sketch.java:617
|
||||
#, java-format
|
||||
msgid "Could not delete \"{0}\"."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να διαγραφεί το \"{0}\"."
|
||||
|
||||
#: Sketch.java:1066
|
||||
#, java-format
|
||||
msgid "Could not delete the existing ''{0}'' file."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να διαγραφεί το υπάρχων \"{0}\" αρχείο."
|
||||
|
||||
#: Base.java:2533 Base.java:2556
|
||||
#, java-format
|
||||
@ -530,17 +535,17 @@ msgstr "Δεν μπορεί να διαγραφεί το {0}"
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:74
|
||||
#, java-format
|
||||
msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να βρεθεί το boards.txt στο {0}. Είναι προ-1.5;"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
|
||||
#, java-format
|
||||
msgid "Could not find tool {0}"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να βρεθεί το εργαλείο {0}"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
|
||||
#, java-format
|
||||
msgid "Could not find tool {0} from package {1}"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να βρεθεί το εργαλείο {0} από το πακέτο {1}"
|
||||
|
||||
#: Base.java:1934
|
||||
#, java-format
|
||||
@ -560,17 +565,17 @@ msgstr "Πρόβλημα ανοίγματος του φακέλου\n{0}"
|
||||
msgid ""
|
||||
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
|
||||
"and it might be time to copy and paste your code to another text editor."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει σωστή επαναποθήκευση του σχεδίου. Μπορεί να έχετε πρόβλημα σε αυτό το σημείο,\nκαι ίσως είναι ώρα να αντιγράψετε και να επικολλήσετε τον κώδικα σας σε κάποιον άλλο επεξεργαστή κειμένου."
|
||||
|
||||
#: Sketch.java:1768
|
||||
msgid "Could not re-save sketch"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει επαν-αποθήκευση του σχεδίου"
|
||||
|
||||
#: Theme.java:52
|
||||
msgid ""
|
||||
"Could not read color theme settings.\n"
|
||||
"You'll need to reinstall Arduino."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να γίνει ανάγνωση της ρύθμισης για το χρώμα θέματος.\nΠρέπει να εγκαταστήσετε πάλι το Arduino."
|
||||
|
||||
#: Preferences.java:219
|
||||
msgid ""
|
||||
@ -586,19 +591,19 @@ msgstr "Δεν μπορεί να διαγραφεί η παλιά εκδοση
|
||||
#: Sketch.java:483 Sketch.java:528
|
||||
#, java-format
|
||||
msgid "Could not rename \"{0}\" to \"{1}\""
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να μετανομαστεί το {0} σε {1}"
|
||||
|
||||
#: Sketch.java:475
|
||||
msgid "Could not rename the sketch. (0)"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει μετονομασία του σχεδίου. (0)"
|
||||
|
||||
#: Sketch.java:496
|
||||
msgid "Could not rename the sketch. (1)"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει μετονομασία του σχεδίου. (1)"
|
||||
|
||||
#: Sketch.java:503
|
||||
msgid "Could not rename the sketch. (2)"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει μετονομασία του σχεδίου. (2)"
|
||||
|
||||
#: Base.java:2492
|
||||
#, java-format
|
||||
@ -607,131 +612,131 @@ msgstr "Δεν μπορεί να αντικατασταθεί το {0}"
|
||||
|
||||
#: tools/Archiver.java:74
|
||||
msgid "Couldn't archive sketch"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει αρχειοθέτηση του σχεδίου"
|
||||
|
||||
#: Sketch.java:1647
|
||||
msgid "Couldn't determine program size: {0}"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να καθοριστεί το μέγεθος του προγράμματος: {0}"
|
||||
|
||||
#: Sketch.java:616
|
||||
msgid "Couldn't do it"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπόρεσε να γίνει"
|
||||
|
||||
#: debug/BasicUploader.java:209
|
||||
msgid ""
|
||||
"Couldn't find a Board on the selected port. Check that you have the correct "
|
||||
"port selected. If it is correct, try pressing the board's reset button "
|
||||
"after initiating the upload."
|
||||
msgstr ""
|
||||
msgstr "Δεν ήταν δυνατόν να βρεθεί μια Πλακέτα στην επιλεγμένη θύρα. Ελέγξτε πως είναι επιλεγμένη η σωστή θύρα. Αν είναι σωστή, προσπαθήστε να πιέσετε το reset στην πλακέτα μετά την έναρξη της φόρτωσης."
|
||||
|
||||
#: ../../../processing/app/Preferences.java:82
|
||||
msgid "Croatian"
|
||||
msgstr ""
|
||||
msgstr "Croatian"
|
||||
|
||||
#: Editor.java:1149 Editor.java:2699
|
||||
msgid "Cut"
|
||||
msgstr ""
|
||||
msgstr "Αποκοπή"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:119
|
||||
msgid "Czech (Czech Republic)"
|
||||
msgstr ""
|
||||
msgstr "Τσέχικα (Δημοκρατία της Τσεχίας)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:120
|
||||
msgid "Danish (Denmark)"
|
||||
msgstr ""
|
||||
msgstr "Δανικά (Δανία)"
|
||||
|
||||
#: Editor.java:1224 Editor.java:2765
|
||||
msgid "Decrease Indent"
|
||||
msgstr ""
|
||||
msgstr "Μείωση Εσοχής"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
msgstr "Προεπιλογή"
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "Διαγραφή"
|
||||
|
||||
#: debug/Uploader.java:199
|
||||
msgid ""
|
||||
"Device is not responding, check the right serial port is selected or RESET "
|
||||
"the board right before exporting"
|
||||
msgstr ""
|
||||
msgstr "Η συσκευή δεν αποκρίνεται, ελέγξτε πως είναι επιλεγμένη η σωστή θύρα ή γίνετε σωστό RESET της πλακέτας πριν την εξαγωγή."
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
msgid "Discard all changes and reload sketch?"
|
||||
msgstr ""
|
||||
msgstr "Απόρριψη όλων των αλλαγών και επαναφόρτωση του σχεδίου;"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:438
|
||||
msgid "Display line numbers"
|
||||
msgstr ""
|
||||
msgstr "Προβολή αριθμών γραμμής"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Do you want to remove {0}?\n"
|
||||
"If you do so you won't be able to use {0} any more."
|
||||
msgstr ""
|
||||
msgstr "Θέλετε να αφαιρέσετε το {0};\nΑν ναι, δεν θα μπορείτε μα χρησιμοποιείτε πλέον το {0}."
|
||||
|
||||
#: Editor.java:2064
|
||||
msgid "Don't Save"
|
||||
msgstr ""
|
||||
msgstr "Μην γίνει Αποθήκευση"
|
||||
|
||||
#: Editor.java:2275 Editor.java:2311
|
||||
msgid "Done Saving."
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση αποθήκευσης."
|
||||
|
||||
#: Editor.java:2510
|
||||
msgid "Done burning bootloader."
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση εγγραφής bootloader."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:507
|
||||
#: ../../../processing/app/BaseNoGui.java:552
|
||||
msgid "Done compiling"
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση μεταγλώττισης"
|
||||
|
||||
#: Editor.java:1911 Editor.java:1928
|
||||
msgid "Done compiling."
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση μεταγλώττισης."
|
||||
|
||||
#: Editor.java:2564
|
||||
msgid "Done printing."
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση εκτύπωσης."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
msgid "Done uploading"
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση φόρτωσης"
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
msgid "Done uploading."
|
||||
msgstr ""
|
||||
msgstr "Ολοκλήρωση φόρτωσης."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105
|
||||
#, java-format
|
||||
msgid "Downloaded {0}kb of {1}kb."
|
||||
msgstr ""
|
||||
msgstr "Κατέβασμα {0}kb από {1}kb."
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107
|
||||
msgid "Downloading boards definitions."
|
||||
msgstr ""
|
||||
msgstr "Κατέβασμα ορισμών των πλακετών."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86
|
||||
msgid "Downloading libraries index..."
|
||||
msgstr ""
|
||||
msgstr "Κατέβασμα του ευρετηρίου βιβλιοθηκών..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115
|
||||
#, java-format
|
||||
msgid "Downloading library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Κατέβασμα βιβλιοθήκης: {0}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318
|
||||
msgid "Downloading platforms index..."
|
||||
msgstr ""
|
||||
msgstr "Κατέβασμα ευρετηρίου πλατφορμών..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113
|
||||
#, java-format
|
||||
msgid "Downloading tools ({0}/{1})."
|
||||
msgstr ""
|
||||
msgstr "Κατέβασμα εργαλείων ({0}/{1})."
|
||||
|
||||
#: Preferences.java:91
|
||||
msgid "Dutch"
|
||||
@ -739,15 +744,15 @@ msgstr "Ολλανδικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
msgid "Dutch (Netherlands)"
|
||||
msgstr ""
|
||||
msgstr "Ολλανδικά (Ολλανδία)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1309
|
||||
msgid "Edison Help"
|
||||
msgstr ""
|
||||
msgstr "Βοήθεια Edison"
|
||||
|
||||
#: Editor.java:1130
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
msgstr "Επεξεργασία"
|
||||
|
||||
#: Preferences.java:370
|
||||
msgid "Editor font size: "
|
||||
@ -759,7 +764,7 @@ msgstr "Διορθωτής Γλώσσας:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322
|
||||
msgid "Enable Code Folding"
|
||||
msgstr ""
|
||||
msgstr "Ενεργοποίηση Αναδίπλωσης Κώδικα"
|
||||
|
||||
#: Preferences.java:92
|
||||
msgid "English"
|
||||
@ -767,20 +772,20 @@ msgstr "Αγγλικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:145
|
||||
msgid "English (United Kingdom)"
|
||||
msgstr ""
|
||||
msgstr "English (United Kingdom)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271
|
||||
msgid "Enter a comma separated list of urls"
|
||||
msgstr ""
|
||||
msgstr "Εισάγεται μία λίστα urls χωριζόμενα από κόμμα "
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96
|
||||
msgid "Enter additional URLs, one for each row"
|
||||
msgstr ""
|
||||
msgstr "Εισάγεται επιπλέον URLs, ένα για κάθε γραμμή"
|
||||
|
||||
#: Editor.java:1062
|
||||
msgid "Environment"
|
||||
msgstr ""
|
||||
msgstr "Περιβάλλον"
|
||||
|
||||
#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
|
||||
#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
|
||||
@ -790,16 +795,16 @@ msgstr "Σφάλμα"
|
||||
|
||||
#: Sketch.java:1065 Sketch.java:1088
|
||||
msgid "Error adding file"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα προσθήκης αρχείου"
|
||||
|
||||
#: debug/Compiler.java:369
|
||||
msgid "Error compiling."
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα μεταγλώττισης."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113
|
||||
#, java-format
|
||||
msgid "Error downloading {0}"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατεβάσματος {0}"
|
||||
|
||||
#: Base.java:1674
|
||||
msgid "Error getting the Arduino data folder."
|
||||
@ -808,26 +813,26 @@ msgstr "Λάθος κατα την λήψη του φακέλου δεδομέν
|
||||
#: Serial.java:593
|
||||
#, java-format
|
||||
msgid "Error inside Serial.{0}()"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα μέσα στο Σειριακό.{0}()"
|
||||
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:95
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:106
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:117
|
||||
#, java-format
|
||||
msgid "Error loading {0}"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα φόρτωσης {0}"
|
||||
|
||||
#: Serial.java:181
|
||||
#, java-format
|
||||
msgid "Error opening serial port ''{0}''."
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα ανοίγματος της σειριακής θύρας \"{0}\"."
|
||||
|
||||
#: ../../../processing/app/Serial.java:119
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Error opening serial port ''{0}''. Try consulting the documentation at "
|
||||
"http://playground.arduino.cc/Linux/All#Permission"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα ανοίγματος της σειριακής θύρας \"{0}\". Συμβουλευτείτε την τεκμηρίωση στο http://playground.arduino.cc/Linux/All#Permission"
|
||||
|
||||
#: Preferences.java:277
|
||||
msgid "Error reading preferences"
|
||||
@ -844,28 +849,28 @@ msgstr "Σφάλμα ανάγνωσης αρχείου προτιμήσεων.
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245
|
||||
msgid "Error running post install script"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα εκτέλεσης του σεναρίου προ της εγκατάστασης"
|
||||
|
||||
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
|
||||
msgid "Error starting discovery method: "
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα στην εκκίνηση της μεθόδους ανακάλυψης:"
|
||||
|
||||
#: Serial.java:125
|
||||
#, java-format
|
||||
msgid "Error touching serial port ''{0}''."
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά υλοποίηση της σειριακής θύρας \"{0}\"."
|
||||
|
||||
#: Editor.java:2512 Editor.java:2516 Editor.java:2520
|
||||
msgid "Error while burning bootloader."
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την εγγραφή bootloader."
|
||||
|
||||
#: ../../../processing/app/Editor.java:2555
|
||||
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την εγγραφή bootloader: Απουσία '{0}' παραμέτρου διαμόρφωσης "
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1940
|
||||
msgid "Error while compiling: missing '{0}' configuration parameter"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την μεταγλώττιση: Απουσία '{0}' παραμέτρου διαμόρφωσης "
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
@ -874,26 +879,31 @@ msgstr "Σφάλμα φόρτωσης κώδικα {0}"
|
||||
|
||||
#: Editor.java:2567
|
||||
msgid "Error while printing."
|
||||
msgstr "Σφάλμα κατά την εκτύπωση."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την φόρτωση"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2409
|
||||
#: ../../../processing/app/Editor.java:2449
|
||||
msgid "Error while uploading: missing '{0}' configuration parameter"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την φόρτωση: Απουσία '{0}' παραμέτρου διαμόρφωσης"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
msgid "Error while verifying"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την επικύρωση"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
msgid "Error while verifying/uploading"
|
||||
msgstr ""
|
||||
msgstr "Σφάλμα κατά την επικύρωση/φόρτωση"
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "Estonian"
|
||||
@ -901,36 +911,36 @@ msgstr "Εσθονικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:146
|
||||
msgid "Estonian (Estonia)"
|
||||
msgstr ""
|
||||
msgstr "Εσθονικά (Εσθονία)"
|
||||
|
||||
#: Editor.java:516
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
msgstr "Παραδείγματα"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1244
|
||||
msgid "Examples from Custom Libraries"
|
||||
msgstr ""
|
||||
msgstr "Παραδείγματα από Προσαρμοσμένες Βιβλιοθήκες"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1222
|
||||
msgid "Examples from Libraries"
|
||||
msgstr ""
|
||||
msgstr "Παραδείγματα από βιβλιοθήκες"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:753
|
||||
msgid "Export canceled, changes must first be saved."
|
||||
msgstr ""
|
||||
msgstr "Η Εξαγωγή ακυρώθηκε, οι αλλαγές πρέπει να αποθηκευτούν πρώτα."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:750
|
||||
msgid "Export compiled Binary"
|
||||
msgstr ""
|
||||
msgstr "Εξαγωγή μεταγλωττισμένου Δυαδικού"
|
||||
|
||||
#: ../../../processing/app/Base.java:416
|
||||
#, java-format
|
||||
msgid "Failed to open sketch: \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Αποτυχία ανοίγματος του σχεδίου: \"{0}\""
|
||||
|
||||
#: Editor.java:491
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
msgstr "Αρχείο"
|
||||
|
||||
#: Preferences.java:94
|
||||
msgid "Filipino"
|
||||
@ -938,7 +948,7 @@ msgstr "Φιλλιπινέζικα"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95
|
||||
msgid "Filter your search..."
|
||||
msgstr ""
|
||||
msgstr "Φιλτράρισμα της αναζήτησης..."
|
||||
|
||||
#: FindReplace.java:124 FindReplace.java:127
|
||||
msgid "Find"
|
||||
@ -946,19 +956,19 @@ msgstr "Εύρεση"
|
||||
|
||||
#: Editor.java:1249
|
||||
msgid "Find Next"
|
||||
msgstr ""
|
||||
msgstr "Εύρεση Επόμενου"
|
||||
|
||||
#: Editor.java:1259
|
||||
msgid "Find Previous"
|
||||
msgstr ""
|
||||
msgstr "Εύρεση Προηγούμενου"
|
||||
|
||||
#: Editor.java:1086 Editor.java:2775
|
||||
msgid "Find in Reference"
|
||||
msgstr ""
|
||||
msgstr "Εύρεση στην Παραπομπή "
|
||||
|
||||
#: Editor.java:1234
|
||||
msgid "Find..."
|
||||
msgstr ""
|
||||
msgstr "Αναζήτηση..."
|
||||
|
||||
#: FindReplace.java:80
|
||||
msgid "Find:"
|
||||
@ -966,23 +976,23 @@ msgstr "Εύρεση:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:147
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
msgstr "Φιλανδικά"
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
msgid "Fix Encoding & Reload"
|
||||
msgstr ""
|
||||
msgstr "Επισκευή Κωδικοποίησης και Επαναφόρτωση"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:318
|
||||
msgid ""
|
||||
"For information on installing libraries, see: "
|
||||
"http://www.arduino.cc/en/Guide/Libraries\n"
|
||||
msgstr ""
|
||||
msgstr "Για πληροφορίες εγκατάστασης βιβλιοθηκών, δείτε: http://www.arduino.cc/en/Guide/Libraries\n"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
|
||||
#, java-format
|
||||
msgid "Forcing reset using 1200bps open/close on port {0}"
|
||||
msgstr ""
|
||||
msgstr "Εξαναγκασμένη επανεκκίνηση χρησιμοποιώντας 1200bps άνοιγμα/κλείσιμο στην θύρα {0}"
|
||||
|
||||
#: Preferences.java:95
|
||||
msgid "French"
|
||||
@ -990,23 +1000,23 @@ msgstr "Γαλλικά"
|
||||
|
||||
#: Editor.java:1097
|
||||
msgid "Frequently Asked Questions"
|
||||
msgstr ""
|
||||
msgstr "Συχνές Ερωτήσεις"
|
||||
|
||||
#: Preferences.java:96
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
msgstr "Γαλικιακά"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:176
|
||||
msgid "Galician (Spain)"
|
||||
msgstr ""
|
||||
msgstr "Γαλικιακά (Ισπανία)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1288
|
||||
msgid "Galileo Help"
|
||||
msgstr ""
|
||||
msgstr "Βοήθεια Galileo"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:94
|
||||
msgid "Georgian"
|
||||
msgstr ""
|
||||
msgstr "Γεωργιανά"
|
||||
|
||||
#: Preferences.java:97
|
||||
msgid "German"
|
||||
@ -1014,27 +1024,27 @@ msgstr "Γερμανικά"
|
||||
|
||||
#: Editor.java:1054
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
msgstr "Ξεκινώντας "
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1646
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
|
||||
"for local variables. Maximum is {1} bytes."
|
||||
msgstr ""
|
||||
msgstr "Οι καθολικές μεταβλητές χρησιμοποιούν {0} bytes ({2}%%) δυναμικής μνήμης, αφήνοντας {3} bytes για τοπικές μεταβλητές. Το μέγιστο είναι {1} bytes. "
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1651
|
||||
#, java-format
|
||||
msgid "Global variables use {0} bytes of dynamic memory."
|
||||
msgstr ""
|
||||
msgstr "Οι καθολικές μεταβλητές χρησιμοποιούν {0} bytes δυναμικής μνήμης."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
msgid "Go to line"
|
||||
msgstr ""
|
||||
msgstr "Πήγαινε στην γραμμή"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
msgid "Go to line..."
|
||||
msgstr ""
|
||||
msgstr "Πήγαινε στην γραμμή..."
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
@ -1042,11 +1052,11 @@ msgstr "Ελληνικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:95
|
||||
msgid "Hebrew"
|
||||
msgstr ""
|
||||
msgstr "Εβραϊκά "
|
||||
|
||||
#: Editor.java:1015
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
msgstr "Βοήθεια"
|
||||
|
||||
#: Preferences.java:99
|
||||
msgid "Hindi"
|
||||
@ -1054,17 +1064,17 @@ msgstr "Χίντι"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
msgid "Host name:"
|
||||
msgstr ""
|
||||
msgstr "Όνομα Υπολογιστή:"
|
||||
|
||||
#: Sketch.java:295
|
||||
msgid ""
|
||||
"How about saving the sketch first \n"
|
||||
"before trying to rename it?"
|
||||
msgstr ""
|
||||
msgstr "Τι λέτε να αποθηκεύσετε πρώτα το σχέδιο\nπριν προσπαθήσετε να το μετονομάσετε;"
|
||||
|
||||
#: Sketch.java:882
|
||||
msgid "How very Borges of you"
|
||||
msgstr ""
|
||||
msgstr "Πολύ \"Borges\" από μέρους σας"
|
||||
|
||||
#: Preferences.java:100
|
||||
msgid "Hungarian"
|
||||
@ -1091,20 +1101,20 @@ msgid ""
|
||||
"disable this in the Preferences dialog.\n"
|
||||
"\n"
|
||||
"Save sketch and update its extension?"
|
||||
msgstr ""
|
||||
msgstr "Στο Arduino 1.0, η προκαθορισμένη επέκταση αρχείου έχει αλλάξει\nαπό .pde σε .ino. Νέα σχέδια (συμπεριλαμβανομένων αυτών που δημιουργήθηκαν\nμε το \"Αποθήκευση Ως\") θα χρησιμοποιούν την νέα επέκταση. Η επέκταση\nτων υπάρχον σχεδίων θα ενημερωθούν κατά στην αποθήκευση, αλλά μπορείτε\nνα το απενεργοποιήσετε στον διάλογο Προτιμήσεις.\n\nΑποθήκευση του σχεδίου και ενημέρωση της επέκτασης;"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:778
|
||||
msgid "Include Library"
|
||||
msgstr ""
|
||||
msgstr "Συμπερίληψη Βιβλιοθήκης"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
msgid "Incorrect IDE installation folder"
|
||||
msgstr ""
|
||||
msgstr "Εσφαλμένος φάκελος εγκατάστασης IDE"
|
||||
|
||||
#: Editor.java:1216 Editor.java:2757
|
||||
msgid "Increase Indent"
|
||||
msgstr ""
|
||||
msgstr "Αύξηση Εσοχής"
|
||||
|
||||
#: Preferences.java:101
|
||||
msgid "Indonesian"
|
||||
@ -1112,7 +1122,7 @@ msgstr "Ινδονησιακά"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
msgid "Initializing packages..."
|
||||
msgstr ""
|
||||
msgstr "Αρχικοποίηση πακέτων..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81
|
||||
@ -1121,44 +1131,44 @@ msgstr ""
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
msgstr "Εγκατάσταση"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
msgid "Installation completed!"
|
||||
msgstr ""
|
||||
msgstr "Η εγκατάσταση ολοκληρώθηκε!"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
msgstr "Εγκατεστημένο"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
msgid "Installing boards..."
|
||||
msgstr ""
|
||||
msgstr "Εγκατάσταση πλακετών..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126
|
||||
#, java-format
|
||||
msgid "Installing library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Εγκατάσταση βιβλιοθήκης:{0}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134
|
||||
#, java-format
|
||||
msgid "Installing tools ({0}/{1})..."
|
||||
msgstr ""
|
||||
msgstr "Εγκατάσταση εργαλείων ({0}/{1})..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
msgstr "Εγκατάσταση..."
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
msgid "Invalid library found in {0}: {1}"
|
||||
msgstr ""
|
||||
msgstr "Βρέθηκε μη έγγυρη βιβλιοθήκη στο {0}: {1}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66
|
||||
#, java-format
|
||||
msgid "Invalid quoting: no closing [{0}] char found."
|
||||
msgstr ""
|
||||
msgstr "Μη έγγυρη παράθεση: Δεν βρέθηκε χαρακτήρας [{0}] κλεισίματος."
|
||||
|
||||
#: Preferences.java:102
|
||||
msgid "Italian"
|
||||
@ -1174,28 +1184,28 @@ msgstr "Κορεάτικα"
|
||||
|
||||
#: Preferences.java:105
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
msgstr "Λεττονικά"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
msgid "Library Manager"
|
||||
msgstr ""
|
||||
msgstr "Διαχειριστής Βιβλιοθήκης"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
msgid "Library added to your libraries. Check \"Include library\" menu"
|
||||
msgstr ""
|
||||
msgstr "Η Βιβλιοθήκη προστέθηκε στις βιβλιοθήκες σας. Ελέγξτε το μενού \"Συμπερίληψη Βιβλιοθήκης\""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71
|
||||
msgid "Library can't use both 'src' and 'utility' folders."
|
||||
msgstr ""
|
||||
msgstr "Η Βιβλιοθήκη δεν μπορεί να χρησιμοποιεί αμφότερα τους φακέλους 'src' και 'utility'."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107
|
||||
#, java-format
|
||||
msgid "Library is already installed: {0} version {1}"
|
||||
msgstr ""
|
||||
msgstr "Η Βιβλιοθήκη είναι ήδη εγκατεστημένη: {0} έκδοση {1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
msgid "Line number:"
|
||||
msgstr ""
|
||||
msgstr "Αριθμός σειράς:"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Lithuaninan"
|
||||
@ -1203,28 +1213,28 @@ msgstr "Λιθουανίας"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:132
|
||||
msgid "Loading configuration..."
|
||||
msgstr ""
|
||||
msgstr "Φόρτωση διαμόρφωσης..."
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
msgid "Looking for recipes like {0}*{1}"
|
||||
msgstr ""
|
||||
msgstr "Αναζήτηση για συνταγές όπως {0}*{1}"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1684
|
||||
msgid "Low memory available, stability problems may occur."
|
||||
msgstr ""
|
||||
msgstr "Λίγη διαθέσιμη μνήμη, μπορεί να προκύψουν προβλήματα ευστάθειας."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1168
|
||||
msgid "Manage Libraries..."
|
||||
msgstr ""
|
||||
msgstr "Διαχείριση Βιβλιοθηκών..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466
|
||||
msgid "Manual proxy configuration"
|
||||
msgstr ""
|
||||
msgstr "Χειροκίνητη ρύθμιση μεσολαβητή"
|
||||
|
||||
#: Preferences.java:107
|
||||
msgid "Marathi"
|
||||
msgstr ""
|
||||
msgstr "Marathi"
|
||||
|
||||
#: Base.java:2112
|
||||
msgid "Message"
|
||||
@ -1233,56 +1243,56 @@ msgstr "Μήνυμα"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81
|
||||
#, java-format
|
||||
msgid "Missing '{0}' from library in {1}"
|
||||
msgstr ""
|
||||
msgstr "Λείπει το '{0}' από την βιβλιοθήκη στο {1}"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
msgid "Mode not supported"
|
||||
msgstr ""
|
||||
msgstr "Η Μέθοδος δεν υποστηρίζεται"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
msgstr "Επιπλέον"
|
||||
|
||||
#: Preferences.java:449
|
||||
msgid "More preferences can be edited directly in the file"
|
||||
msgstr ""
|
||||
msgstr "Οι περισσότερες επιλογές μπορεί να τροποποιηθούν απευθείας στο αρχείο"
|
||||
|
||||
#: Editor.java:2156
|
||||
msgid "Moving"
|
||||
msgstr ""
|
||||
msgstr "Μετακίνηση"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
msgid "Multiple files not supported"
|
||||
msgstr ""
|
||||
msgstr "Δεν υποστηρίζονται πολλαπλά αρχεία"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:520
|
||||
#, java-format
|
||||
msgid "Multiple libraries were found for \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Βρέθηκαν πολλαπλές βιβλιοθήκες για \"{0}\""
|
||||
|
||||
#: ../../../processing/app/Base.java:395
|
||||
msgid "Must specify exactly one sketch file"
|
||||
msgstr ""
|
||||
msgstr "Πρέπει να καθορίσετε ακριβώς ένα αρχείο σχεδίου"
|
||||
|
||||
#: Sketch.java:282
|
||||
msgid "Name for new file:"
|
||||
msgstr ""
|
||||
msgstr "Όνομα για νέο αρχείο:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
msgid "Nepali"
|
||||
msgstr ""
|
||||
msgstr "Nepali"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
msgstr "Δίκτυο"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
msgid "Network ports"
|
||||
msgstr ""
|
||||
msgstr "Θύρες δικτύου"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
msgid "Network upload using programmer not supported"
|
||||
msgstr ""
|
||||
msgstr "Μεταφόρτωση μέσω δικτύου χρησιμοποιώντας προγραμματιστή δεν υποστηρίζεται"
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
msgid "New"
|
||||
@ -1290,15 +1300,15 @@ msgstr "Δημιουργία"
|
||||
|
||||
#: EditorHeader.java:292
|
||||
msgid "New Tab"
|
||||
msgstr ""
|
||||
msgstr "Νέα καρτέλα"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Newline"
|
||||
msgstr ""
|
||||
msgstr "Αλλαγή γραμμής"
|
||||
|
||||
#: EditorHeader.java:340
|
||||
msgid "Next Tab"
|
||||
msgstr ""
|
||||
msgstr "Επόμενη Καρτέλα"
|
||||
|
||||
#: Preferences.java:78 UpdateCheck.java:108
|
||||
msgid "No"
|
||||
@ -1306,39 +1316,39 @@ msgstr "Όχι"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:158
|
||||
msgid "No authorization data found"
|
||||
msgstr ""
|
||||
msgstr "Δεν βρέθηκαν δεδομένα εξουσιοδότησης"
|
||||
|
||||
#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
|
||||
msgid "No changes necessary for Auto Format."
|
||||
msgstr ""
|
||||
msgstr "Δεν είναι απαραίτητες αλλαγές για την Αυτόματη Μορφοποίηση."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
msgid "No command line parameters found"
|
||||
msgstr ""
|
||||
msgstr "Δεν βρέθηκε καμιά παράμετρος για την γραμμή εντολών"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:200
|
||||
msgid "No compiled sketch found"
|
||||
msgstr ""
|
||||
msgstr "Δεν βρέθηκε μεταγλωττισμένο σχέδιο"
|
||||
|
||||
#: Editor.java:373
|
||||
msgid "No files were added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "Δεν προστέθηκαν αρχεία στο σχέδιο."
|
||||
|
||||
#: Platform.java:167
|
||||
msgid "No launcher available"
|
||||
msgstr ""
|
||||
msgstr "Δεν υπάρχει διαθέσιμος εκκινητής"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "No line ending"
|
||||
msgstr ""
|
||||
msgstr "Δεν υπάρχει τέλος γραμμής"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
msgid "No parameters"
|
||||
msgstr ""
|
||||
msgstr "Δεν υπάρχουν παράμετροι"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453
|
||||
msgid "No proxy"
|
||||
msgstr ""
|
||||
msgstr "Δεν υπάρχει μεσολαβητής"
|
||||
|
||||
#: Base.java:541
|
||||
msgid "No really, time for some fresh air for you."
|
||||
@ -1347,39 +1357,39 @@ msgstr "Οχι αλήθεια, είναι ώρα να πάρεις λίγο φρ
|
||||
#: Editor.java:1872
|
||||
#, java-format
|
||||
msgid "No reference available for \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Δεν υπάρχει διαθέσιμη αναφορά για το \"{0}\""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
msgid "No sketch"
|
||||
msgstr ""
|
||||
msgstr "Κανένα Σχέδιο"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
msgid "No sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Κανένα sketchbook"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:204
|
||||
msgid "No valid code files found"
|
||||
msgstr ""
|
||||
msgstr "Δεν βρέθηκαν έγκυρα αρχεία κώδικα"
|
||||
|
||||
#: ../../../processing/app/debug/TargetPackage.java:63
|
||||
#, java-format
|
||||
msgid "No valid hardware definitions found in folder {0}."
|
||||
msgstr ""
|
||||
msgstr "Δεν βρέθηκαν έγκυροι ορισμοί υλικού στον φάκελο {0}."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
msgstr "Κανένα"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:108
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
msgstr "Norwegian Bokmål"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1656
|
||||
msgid ""
|
||||
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
|
||||
"for tips on reducing your footprint."
|
||||
msgstr ""
|
||||
msgstr "Μη επαρκής μνήμη, δείτε στο http://www.arduino.cc/en/Guide/Troubleshooting#size για πληροφορίες για την ελάττωση της χρήσης μνήμης."
|
||||
|
||||
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2145 Editor.java:2465
|
||||
@ -1388,11 +1398,11 @@ msgstr "Εντάξει"
|
||||
|
||||
#: Sketch.java:992 Editor.java:376
|
||||
msgid "One file added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "Ένα αρχείο προστέθηκε στο σχέδιο."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
msgid "Only --verify, --upload or --get-pref are supported"
|
||||
msgstr ""
|
||||
msgstr "Μόνο τα --verify, --upload ή --get-pref υποστηρίζονται"
|
||||
|
||||
#: EditorToolbar.java:41
|
||||
msgid "Open"
|
||||
@ -1400,11 +1410,11 @@ msgstr "Άνοιγμα"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:625
|
||||
msgid "Open Recent"
|
||||
msgstr ""
|
||||
msgstr "Άνοιγμα Προσφάτου"
|
||||
|
||||
#: Editor.java:2688
|
||||
msgid "Open URL"
|
||||
msgstr ""
|
||||
msgstr "Άνοιγμα URL"
|
||||
|
||||
#: Base.java:636
|
||||
msgid "Open an Arduino sketch..."
|
||||
@ -1416,15 +1426,15 @@ msgstr "Άνοιγμα..."
|
||||
|
||||
#: Editor.java:563
|
||||
msgid "Page Setup"
|
||||
msgstr ""
|
||||
msgstr "Εγκατάσταση Σελίδας"
|
||||
|
||||
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
msgstr "Συνθηματικό:"
|
||||
|
||||
#: Editor.java:1189 Editor.java:2731
|
||||
msgid "Paste"
|
||||
msgstr ""
|
||||
msgstr "Επικόλληση "
|
||||
|
||||
#: Preferences.java:109
|
||||
msgid "Persian"
|
||||
@ -1432,33 +1442,33 @@ msgstr "Περσικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:161
|
||||
msgid "Persian (Iran)"
|
||||
msgstr ""
|
||||
msgstr "Περσικά (Ιράν)"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79
|
||||
#, java-format
|
||||
msgid "Platform {0} (package {1}) is unknown"
|
||||
msgstr ""
|
||||
msgstr "Η πλατφόρμα {0} (πακέτο {1}) είναι άγνωστη"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
msgid "Please confirm boards deletion"
|
||||
msgstr ""
|
||||
msgstr "Παρακαλώ επιβεβαιώστε την διαγραφή πλακέτας"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
msgid "Please confirm library deletion"
|
||||
msgstr ""
|
||||
msgstr "Παρακαλώ επιβεβαιώστε την διαγραφή βιβλιοθήκης"
|
||||
|
||||
#: debug/Compiler.java:408
|
||||
msgid "Please import the SPI library from the Sketch > Import Library menu."
|
||||
msgstr ""
|
||||
msgstr "Παρακαλώ συμπεριλάβετε την βιβλιοθήκη SPI από το μενού Σχέδιο > Συμπερίληψη Βιβλιοθήκης."
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
msgid "Please import the Wire library from the Sketch > Import Library menu."
|
||||
msgstr ""
|
||||
msgstr "Παρακαλώ συμπεριλάβετε την βιβλιοθήκη Wire από το μενού Σχέδιο > Συμπερίληψη Βιβλιοθήκης."
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
|
||||
msgid "Please select a programmer from Tools->Programmer menu"
|
||||
msgstr ""
|
||||
msgstr "Παρακαλώ επιλέξτε έναν προγραμματιστή από το μενού Εργαλεία -> Προγραμματιστής"
|
||||
|
||||
#: Preferences.java:110
|
||||
msgid "Polish"
|
||||
@ -1466,23 +1476,23 @@ msgstr "Πολωνέζικα"
|
||||
|
||||
#: ../../../processing/app/Editor.java:718
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
msgstr "Θύρα"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491
|
||||
msgid "Port number:"
|
||||
msgstr ""
|
||||
msgstr "Αριθμός θύρας:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:151
|
||||
msgid "Portugese"
|
||||
msgstr ""
|
||||
msgstr "Πορτογαλικά"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:127
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
msgstr "Πορτογαλικά (Βραζιλία)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:128
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
msgstr "Πορτογαλικά (Πορτογαλία)"
|
||||
|
||||
#: Preferences.java:295 Editor.java:583
|
||||
msgid "Preferences"
|
||||
@ -1490,7 +1500,7 @@ msgstr "Προτιμήσεις"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:297
|
||||
msgid "Preparing boards..."
|
||||
msgstr ""
|
||||
msgstr "Προετοιμασία πλακετών..."
|
||||
|
||||
#: FindReplace.java:123 FindReplace.java:128
|
||||
msgid "Previous"
|
||||
@ -1498,19 +1508,19 @@ msgstr "Προηγούμενο"
|
||||
|
||||
#: EditorHeader.java:326
|
||||
msgid "Previous Tab"
|
||||
msgstr ""
|
||||
msgstr "Προηγούμενη Καρτέλα"
|
||||
|
||||
#: Editor.java:571
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
msgstr "Εκτύπωση"
|
||||
|
||||
#: Editor.java:2571
|
||||
msgid "Printing canceled."
|
||||
msgstr ""
|
||||
msgstr "Η εκτύπωση ακυρώθηκε."
|
||||
|
||||
#: Editor.java:2547
|
||||
msgid "Printing..."
|
||||
msgstr ""
|
||||
msgstr "Εκτύπωση..."
|
||||
|
||||
#: Base.java:1957
|
||||
msgid "Problem Opening Folder"
|
||||
@ -1526,11 +1536,11 @@ msgstr "Πρόβλημα κατα την εδραίωση της πλατφόρ
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
|
||||
msgid "Problem accessing board folder /www/sd"
|
||||
msgstr ""
|
||||
msgstr "Πρόβλημα πρόσβασης του φακέλου πλακέτας /www/sd"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
|
||||
msgid "Problem accessing files in folder "
|
||||
msgstr ""
|
||||
msgstr "Πρόβλημα πρόσβασης αρχείων στον φάκελο"
|
||||
|
||||
#: Base.java:1673
|
||||
msgid "Problem getting data folder"
|
||||
@ -1540,24 +1550,24 @@ msgstr "Πρόβλημα κατα την λήψη του φακέλου δεδο
|
||||
msgid ""
|
||||
"Problem uploading to board. See "
|
||||
"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
|
||||
msgstr ""
|
||||
msgstr "Πρόβλημα φόρτωσης στην πλακέτα. Δείτε στο http://www.arduino.cc/en/Guide/Troubleshooting#upload για υποδείξεις."
|
||||
|
||||
#: Sketch.java:355 Sketch.java:362 Sketch.java:373
|
||||
msgid "Problem with rename"
|
||||
msgstr ""
|
||||
msgstr "Πρόβλημα με την μετονομασία"
|
||||
|
||||
#: ../../../processing/app/I18n.java:86
|
||||
msgid "Processor"
|
||||
msgstr ""
|
||||
msgstr "Επεξεργαστής"
|
||||
|
||||
#: Editor.java:704
|
||||
msgid "Programmer"
|
||||
msgstr ""
|
||||
msgstr "Προγραμματιστής"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80
|
||||
#, java-format
|
||||
msgid "Progress {0}"
|
||||
msgstr ""
|
||||
msgstr "Πρόοδος {0}"
|
||||
|
||||
#: Base.java:783 Editor.java:593
|
||||
msgid "Quit"
|
||||
@ -1565,33 +1575,33 @@ msgstr "Έξοδος"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1233
|
||||
msgid "RETIRED"
|
||||
msgstr ""
|
||||
msgstr "ΠΑΡΟΠΛΙΣΜΕΝΟ"
|
||||
|
||||
#: Editor.java:1138 Editor.java:1140 Editor.java:1390
|
||||
msgid "Redo"
|
||||
msgstr ""
|
||||
msgstr "Επανάληψη"
|
||||
|
||||
#: Editor.java:1078
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
msgstr "Παραπομπή"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
msgstr "Αφαίρεση"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157
|
||||
#, java-format
|
||||
msgid "Removing library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Αφαίρεση βιβλιοθήκης: {0}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203
|
||||
msgid "Removing..."
|
||||
msgstr ""
|
||||
msgstr "Αφαίρεση..."
|
||||
|
||||
#: EditorHeader.java:300
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
msgstr "Μετονομασία"
|
||||
|
||||
#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
|
||||
msgid "Replace"
|
||||
@ -1608,7 +1618,7 @@ msgstr "Αντικατάσταση όλων"
|
||||
#: Sketch.java:1043
|
||||
#, java-format
|
||||
msgid "Replace the existing version of {0}?"
|
||||
msgstr ""
|
||||
msgstr "Αντικατάσταση της υπάρχουσας έκδοσης από {0};"
|
||||
|
||||
#: FindReplace.java:81
|
||||
msgid "Replace with:"
|
||||
@ -1621,12 +1631,12 @@ msgstr "Ρουμάνικα"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83
|
||||
#, java-format
|
||||
msgid "Running recipe: {0}"
|
||||
msgstr ""
|
||||
msgstr "Εκτέλεση συνταγής: {0}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82
|
||||
#, java-format
|
||||
msgid "Running: {0}"
|
||||
msgstr ""
|
||||
msgstr "Εκτέλεση: {0}"
|
||||
|
||||
#: Preferences.java:114
|
||||
msgid "Russian"
|
||||
@ -1639,32 +1649,32 @@ msgstr "Αποθήκευση"
|
||||
|
||||
#: Editor.java:537
|
||||
msgid "Save As..."
|
||||
msgstr ""
|
||||
msgstr "Αποθήκευση ως..."
|
||||
|
||||
#: Editor.java:2317
|
||||
msgid "Save Canceled."
|
||||
msgstr ""
|
||||
msgstr "Η αποθήκευση Ακυρώθηκε."
|
||||
|
||||
#: Editor.java:2020
|
||||
#, java-format
|
||||
msgid "Save changes to \"{0}\"? "
|
||||
msgstr ""
|
||||
msgstr "Αποθήκευση αλλαγών στο \"{0}\";"
|
||||
|
||||
#: Sketch.java:825
|
||||
msgid "Save sketch folder as..."
|
||||
msgstr ""
|
||||
msgstr "Αποθήκευση φακέλου του σχεδίου ως..."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:425
|
||||
msgid "Save when verifying or uploading"
|
||||
msgstr ""
|
||||
msgstr "Αποθήκευση κατά την επικύρωση ή φόρτωση"
|
||||
|
||||
#: Editor.java:2270 Editor.java:2308
|
||||
msgid "Saving..."
|
||||
msgstr ""
|
||||
msgstr "Αποθήκευση..."
|
||||
|
||||
#: ../../../processing/app/FindReplace.java:131
|
||||
msgid "Search all Sketch Tabs"
|
||||
msgstr ""
|
||||
msgstr "Αναζήτηση σε όλες τις Καρτέλες του Σχεδίου"
|
||||
|
||||
#: Base.java:1909
|
||||
msgid "Select (or create new) folder for sketches..."
|
||||
@ -1672,7 +1682,7 @@ msgstr "Επέλέξε (ή φτιάξε νέο) φάκελο για σχέδια
|
||||
|
||||
#: Editor.java:1198 Editor.java:2739
|
||||
msgid "Select All"
|
||||
msgstr ""
|
||||
msgstr "Επιλογή Όλων"
|
||||
|
||||
#: Base.java:2636
|
||||
msgid "Select a zip file or a folder containing the library you'd like to add"
|
||||
@ -1680,7 +1690,7 @@ msgstr "Επιλέξτε συμπιεσμένο αρχείο ή φάκελο π
|
||||
|
||||
#: Sketch.java:975
|
||||
msgid "Select an image or other data file to copy to your sketch"
|
||||
msgstr ""
|
||||
msgstr "Επιλέξτε μία εικόνα ή άλλο αρχείο δεδομένων για να αντιγράψετε στο σχέδιο σας"
|
||||
|
||||
#: Preferences.java:330
|
||||
msgid "Select new sketchbook location"
|
||||
@ -1689,23 +1699,23 @@ msgstr "Επιλέξτε νέα θέση για το Sketchbook"
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249
|
||||
msgid "Select version"
|
||||
msgstr ""
|
||||
msgstr "Επιλογή έκδοσης"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:146
|
||||
msgid "Selected board depends on '{0}' core (not installed)."
|
||||
msgstr ""
|
||||
msgstr "Η επιλεγμένη πλακέτα εξαρτάται από το πυρήνα {0} (δεν είναι εγκατεστημένος). "
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:374
|
||||
msgid "Selected board is not available"
|
||||
msgstr ""
|
||||
msgstr "Η επιλεγμένη πλακέτα δεν είναι διαθέσιμη"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:423
|
||||
msgid "Selected library is not available"
|
||||
msgstr ""
|
||||
msgstr "Η επιλεγμένη βιβλιοθήκη δεν είναι διαθέσιμη"
|
||||
|
||||
#: SerialMonitor.java:93
|
||||
msgid "Send"
|
||||
msgstr ""
|
||||
msgstr "Αποστολή"
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
|
||||
msgid "Serial Monitor"
|
||||
@ -1713,34 +1723,34 @@ msgstr "Σειριακή Οθόνη"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:804
|
||||
msgid "Serial Plotter"
|
||||
msgstr ""
|
||||
msgstr "Σειριακό Plotter"
|
||||
|
||||
#: Serial.java:194
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
|
||||
" Serial Port menu?"
|
||||
msgstr ""
|
||||
msgstr "Η σειριακή θύρα \"{0}\" δεν βρέθηκε. Επιλέξατε την σωστή από το μενού Εργαλεία > Σειριακή Θύρα; "
|
||||
|
||||
#: Editor.java:2343
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Serial port {0} not found.\n"
|
||||
"Retry the upload with another serial port?"
|
||||
msgstr ""
|
||||
msgstr "Η σειριακή θύρα \"{0}\" δεν βρέθηκε.\nΕπανάληψη φόρτωσης με άλλη σειριακή θύρα;"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
msgid "Serial ports"
|
||||
msgstr ""
|
||||
msgstr "Σειριακές θύρες"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
|
||||
#, java-format
|
||||
msgid "Setting build path to {0}"
|
||||
msgstr ""
|
||||
msgstr "Ρύθμιση της διαδρομής χτισίματος στο {0}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
msgstr "Ρυθμίσεις"
|
||||
|
||||
#: Base.java:1681
|
||||
msgid "Settings issues"
|
||||
@ -1748,23 +1758,23 @@ msgstr "Προβλήματα επιλογών"
|
||||
|
||||
#: Editor.java:641
|
||||
msgid "Show Sketch Folder"
|
||||
msgstr ""
|
||||
msgstr "Εμφάνιση Φακέλου του Σχεδίου"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:468
|
||||
msgid "Show verbose output during compilation"
|
||||
msgstr ""
|
||||
msgstr "Εμφάνιση διεξοδικής εξόδου κατά την μεταγλώττιση"
|
||||
|
||||
#: Preferences.java:387
|
||||
msgid "Show verbose output during: "
|
||||
msgstr ""
|
||||
msgstr "Εμφάνιση διεξοδικής εξόδου κατά την:"
|
||||
|
||||
#: Editor.java:607
|
||||
msgid "Sketch"
|
||||
msgstr ""
|
||||
msgstr "Σχέδιο"
|
||||
|
||||
#: Sketch.java:1754
|
||||
msgid "Sketch Disappeared"
|
||||
msgstr ""
|
||||
msgstr "Το Σχέδιο Εξαφανίστηκε"
|
||||
|
||||
#: Base.java:1411
|
||||
msgid "Sketch Does Not Exist"
|
||||
@ -1772,32 +1782,32 @@ msgstr "Το σχέδιο δεν υπάρχει"
|
||||
|
||||
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
|
||||
msgid "Sketch is Read-Only"
|
||||
msgstr ""
|
||||
msgstr "Το Σχέδιο είναι Μόνο-για-Ανάγνωση"
|
||||
|
||||
#: Sketch.java:294
|
||||
msgid "Sketch is Untitled"
|
||||
msgstr ""
|
||||
msgstr "Το Σχέδιο είναι χωρίς Τίτλο"
|
||||
|
||||
#: Sketch.java:720
|
||||
msgid "Sketch is read-only"
|
||||
msgstr ""
|
||||
msgstr "Το Σχέδιο είναι μόνο-για-ανάγνωση"
|
||||
|
||||
#: Sketch.java:1653
|
||||
msgid ""
|
||||
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
|
||||
"tips on reducing it."
|
||||
msgstr ""
|
||||
msgstr "Πολύ μεγάλο Σχέδιο, δες συμβουλές στο http://www.arduino.cc/en/Guide/Troubleshooting#size για την μείωση του."
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1639
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
|
||||
"bytes."
|
||||
msgstr ""
|
||||
msgstr "Το Σχέδιο χρησιμοποιεί {0} bytes ({2}%%) του χώρου αποθήκευσης του προγράμματος. Το μέγιστο είναι {1} bytes. "
|
||||
|
||||
#: Editor.java:510
|
||||
msgid "Sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Sketchbook"
|
||||
|
||||
#: Base.java:258
|
||||
msgid "Sketchbook folder disappeared"
|
||||
@ -1809,33 +1819,33 @@ msgstr "Θέση Sketchbook:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
msgid "Sketchbook path not defined"
|
||||
msgstr ""
|
||||
msgstr "Η διαδρομή του Sketchbook δεν είναι καθορισμένη."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:185
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
msgstr "Σλοβάκικα"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:152
|
||||
msgid "Slovenian"
|
||||
msgstr ""
|
||||
msgstr "Σλοβένικα"
|
||||
|
||||
#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
|
||||
msgid ""
|
||||
"Some files are marked \"read-only\", so you'll\n"
|
||||
"need to re-save the sketch in another location,\n"
|
||||
"and try again."
|
||||
msgstr ""
|
||||
msgstr "Μερικά αρχεία είναι επισημασμένα \"μόνο για ανάγνωση\", οπότε\nθα χρειαστεί να αποθηκεύσετε πάλι το σχέδιο σε άλλη τοποθεσία,\nκαι να προσπαθήσετε πάλι."
|
||||
|
||||
#: Sketch.java:721
|
||||
msgid ""
|
||||
"Some files are marked \"read-only\", so you'll\n"
|
||||
"need to re-save this sketch to another location."
|
||||
msgstr ""
|
||||
msgstr "Μερικά αρχεία είναι επισημασμένα \"μόνο για ανάγνωση\", οπότε\nθα χρειαστεί να αποθηκεύσετε πάλι το σχέδιο σε άλλη τοποθεσία"
|
||||
|
||||
#: Sketch.java:457
|
||||
#, java-format
|
||||
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
|
||||
msgstr ""
|
||||
msgstr "Συγνώμη, αλλά ένα σχέδιο (ή φάκελος) με όνομα \"{0}\" υπάρχει ήδη."
|
||||
|
||||
#: Preferences.java:115
|
||||
msgid "Spanish"
|
||||
@ -1843,11 +1853,11 @@ msgstr "Ισπανικά"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2333
|
||||
msgid "Specified folder/zip file does not contain a valid library"
|
||||
msgstr ""
|
||||
msgstr "Ο επιλεγμένος φάκελος/zip αρχείο δε περιέχει μία έγκυρη βιβλιοθήκη"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:466
|
||||
msgid "Starting..."
|
||||
msgstr ""
|
||||
msgstr "Εκκίνηση..."
|
||||
|
||||
#: Base.java:540
|
||||
msgid "Sunshine"
|
||||
@ -1855,7 +1865,7 @@ msgstr "Λιακάδα"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:153
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
msgstr "Σουηδικά"
|
||||
|
||||
#: Preferences.java:84
|
||||
msgid "System Default"
|
||||
@ -1863,7 +1873,7 @@ msgstr "Προεπιλογές συστήματος"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:188
|
||||
msgid "Talossan"
|
||||
msgstr ""
|
||||
msgstr "Talossan"
|
||||
|
||||
#: Preferences.java:116
|
||||
msgid "Tamil"
|
||||
@ -1871,30 +1881,30 @@ msgstr "Ταμίλ"
|
||||
|
||||
#: debug/Compiler.java:414
|
||||
msgid "The 'BYTE' keyword is no longer supported."
|
||||
msgstr ""
|
||||
msgstr "Η λέξη κλειδί 'BYTE' πλέον δεν υποστηρίζεται."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
msgid "The --upload option supports only one file at a time"
|
||||
msgstr ""
|
||||
msgstr "Η επιλογή --upload υποστηρίζει μόνο ένα αρχείο τι φορά"
|
||||
|
||||
#: debug/Compiler.java:426
|
||||
msgid "The Client class has been renamed EthernetClient."
|
||||
msgstr ""
|
||||
msgstr "Η κλάση Client έχει μετονομαστεί σε EthernetClient."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid ""
|
||||
"The IDE includes an updated {0} package, but you're using an older one.\n"
|
||||
"Do you want to upgrade {0}?"
|
||||
msgstr ""
|
||||
msgstr "Το IDE περιλαμβάνει ένα ενημερωμένο {0} πακέτο, αλλά χρησιμοποιείτε ένα παλιότερο.\nΘέλετε να ενημερώσετε το {0};"
|
||||
|
||||
#: debug/Compiler.java:420
|
||||
msgid "The Server class has been renamed EthernetServer."
|
||||
msgstr ""
|
||||
msgstr "Η κλάση Server έχει μετονομαστεί σε EthernetServer."
|
||||
|
||||
#: debug/Compiler.java:432
|
||||
msgid "The Udp class has been renamed EthernetUdp."
|
||||
msgstr ""
|
||||
msgstr "Η κλάση Udp έχει μετονομαστεί σε EthernetUdp."
|
||||
|
||||
#: Editor.java:2147
|
||||
#, java-format
|
||||
@ -1902,7 +1912,7 @@ msgid ""
|
||||
"The file \"{0}\" needs to be inside\n"
|
||||
"a sketch folder named \"{1}\".\n"
|
||||
"Create this folder, move the file, and continue?"
|
||||
msgstr ""
|
||||
msgstr "Το αρχείο \"{0}\" χρειάζεται να είναι μέσα σε έναν\nφάκελο σχεδίου με ονομασία \"{1}\". Δημιουργία αυτού\nτου φακέλου, μετακίνηση του αρχείου και συνέχεια; "
|
||||
|
||||
#: Base.java:1054 Base.java:2674
|
||||
#, java-format
|
||||
@ -1917,11 +1927,11 @@ msgid ""
|
||||
"The main file can't use an extension.\n"
|
||||
"(It may be time for your to graduate to a\n"
|
||||
"\"real\" programming environment)"
|
||||
msgstr ""
|
||||
msgstr "Το κυρίως αρχείο δεν μπορεί να χρησιμοποιήσει μία επέκταση.\n(Ίσως είναι καιρός να περάσετε σε ένα \"πραγματικό\" \nπεριβάλλον προγραμματισμού)"
|
||||
|
||||
#: Sketch.java:356
|
||||
msgid "The name cannot start with a period."
|
||||
msgstr ""
|
||||
msgstr "Το όνομα δεν μπορεί να ξεκινά με τελεία."
|
||||
|
||||
#: Base.java:1412
|
||||
msgid ""
|
||||
@ -1945,14 +1955,14 @@ msgid ""
|
||||
"The sketch folder has disappeared.\n"
|
||||
" Will attempt to re-save in the same location,\n"
|
||||
"but anything besides the code will be lost."
|
||||
msgstr ""
|
||||
msgstr "Ο φάκελος του σχεδίου έχει εξαφανιστεί.\nΘα γίνει προσπάθεια αποθήκευσης στην ίδια τοποθεσία,\nαλλά οτιδήποτε εκτός του κώδικα θα χαθεί."
|
||||
|
||||
#: ../../../processing/app/Sketch.java:2028
|
||||
msgid ""
|
||||
"The sketch name had to be modified. Sketch names can only consist\n"
|
||||
"of ASCII characters and numbers (but cannot start with a number).\n"
|
||||
"They should also be less than 64 characters long."
|
||||
msgstr ""
|
||||
msgstr "Το όνομα του σχεδίου πρέπει να τροποποιηθεί. Τα ονόματα των Σχεδίων\nμπορεί να περιέχουν ASCII χαρακτήρες και αριθμούς (αλλά δεν μπορούν\nνα αρχίζουν με αριθμό). Πρέπει να είναι και μικρότερα από 64 χαρακτήρες."
|
||||
|
||||
#: Base.java:259
|
||||
msgid ""
|
||||
@ -1967,24 +1977,24 @@ msgstr "Ο φάκελος Sketchbook δεν υπάρχει πλέον.\nΤο Ard
|
||||
msgid ""
|
||||
"The specified sketchbook folder contains your copy of the IDE.\n"
|
||||
"Please choose a different folder for your sketchbook."
|
||||
msgstr ""
|
||||
msgstr "Ο καθορισμένος φάκελος του sketchbook περιέχει αντίγραφο του IDE.\nΠαρακαλώ επιλέξτε έναν διαφορετικό φάκελο για το sketchbook σας."
|
||||
|
||||
#: Sketch.java:1075
|
||||
msgid ""
|
||||
"This file has already been copied to the\n"
|
||||
"location from which where you're trying to add it.\n"
|
||||
"I ain't not doin nuthin'."
|
||||
msgstr ""
|
||||
msgstr "Το αρχείο αυτό έχει ήδη αντιγραφεί στην\nτοποθεσία στην οποία προσπαθείτε να το \nπροσθέσετε. Δεν θα κάνω τίποτε."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
msgid ""
|
||||
"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n"
|
||||
"Are you sure you want to delete it?"
|
||||
msgstr ""
|
||||
msgstr "Αυτή η βιβλιοθήκη δεν υπάρχει στον Διαχειριστή Βιβλιοθήκης. Δεν θα μπορέσετε\nνα το εγκαταστήσετε από εδώ. Είστε σίγουροι πως θέλετε να το διαγράψετε;"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:467
|
||||
msgid "This report would have more information with"
|
||||
msgstr ""
|
||||
msgstr "Αυτή η αναφορά θα είχε περισσότερες πληροφορίες με"
|
||||
|
||||
#: Base.java:535
|
||||
msgid "Time for a Break"
|
||||
@ -1993,161 +2003,161 @@ msgstr "Ώρα για δειάλειμα"
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94
|
||||
#, java-format
|
||||
msgid "Tool {0} is not available for your operating system."
|
||||
msgstr ""
|
||||
msgstr "Το εργαλείο {0} δεν είναι διαθέσιμο για τον λειτουργικό σας σύστημα."
|
||||
|
||||
#: Editor.java:663
|
||||
msgid "Tools"
|
||||
msgstr ""
|
||||
msgstr "Εργαλεία"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97
|
||||
msgid "Topic"
|
||||
msgstr ""
|
||||
msgstr "Θέμα"
|
||||
|
||||
#: Editor.java:1070
|
||||
msgid "Troubleshooting"
|
||||
msgstr ""
|
||||
msgstr "Επίλυση προβλημάτων"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:117
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
msgstr "Τούρκικα"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
msgstr "Τύπος"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2507
|
||||
msgid "Type board password to access its console"
|
||||
msgstr ""
|
||||
msgstr "Πληκτρολογήστε το συνθηματικό πλακέτας για αποκτήσετε πρόσβαση στην κονσόλα του"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1673
|
||||
msgid "Type board password to upload a new sketch"
|
||||
msgstr ""
|
||||
msgstr "Πληκτρολογήστε το συνθηματικό πλακέτας για να φορτώσετε ένα νέο σχέδιο "
|
||||
|
||||
#: ../../../processing/app/Preferences.java:118
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
msgstr "Ukrainian"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2524
|
||||
#: ../../../processing/app/NetworkMonitor.java:145
|
||||
msgid "Unable to connect: is the sketch using the bridge?"
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία σύνδεσης: Το σχέδιο χρησιμοποιεί την γέφυρα; "
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:130
|
||||
msgid "Unable to connect: retrying"
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία σύνδεσης: Επανάληψη"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2526
|
||||
msgid "Unable to connect: wrong password?"
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία σύνδεσης: Λάθος συνθηματικό;"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
|
||||
#, java-format
|
||||
msgid "Unable to find {0} in {1}"
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία εύρεσης του {0} στο {1}"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2512
|
||||
msgid "Unable to open serial monitor"
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία ανοίγματος της σειριακής οθόνης"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2709
|
||||
msgid "Unable to open serial plotter"
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία ανοίγματος του σειριακού plotter"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
msgid "Unable to reach Arduino.cc due to possible network issues."
|
||||
msgstr ""
|
||||
msgstr "Αδυναμία εύρεσης του Arduino.cc λόγο πιθανού προβλήματος στο δίκτυο."
|
||||
|
||||
#: Editor.java:1133 Editor.java:1355
|
||||
msgid "Undo"
|
||||
msgstr ""
|
||||
msgstr "Αναίρεση"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
|
||||
#, java-format
|
||||
msgid "Unhandled type {0} in context key {1}"
|
||||
msgstr ""
|
||||
msgstr "Ανεπίλυτος τύπος {0} στο βασικό πλαίσιο {1}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
|
||||
#, java-format
|
||||
msgid "Unknown sketch file extension: {0}"
|
||||
msgstr ""
|
||||
msgstr "Άγνωστη επέκταση αρχείου σχεδίου: {0}"
|
||||
|
||||
#: Platform.java:168
|
||||
msgid ""
|
||||
"Unspecified platform, no launcher available.\n"
|
||||
"To enable opening URLs or folders, add a \n"
|
||||
"\"launcher=/path/to/app\" line to preferences.txt"
|
||||
msgstr ""
|
||||
msgstr "Απροσδιόριστη πλατφόρμα, δεν υπάρχει διαθέσιμος εκκινητής.\nΓια να ενεργοποιήσετε το άνοιγμα URL ή φακέλων, προσθέστε\n \"launcher=/διαδρομή/στην/εφαρμογή\" στο αρχείο preferences.txt"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27
|
||||
msgid "Updatable"
|
||||
msgstr ""
|
||||
msgstr "Ενημερώσιμο"
|
||||
|
||||
#: UpdateCheck.java:111
|
||||
msgid "Update"
|
||||
msgstr ""
|
||||
msgstr "Ενημέρωση"
|
||||
|
||||
#: Preferences.java:428
|
||||
msgid "Update sketch files to new extension on save (.pde -> .ino)"
|
||||
msgstr ""
|
||||
msgstr "Ενημέρωση αρχείου σχεδίου σε νέα επέκταση με την αποθήκευση (.ped -> .ino)"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167
|
||||
msgid "Updating list of installed libraries"
|
||||
msgstr ""
|
||||
msgstr "Ενημέρωση λίστας εγκατεστημένων βιβλιοθηκών"
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:545
|
||||
msgid "Upload"
|
||||
msgstr "Εξαγωγή"
|
||||
msgstr "Φόρτωση"
|
||||
|
||||
#: EditorToolbar.java:46 Editor.java:553
|
||||
msgid "Upload Using Programmer"
|
||||
msgstr "Εξαγώγη Μέσω Προγραμματιστή"
|
||||
msgstr "Φόρτωση Μέσω Προγραμματιστή"
|
||||
|
||||
#: Editor.java:2403 Editor.java:2439
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
msgstr "Η φόρτωση ακυρώθηκε."
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1678
|
||||
msgid "Upload cancelled"
|
||||
msgstr ""
|
||||
msgstr "Η φόρτωση ακυρώθηκε."
|
||||
|
||||
#: Editor.java:2378
|
||||
msgid "Uploading to I/O Board..."
|
||||
msgstr ""
|
||||
msgstr "Φόρτωση στην Ι/Ο Πλακέτα..."
|
||||
|
||||
#: Sketch.java:1622
|
||||
msgid "Uploading..."
|
||||
msgstr ""
|
||||
msgstr "Φόρτωση..."
|
||||
|
||||
#: Editor.java:1269
|
||||
msgid "Use Selection For Find"
|
||||
msgstr ""
|
||||
msgstr "Χρήση Επιλογής Για Εύρεση"
|
||||
|
||||
#: Preferences.java:409
|
||||
msgid "Use external editor"
|
||||
msgstr ""
|
||||
msgstr "Χρήση εξωτερικού επεξεργαστή κειμένου"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499
|
||||
msgid "Username:"
|
||||
msgstr ""
|
||||
msgstr "Όνομα χρήστη:"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:410
|
||||
#, java-format
|
||||
msgid "Using library {0} at version {1} in folder: {2} {3}"
|
||||
msgstr ""
|
||||
msgstr "Χρησιμοποιώντας την βιβλιοθήκη {0} στην έκδοση {1} στον φάκελο: {2} {3}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:94
|
||||
#, java-format
|
||||
msgid "Using library {0} in folder: {1} {2}"
|
||||
msgstr ""
|
||||
msgstr "Χρησιμοποιώντας την βιβλιοθήκη {0} στον φάκελο: {1} {2}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:320
|
||||
#, java-format
|
||||
msgid "Using previously compiled file: {0}"
|
||||
msgstr ""
|
||||
msgstr "Χρησιμοποιώντας το προηγουμένως μεταγλωττισμένο αρχείο: {0}"
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46
|
||||
msgid "Verify"
|
||||
@ -2155,62 +2165,62 @@ msgstr "Επικύρωση"
|
||||
|
||||
#: Preferences.java:400
|
||||
msgid "Verify code after upload"
|
||||
msgstr ""
|
||||
msgstr "Επικύρωση του κώδικα μετά την φόρτωση"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:725
|
||||
msgid "Verify/Compile"
|
||||
msgstr ""
|
||||
msgstr "Επικύρωση/Μεταγλώττιση"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:451
|
||||
msgid "Verifying and uploading..."
|
||||
msgstr ""
|
||||
msgstr "Επικύρωση και φόρτωση..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71
|
||||
msgid "Verifying archive integrity..."
|
||||
msgstr ""
|
||||
msgstr "Επικύρωση ακεραιότητας αρχειοθέτησης..."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:454
|
||||
msgid "Verifying..."
|
||||
msgstr ""
|
||||
msgstr "Επικύρωση..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328
|
||||
#, java-format
|
||||
msgid "Version <b>{0}</b>"
|
||||
msgstr ""
|
||||
msgstr "Έκδοση <b>{0}</b>"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326
|
||||
msgid "Version unknown"
|
||||
msgstr ""
|
||||
msgstr "Άγνωστη έκδοση"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97
|
||||
#, java-format
|
||||
msgid "Version {0}"
|
||||
msgstr ""
|
||||
msgstr "Έκδοση {0}"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:154
|
||||
msgid "Vietnamese"
|
||||
msgstr ""
|
||||
msgstr "Vietnamese"
|
||||
|
||||
#: Editor.java:1105
|
||||
msgid "Visit Arduino.cc"
|
||||
msgstr ""
|
||||
msgstr "Επισκεφτείτε το Arduino.cc"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
|
||||
#, java-format
|
||||
msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'"
|
||||
msgstr ""
|
||||
msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η κατηγορία '{0}' στην βιβλιοθήκη {1} δεν είναι έγγυρη. Επιλογή της '{2}'"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
|
||||
#, java-format
|
||||
msgid "WARNING: Spurious {0} folder in '{1}' library"
|
||||
msgstr ""
|
||||
msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Παρασιτικός {0} φάκελος στην '{1}' βιβλιοθήκη"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:115
|
||||
#, java-format
|
||||
msgid ""
|
||||
"WARNING: library {0} claims to run on {1} architecture(s) and may be "
|
||||
"incompatible with your current board which runs on {2} architecture(s)."
|
||||
msgstr ""
|
||||
msgstr "ΠΡΟΕΙΔΟΠΟΙΗΣΗ: Η βιβλιοθήκη {0} ισχυρίζεται πως τρέχει σε αρχιτεκτονικές(ή) {1} και μπορεί να μην είναι συμβατή με την τρέχουσα πλακέτα σας που τρέχει σε {2} αρχιτεκτονικές(ή)."
|
||||
|
||||
#: Base.java:2128
|
||||
msgid "Warning"
|
||||
@ -2220,68 +2230,68 @@ msgstr "Ειδοποίηση"
|
||||
msgid ""
|
||||
"Warning: This core does not support exporting sketches. Please consider "
|
||||
"upgrading it or contacting its author"
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση; Αυτός ο πυρήνας δεν υποστηρίζει την εξαγωγή σχεδίων. Παρακαλώ συμβουλευτείτε τον δημιουργό της."
|
||||
|
||||
#: ../../../cc/arduino/utils/ArchiveExtractor.java:197
|
||||
#, java-format
|
||||
msgid "Warning: file {0} links to an absolute path {1}"
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Το αρχείο {0} συνδέεται σε μία απόλυτη διαδρομή {1}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
|
||||
msgid "Warning: forced trusting untrusted contributions"
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Εξαναγκασμένη εμπιστοσύνη σε μη έμπιστες συνεισφορές"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
|
||||
#, java-format
|
||||
msgid "Warning: forced untrusted script execution ({0})"
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Εξαναγκασμένη εκτέλεση μη έμπιστου σεναρίου ({0})"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
|
||||
#, java-format
|
||||
msgid "Warning: non trusted contribution, skipping script execution ({0})"
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Μη έμπιστη συνεισφορά, παράληψη εκτέλεση σεναρίου ({0})"
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically"
|
||||
" converted to {2}. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Το platform.txt από τον πυρήνα '{0}' περιέχει ξεπερασμένο {1}, αυτόματη μετατροπή σε {2}. Εξετάστε την ανανέωση αυτού του πυρήνα."
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' misses property '{1}', using default "
|
||||
"value '{2}'. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Στο platform.txt από τον πυρήνα '{0}' λείπει η ιδιότητα '{1}', χρήση της προκαθορισμένης τιμής '{2}'. Σκεφτείτε την ενημέρωση αυτού του πυρήνα."
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:170
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' misses property {1}, automatically set"
|
||||
" to {2}. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Προειδοποίηση: Στο platform.txt από τον πυρήνα '{0}' λείπει η ιδιότητα '{1}', αυτόματη ρύθμιση στην τιμή '{2}'. Σκεφτείτε την ενημέρωση αυτού του πυρήνα."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:190
|
||||
msgid "Western Frisian"
|
||||
msgstr ""
|
||||
msgstr "Western Frisian"
|
||||
|
||||
#: debug/Compiler.java:444
|
||||
msgid "Wire.receive() has been renamed Wire.read()."
|
||||
msgstr ""
|
||||
msgstr "Το Wire.receive() έχει μετονομαστεί σε Wire.read()."
|
||||
|
||||
#: debug/Compiler.java:438
|
||||
msgid "Wire.send() has been renamed Wire.write()."
|
||||
msgstr ""
|
||||
msgstr "Το Wire.send() έχει μετονομαστεί σε Wire.write()."
|
||||
|
||||
#: FindReplace.java:105
|
||||
msgid "Wrap Around"
|
||||
msgstr ""
|
||||
msgstr "Αναδίπλωση Γύρω"
|
||||
|
||||
#: debug/Uploader.java:213
|
||||
msgid ""
|
||||
"Wrong microcontroller found. Did you select the right board from the Tools "
|
||||
"> Board menu?"
|
||||
msgstr ""
|
||||
msgstr "Βρέθηκε λάθος μικροελεγκτής. Επιλέξατε την σωστή πλακέτα από το μενού Εργαλεία > Πλακέτα;"
|
||||
|
||||
#: Preferences.java:77 UpdateCheck.java:108
|
||||
msgid "Yes"
|
||||
@ -2289,33 +2299,33 @@ msgstr "Ναι"
|
||||
|
||||
#: Sketch.java:1074
|
||||
msgid "You can't fool me"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορεί να με γελάσεις"
|
||||
|
||||
#: Sketch.java:411
|
||||
msgid "You can't have a .cpp file with the same name as the sketch."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορείτε να έχετε ένα αρχείο .cpp ίδιου ονόματος με το σχέδιο."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2312
|
||||
msgid "You can't import a folder that contains your sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορείτε να εισάγετε έναν φάκελο που περιέχει το sketchbook σας"
|
||||
|
||||
#: Sketch.java:421
|
||||
msgid ""
|
||||
"You can't rename the sketch to \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορείτε να μετονομάσετε το σχέδιο \"{0}\"\nεπειδή το σχέδιο έχει ήδη ένα .cpp αρχείο με το όνομα αυτό."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
"You cannot save the sketch into a folder\n"
|
||||
"inside itself. This would go on forever."
|
||||
msgstr ""
|
||||
msgstr "Δεν μπορείτε να αποθηκεύσετε το σχέδιο σε ένα φάκελο\nστον εαυτό του. Αυτό θα συνέχιζε αενάως."
|
||||
|
||||
#: Base.java:1888
|
||||
msgid "You forgot your sketchbook"
|
||||
@ -2324,7 +2334,7 @@ msgstr "Ξέχασες το Sketchbook σου"
|
||||
#: ../../../processing/app/AbstractMonitor.java:92
|
||||
msgid ""
|
||||
"You've pressed {0} but nothing was sent. Should you select a line ending?"
|
||||
msgstr ""
|
||||
msgstr "Πιέσατε {0} αλλά δεν στάλθηκε τίποτε. Μήπως πρέπει να επιλέξετε τερματισμό γραμμής;"
|
||||
|
||||
#: Base.java:536
|
||||
msgid ""
|
||||
@ -2336,13 +2346,13 @@ msgstr "Έφτασες το όριο αυτόματης ονομασίας τω
|
||||
msgid ""
|
||||
"Your copy of the IDE is installed in a subfolder of your settings folder.\n"
|
||||
"Please move the IDE to another folder."
|
||||
msgstr ""
|
||||
msgstr "Το αντίγραφο του IDE είναι εγκατεστημένο σε έναν υποφάκελο του φακέλου ρυθμίσεων σας.\nΠαρακαλώ μετακινήστε το IDE σε κάποιον άλλον φάκελο."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
msgid ""
|
||||
"Your copy of the IDE is installed in a subfolder of your sketchbook.\n"
|
||||
"Please move the IDE to another folder."
|
||||
msgstr ""
|
||||
msgstr "Το αντίγραφο του IDE είναι εγκατεστημένο σε έναν υποφάκελο του sketchbook σας.\nΠαρακαλώ μετακινήστε το IDE σε κάποιον άλλον φάκελο."
|
||||
|
||||
#: Base.java:2638
|
||||
msgid "ZIP files or folders"
|
||||
@ -2355,7 +2365,7 @@ msgstr "Το συμπιεσμένο αρχείο δεν περιέχει βιβ
|
||||
#: Sketch.java:364
|
||||
#, java-format
|
||||
msgid "\".{0}\" is not a valid extension."
|
||||
msgstr ""
|
||||
msgstr "\".{0}\" δεν είναι έγκυρη επέκταση."
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
@ -2364,7 +2374,7 @@ msgid ""
|
||||
"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload "
|
||||
"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the"
|
||||
" bad characters to get rid of this warning."
|
||||
msgstr ""
|
||||
msgstr "Το \"{0}\" περιέχει άγνωστους χαρακτήρες. Αν ο κώδικας έχει δημιουργηθεί με παλαιότερη έκδοση του Arduino, ίσως χρειαστεί να χρησιμοποιήσετε το Εργαλεία -> Επισκευή Κωδικοποίησης & Επαναφόρτωση για την ενημέρωση του σχεδίου σε κωδικοποίηση UTF-8. Αν όχι, μπορείτε να διαγράψετε τους άγνωστου χαρακτήρες για να αποφύγετε αυτή την προειδοποίηση."
|
||||
|
||||
#: debug/Compiler.java:409
|
||||
msgid ""
|
||||
@ -2372,7 +2382,7 @@ msgid ""
|
||||
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
|
||||
"You appear to be using it or another library that depends on the SPI library.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 0019, η βιβλιοθήκη Ethernet εξαρτάται από την βιβλιοθήκη SPI.\nΜοιάζει να την χρησιμοποιείτε ή κάποια άλλη βιβλιοθήκη που στηρίζεται σε αυτή του SPI.\n"
|
||||
|
||||
#: debug/Compiler.java:415
|
||||
msgid ""
|
||||
@ -2380,192 +2390,192 @@ msgid ""
|
||||
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
|
||||
"Please use Serial.write() instead.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 1.0, η λέξη κλειδί 'BYTE' δεν υποστηρίζεται.\nΠαρακαλώ χρησιμοποιείστε το Serial.write().\n\n"
|
||||
|
||||
#: debug/Compiler.java:427
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 1.0, η κλάση Client στην βιβλιοθήκη Ethernet \nέχει μετονομαστεί σε EthernetClient.\n\n"
|
||||
|
||||
#: debug/Compiler.java:421
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 1.0, η κλάση Server στην βιβλιοθήκη Ethernet \nέχει μετονομαστεί σε EthernetServer.\n\n"
|
||||
|
||||
#: debug/Compiler.java:433
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 1.0, η κλάση Udp στην βιβλιοθήκη Ethernet \nέχει μετονομαστεί σε EthernetUdp.\n\n"
|
||||
|
||||
#: debug/Compiler.java:445
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 1.0, η συνάρτηση Wire.receive() έχει μετονομαστεί \nWire.read() για ομοιομορφία με άλλες βιβλιοθήκες.\n\n"
|
||||
|
||||
#: debug/Compiler.java:439
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nΑπό το Arduino 1.0, η συνάρτηση Wire.send() έχει μετονομαστεί \nWire.write() για ομοιομορφία με άλλες βιβλιοθήκες.\n\n"
|
||||
|
||||
#: SerialMonitor.java:130 SerialMonitor.java:133
|
||||
msgid "baud"
|
||||
msgstr ""
|
||||
msgstr "baud"
|
||||
|
||||
#: Preferences.java:389
|
||||
msgid "compilation "
|
||||
msgstr ""
|
||||
msgstr "μεταγλώττιση"
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:111
|
||||
msgid "connected!"
|
||||
msgstr ""
|
||||
msgstr "συνδεδεμένο!"
|
||||
|
||||
#: Sketch.java:540
|
||||
msgid "createNewFile() returned false"
|
||||
msgstr ""
|
||||
msgstr "To createNewFile() επέστρεψε σφάλμα"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:469
|
||||
msgid "enabled in File > Preferences."
|
||||
msgstr ""
|
||||
msgstr "ενεργοποιημένο στο Αρχείο > Επιλογές."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1352
|
||||
msgid "http://www.arduino.cc/"
|
||||
msgstr ""
|
||||
msgstr "http://www.arduino.cc/"
|
||||
|
||||
#: UpdateCheck.java:118
|
||||
msgid "http://www.arduino.cc/en/Main/Software"
|
||||
msgstr ""
|
||||
msgstr "http://www.arduino.cc/en/Main/Software"
|
||||
|
||||
#: UpdateCheck.java:53
|
||||
msgid "http://www.arduino.cc/latest.txt"
|
||||
msgstr ""
|
||||
msgstr "http://www.arduino.cc/latest.txt"
|
||||
|
||||
#: Preferences.java:625
|
||||
#, java-format
|
||||
msgid "ignoring invalid font size {0}"
|
||||
msgstr ""
|
||||
msgstr "αγνόηση μη έγκυρου μεγέθους γραμματοσειράς {0}"
|
||||
|
||||
#: Editor.java:936 Editor.java:943
|
||||
msgid "name is null"
|
||||
msgstr ""
|
||||
msgstr "το όνομα είναι κενό"
|
||||
|
||||
#: Editor.java:932
|
||||
msgid "serialMenu is null"
|
||||
msgstr ""
|
||||
msgstr "το σειριακόΜενού είναι κενό"
|
||||
|
||||
#: debug/Uploader.java:195
|
||||
#, java-format
|
||||
msgid ""
|
||||
"the selected serial port {0} does not exist or your board is not connected"
|
||||
msgstr ""
|
||||
msgstr "η επιλεγμένη σειριακή θύρα {0} δεν υπάρχει ή η πλακέτα σας δεν είναι συνδεδεμένη"
|
||||
|
||||
#: ../../../processing/app/Base.java:389
|
||||
#, java-format
|
||||
msgid "unknown option: {0}"
|
||||
msgstr ""
|
||||
msgstr "άγνωστη παράμετρος: {0}"
|
||||
|
||||
#: Preferences.java:391
|
||||
msgid "upload"
|
||||
msgstr ""
|
||||
msgstr "φόρτωση"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324
|
||||
#, java-format
|
||||
msgid "version <b>{0}</b>"
|
||||
msgstr ""
|
||||
msgstr "έκδοση <b>{0}</b>"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2243
|
||||
#, java-format
|
||||
msgid "{0} - {1} | Arduino {2}"
|
||||
msgstr ""
|
||||
msgstr "{0} - {1} | Arduino {2}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43
|
||||
#, java-format
|
||||
msgid "{0} file signature verification failed"
|
||||
msgstr ""
|
||||
msgstr "{0} αρχείο απέτυχε η επαλήθευση της υπογραφής"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310
|
||||
#, java-format
|
||||
msgid "{0} file signature verification failed. File ignored."
|
||||
msgstr ""
|
||||
msgstr "{0} αρχείο απέτυχε η επαλήθευση της υπογραφής. Αγνόηση αρχείου."
|
||||
|
||||
#: Editor.java:380
|
||||
#, java-format
|
||||
msgid "{0} files added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "{0} αρχεία προστέθηκαν στο σχέδιο."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1201
|
||||
#, java-format
|
||||
msgid "{0} libraries"
|
||||
msgstr ""
|
||||
msgstr "{0} βιβλιοθήκες"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76
|
||||
#, java-format
|
||||
msgid "{0} must be a folder"
|
||||
msgstr ""
|
||||
msgstr "το {0} πρέπει να είναι φάκελος"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
|
||||
#, java-format
|
||||
msgid "{0} pattern is missing"
|
||||
msgstr ""
|
||||
msgstr "το {0} υπόδειγμα λείπει"
|
||||
|
||||
#: debug/Compiler.java:365
|
||||
#, java-format
|
||||
msgid "{0} returned {1}"
|
||||
msgstr ""
|
||||
msgstr "το {0} επέστρεψε {1}"
|
||||
|
||||
#: Editor.java:2213
|
||||
#, java-format
|
||||
msgid "{0} | Arduino {1}"
|
||||
msgstr ""
|
||||
msgstr "{0} | Arduino {1}"
|
||||
|
||||
#: ../../../processing/app/Base.java:519
|
||||
#, java-format
|
||||
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Μη έγκυρο όρισμα στο --pref, πρέπει να έχει την μορφή \"pref=τιμή\""
|
||||
|
||||
#: ../../../processing/app/Base.java:476
|
||||
#, java-format
|
||||
msgid ""
|
||||
"{0}: Invalid board name, it should be of the form \"package:arch:board\" or "
|
||||
"\"package:arch:board:options\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Μη έγκυρο όνομα πλακέτας, πρέπει να έχει την μορφή \"package:arch:board\" ή \"package:arch:board:options\""
|
||||
|
||||
#: ../../../processing/app/Base.java:509
|
||||
#, java-format
|
||||
msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Μη έγκυρη επιλογή \"{1}\" για την πλακέτα \"{2}\""
|
||||
|
||||
#: ../../../processing/app/Base.java:507
|
||||
#, java-format
|
||||
msgid "{0}: Invalid option for board \"{1}\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Μη έγκυρη επιλογή για την πλακέτα \"{1}\""
|
||||
|
||||
#: ../../../processing/app/Base.java:502
|
||||
#, java-format
|
||||
msgid "{0}: Invalid option, should be of the form \"name=value\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Μη έγκυρη επιλογή, πρέπει να είναι της μορφής \"όνομα=τιμή\""
|
||||
|
||||
#: ../../../processing/app/Base.java:486
|
||||
#, java-format
|
||||
msgid "{0}: Unknown architecture"
|
||||
msgstr ""
|
||||
msgstr "{0}: Άγνωστη αρχιτεκτονική "
|
||||
|
||||
#: ../../../processing/app/Base.java:491
|
||||
#, java-format
|
||||
msgid "{0}: Unknown board"
|
||||
msgstr ""
|
||||
msgstr "{0}: Άγνωστη πλακέτα"
|
||||
|
||||
#: ../../../processing/app/Base.java:481
|
||||
#, java-format
|
||||
msgid "{0}: Unknown package"
|
||||
msgstr ""
|
||||
msgstr "{0}: Άγνωστο πακέτο"
|
||||
|
@ -8,10 +8,12 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Dimitris Zervas <01ttouch@gmail.com>, 2012
|
||||
# firewalker <firew4lker@gmail.com>, 2015
|
||||
# Spyridon Papanastasiou <spyridon.papanastasiou@gmail.com>, 2015
|
||||
# \u0393\u03b9\u03ac\u03bd\u03bd\u03b7\u03c2 \u03a3\u03c6\u03b1\u03ba\u03b9\u03b1\u03bd\u03ac\u03ba\u03b7\u03c2 <ysfakianakis@gmail.com>, 2013
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el_GR\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Greek (Greece) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/el_GR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: el_GR\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b1\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino)
|
||||
@ -24,41 +26,41 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=\u03a3\u03b5 \u03c7\u03c1\u03ae\u03c3\u03b7\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u03a4\u03bf \u00abKeyboard\u00bb \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u03a4\u03bf \u00abMouse\u00bb \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 'arch' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd\! \u0394\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf http\://goo.gl/gfFJzU \u03b3\u03b9\u03b1 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2
|
||||
|
||||
#: Preferences.java:478
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(\u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b1\u03c3\u03c4\u03b5\u03af\u03c4\u03b5 \u03bc\u03cc\u03bd\u03bf \u03cc\u03c4\u03b1\u03bd \u03c4\u03bf Arduino \u03b4\u03b5\u03bd \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
!(legacy)=
|
||||
(legacy)=(\u03c0\u03b1\u03bb\u03b1\u03b9\u03cc)
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
--curdir\ no\ longer\ supported=\u03c4\u03bf --curdir \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=\u03c4\u03b1 --verbose, --verbose-upload \u03ba\u03b1\u03b9 --verbose-build \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03bc\u03cc\u03bd\u03bf \u03bc\u03b1\u03b6\u03af \u03bc\u03b5 \u03c4\u03b1 --verify \u03ae --upload
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=\u03c4\u03b1 --verbose, --verbose-upload \u03ba\u03b1\u03b9 --verbose-build \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03bc\u03cc\u03bd\u03bf \u03bc\u03b1\u03b6\u03af \u03bc\u03b5 \u03c4\u03b1 --verify \u03ae --upload
|
||||
|
||||
#: Sketch.java:746
|
||||
!.pde\ ->\ .ino=
|
||||
.pde\ ->\ .ino=.pde -> .ino
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
|
||||
#, java-format
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}=
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}=<br/>\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 {0}\u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2{1} \u03c3\u03b1\u03c2
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66
|
||||
#, java-format
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=<br/>\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 {0}\u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2{1} \u03ba\u03b1\u03b9 {2}\u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c3\u03b1\u03c2{3} \u03c3\u03b1\u03c2
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62
|
||||
#, java-format
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=<br/>\u0394\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03bc\u03b5\u03c1\u03b9\u03ba\u03ad\u03c2 \u03b1\u03c0\u03cc \u03c4\u03b9\u03c2 {0}\u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2{1} \u03c3\u03b1\u03c2
|
||||
|
||||
#: Editor.java:2053
|
||||
<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>\u0398\u03b5\u03c2 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2 \u03c4\u03b9\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf<BR> \u03c0\u03c1\u03b9\u03bd \u03bd\u03b1 \u03ba\u03bb\u03b5\u03af\u03c3\u03b5\u03b9\u03c2;</b><p>\u0391\u03bd \u03b4\u03b5\u03bd \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9\u03c2, \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c3\u03bf\u03c5 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03bf\u03cd\u03bd.
|
||||
@ -80,53 +82,53 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
!A\ newer\ {0}\ package\ is\ available=
|
||||
A\ newer\ {0}\ package\ is\ available=\u0388\u03bd\u03b1 \u03bd\u03ad\u03bf {0} \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=
|
||||
A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=\u0388\u03bd\u03b1\u03c2 \u03c5\u03c0\u03bf\u03c6\u03ac\u03ba\u03b5\u03bb\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 sketchbook \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7
|
||||
|
||||
#: Editor.java:1116
|
||||
!About\ Arduino=
|
||||
About\ Arduino=\u03a0\u03b5\u03c1\u03af \u03c4\u03bf\u03c5 Arduino
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
!Add\ .ZIP\ Library...=
|
||||
Add\ .ZIP\ Library...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 ZIP...
|
||||
|
||||
#: Editor.java:650
|
||||
!Add\ File...=
|
||||
Add\ File...=\u03a0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73
|
||||
!Additional\ Boards\ Manager\ URLs=
|
||||
Additional\ Boards\ Manager\ URLs=\u0395\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd URLs \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268
|
||||
!Additional\ Boards\ Manager\ URLs\:\ =
|
||||
Additional\ Boards\ Manager\ URLs\:\ =\u0395\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd URLs \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:161
|
||||
!Afrikaans=
|
||||
Afrikaans=\u0391\u03c6\u03c1\u03b9\u03ba\u03b1\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:96
|
||||
!Albanian=
|
||||
Albanian=\u0391\u03bb\u03b2\u03b1\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
!All=
|
||||
All=\u038c\u03bb\u03b1
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
|
||||
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03b5\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ae\u03c2 \u03c4\u03b7\u03c2 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5.\n\u039c\u03b7\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ba\u03b1\u03b8\u03ce\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03b9\n\u03c4\u03b7\u03bd \u03c0\u03b1\u03bb\u03b9\u03ac \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7. \u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03c4\u03b5 \u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ba\u03b1\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9.\n
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
|
||||
!An\ error\ occurred\ while\ updating\ libraries\ index\!=
|
||||
An\ error\ occurred\ while\ updating\ libraries\ index\!=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd\!
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!An\ error\ occurred\ while\ uploading\ the\ sketch=
|
||||
An\ error\ occurred\ while\ uploading\ the\ sketch=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
!An\ error\ occurred\ while\ verifying\ the\ sketch=
|
||||
An\ error\ occurred\ while\ verifying\ the\ sketch=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=
|
||||
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u03a0\u03c1\u03bf\u03ad\u03ba\u03c5\u03c8\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7/\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: Base.java:228
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u03a0\u03c1\u03bf\u03ba\u03bb\u03ae\u03b8\u03b7\u03ba\u03b5 \u03b1\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03cc\u03c1\u03b9\u03c3\u03c4\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2, \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bc\u03b7\u03c7\u03b1\u03bd\u03ae \u03c3\u03b1\u03c2
|
||||
@ -138,25 +140,25 @@ Arabic=\u0391\u03c1\u03b1\u03b2\u03b9\u03ba\u03ac
|
||||
Aragonese=\u0391\u03c1\u03b1\u03b3\u03bf\u03bd\u03af\u03b1\u03c2
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
!Archive\ Sketch=
|
||||
Archive\ Sketch=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
!Archive\ sketch\ as\:=
|
||||
Archive\ sketch\ as\:=\u0391\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c9\u03c2\:
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
!Archive\ sketch\ canceled.=
|
||||
Archive\ sketch\ canceled.=\u0391\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b7 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5.
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0397 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b5\u03c0\u03b5\u03b9\u03b4\u03ae\n\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03c3\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03b5\u03af \u03c3\u03c9\u03c3\u03c4\u03ac.
|
||||
|
||||
#: ../../../processing/app/I18n.java:83
|
||||
!Arduino\ ARM\ (32-bits)\ Boards=
|
||||
Arduino\ ARM\ (32-bits)\ Boards=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2 Arduino ARM (32-bits)
|
||||
|
||||
#: ../../../processing/app/I18n.java:82
|
||||
!Arduino\ AVR\ Boards=
|
||||
Arduino\ AVR\ Boards=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2 Arduino AVR
|
||||
|
||||
#: Editor.java:2137
|
||||
!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
|
||||
Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u03a4\u03bf Arduino \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03bf\u03af\u03be\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b4\u03b9\u03ba\u03ac \u03c4\u03bf\u03c5 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1\n\u03ba\u03b1\u03b9 \u03ac\u03bb\u03bb\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03bf\u03c5 \u03c4\u03b5\u03bb\u03b5\u03b9\u03ce\u03bd\u03bf\u03c5\u03bd \u03c3\u03b5 .ino \u03ae .pde
|
||||
|
||||
#: Base.java:1682
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03b5\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9, \u03b4\u03b9\u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\n\u03bd\u03b1 \u03c6\u03c4\u03b9\u03ac\u03be\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2 \u03c3\u03b1\u03c2.
|
||||
@ -165,213 +167,213 @@ Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ you
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u03a4\u03bf Arduino \u03b4\u03b5\u03bd \u03b5\u03ba\u03c4\u03b5\u03bb\u03b5\u03af\u03c4\u03b1\u03b9 \u03b4\u03b9\u03cc\u03c4\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\n\u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 Sketchbook.
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:471
|
||||
!Arduino\:\ =
|
||||
Arduino\:\ =Arduino\:
|
||||
|
||||
#: Sketch.java:588
|
||||
#, java-format
|
||||
!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03c2 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf "{0}";
|
||||
|
||||
#: Sketch.java:587
|
||||
!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03c2 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf;
|
||||
|
||||
#: ../../../processing/app/Base.java:356
|
||||
!Argument\ required\ for\ --board=
|
||||
Argument\ required\ for\ --board=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --board
|
||||
|
||||
#: ../../../processing/app/Base.java:363
|
||||
!Argument\ required\ for\ --port=
|
||||
Argument\ required\ for\ --port=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --port
|
||||
|
||||
#: ../../../processing/app/Base.java:377
|
||||
!Argument\ required\ for\ --pref=
|
||||
Argument\ required\ for\ --pref=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --pref
|
||||
|
||||
#: ../../../processing/app/Base.java:384
|
||||
!Argument\ required\ for\ --preferences-file=
|
||||
Argument\ required\ for\ --preferences-file=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf --preferences-file
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:76
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:83
|
||||
#, java-format
|
||||
!Argument\ required\ for\ {0}=
|
||||
Argument\ required\ for\ {0}=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03c4\u03bf {0}
|
||||
|
||||
#: ../../../processing/app/Preferences.java:137
|
||||
!Armenian=
|
||||
Armenian=\u0391\u03c1\u03bc\u03ad\u03bd\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../processing/app/Preferences.java:138
|
||||
!Asturian=
|
||||
Asturian=\u0391\u03c5\u03c3\u03c4\u03c1\u03b9\u03b1\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:145
|
||||
!Authorization\ required=
|
||||
Authorization\ required=\u0391\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7
|
||||
|
||||
#: tools/AutoFormat.java:91
|
||||
!Auto\ Format=
|
||||
Auto\ Format=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0394\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7
|
||||
|
||||
#: tools/AutoFormat.java:944
|
||||
!Auto\ Format\ finished.=
|
||||
Auto\ Format\ finished.=\u039f\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5 \u03b7 \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u0394\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457
|
||||
!Auto-detect\ proxy\ settings=
|
||||
Auto-detect\ proxy\ settings=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03b1\u03bd\u03af\u03c7\u03bd\u03b5\u03c5\u03c3\u03b7 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03b4\u03b9\u03b1\u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474
|
||||
!Automatic\ proxy\ configuration\ URL\:=
|
||||
Automatic\ proxy\ configuration\ URL\:=URL \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae\:
|
||||
|
||||
#: SerialMonitor.java:110
|
||||
!Autoscroll=
|
||||
Autoscroll=\u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03ba\u03cd\u03bb\u03b9\u03c3\u03b7
|
||||
|
||||
#: Editor.java:2619
|
||||
#, java-format
|
||||
!Bad\ error\ line\:\ {0}=
|
||||
Bad\ error\ line\:\ {0}=\u039a\u03b1\u03ba\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2\: {0}
|
||||
|
||||
#: Editor.java:2136
|
||||
!Bad\ file\ selected=
|
||||
Bad\ file\ selected=\u0395\u03c0\u03b9\u03bb\u03ad\u03c7\u03c4\u03b7\u03ba\u03b5 \u03ba\u03b1\u03ba\u03cc \u03b1\u03c1\u03c7\u03b5\u03af\u03bf
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
!Basque=
|
||||
Basque=\u0392\u03b1\u03c3\u03ba\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:139
|
||||
!Belarusian=
|
||||
Belarusian=\u039b\u03b5\u03c5\u03ba\u03bf\u03c1\u03c9\u03c3\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Base.java:1433
|
||||
#: ../../../processing/app/Editor.java:707
|
||||
!Board=
|
||||
Board=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62
|
||||
#, java-format
|
||||
!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=
|
||||
Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u0397 \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 {0} (\u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1 {1}, \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf {2}) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7
|
||||
|
||||
#: ../../../processing/app/debug/TargetBoard.java:42
|
||||
#, java-format
|
||||
!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
|
||||
Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\u0397 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 {0}\:{1}\:{2} \u03b4\u03b5\u03bd \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03b6\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae ''build.board''. \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c3\u03c4\u03bf\: {3}
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:472
|
||||
!Board\:\ =
|
||||
Board\:\ =\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
!Boards\ Manager=
|
||||
Boards\ Manager=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1320
|
||||
!Boards\ Manager...=
|
||||
Boards\ Manager...=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u03a0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328
|
||||
!Boards\ included\ in\ this\ package\:=
|
||||
Boards\ included\ in\ this\ package\:=\u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b5\u03c2 \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf\:
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1273
|
||||
#, java-format
|
||||
!Bootloader\ file\ specified\ but\ missing\:\ {0}=
|
||||
Bootloader\ file\ specified\ but\ missing\:\ {0}=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c4\u03bf\u03c5 Bootloader \u03ad\u03c7\u03b5\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03b1\u03bb\u03bb\u03ac \u03bb\u03b5\u03af\u03c0\u03b5\u03b9\: {0}
|
||||
|
||||
#: ../../../processing/app/Preferences.java:140
|
||||
!Bosnian=
|
||||
Bosnian=\u0392\u03bf\u03c3\u03bd\u03b9\u03b1\u03ba\u03ac
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Both\ NL\ &\ CR=
|
||||
Both\ NL\ &\ CR=\u0391\u03bc\u03c6\u03cc\u03c4\u03b5\u03c1\u03b1 NL & CR
|
||||
|
||||
#: Preferences.java:81
|
||||
Browse=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1530
|
||||
!Build\ options\ changed,\ rebuilding\ all=
|
||||
Build\ options\ changed,\ rebuilding\ all=\u039f\u03b9 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u039a\u03c4\u03b9\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2 \u03ac\u03bb\u03bb\u03b1\u03be\u03b1\u03bd, \u03b1\u03bd\u03b1\u03b4\u03cc\u03bc\u03b7\u03c3\u03b7 \u03cc\u03bb\u03c9\u03bd
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1210
|
||||
!Built-in\ Examples=
|
||||
Built-in\ Examples=\u0395\u03bd\u03c3\u03c9\u03bc\u03b1\u03c4\u03c9\u03bc\u03ad\u03bd\u03b1 \u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1
|
||||
|
||||
#: ../../../processing/app/Preferences.java:80
|
||||
!Bulgarian=
|
||||
Bulgarian=\u0392\u03bf\u03c5\u03bb\u03b3\u03ac\u03c1\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../processing/app/Preferences.java:141
|
||||
!Burmese\ (Myanmar)=
|
||||
Burmese\ (Myanmar)=Burmese (Myanmar)
|
||||
|
||||
#: Editor.java:708
|
||||
!Burn\ Bootloader=
|
||||
Burn\ Bootloader=\u0393\u03c1\u03ac\u03c8\u03b9\u03bc\u03bf Bootloader
|
||||
|
||||
#: Editor.java:2504
|
||||
!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
|
||||
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u0395\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae \u03c4\u03bf\u03c5 Bootloader \u03c3\u03c4\u03b7\u03bd \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u0399/\u039f (\u03af\u03c3\u03c9\u03c2 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bb\u03af\u03b3\u03bf \u03c7\u03c1\u03cc\u03bd\u03bf)...
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77
|
||||
!CRC\ doesn't\ match.\ File\ is\ corrupted.=
|
||||
CRC\ doesn't\ match.\ File\ is\ corrupted.=\u039f CRC \u03b4\u03b5\u03bd \u03c4\u03b1\u03b9\u03c1\u03b9\u03ac\u03b6\u03b5\u03b9. \u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03c4\u03b1\u03ba\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf.
|
||||
|
||||
#: ../../../processing/app/Base.java:379
|
||||
#, java-format
|
||||
!Can\ only\ pass\ one\ of\:\ {0}=
|
||||
Can\ only\ pass\ one\ of\:\ {0}=\u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bc\u03cc\u03bd\u03bf \u03bd\u03b1 \u03c0\u03b5\u03c1\u03ac\u03c3\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03b1\u03c0\u03cc\: {0}
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
|
||||
Can't\ find\ the\ sketch\ in\ the\ specified\ path=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03b7 \u03c3\u03c5\u03b3\u03ba\u03b5\u03ba\u03c1\u03b9\u03bc\u03ad\u03bd\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae
|
||||
|
||||
#: ../../../processing/app/Preferences.java:92
|
||||
!Canadian\ French=
|
||||
Canadian\ French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac \u039a\u03b1\u03bd\u03b1\u03b4\u03ac
|
||||
|
||||
#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2064 Editor.java:2145 Editor.java:2465
|
||||
Cancel=\u0391\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7
|
||||
|
||||
#: Sketch.java:455
|
||||
!Cannot\ Rename=
|
||||
Cannot\ Rename=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af
|
||||
|
||||
#: ../../../processing/app/Base.java:465
|
||||
!Cannot\ specify\ any\ sketch\ files=
|
||||
Cannot\ specify\ any\ sketch\ files=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Carriage\ return=
|
||||
Carriage\ return=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u0393\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2
|
||||
|
||||
#: Preferences.java:87
|
||||
Catalan=\u039a\u03b1\u03c4\u03b1\u03bb\u03b1\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: Preferences.java:419
|
||||
!Check\ for\ updates\ on\ startup=
|
||||
Check\ for\ updates\ on\ startup=\u0388\u03bb\u03b5\u03b3\u03c7\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03b9\u03c2 \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/Preferences.java:142
|
||||
!Chinese\ (China)=
|
||||
Chinese\ (China)=Chinese (China)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
!Chinese\ (Taiwan)=
|
||||
Chinese\ (Taiwan)=Chinese (Taiwan)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:143
|
||||
!Chinese\ (Taiwan)\ (Big5)=
|
||||
Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98
|
||||
!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=
|
||||
Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u039a\u03bb\u03af\u03ba \u03b3\u03b9\u03b1 \u03bb\u03af\u03c3\u03c4\u03b1 URLs \u03c5\u03c0\u03bf\u03c3\u03c4\u03ae\u03c1\u03b9\u03be\u03b7\u03c2 \u03b1\u03bd\u03b5\u03c0\u03af\u03c3\u03b7\u03bc\u03c9\u03bd \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd
|
||||
|
||||
#: Editor.java:521 Editor.java:2024
|
||||
!Close=
|
||||
Close=\u039a\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf
|
||||
|
||||
#: Editor.java:1208 Editor.java:2749
|
||||
!Comment/Uncomment=
|
||||
Comment/Uncomment=\u03a3\u03c7\u03bf\u03bb\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2/\u0391\u03c0\u03bf\u03c3\u03c7\u03bf\u03bb\u03b9\u03b1\u03c3\u03bc\u03cc\u03c2
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266
|
||||
!Compiler\ warnings\:\ =
|
||||
Compiler\ warnings\:\ =\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9\u03c2 \u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03c4\u03ae\:
|
||||
|
||||
#: Sketch.java:1608 Editor.java:1890
|
||||
!Compiling\ sketch...=
|
||||
Compiling\ sketch...=\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5...
|
||||
|
||||
#: Editor.java:1157 Editor.java:2707
|
||||
!Copy=
|
||||
Copy=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae
|
||||
|
||||
#: Editor.java:1177 Editor.java:2723
|
||||
!Copy\ as\ HTML=
|
||||
Copy\ as\ HTML=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03c9\u03c2 HTML
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:455
|
||||
!Copy\ error\ messages=
|
||||
Copy\ error\ messages=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03bc\u03b7\u03bd\u03cd\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1\u03c4\u03bf\u03c2
|
||||
|
||||
#: Editor.java:1165 Editor.java:2715
|
||||
!Copy\ for\ Forum=
|
||||
Copy\ for\ Forum=\u0391\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03ae \u03b1\u03c0\u03cc \u03a6\u03cc\u03c1\u03bf\u03c5\u03bc
|
||||
|
||||
#: Sketch.java:1089
|
||||
#, java-format
|
||||
!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
|
||||
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7 \u03c4\u03bf\u03c5 "{0}" \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
|
||||
|
||||
#: Editor.java:2188
|
||||
!Could\ not\ copy\ to\ a\ proper\ location.=
|
||||
Could\ not\ copy\ to\ a\ proper\ location.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c3\u03b5 \u03bc\u03af\u03b1 \u03c3\u03c9\u03c3\u03c4\u03ae \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1.
|
||||
|
||||
#: Editor.java:2179
|
||||
!Could\ not\ create\ the\ sketch\ folder.=
|
||||
Could\ not\ create\ the\ sketch\ folder.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5.
|
||||
|
||||
#: Editor.java:2206
|
||||
!Could\ not\ create\ the\ sketch.=
|
||||
Could\ not\ create\ the\ sketch.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
|
||||
|
||||
#: Sketch.java:617
|
||||
#, java-format
|
||||
!Could\ not\ delete\ "{0}".=
|
||||
Could\ not\ delete\ "{0}".=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c4\u03bf "{0}".
|
||||
|
||||
#: Sketch.java:1066
|
||||
#, java-format
|
||||
!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
|
||||
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c4\u03bf \u03c5\u03c0\u03ac\u03c1\u03c7\u03c9\u03bd "{0}" \u03b1\u03c1\u03c7\u03b5\u03af\u03bf.
|
||||
|
||||
#: Base.java:2533 Base.java:2556
|
||||
#, java-format
|
||||
@ -379,15 +381,15 @@ Could\ not\ delete\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af
|
||||
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:74
|
||||
#, java-format
|
||||
!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
|
||||
Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf boards.txt \u03c3\u03c4\u03bf {0}. \u0395\u03af\u03bd\u03b1\u03b9 \u03c0\u03c1\u03bf-1.5;
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
|
||||
#, java-format
|
||||
!Could\ not\ find\ tool\ {0}=
|
||||
Could\ not\ find\ tool\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf {0}
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
|
||||
#, java-format
|
||||
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
|
||||
Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03c4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf {0} \u03b1\u03c0\u03cc \u03c4\u03bf \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf {1}
|
||||
|
||||
#: Base.java:1934
|
||||
#, java-format
|
||||
@ -398,13 +400,13 @@ Could\ not\ open\ the\ URL\n{0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b
|
||||
Could\ not\ open\ the\ folder\n{0}=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\n{0}
|
||||
|
||||
#: Sketch.java:1769
|
||||
!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
|
||||
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b5\u03c0\u03b1\u03bd\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. \u039c\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03c3\u03b7\u03bc\u03b5\u03af\u03bf,\n\u03ba\u03b1\u03b9 \u03af\u03c3\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ce\u03c1\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03ba\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03ba\u03bf\u03bb\u03bb\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf\u03bd \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03c3\u03b1\u03c2 \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5.
|
||||
|
||||
#: Sketch.java:1768
|
||||
!Could\ not\ re-save\ sketch=
|
||||
Could\ not\ re-save\ sketch=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b5\u03c0\u03b1\u03bd-\u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: Theme.java:52
|
||||
!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
|
||||
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03bf \u03c7\u03c1\u03ce\u03bc\u03b1 \u03b8\u03ad\u03bc\u03b1\u03c4\u03bf\u03c2.\n\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf Arduino.
|
||||
|
||||
#: Preferences.java:219
|
||||
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b2\u03ac\u03c3\u03b5\u03b9 \u03c4\u03b9\u03c2 \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b5\u03c2 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2.\n\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03be\u03b1\u03bd\u03ac \u03c4\u03bf Arduino.
|
||||
@ -415,124 +417,124 @@ Could\ not\ remove\ old\ version\ of\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\
|
||||
|
||||
#: Sketch.java:483 Sketch.java:528
|
||||
#, java-format
|
||||
!Could\ not\ rename\ "{0}"\ to\ "{1}"=
|
||||
Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03b1\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c4\u03bf {0} \u03c3\u03b5 {1}
|
||||
|
||||
#: Sketch.java:475
|
||||
!Could\ not\ rename\ the\ sketch.\ (0)=
|
||||
Could\ not\ rename\ the\ sketch.\ (0)=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (0)
|
||||
|
||||
#: Sketch.java:496
|
||||
!Could\ not\ rename\ the\ sketch.\ (1)=
|
||||
Could\ not\ rename\ the\ sketch.\ (1)=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (1)
|
||||
|
||||
#: Sketch.java:503
|
||||
!Could\ not\ rename\ the\ sketch.\ (2)=
|
||||
Could\ not\ rename\ the\ sketch.\ (2)=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5. (2)
|
||||
|
||||
#: Base.java:2492
|
||||
#, java-format
|
||||
Could\ not\ replace\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03b1\u03b8\u03b5\u03af \u03c4\u03bf {0}
|
||||
|
||||
#: tools/Archiver.java:74
|
||||
!Couldn't\ archive\ sketch=
|
||||
Couldn't\ archive\ sketch=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: Sketch.java:1647
|
||||
!Couldn't\ determine\ program\ size\:\ {0}=
|
||||
Couldn't\ determine\ program\ size\:\ {0}=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03c4\u03b5\u03af \u03c4\u03bf \u03bc\u03ad\u03b3\u03b5\u03b8\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2\: {0}
|
||||
|
||||
#: Sketch.java:616
|
||||
!Couldn't\ do\ it=
|
||||
Couldn't\ do\ it=\u0394\u03b5\u03bd \u03bc\u03c0\u03cc\u03c1\u03b5\u03c3\u03b5 \u03bd\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9
|
||||
|
||||
#: debug/BasicUploader.java:209
|
||||
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
|
||||
Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u0394\u03b5\u03bd \u03ae\u03c4\u03b1\u03bd \u03b4\u03c5\u03bd\u03b1\u03c4\u03cc\u03bd \u03bd\u03b1 \u03b2\u03c1\u03b5\u03b8\u03b5\u03af \u03bc\u03b9\u03b1 \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03cd\u03c1\u03b1. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c0\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b8\u03cd\u03c1\u03b1. \u0391\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c9\u03c3\u03c4\u03ae, \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03b9\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf reset \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03ad\u03bd\u03b1\u03c1\u03be\u03b7 \u03c4\u03b7\u03c2 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2.
|
||||
|
||||
#: ../../../processing/app/Preferences.java:82
|
||||
!Croatian=
|
||||
Croatian=Croatian
|
||||
|
||||
#: Editor.java:1149 Editor.java:2699
|
||||
!Cut=
|
||||
Cut=\u0391\u03c0\u03bf\u03ba\u03bf\u03c0\u03ae
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:119
|
||||
!Czech\ (Czech\ Republic)=
|
||||
Czech\ (Czech\ Republic)=\u03a4\u03c3\u03ad\u03c7\u03b9\u03ba\u03b1 (\u0394\u03b7\u03bc\u03bf\u03ba\u03c1\u03b1\u03c4\u03af\u03b1 \u03c4\u03b7\u03c2 \u03a4\u03c3\u03b5\u03c7\u03af\u03b1\u03c2)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:120
|
||||
!Danish\ (Denmark)=
|
||||
Danish\ (Denmark)=\u0394\u03b1\u03bd\u03b9\u03ba\u03ac (\u0394\u03b1\u03bd\u03af\u03b1)
|
||||
|
||||
#: Editor.java:1224 Editor.java:2765
|
||||
!Decrease\ Indent=
|
||||
Decrease\ Indent=\u039c\u03b5\u03af\u03c9\u03c3\u03b7 \u0395\u03c3\u03bf\u03c7\u03ae\u03c2
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
!Default=
|
||||
Default=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
!Delete=
|
||||
Delete=\u0394\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae
|
||||
|
||||
#: debug/Uploader.java:199
|
||||
!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
|
||||
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u0397 \u03c3\u03c5\u03c3\u03ba\u03b5\u03c5\u03ae \u03b4\u03b5\u03bd \u03b1\u03c0\u03bf\u03ba\u03c1\u03af\u03bd\u03b5\u03c4\u03b1\u03b9, \u03b5\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c0\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b7 \u03c3\u03c9\u03c3\u03c4\u03ae \u03b8\u03cd\u03c1\u03b1 \u03ae \u03b3\u03af\u03bd\u03b5\u03c4\u03b5 \u03c3\u03c9\u03c3\u03c4\u03cc RESET \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 \u03c0\u03c1\u03b9\u03bd \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae.
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
!Discard\ all\ changes\ and\ reload\ sketch?=
|
||||
Discard\ all\ changes\ and\ reload\ sketch?=\u0391\u03c0\u03cc\u03c1\u03c1\u03b9\u03c8\u03b7 \u03cc\u03bb\u03c9\u03bd \u03c4\u03c9\u03bd \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03ba\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5;
|
||||
|
||||
#: ../../../processing/app/Preferences.java:438
|
||||
!Display\ line\ numbers=
|
||||
Display\ line\ numbers=\u03a0\u03c1\u03bf\u03b2\u03bf\u03bb\u03ae \u03b1\u03c1\u03b9\u03b8\u03bc\u03ce\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
#, java-format
|
||||
!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=
|
||||
Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf {0};\n\u0391\u03bd \u03bd\u03b1\u03b9, \u03b4\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bc\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03c0\u03bb\u03ad\u03bf\u03bd \u03c4\u03bf {0}.
|
||||
|
||||
#: Editor.java:2064
|
||||
!Don't\ Save=
|
||||
Don't\ Save=\u039c\u03b7\u03bd \u03b3\u03af\u03bd\u03b5\u03b9 \u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7
|
||||
|
||||
#: Editor.java:2275 Editor.java:2311
|
||||
!Done\ Saving.=
|
||||
Done\ Saving.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2.
|
||||
|
||||
#: Editor.java:2510
|
||||
!Done\ burning\ bootloader.=
|
||||
Done\ burning\ bootloader.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2 bootloader.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:507
|
||||
#: ../../../processing/app/BaseNoGui.java:552
|
||||
!Done\ compiling=
|
||||
Done\ compiling=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2
|
||||
|
||||
#: Editor.java:1911 Editor.java:1928
|
||||
!Done\ compiling.=
|
||||
Done\ compiling.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2.
|
||||
|
||||
#: Editor.java:2564
|
||||
!Done\ printing.=
|
||||
Done\ printing.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7\u03c2.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
!Done\ uploading=
|
||||
Done\ uploading=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
!Done\ uploading.=
|
||||
Done\ uploading.=\u039f\u03bb\u03bf\u03ba\u03bb\u03ae\u03c1\u03c9\u03c3\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2.
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105
|
||||
#, java-format
|
||||
!Downloaded\ {0}kb\ of\ {1}kb.=
|
||||
Downloaded\ {0}kb\ of\ {1}kb.=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 {0}kb \u03b1\u03c0\u03cc {1}kb.
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107
|
||||
!Downloading\ boards\ definitions.=
|
||||
Downloading\ boards\ definitions.=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03bf\u03c1\u03b9\u03c3\u03bc\u03ce\u03bd \u03c4\u03c9\u03bd \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd.
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86
|
||||
!Downloading\ libraries\ index...=
|
||||
Downloading\ libraries\ index...=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd...
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115
|
||||
#, java-format
|
||||
!Downloading\ library\:\ {0}=
|
||||
Downloading\ library\:\ {0}=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2\: {0}
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318
|
||||
!Downloading\ platforms\ index...=
|
||||
Downloading\ platforms\ index...=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b5\u03c5\u03c1\u03b5\u03c4\u03b7\u03c1\u03af\u03bf\u03c5 \u03c0\u03bb\u03b1\u03c4\u03c6\u03bf\u03c1\u03bc\u03ce\u03bd...
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113
|
||||
#, java-format
|
||||
!Downloading\ tools\ ({0}/{1}).=
|
||||
Downloading\ tools\ ({0}/{1}).=\u039a\u03b1\u03c4\u03ad\u03b2\u03b1\u03c3\u03bc\u03b1 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd ({0}/{1}).
|
||||
|
||||
#: Preferences.java:91
|
||||
Dutch=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
!Dutch\ (Netherlands)=
|
||||
Dutch\ (Netherlands)=\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac (\u039f\u03bb\u03bb\u03b1\u03bd\u03b4\u03af\u03b1)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1309
|
||||
!Edison\ Help=
|
||||
Edison\ Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1 Edison
|
||||
|
||||
#: Editor.java:1130
|
||||
!Edit=
|
||||
Edit=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03af\u03b1
|
||||
|
||||
#: Preferences.java:370
|
||||
Editor\ font\ size\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2\:
|
||||
@ -541,23 +543,23 @@ Editor\ font\ size\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u
|
||||
Editor\ language\:\ =\u0394\u03b9\u03bf\u03c1\u03b8\u03c9\u03c4\u03ae\u03c2 \u0393\u03bb\u03ce\u03c3\u03c3\u03b1\u03c2\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322
|
||||
!Enable\ Code\ Folding=
|
||||
Enable\ Code\ Folding=\u0395\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u0391\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7\u03c2 \u039a\u03ce\u03b4\u03b9\u03ba\u03b1
|
||||
|
||||
#: Preferences.java:92
|
||||
English=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:145
|
||||
!English\ (United\ Kingdom)=
|
||||
English\ (United\ Kingdom)=English (United Kingdom)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271
|
||||
!Enter\ a\ comma\ separated\ list\ of\ urls=
|
||||
Enter\ a\ comma\ separated\ list\ of\ urls=\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b1\u03b9 \u03bc\u03af\u03b1 \u03bb\u03af\u03c3\u03c4\u03b1 urls \u03c7\u03c9\u03c1\u03b9\u03b6\u03cc\u03bc\u03b5\u03bd\u03b1 \u03b1\u03c0\u03cc \u03ba\u03cc\u03bc\u03bc\u03b1
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96
|
||||
!Enter\ additional\ URLs,\ one\ for\ each\ row=
|
||||
Enter\ additional\ URLs,\ one\ for\ each\ row=\u0395\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd URLs, \u03ad\u03bd\u03b1 \u03b3\u03b9\u03b1 \u03ba\u03ac\u03b8\u03b5 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae
|
||||
|
||||
#: Editor.java:1062
|
||||
!Environment=
|
||||
Environment=\u03a0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd
|
||||
|
||||
#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
|
||||
#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
|
||||
@ -565,35 +567,35 @@ English=\u0391\u03b3\u03b3\u03bb\u03b9\u03ba\u03ac
|
||||
Error=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1
|
||||
|
||||
#: Sketch.java:1065 Sketch.java:1088
|
||||
!Error\ adding\ file=
|
||||
Error\ adding\ file=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ae\u03ba\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5
|
||||
|
||||
#: debug/Compiler.java:369
|
||||
!Error\ compiling.=
|
||||
Error\ compiling.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\u03c2.
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113
|
||||
#, java-format
|
||||
!Error\ downloading\ {0}=
|
||||
Error\ downloading\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b5\u03b2\u03ac\u03c3\u03bc\u03b1\u03c4\u03bf\u03c2 {0}
|
||||
|
||||
#: Base.java:1674
|
||||
Error\ getting\ the\ Arduino\ data\ folder.=\u039b\u03ac\u03b8\u03bf\u03c2 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03c4\u03bf\u03c5 Arduino
|
||||
|
||||
#: Serial.java:593
|
||||
#, java-format
|
||||
!Error\ inside\ Serial.{0}()=
|
||||
Error\ inside\ Serial.{0}()=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03c4\u03bf \u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc.{0}()
|
||||
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:95
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:106
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:117
|
||||
#, java-format
|
||||
!Error\ loading\ {0}=
|
||||
Error\ loading\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 {0}
|
||||
|
||||
#: Serial.java:181
|
||||
#, java-format
|
||||
!Error\ opening\ serial\ port\ ''{0}''.=
|
||||
Error\ opening\ serial\ port\ ''{0}''.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}".
|
||||
|
||||
#: ../../../processing/app/Serial.java:119
|
||||
#, java-format
|
||||
!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=
|
||||
Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}". \u03a3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c4\u03b5\u03ba\u03bc\u03b7\u03c1\u03af\u03c9\u03c3\u03b7 \u03c3\u03c4\u03bf http\://playground.arduino.cc/Linux/All\#Permission
|
||||
|
||||
#: Preferences.java:277
|
||||
Error\ reading\ preferences=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ac\u03bd\u03b1\u03b3\u03bd\u03c9\u03c3\u03b7\u03c2 \u03c0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03c9\u03bd
|
||||
@ -605,170 +607,174 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245
|
||||
!Error\ running\ post\ install\ script=
|
||||
Error\ running\ post\ install\ script=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03b5\u03bd\u03b1\u03c1\u03af\u03bf\u03c5 \u03c0\u03c1\u03bf \u03c4\u03b7\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2
|
||||
|
||||
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
|
||||
!Error\ starting\ discovery\ method\:\ =
|
||||
Error\ starting\ discovery\ method\:\ =\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c3\u03c4\u03b7\u03bd \u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03bc\u03b5\u03b8\u03cc\u03b4\u03bf\u03c5\u03c2 \u03b1\u03bd\u03b1\u03ba\u03ac\u03bb\u03c5\u03c8\u03b7\u03c2\:
|
||||
|
||||
#: Serial.java:125
|
||||
#, java-format
|
||||
!Error\ touching\ serial\ port\ ''{0}''.=
|
||||
Error\ touching\ serial\ port\ ''{0}''.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c5\u03bb\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2 "{0}".
|
||||
|
||||
#: Editor.java:2512 Editor.java:2516 Editor.java:2520
|
||||
!Error\ while\ burning\ bootloader.=
|
||||
Error\ while\ burning\ bootloader.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader.
|
||||
|
||||
#: ../../../processing/app/Editor.java:2555
|
||||
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03b3\u03b3\u03c1\u03b1\u03c6\u03ae bootloader\: \u0391\u03c0\u03bf\u03c5\u03c3\u03af\u03b1 '{0}' \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1940
|
||||
!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7\: \u0391\u03c0\u03bf\u03c5\u03c3\u03af\u03b1 '{0}' \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
Error\ while\ loading\ code\ {0}=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 {0}
|
||||
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
Error\ while\ printing.=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
Error\ while\ uploading=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/Editor.java:2409
|
||||
#: ../../../processing/app/Editor.java:2449
|
||||
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\: \u0391\u03c0\u03bf\u03c5\u03c3\u03af\u03b1 '{0}' \u03c0\u03b1\u03c1\u03b1\u03bc\u03ad\u03c4\u03c1\u03bf\u03c5 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
!Error\ while\ verifying=
|
||||
Error\ while\ verifying=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
!Error\ while\ verifying/uploading=
|
||||
Error\ while\ verifying/uploading=\u03a3\u03c6\u03ac\u03bb\u03bc\u03b1 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7/\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: Preferences.java:93
|
||||
Estonian=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:146
|
||||
!Estonian\ (Estonia)=
|
||||
Estonian\ (Estonia)=\u0395\u03c3\u03b8\u03bf\u03bd\u03b9\u03ba\u03ac (\u0395\u03c3\u03b8\u03bf\u03bd\u03af\u03b1)
|
||||
|
||||
#: Editor.java:516
|
||||
!Examples=
|
||||
Examples=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1244
|
||||
!Examples\ from\ Custom\ Libraries=
|
||||
Examples\ from\ Custom\ Libraries=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c0\u03cc \u03a0\u03c1\u03bf\u03c3\u03b1\u03c1\u03bc\u03bf\u03c3\u03bc\u03ad\u03bd\u03b5\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1222
|
||||
!Examples\ from\ Libraries=
|
||||
Examples\ from\ Libraries=\u03a0\u03b1\u03c1\u03b1\u03b4\u03b5\u03af\u03b3\u03bc\u03b1\u03c4\u03b1 \u03b1\u03c0\u03cc \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:753
|
||||
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
|
||||
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0397 \u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5, \u03bf\u03b9 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03c5\u03c4\u03bf\u03cd\u03bd \u03c0\u03c1\u03ce\u03c4\u03b1.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:750
|
||||
!Export\ compiled\ Binary=
|
||||
Export\ compiled\ Binary=\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c5 \u0394\u03c5\u03b1\u03b4\u03b9\u03ba\u03bf\u03cd
|
||||
|
||||
#: ../../../processing/app/Base.java:416
|
||||
#, java-format
|
||||
!Failed\ to\ open\ sketch\:\ "{0}"=
|
||||
Failed\ to\ open\ sketch\:\ "{0}"=\u0391\u03c0\u03bf\u03c4\u03c5\u03c7\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5\: "{0}"
|
||||
|
||||
#: Editor.java:491
|
||||
!File=
|
||||
File=\u0391\u03c1\u03c7\u03b5\u03af\u03bf
|
||||
|
||||
#: Preferences.java:94
|
||||
Filipino=\u03a6\u03b9\u03bb\u03bb\u03b9\u03c0\u03b9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95
|
||||
!Filter\ your\ search...=
|
||||
Filter\ your\ search...=\u03a6\u03b9\u03bb\u03c4\u03c1\u03ac\u03c1\u03b9\u03c3\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b1\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7\u03c2...
|
||||
|
||||
#: FindReplace.java:124 FindReplace.java:127
|
||||
Find=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7
|
||||
|
||||
#: Editor.java:1249
|
||||
!Find\ Next=
|
||||
Find\ Next=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03bf\u03c5
|
||||
|
||||
#: Editor.java:1259
|
||||
!Find\ Previous=
|
||||
Find\ Previous=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf\u03c5
|
||||
|
||||
#: Editor.java:1086 Editor.java:2775
|
||||
!Find\ in\ Reference=
|
||||
Find\ in\ Reference=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03a0\u03b1\u03c1\u03b1\u03c0\u03bf\u03bc\u03c0\u03ae
|
||||
|
||||
#: Editor.java:1234
|
||||
!Find...=
|
||||
Find...=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7...
|
||||
|
||||
#: FindReplace.java:80
|
||||
Find\:=\u0395\u03cd\u03c1\u03b5\u03c3\u03b7\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:147
|
||||
!Finnish=
|
||||
Finnish=\u03a6\u03b9\u03bb\u03b1\u03bd\u03b4\u03b9\u03ba\u03ac
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
!Fix\ Encoding\ &\ Reload=
|
||||
Fix\ Encoding\ &\ Reload=\u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ae \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 \u03ba\u03b1\u03b9 \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:318
|
||||
!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=
|
||||
For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=\u0393\u03b9\u03b1 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd, \u03b4\u03b5\u03af\u03c4\u03b5\: http\://www.arduino.cc/en/Guide/Libraries\n
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
|
||||
#, java-format
|
||||
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=
|
||||
Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=\u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 1200bps \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1/\u03ba\u03bb\u03b5\u03af\u03c3\u03b9\u03bc\u03bf \u03c3\u03c4\u03b7\u03bd \u03b8\u03cd\u03c1\u03b1 {0}
|
||||
|
||||
#: Preferences.java:95
|
||||
French=\u0393\u03b1\u03bb\u03bb\u03b9\u03ba\u03ac
|
||||
|
||||
#: Editor.java:1097
|
||||
!Frequently\ Asked\ Questions=
|
||||
Frequently\ Asked\ Questions=\u03a3\u03c5\u03c7\u03bd\u03ad\u03c2 \u0395\u03c1\u03c9\u03c4\u03ae\u03c3\u03b5\u03b9\u03c2
|
||||
|
||||
#: Preferences.java:96
|
||||
!Galician=
|
||||
Galician=\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03ba\u03ac
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:176
|
||||
!Galician\ (Spain)=
|
||||
Galician\ (Spain)=\u0393\u03b1\u03bb\u03b9\u03ba\u03b9\u03b1\u03ba\u03ac (\u0399\u03c3\u03c0\u03b1\u03bd\u03af\u03b1)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1288
|
||||
!Galileo\ Help=
|
||||
Galileo\ Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1 Galileo
|
||||
|
||||
#: ../../../processing/app/Preferences.java:94
|
||||
!Georgian=
|
||||
Georgian=\u0393\u03b5\u03c9\u03c1\u03b3\u03b9\u03b1\u03bd\u03ac
|
||||
|
||||
#: Preferences.java:97
|
||||
German=\u0393\u03b5\u03c1\u03bc\u03b1\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: Editor.java:1054
|
||||
!Getting\ Started=
|
||||
Getting\ Started=\u039e\u03b5\u03ba\u03b9\u03bd\u03ce\u03bd\u03c4\u03b1\u03c2
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1646
|
||||
#, java-format
|
||||
!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
|
||||
Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u039f\u03b9 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd {0} bytes ({2}%%) \u03b4\u03c5\u03bd\u03b1\u03bc\u03b9\u03ba\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2, \u03b1\u03c6\u03ae\u03bd\u03bf\u03bd\u03c4\u03b1\u03c2 {3} bytes \u03b3\u03b9\u03b1 \u03c4\u03bf\u03c0\u03b9\u03ba\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2. \u03a4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 {1} bytes.
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1651
|
||||
#, java-format
|
||||
!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
|
||||
Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u039f\u03b9 \u03ba\u03b1\u03b8\u03bf\u03bb\u03b9\u03ba\u03ad\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b2\u03bb\u03b7\u03c4\u03ad\u03c2 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd {0} bytes \u03b4\u03c5\u03bd\u03b1\u03bc\u03b9\u03ba\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
!Go\ to\ line=
|
||||
Go\ to\ line=\u03a0\u03ae\u03b3\u03b1\u03b9\u03bd\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
!Go\ to\ line...=
|
||||
Go\ to\ line...=\u03a0\u03ae\u03b3\u03b1\u03b9\u03bd\u03b5 \u03c3\u03c4\u03b7\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae...
|
||||
|
||||
#: Preferences.java:98
|
||||
Greek=\u0395\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:95
|
||||
!Hebrew=
|
||||
Hebrew=\u0395\u03b2\u03c1\u03b1\u03ca\u03ba\u03ac
|
||||
|
||||
#: Editor.java:1015
|
||||
!Help=
|
||||
Help=\u0392\u03bf\u03ae\u03b8\u03b5\u03b9\u03b1
|
||||
|
||||
#: Preferences.java:99
|
||||
Hindi=\u03a7\u03af\u03bd\u03c4\u03b9
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
!Host\ name\:=
|
||||
Host\ name\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03a5\u03c0\u03bf\u03bb\u03bf\u03b3\u03b9\u03c3\u03c4\u03ae\:
|
||||
|
||||
#: Sketch.java:295
|
||||
!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u03a4\u03b9 \u03bb\u03ad\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c0\u03c1\u03ce\u03c4\u03b1 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf\n\u03c0\u03c1\u03b9\u03bd \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5;
|
||||
|
||||
#: Sketch.java:882
|
||||
!How\ very\ Borges\ of\ you=
|
||||
How\ very\ Borges\ of\ you=\u03a0\u03bf\u03bb\u03cd "Borges" \u03b1\u03c0\u03cc \u03bc\u03ad\u03c1\u03bf\u03c5\u03c2 \u03c3\u03b1\u03c2
|
||||
|
||||
#: Preferences.java:100
|
||||
Hungarian=\u039f\u03c5\u03b3\u03b3\u03b1\u03c1\u03ad\u03b6\u03b9\u03ba\u03b1
|
||||
@ -783,23 +789,23 @@ Ignoring\ bad\ library\ name=\u03a4\u03bf \u03bb\u03ac\u03b8\u03bf\u03c2 \u03cc\
|
||||
Ignoring\ sketch\ with\ bad\ name=\u03a0\u03b1\u03c1\u03ac\u03b2\u03bb\u03b5\u03c8\u03b7 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03bb\u03b1\u03bd\u03b8\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1
|
||||
|
||||
#: ../../../processing/app/Sketch.java:736
|
||||
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u03a3\u03c4\u03bf Arduino 1.0, \u03b7 \u03c0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b1\u03bb\u03bb\u03ac\u03be\u03b5\u03b9\n\u03b1\u03c0\u03cc .pde \u03c3\u03b5 .ino. \u039d\u03ad\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1 (\u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03b1\u03bd\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b1\u03c5\u03c4\u03ce\u03bd \u03c0\u03bf\u03c5 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03b8\u03b7\u03ba\u03b1\u03bd\n\u03bc\u03b5 \u03c4\u03bf "\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03a9\u03c2") \u03b8\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03bf\u03cd\u03bd \u03c4\u03b7\u03bd \u03bd\u03ad\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7. \u0397 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7\n\u03c4\u03c9\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03b8\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03b8\u03bf\u03cd\u03bd \u03ba\u03b1\u03c4\u03ac \u03c3\u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7, \u03b1\u03bb\u03bb\u03ac \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5\n\u03bd\u03b1 \u03c4\u03bf \u03b1\u03c0\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf\u03bd \u03b4\u03b9\u03ac\u03bb\u03bf\u03b3\u03bf \u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2.\n\n\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7\u03c2;
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:778
|
||||
!Include\ Library=
|
||||
Include\ Library=\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
!Incorrect\ IDE\ installation\ folder=
|
||||
Incorrect\ IDE\ installation\ folder=\u0395\u03c3\u03c6\u03b1\u03bb\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7\u03c2 IDE
|
||||
|
||||
#: Editor.java:1216 Editor.java:2757
|
||||
!Increase\ Indent=
|
||||
Increase\ Indent=\u0391\u03cd\u03be\u03b7\u03c3\u03b7 \u0395\u03c3\u03bf\u03c7\u03ae\u03c2
|
||||
|
||||
#: Preferences.java:101
|
||||
Indonesian=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
!Initializing\ packages...=
|
||||
Initializing\ packages...=\u0391\u03c1\u03c7\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 \u03c0\u03b1\u03ba\u03ad\u03c4\u03c9\u03bd...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81
|
||||
@ -807,36 +813,36 @@ Indonesian=\u0399\u03bd\u03b4\u03bf\u03bd\u03b7\u03c3\u03b9\u03b1\u03ba\u03ac
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
!Install=
|
||||
Install=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
!Installation\ completed\!=
|
||||
Installation\ completed\!=\u0397 \u03b5\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03bf\u03bb\u03bf\u03ba\u03bb\u03b7\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5\!
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
!Installed=
|
||||
Installed=\u0395\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
!Installing\ boards...=
|
||||
Installing\ boards...=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd...
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126
|
||||
#, java-format
|
||||
!Installing\ library\:\ {0}=
|
||||
Installing\ library\:\ {0}=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2\:{0}
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134
|
||||
#, java-format
|
||||
!Installing\ tools\ ({0}/{1})...=
|
||||
Installing\ tools\ ({0}/{1})...=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03c9\u03bd ({0}/{1})...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
!Installing...=
|
||||
Installing...=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7...
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
!Invalid\ library\ found\ in\ {0}\:\ {1}=
|
||||
Invalid\ library\ found\ in\ {0}\:\ {1}=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b7 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf {0}\: {1}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66
|
||||
#, java-format
|
||||
!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=
|
||||
Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=\u039c\u03b7 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7 \u03c0\u03b1\u03c1\u03ac\u03b8\u03b5\u03c3\u03b7\: \u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b1\u03c2 [{0}] \u03ba\u03bb\u03b5\u03b9\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2.
|
||||
|
||||
#: Preferences.java:102
|
||||
Italian=\u0399\u03c4\u03b1\u03bb\u03b9\u03ba\u03ac
|
||||
@ -848,180 +854,180 @@ Japanese=\u0393\u03b9\u03b1\u03c0\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
|
||||
Korean=\u039a\u03bf\u03c1\u03b5\u03ac\u03c4\u03b9\u03ba\u03b1
|
||||
|
||||
#: Preferences.java:105
|
||||
!Latvian=
|
||||
Latvian=\u039b\u03b5\u03c4\u03c4\u03bf\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
!Library\ Manager=
|
||||
Library\ Manager=\u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae\u03c2 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=
|
||||
Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03b9\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03c3\u03b1\u03c2. \u0395\u03bb\u03ad\u03b3\u03be\u03c4\u03b5 \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd "\u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71
|
||||
!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=
|
||||
Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03b1\u03bc\u03c6\u03cc\u03c4\u03b5\u03c1\u03b1 \u03c4\u03bf\u03c5\u03c2 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5\u03c2 'src' \u03ba\u03b1\u03b9 'utility'.
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107
|
||||
#, java-format
|
||||
!Library\ is\ already\ installed\:\ {0}\ version\ {1}=
|
||||
Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0397 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ae\u03b4\u03b7 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03b7\: {0} \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 {1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
!Line\ number\:=
|
||||
Line\ number\:=\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03c3\u03b5\u03b9\u03c1\u03ac\u03c2\:
|
||||
|
||||
#: Preferences.java:106
|
||||
Lithuaninan=\u039b\u03b9\u03b8\u03bf\u03c5\u03b1\u03bd\u03af\u03b1\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:132
|
||||
!Loading\ configuration...=
|
||||
Loading\ configuration...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b4\u03b9\u03b1\u03bc\u03cc\u03c1\u03c6\u03c9\u03c3\u03b7\u03c2...
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
!Looking\ for\ recipes\ like\ {0}*{1}=
|
||||
Looking\ for\ recipes\ like\ {0}*{1}=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c3\u03c5\u03bd\u03c4\u03b1\u03b3\u03ad\u03c2 \u03cc\u03c0\u03c9\u03c2 {0}*{1}
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1684
|
||||
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
|
||||
Low\ memory\ available,\ stability\ problems\ may\ occur.=\u039b\u03af\u03b3\u03b7 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03bc\u03bd\u03ae\u03bc\u03b7, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03c1\u03bf\u03ba\u03cd\u03c8\u03bf\u03c5\u03bd \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b5\u03c5\u03c3\u03c4\u03ac\u03b8\u03b5\u03b9\u03b1\u03c2.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1168
|
||||
!Manage\ Libraries...=
|
||||
Manage\ Libraries...=\u0394\u03b9\u03b1\u03c7\u03b5\u03af\u03c1\u03b9\u03c3\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466
|
||||
!Manual\ proxy\ configuration=
|
||||
Manual\ proxy\ configuration=\u03a7\u03b5\u03b9\u03c1\u03bf\u03ba\u03af\u03bd\u03b7\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae
|
||||
|
||||
#: Preferences.java:107
|
||||
!Marathi=
|
||||
Marathi=Marathi
|
||||
|
||||
#: Base.java:2112
|
||||
Message=\u039c\u03ae\u03bd\u03c5\u03bc\u03b1
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81
|
||||
#, java-format
|
||||
!Missing\ '{0}'\ from\ library\ in\ {1}=
|
||||
Missing\ '{0}'\ from\ library\ in\ {1}=\u039b\u03b5\u03af\u03c0\u03b5\u03b9 \u03c4\u03bf '{0}' \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c3\u03c4\u03bf {1}
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
!Mode\ not\ supported=
|
||||
Mode\ not\ supported=\u0397 \u039c\u03ad\u03b8\u03bf\u03b4\u03bf\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
!More=
|
||||
More=\u0395\u03c0\u03b9\u03c0\u03bb\u03ad\u03bf\u03bd
|
||||
|
||||
#: Preferences.java:449
|
||||
!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u039f\u03b9 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03bf\u03cd\u03bd \u03b1\u03c0\u03b5\u03c5\u03b8\u03b5\u03af\u03b1\u03c2 \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf
|
||||
|
||||
#: Editor.java:2156
|
||||
!Moving=
|
||||
Moving=\u039c\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
!Multiple\ files\ not\ supported=
|
||||
Multiple\ files\ not\ supported=\u0394\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9 \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03b1
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:520
|
||||
#, java-format
|
||||
!Multiple\ libraries\ were\ found\ for\ "{0}"=
|
||||
Multiple\ libraries\ were\ found\ for\ "{0}"=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03c0\u03bf\u03bb\u03bb\u03b1\u03c0\u03bb\u03ad\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2 \u03b3\u03b9\u03b1 "{0}"
|
||||
|
||||
#: ../../../processing/app/Base.java:395
|
||||
!Must\ specify\ exactly\ one\ sketch\ file=
|
||||
Must\ specify\ exactly\ one\ sketch\ file=\u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ba\u03b1\u03b8\u03bf\u03c1\u03af\u03c3\u03b5\u03c4\u03b5 \u03b1\u03ba\u03c1\u03b9\u03b2\u03ce\u03c2 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: Sketch.java:282
|
||||
!Name\ for\ new\ file\:=
|
||||
Name\ for\ new\ file\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03b3\u03b9\u03b1 \u03bd\u03ad\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
!Nepali=
|
||||
Nepali=Nepali
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
!Network=
|
||||
Network=\u0394\u03af\u03ba\u03c4\u03c5\u03bf
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
!Network\ ports=
|
||||
Network\ ports=\u0398\u03cd\u03c1\u03b5\u03c2 \u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
!Network\ upload\ using\ programmer\ not\ supported=
|
||||
Network\ upload\ using\ programmer\ not\ supported=\u039c\u03b5\u03c4\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03bc\u03ad\u03c3\u03c9 \u03b4\u03b9\u03ba\u03c4\u03cd\u03bf\u03c5 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
New=\u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1
|
||||
|
||||
#: EditorHeader.java:292
|
||||
!New\ Tab=
|
||||
New\ Tab=\u039d\u03ad\u03b1 \u03ba\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Newline=
|
||||
Newline=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2
|
||||
|
||||
#: EditorHeader.java:340
|
||||
!Next\ Tab=
|
||||
Next\ Tab=\u0395\u03c0\u03cc\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1
|
||||
|
||||
#: Preferences.java:78 UpdateCheck.java:108
|
||||
No=\u038c\u03c7\u03b9
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:158
|
||||
!No\ authorization\ data\ found=
|
||||
No\ authorization\ data\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03b1 \u03b5\u03be\u03bf\u03c5\u03c3\u03b9\u03bf\u03b4\u03cc\u03c4\u03b7\u03c3\u03b7\u03c2
|
||||
|
||||
#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
|
||||
!No\ changes\ necessary\ for\ Auto\ Format.=
|
||||
No\ changes\ necessary\ for\ Auto\ Format.=\u0394\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b1\u03c0\u03b1\u03c1\u03b1\u03af\u03c4\u03b7\u03c4\u03b5\u03c2 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ad\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u0391\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u039c\u03bf\u03c1\u03c6\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
!No\ command\ line\ parameters\ found=
|
||||
No\ command\ line\ parameters\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03ba\u03b1\u03bc\u03b9\u03ac \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae \u03b5\u03bd\u03c4\u03bf\u03bb\u03ce\u03bd
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:200
|
||||
!No\ compiled\ sketch\ found=
|
||||
No\ compiled\ sketch\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf
|
||||
|
||||
#: Editor.java:373
|
||||
!No\ files\ were\ added\ to\ the\ sketch.=
|
||||
No\ files\ were\ added\ to\ the\ sketch.=\u0394\u03b5\u03bd \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
|
||||
|
||||
#: Platform.java:167
|
||||
!No\ launcher\ available=
|
||||
No\ launcher\ available=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf\u03c2 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!No\ line\ ending=
|
||||
No\ line\ ending=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c4\u03ad\u03bb\u03bf\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
!No\ parameters=
|
||||
No\ parameters=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03bd \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03b9
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453
|
||||
!No\ proxy=
|
||||
No\ proxy=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c3\u03bf\u03bb\u03b1\u03b2\u03b7\u03c4\u03ae\u03c2
|
||||
|
||||
#: Base.java:541
|
||||
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u039f\u03c7\u03b9 \u03b1\u03bb\u03ae\u03b8\u03b5\u03b9\u03b1, \u03b5\u03af\u03bd\u03b1\u03b9 \u03ce\u03c1\u03b1 \u03bd\u03b1 \u03c0\u03ac\u03c1\u03b5\u03b9\u03c2 \u03bb\u03af\u03b3\u03bf \u03c6\u03c1\u03ad\u03c3\u03ba\u03bf \u03b1\u03ad\u03c1\u03b1
|
||||
|
||||
#: Editor.java:1872
|
||||
#, java-format
|
||||
!No\ reference\ available\ for\ "{0}"=
|
||||
No\ reference\ available\ for\ "{0}"=\u0394\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b3\u03b9\u03b1 \u03c4\u03bf "{0}"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
!No\ sketch=
|
||||
No\ sketch=\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
!No\ sketchbook=
|
||||
No\ sketchbook=\u039a\u03b1\u03bd\u03ad\u03bd\u03b1 sketchbook
|
||||
|
||||
#: ../../../processing/app/Sketch.java:204
|
||||
!No\ valid\ code\ files\ found=
|
||||
No\ valid\ code\ files\ found=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03ad\u03b3\u03ba\u03c5\u03c1\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../processing/app/debug/TargetPackage.java:63
|
||||
#, java-format
|
||||
!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
|
||||
No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u0394\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf\u03b9 \u03bf\u03c1\u03b9\u03c3\u03bc\u03bf\u03af \u03c5\u03bb\u03b9\u03ba\u03bf\u03cd \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf {0}.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184
|
||||
!None=
|
||||
None=\u039a\u03b1\u03bd\u03ad\u03bd\u03b1
|
||||
|
||||
#: ../../../processing/app/Preferences.java:108
|
||||
!Norwegian\ Bokm\u00e5l=
|
||||
Norwegian\ Bokm\u00e5l=Norwegian Bokm\u00e5l
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1656
|
||||
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
|
||||
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u039c\u03b7 \u03b5\u03c0\u03b1\u03c1\u03ba\u03ae\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7, \u03b4\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u03b3\u03b9\u03b1 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03bb\u03ac\u03c4\u03c4\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c7\u03c1\u03ae\u03c3\u03b7\u03c2 \u03bc\u03bd\u03ae\u03bc\u03b7\u03c2.
|
||||
|
||||
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2145 Editor.java:2465
|
||||
OK=\u0395\u03bd\u03c4\u03ac\u03be\u03b5\u03b9
|
||||
|
||||
#: Sketch.java:992 Editor.java:376
|
||||
!One\ file\ added\ to\ the\ sketch.=
|
||||
One\ file\ added\ to\ the\ sketch.=\u0388\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b5 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=
|
||||
Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=\u039c\u03cc\u03bd\u03bf \u03c4\u03b1 --verify, --upload \u03ae --get-pref \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03bf\u03bd\u03c4\u03b1\u03b9
|
||||
|
||||
#: EditorToolbar.java:41
|
||||
Open=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:625
|
||||
!Open\ Recent=
|
||||
Open\ Recent=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 \u03a0\u03c1\u03bf\u03c3\u03c6\u03ac\u03c4\u03bf\u03c5
|
||||
|
||||
#: Editor.java:2688
|
||||
!Open\ URL=
|
||||
Open\ URL=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL
|
||||
|
||||
#: Base.java:636
|
||||
Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03be\u03b5 \u03ad\u03bd\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf Arduino...
|
||||
@ -1030,78 +1036,78 @@ Open\ an\ Arduino\ sketch...=\u0386\u03bd\u03bf\u03b9\u03be\u03b5 \u03ad\u03bd\u
|
||||
Open...=\u0386\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1...
|
||||
|
||||
#: Editor.java:563
|
||||
!Page\ Setup=
|
||||
Page\ Setup=\u0395\u03b3\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03a3\u03b5\u03bb\u03af\u03b4\u03b1\u03c2
|
||||
|
||||
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
|
||||
!Password\:=
|
||||
Password\:=\u03a3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc\:
|
||||
|
||||
#: Editor.java:1189 Editor.java:2731
|
||||
!Paste=
|
||||
Paste=\u0395\u03c0\u03b9\u03ba\u03cc\u03bb\u03bb\u03b7\u03c3\u03b7
|
||||
|
||||
#: Preferences.java:109
|
||||
Persian=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:161
|
||||
!Persian\ (Iran)=
|
||||
Persian\ (Iran)=\u03a0\u03b5\u03c1\u03c3\u03b9\u03ba\u03ac (\u0399\u03c1\u03ac\u03bd)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79
|
||||
#, java-format
|
||||
!Platform\ {0}\ (package\ {1})\ is\ unknown=
|
||||
Platform\ {0}\ (package\ {1})\ is\ unknown=\u0397 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1 {0} (\u03c0\u03b1\u03ba\u03ad\u03c4\u03bf {1}) \u03b5\u03af\u03bd\u03b1\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
!Please\ confirm\ boards\ deletion=
|
||||
Please\ confirm\ boards\ deletion=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
!Please\ confirm\ library\ deletion=
|
||||
Please\ confirm\ library\ deletion=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03b2\u03b5\u03b2\u03b1\u03b9\u03ce\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b4\u03b9\u03b1\u03b3\u03c1\u03b1\u03c6\u03ae \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2
|
||||
|
||||
#: debug/Compiler.java:408
|
||||
!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
|
||||
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf > \u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2.
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
|
||||
Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03c0\u03b5\u03c1\u03b9\u03bb\u03ac\u03b2\u03b5\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Wire \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf > \u03a3\u03c5\u03bc\u03c0\u03b5\u03c1\u03af\u03bb\u03b7\u03c8\u03b7 \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2.
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
|
||||
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
|
||||
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae\u03c2
|
||||
|
||||
#: Preferences.java:110
|
||||
Polish=\u03a0\u03bf\u03bb\u03c9\u03bd\u03ad\u03b6\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../processing/app/Editor.java:718
|
||||
!Port=
|
||||
Port=\u0398\u03cd\u03c1\u03b1
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491
|
||||
!Port\ number\:=
|
||||
Port\ number\:=\u0391\u03c1\u03b9\u03b8\u03bc\u03cc\u03c2 \u03b8\u03cd\u03c1\u03b1\u03c2\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:151
|
||||
!Portugese=
|
||||
Portugese=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../processing/app/Preferences.java:127
|
||||
!Portuguese\ (Brazil)=
|
||||
Portuguese\ (Brazil)=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac (\u0392\u03c1\u03b1\u03b6\u03b9\u03bb\u03af\u03b1)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:128
|
||||
!Portuguese\ (Portugal)=
|
||||
Portuguese\ (Portugal)=\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03b9\u03ba\u03ac (\u03a0\u03bf\u03c1\u03c4\u03bf\u03b3\u03b1\u03bb\u03af\u03b1)
|
||||
|
||||
#: Preferences.java:295 Editor.java:583
|
||||
Preferences=\u03a0\u03c1\u03bf\u03c4\u03b9\u03bc\u03ae\u03c3\u03b5\u03b9\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:297
|
||||
!Preparing\ boards...=
|
||||
Preparing\ boards...=\u03a0\u03c1\u03bf\u03b5\u03c4\u03bf\u03b9\u03bc\u03b1\u03c3\u03af\u03b1 \u03c0\u03bb\u03b1\u03ba\u03b5\u03c4\u03ce\u03bd...
|
||||
|
||||
#: FindReplace.java:123 FindReplace.java:128
|
||||
Previous=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03bf
|
||||
|
||||
#: EditorHeader.java:326
|
||||
!Previous\ Tab=
|
||||
Previous\ Tab=\u03a0\u03c1\u03bf\u03b7\u03b3\u03bf\u03cd\u03bc\u03b5\u03bd\u03b7 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b1
|
||||
|
||||
#: Editor.java:571
|
||||
!Print=
|
||||
Print=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7
|
||||
|
||||
#: Editor.java:2571
|
||||
!Printing\ canceled.=
|
||||
Printing\ canceled.=\u0397 \u03b5\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5.
|
||||
|
||||
#: Editor.java:2547
|
||||
!Printing...=
|
||||
Printing...=\u0395\u03ba\u03c4\u03cd\u03c0\u03c9\u03c3\u03b7...
|
||||
|
||||
#: Base.java:1957
|
||||
Problem\ Opening\ Folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u0391\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5
|
||||
@ -1113,55 +1119,55 @@ Problem\ Opening\ URL=\u03a0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c3\u0
|
||||
Problem\ Setting\ the\ Platform=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03b5\u03b4\u03c1\u03b1\u03af\u03c9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1\u03c2
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
|
||||
!Problem\ accessing\ board\ folder\ /www/sd=
|
||||
Problem\ accessing\ board\ folder\ /www/sd=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 /www/sd
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
|
||||
!Problem\ accessing\ files\ in\ folder\ =
|
||||
Problem\ accessing\ files\ in\ folder\ =\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03c9\u03bd \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf
|
||||
|
||||
#: Base.java:1673
|
||||
Problem\ getting\ data\ folder=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03ba\u03b1\u03c4\u03b1 \u03c4\u03b7\u03bd \u03bb\u03ae\u03c8\u03b7 \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd
|
||||
|
||||
#: debug/Uploader.java:209
|
||||
!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
|
||||
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1. \u0394\u03b5\u03af\u03c4\u03b5 \u03c3\u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#upload \u03b3\u03b9\u03b1 \u03c5\u03c0\u03bf\u03b4\u03b5\u03af\u03be\u03b5\u03b9\u03c2.
|
||||
|
||||
#: Sketch.java:355 Sketch.java:362 Sketch.java:373
|
||||
!Problem\ with\ rename=
|
||||
Problem\ with\ rename=\u03a0\u03c1\u03cc\u03b2\u03bb\u03b7\u03bc\u03b1 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1
|
||||
|
||||
#: ../../../processing/app/I18n.java:86
|
||||
!Processor=
|
||||
Processor=\u0395\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae\u03c2
|
||||
|
||||
#: Editor.java:704
|
||||
!Programmer=
|
||||
Programmer=\u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae\u03c2
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80
|
||||
#, java-format
|
||||
!Progress\ {0}=
|
||||
Progress\ {0}=\u03a0\u03c1\u03cc\u03bf\u03b4\u03bf\u03c2 {0}
|
||||
|
||||
#: Base.java:783 Editor.java:593
|
||||
Quit=\u0388\u03be\u03bf\u03b4\u03bf\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1233
|
||||
!RETIRED=
|
||||
RETIRED=\u03a0\u0391\u03a1\u039f\u03a0\u039b\u0399\u03a3\u039c\u0395\u039d\u039f
|
||||
|
||||
#: Editor.java:1138 Editor.java:1140 Editor.java:1390
|
||||
!Redo=
|
||||
Redo=\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7
|
||||
|
||||
#: Editor.java:1078
|
||||
!Reference=
|
||||
Reference=\u03a0\u03b1\u03c1\u03b1\u03c0\u03bf\u03bc\u03c0\u03ae
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85
|
||||
!Remove=
|
||||
Remove=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157
|
||||
#, java-format
|
||||
!Removing\ library\:\ {0}=
|
||||
Removing\ library\:\ {0}=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2\: {0}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203
|
||||
!Removing...=
|
||||
Removing...=\u0391\u03c6\u03b1\u03af\u03c1\u03b5\u03c3\u03b7...
|
||||
|
||||
#: EditorHeader.java:300
|
||||
!Rename=
|
||||
Rename=\u039c\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1
|
||||
|
||||
#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
|
||||
Replace=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7
|
||||
@ -1174,7 +1180,7 @@ Replace\ All=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\
|
||||
|
||||
#: Sketch.java:1043
|
||||
#, java-format
|
||||
!Replace\ the\ existing\ version\ of\ {0}?=
|
||||
Replace\ the\ existing\ version\ of\ {0}?=\u0391\u03bd\u03c4\u03b9\u03ba\u03b1\u03c4\u03ac\u03c3\u03c4\u03b1\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03ac\u03c1\u03c7\u03bf\u03c5\u03c3\u03b1\u03c2 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2 \u03b1\u03c0\u03cc {0};
|
||||
|
||||
#: FindReplace.java:81
|
||||
Replace\ with\:=\u0391\u03bb\u03bb\u03b1\u03b3\u03ae \u03bc\u03b5\:
|
||||
@ -1184,11 +1190,11 @@ Romanian=\u03a1\u03bf\u03c5\u03bc\u03ac\u03bd\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83
|
||||
#, java-format
|
||||
!Running\ recipe\:\ {0}=
|
||||
Running\ recipe\:\ {0}=\u0395\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c3\u03c5\u03bd\u03c4\u03b1\u03b3\u03ae\u03c2\: {0}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82
|
||||
#, java-format
|
||||
!Running\:\ {0}=
|
||||
Running\:\ {0}=\u0395\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7\: {0}
|
||||
|
||||
#: Preferences.java:114
|
||||
Russian=\u03a1\u03ce\u03c3\u03c3\u03b9\u03ba\u03b1
|
||||
@ -1198,121 +1204,121 @@ Russian=\u03a1\u03ce\u03c3\u03c3\u03b9\u03ba\u03b1
|
||||
Save=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7
|
||||
|
||||
#: Editor.java:537
|
||||
!Save\ As...=
|
||||
Save\ As...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c9\u03c2...
|
||||
|
||||
#: Editor.java:2317
|
||||
!Save\ Canceled.=
|
||||
Save\ Canceled.=\u0397 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u0391\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5.
|
||||
|
||||
#: Editor.java:2020
|
||||
#, java-format
|
||||
!Save\ changes\ to\ "{0}"?\ \ =
|
||||
Save\ changes\ to\ "{0}"?\ \ =\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03b1\u03bb\u03bb\u03b1\u03b3\u03ce\u03bd \u03c3\u03c4\u03bf "{0}";
|
||||
|
||||
#: Sketch.java:825
|
||||
!Save\ sketch\ folder\ as...=
|
||||
Save\ sketch\ folder\ as...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c9\u03c2...
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:425
|
||||
!Save\ when\ verifying\ or\ uploading=
|
||||
Save\ when\ verifying\ or\ uploading=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03b5\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03ae \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: Editor.java:2270 Editor.java:2308
|
||||
!Saving...=
|
||||
Saving...=\u0391\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7...
|
||||
|
||||
#: ../../../processing/app/FindReplace.java:131
|
||||
!Search\ all\ Sketch\ Tabs=
|
||||
Search\ all\ Sketch\ Tabs=\u0391\u03bd\u03b1\u03b6\u03ae\u03c4\u03b7\u03c3\u03b7 \u03c3\u03b5 \u03cc\u03bb\u03b5\u03c2 \u03c4\u03b9\u03c2 \u039a\u03b1\u03c1\u03c4\u03ad\u03bb\u03b5\u03c2 \u03c4\u03bf\u03c5 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: Base.java:1909
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0395\u03c0\u03ad\u03bb\u03ad\u03be\u03b5 (\u03ae \u03c6\u03c4\u03b9\u03ac\u03be\u03b5 \u03bd\u03ad\u03bf) \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03b1...
|
||||
|
||||
#: Editor.java:1198 Editor.java:2739
|
||||
!Select\ All=
|
||||
Select\ All=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u038c\u03bb\u03c9\u03bd
|
||||
|
||||
#: Base.java:2636
|
||||
Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03c3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c0\u03bf\u03c5 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b1 \u03c0\u03bf\u03c5 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5
|
||||
|
||||
#: Sketch.java:975
|
||||
!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
|
||||
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bc\u03af\u03b1 \u03b5\u03b9\u03ba\u03cc\u03bd\u03b1 \u03ae \u03ac\u03bb\u03bb\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03b4\u03bf\u03bc\u03ad\u03bd\u03c9\u03bd \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b1\u03c2
|
||||
|
||||
#: Preferences.java:330
|
||||
Select\ new\ sketchbook\ location=\u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03bd\u03ad\u03b1 \u03b8\u03ad\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03bf Sketchbook
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249
|
||||
!Select\ version=
|
||||
Select\ version=\u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7\u03c2
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:146
|
||||
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
|
||||
Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\u0397 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b5\u03be\u03b1\u03c1\u03c4\u03ac\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03bf \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 {0} (\u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf\u03c2).
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:374
|
||||
!Selected\ board\ is\ not\ available=
|
||||
Selected\ board\ is\ not\ available=\u0397 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:423
|
||||
!Selected\ library\ is\ not\ available=
|
||||
Selected\ library\ is\ not\ available=\u0397 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03b7
|
||||
|
||||
#: SerialMonitor.java:93
|
||||
!Send=
|
||||
Send=\u0391\u03c0\u03bf\u03c3\u03c4\u03bf\u03bb\u03ae
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
|
||||
Serial\ Monitor=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u039f\u03b8\u03cc\u03bd\u03b7
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:804
|
||||
!Serial\ Plotter=
|
||||
Serial\ Plotter=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc Plotter
|
||||
|
||||
#: Serial.java:194
|
||||
#, java-format
|
||||
!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
|
||||
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5. \u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03c9\u03c3\u03c4\u03ae \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u0398\u03cd\u03c1\u03b1;
|
||||
|
||||
#: Editor.java:2343
|
||||
#, java-format
|
||||
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u0397 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 "{0}" \u03b4\u03b5\u03bd \u03b2\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5.\n\u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7\u03c2 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1;
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
!Serial\ ports=
|
||||
Serial\ ports=\u03a3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ad\u03c2 \u03b8\u03cd\u03c1\u03b5\u03c2
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
|
||||
#, java-format
|
||||
!Setting\ build\ path\ to\ {0}=
|
||||
Setting\ build\ path\ to\ {0}=\u03a1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae\u03c2 \u03c7\u03c4\u03b9\u03c3\u03af\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf {0}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
|
||||
!Settings=
|
||||
Settings=\u03a1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03b9\u03c2
|
||||
|
||||
#: Base.java:1681
|
||||
Settings\ issues=\u03a0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03b1 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ce\u03bd
|
||||
|
||||
#: Editor.java:641
|
||||
!Show\ Sketch\ Folder=
|
||||
Show\ Sketch\ Folder=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03a6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c4\u03bf\u03c5 \u03a3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:468
|
||||
!Show\ verbose\ output\ during\ compilation=
|
||||
Show\ verbose\ output\ during\ compilation=\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b9\u03b5\u03be\u03bf\u03b4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7
|
||||
|
||||
#: Preferences.java:387
|
||||
!Show\ verbose\ output\ during\:\ =
|
||||
Show\ verbose\ output\ during\:\ =\u0395\u03bc\u03c6\u03ac\u03bd\u03b9\u03c3\u03b7 \u03b4\u03b9\u03b5\u03be\u03bf\u03b4\u03b9\u03ba\u03ae\u03c2 \u03b5\u03be\u03cc\u03b4\u03bf\u03c5 \u03ba\u03b1\u03c4\u03ac \u03c4\u03b7\u03bd\:
|
||||
|
||||
#: Editor.java:607
|
||||
!Sketch=
|
||||
Sketch=\u03a3\u03c7\u03ad\u03b4\u03b9\u03bf
|
||||
|
||||
#: Sketch.java:1754
|
||||
!Sketch\ Disappeared=
|
||||
Sketch\ Disappeared=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u0395\u03be\u03b1\u03c6\u03b1\u03bd\u03af\u03c3\u03c4\u03b7\u03ba\u03b5
|
||||
|
||||
#: Base.java:1411
|
||||
Sketch\ Does\ Not\ Exist=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9
|
||||
|
||||
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
|
||||
!Sketch\ is\ Read-Only=
|
||||
Sketch\ is\ Read-Only=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u039c\u03cc\u03bd\u03bf-\u03b3\u03b9\u03b1-\u0391\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7
|
||||
|
||||
#: Sketch.java:294
|
||||
!Sketch\ is\ Untitled=
|
||||
Sketch\ is\ Untitled=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03c7\u03c9\u03c1\u03af\u03c2 \u03a4\u03af\u03c4\u03bb\u03bf
|
||||
|
||||
#: Sketch.java:720
|
||||
!Sketch\ is\ read-only=
|
||||
Sketch\ is\ read-only=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03cc\u03bd\u03bf-\u03b3\u03b9\u03b1-\u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7
|
||||
|
||||
#: Sketch.java:1653
|
||||
!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
|
||||
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u03a0\u03bf\u03bb\u03cd \u03bc\u03b5\u03b3\u03ac\u03bb\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf, \u03b4\u03b5\u03c2 \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03ad\u03c2 \u03c3\u03c4\u03bf http\://www.arduino.cc/en/Guide/Troubleshooting\#size \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03bc\u03b5\u03af\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5.
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1639
|
||||
#, java-format
|
||||
!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
|
||||
Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=\u03a4\u03bf \u03a3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af {0} bytes ({2}%%) \u03c4\u03bf\u03c5 \u03c7\u03ce\u03c1\u03bf\u03c5 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 \u03c0\u03c1\u03bf\u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03bf\u03c2. \u03a4\u03bf \u03bc\u03ad\u03b3\u03b9\u03c3\u03c4\u03bf \u03b5\u03af\u03bd\u03b1\u03b9 {1} bytes.
|
||||
|
||||
#: Editor.java:510
|
||||
!Sketchbook=
|
||||
Sketchbook=Sketchbook
|
||||
|
||||
#: Base.java:258
|
||||
Sketchbook\ folder\ disappeared=\u03a7\u03ac\u03b8\u03b7\u03ba\u03b5 \u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 Sketchbook
|
||||
@ -1321,80 +1327,80 @@ Sketchbook\ folder\ disappeared=\u03a7\u03ac\u03b8\u03b7\u03ba\u03b5 \u03bf \u03
|
||||
Sketchbook\ location\:=\u0398\u03ad\u03c3\u03b7 Sketchbook\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
!Sketchbook\ path\ not\ defined=
|
||||
Sketchbook\ path\ not\ defined=\u0397 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae \u03c4\u03bf\u03c5 Sketchbook \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:185
|
||||
!Slovak=
|
||||
Slovak=\u03a3\u03bb\u03bf\u03b2\u03ac\u03ba\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../processing/app/Preferences.java:152
|
||||
!Slovenian=
|
||||
Slovenian=\u03a3\u03bb\u03bf\u03b2\u03ad\u03bd\u03b9\u03ba\u03b1
|
||||
|
||||
#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
|
||||
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u039c\u03b5\u03c1\u03b9\u03ba\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03b7\u03bc\u03b1\u03c3\u03bc\u03ad\u03bd\u03b1 "\u03bc\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7", \u03bf\u03c0\u03cc\u03c4\u03b5\n\u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03ba\u03b1\u03b9 \u03bd\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9.
|
||||
|
||||
#: Sketch.java:721
|
||||
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u039c\u03b5\u03c1\u03b9\u03ba\u03ac \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03c0\u03b9\u03c3\u03b7\u03bc\u03b1\u03c3\u03bc\u03ad\u03bd\u03b1 "\u03bc\u03cc\u03bd\u03bf \u03b3\u03b9\u03b1 \u03b1\u03bd\u03ac\u03b3\u03bd\u03c9\u03c3\u03b7", \u03bf\u03c0\u03cc\u03c4\u03b5\n\u03b8\u03b1 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c0\u03ac\u03bb\u03b9 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ac\u03bb\u03bb\u03b7 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1
|
||||
|
||||
#: Sketch.java:457
|
||||
#, java-format
|
||||
!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
|
||||
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u03a3\u03c5\u03b3\u03bd\u03ce\u03bc\u03b7, \u03b1\u03bb\u03bb\u03ac \u03ad\u03bd\u03b1 \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf (\u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2) \u03bc\u03b5 \u03cc\u03bd\u03bf\u03bc\u03b1 "{0}" \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7.
|
||||
|
||||
#: Preferences.java:115
|
||||
Spanish=\u0399\u03c3\u03c0\u03b1\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2333
|
||||
!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=
|
||||
Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=\u039f \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2/zip \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03af\u03b1 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:466
|
||||
!Starting...=
|
||||
Starting...=\u0395\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7...
|
||||
|
||||
#: Base.java:540
|
||||
Sunshine=\u039b\u03b9\u03b1\u03ba\u03ac\u03b4\u03b1
|
||||
|
||||
#: ../../../processing/app/Preferences.java:153
|
||||
!Swedish=
|
||||
Swedish=\u03a3\u03bf\u03c5\u03b7\u03b4\u03b9\u03ba\u03ac
|
||||
|
||||
#: Preferences.java:84
|
||||
System\ Default=\u03a0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2 \u03c3\u03c5\u03c3\u03c4\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:188
|
||||
!Talossan=
|
||||
Talossan=Talossan
|
||||
|
||||
#: Preferences.java:116
|
||||
Tamil=\u03a4\u03b1\u03bc\u03af\u03bb
|
||||
|
||||
#: debug/Compiler.java:414
|
||||
!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
|
||||
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=\u0397 \u03bb\u03ad\u03be\u03b7 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af 'BYTE' \u03c0\u03bb\u03ad\u03bf\u03bd \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=
|
||||
The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=\u0397 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae --upload \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03c4\u03b9 \u03c6\u03bf\u03c1\u03ac
|
||||
|
||||
#: debug/Compiler.java:426
|
||||
!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
|
||||
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Client \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetClient.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=
|
||||
The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=\u03a4\u03bf IDE \u03c0\u03b5\u03c1\u03b9\u03bb\u03b1\u03bc\u03b2\u03ac\u03bd\u03b5\u03b9 \u03ad\u03bd\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03c9\u03bc\u03ad\u03bd\u03bf {0} \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf, \u03b1\u03bb\u03bb\u03ac \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03c0\u03b1\u03bb\u03b9\u03cc\u03c4\u03b5\u03c1\u03bf.\n\u0398\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf {0};
|
||||
|
||||
#: debug/Compiler.java:420
|
||||
!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
|
||||
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Server \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetServer.
|
||||
|
||||
#: debug/Compiler.java:432
|
||||
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
|
||||
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=\u0397 \u03ba\u03bb\u03ac\u03c3\u03b7 Udp \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetUdp.
|
||||
|
||||
#: Editor.java:2147
|
||||
#, java-format
|
||||
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
|
||||
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf "{0}" \u03c7\u03c1\u03b5\u03b9\u03ac\u03b6\u03b5\u03c4\u03b1\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03bc\u03ad\u03c3\u03b1 \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd\n\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03bc\u03b5 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1 "{1}". \u0394\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03af\u03b1 \u03b1\u03c5\u03c4\u03bf\u03cd\n\u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5, \u03bc\u03b5\u03c4\u03b1\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03ba\u03b1\u03b9 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b5\u03b9\u03b1;
|
||||
|
||||
#: Base.java:1054 Base.java:2674
|
||||
#, java-format
|
||||
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=\u0397 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03b7\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03bc\u03cc\u03bd\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03bf\u03cd\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03c5\u03c2.\n(\u03bc\u03cc\u03bd\u03bf ASCII \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03b5\u03b9 \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc)
|
||||
|
||||
#: Sketch.java:374
|
||||
!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u03a4\u03bf \u03ba\u03c5\u03c1\u03af\u03c9\u03c2 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03b9 \u03bc\u03af\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7.\n(\u038a\u03c3\u03c9\u03c2 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9\u03c1\u03cc\u03c2 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03ac\u03c3\u03b5\u03c4\u03b5 \u03c3\u03b5 \u03ad\u03bd\u03b1 "\u03c0\u03c1\u03b1\u03b3\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc" \n\u03c0\u03b5\u03c1\u03b9\u03b2\u03ac\u03bb\u03bb\u03bf\u03bd \u03c0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03bf\u03cd)
|
||||
|
||||
#: Sketch.java:356
|
||||
!The\ name\ cannot\ start\ with\ a\ period.=
|
||||
The\ name\ cannot\ start\ with\ a\ period.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03ac \u03bc\u03b5 \u03c4\u03b5\u03bb\u03b5\u03af\u03b1.
|
||||
|
||||
#: Base.java:1412
|
||||
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u03a4\u03bf \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a0\u03b9\u03b8\u03b1\u03bd\u03cc\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9 \u03b5\u03c0\u03b1\u03bd\u03b5\u03ba\u03ba\u03af\u03bd\u03b7\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino \u03c0\u03c1\u03bf\u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03bd\u03b5\u03c9\u03b8\u03b5\u03af \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u03c4\u03bf\u03c5 Sketchbook.
|
||||
@ -1404,278 +1410,278 @@ The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino
|
||||
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=\u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf "{0}" \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03b5\u03b9\u03b7\u03b8\u03b5\u03af.\n\u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd \u03bc\u03cc\u03bd\u03bf \u03b3\u03c1\u03ac\u03bc\u03bc\u03b1\u03c4\u03b1 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2\n(ASCII- \u03bc\u03cc\u03bd\u03bf \u03c7\u03c9\u03c1\u03af\u03c2 \u03ba\u03b5\u03bd\u03ac, \u03ba\u03b1\u03b9 \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd \u03bd\u03b1 \u03be\u03b5\u03ba\u03b9\u03bd\u03bf\u03cd\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc).\n\u0393\u03b9\u03b1 \u03bd\u03b1 \u03bc\u03b7\u03bd \u03be\u03b1\u03bd\u03b1\u03b5\u03bc\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af \u03b1\u03c5\u03c4\u03cc \u03c4\u03bf \u03bc\u03ae\u03bd\u03c5\u03bc\u03b1, \u03b1\u03c6\u03b1\u03b9\u03c1\u03ad\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03b1\u03c0\u03cc \u03c4\u03bf\n {1}
|
||||
|
||||
#: Sketch.java:1755
|
||||
!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
|
||||
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03ad\u03c7\u03b5\u03b9 \u03b5\u03be\u03b1\u03c6\u03b1\u03bd\u03b9\u03c3\u03c4\u03b5\u03af.\n\u0398\u03b1 \u03b3\u03af\u03bd\u03b5\u03b9 \u03c0\u03c1\u03bf\u03c3\u03c0\u03ac\u03b8\u03b5\u03b9\u03b1 \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7\u03c2 \u03c3\u03c4\u03b7\u03bd \u03af\u03b4\u03b9\u03b1 \u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1,\n\u03b1\u03bb\u03bb\u03ac \u03bf\u03c4\u03b9\u03b4\u03ae\u03c0\u03bf\u03c4\u03b5 \u03b5\u03ba\u03c4\u03cc\u03c2 \u03c4\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03b8\u03b1 \u03c7\u03b1\u03b8\u03b5\u03af.
|
||||
|
||||
#: ../../../processing/app/Sketch.java:2028
|
||||
!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=
|
||||
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=\u03a4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03c1\u03bf\u03c0\u03bf\u03c0\u03bf\u03b9\u03b7\u03b8\u03b5\u03af. \u03a4\u03b1 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03b1 \u03c4\u03c9\u03bd \u03a3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd\n\u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03bf\u03c5\u03bd ASCII \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03ba\u03b1\u03b9 \u03b1\u03c1\u03b9\u03b8\u03bc\u03bf\u03cd\u03c2 (\u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03bf\u03cd\u03bd\n\u03bd\u03b1 \u03b1\u03c1\u03c7\u03af\u03b6\u03bf\u03c5\u03bd \u03bc\u03b5 \u03b1\u03c1\u03b9\u03b8\u03bc\u03cc). \u03a0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b1\u03b9 \u03bc\u03b9\u03ba\u03c1\u03cc\u03c4\u03b5\u03c1\u03b1 \u03b1\u03c0\u03cc 64 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2.
|
||||
|
||||
#: Base.java:259
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u039f \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 Sketchbook \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c0\u03bb\u03ad\u03bf\u03bd.\n\u03a4\u03bf Arduino \u03b8\u03b1 \u03b5\u03c0\u03b1\u03bd\u03ad\u03bb\u03b8\u03b5\u03b9 \u03c3\u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03b8\u03ad\u03c3\u03b7 \u03c4\u03bf\u03c5 Sketchbook, \n\u03ba\u03b1\u03b9 \u03b8\u03b1 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03ae\u03c3\u03b5\u03b9 \u03bd\u03ad\u03bf \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf Sketchbook \u03b1\u03bd \u03b1\u03c0\u03b1\u03b9\u03c4\u03b5\u03af\u03c4\u03b1\u03b9.\n\u03a4\u03cc\u03c4\u03b5 \u03c4\u03bf Arduino \u03b8\u03b1 \u03c3\u03c4\u03b1\u03bc\u03b1\u03c4\u03ae\u03c3\u03b5\u03b9 \u03bd\u03b1 \u03b1\u03bd\u03b1\u03c6\u03ad\u03c1\u03b5\u03c4\u03b1\u03b9 \u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5 \u03c3\u03b5 \u03c4\u03c1\u03af\u03c4\u03bf \u03c0\u03c1\u03cc\u03c3\u03c9\u03c0\u03bf.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514
|
||||
!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=
|
||||
The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\u039f \u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf\u03c2 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c4\u03bf\u03c5 sketchbook \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03b1\u03bd\u03c4\u03af\u03b3\u03c1\u03b1\u03c6\u03bf \u03c4\u03bf\u03c5 IDE.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03b4\u03b9\u03b1\u03c6\u03bf\u03c1\u03b5\u03c4\u03b9\u03ba\u03cc \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03b3\u03b9\u03b1 \u03c4\u03bf sketchbook \u03c3\u03b1\u03c2.
|
||||
|
||||
#: Sketch.java:1075
|
||||
!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c5\u03c4\u03cc \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03b1\u03bd\u03c4\u03b9\u03b3\u03c1\u03b1\u03c6\u03b5\u03af \u03c3\u03c4\u03b7\u03bd\n\u03c4\u03bf\u03c0\u03bf\u03b8\u03b5\u03c3\u03af\u03b1 \u03c3\u03c4\u03b7\u03bd \u03bf\u03c0\u03bf\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c0\u03b1\u03b8\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \n\u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03b5\u03c4\u03b5. \u0394\u03b5\u03bd \u03b8\u03b1 \u03ba\u03ac\u03bd\u03c9 \u03c4\u03af\u03c0\u03bf\u03c4\u03b5.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=
|
||||
This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=\u0391\u03c5\u03c4\u03ae \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03c3\u03c4\u03bf\u03bd \u0394\u03b9\u03b1\u03c7\u03b5\u03b9\u03c1\u03b9\u03c3\u03c4\u03ae \u0392\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7\u03c2. \u0394\u03b5\u03bd \u03b8\u03b1 \u03bc\u03c0\u03bf\u03c1\u03ad\u03c3\u03b5\u03c4\u03b5\n\u03bd\u03b1 \u03c4\u03bf \u03b5\u03b3\u03ba\u03b1\u03c4\u03b1\u03c3\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03b1\u03c0\u03cc \u03b5\u03b4\u03ce. \u0395\u03af\u03c3\u03c4\u03b5 \u03c3\u03af\u03b3\u03bf\u03c5\u03c1\u03bf\u03b9 \u03c0\u03c9\u03c2 \u03b8\u03ad\u03bb\u03b5\u03c4\u03b5 \u03bd\u03b1 \u03c4\u03bf \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5;
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:467
|
||||
!This\ report\ would\ have\ more\ information\ with=
|
||||
This\ report\ would\ have\ more\ information\ with=\u0391\u03c5\u03c4\u03ae \u03b7 \u03b1\u03bd\u03b1\u03c6\u03bf\u03c1\u03ac \u03b8\u03b1 \u03b5\u03af\u03c7\u03b5 \u03c0\u03b5\u03c1\u03b9\u03c3\u03c3\u03cc\u03c4\u03b5\u03c1\u03b5\u03c2 \u03c0\u03bb\u03b7\u03c1\u03bf\u03c6\u03bf\u03c1\u03af\u03b5\u03c2 \u03bc\u03b5
|
||||
|
||||
#: Base.java:535
|
||||
Time\ for\ a\ Break=\u038f\u03c1\u03b1 \u03b3\u03b9\u03b1 \u03b4\u03b5\u03b9\u03ac\u03bb\u03b5\u03b9\u03bc\u03b1
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94
|
||||
#, java-format
|
||||
!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=
|
||||
Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=\u03a4\u03bf \u03b5\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03bf {0} \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf \u03b3\u03b9\u03b1 \u03c4\u03bf\u03bd \u03bb\u03b5\u03b9\u03c4\u03bf\u03c5\u03c1\u03b3\u03b9\u03ba\u03cc \u03c3\u03b1\u03c2 \u03c3\u03cd\u03c3\u03c4\u03b7\u03bc\u03b1.
|
||||
|
||||
#: Editor.java:663
|
||||
!Tools=
|
||||
Tools=\u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97
|
||||
!Topic=
|
||||
Topic=\u0398\u03ad\u03bc\u03b1
|
||||
|
||||
#: Editor.java:1070
|
||||
!Troubleshooting=
|
||||
Troubleshooting=\u0395\u03c0\u03af\u03bb\u03c5\u03c3\u03b7 \u03c0\u03c1\u03bf\u03b2\u03bb\u03b7\u03bc\u03ac\u03c4\u03c9\u03bd
|
||||
|
||||
#: ../../../processing/app/Preferences.java:117
|
||||
!Turkish=
|
||||
Turkish=\u03a4\u03bf\u03cd\u03c1\u03ba\u03b9\u03ba\u03b1
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105
|
||||
!Type=
|
||||
Type=\u03a4\u03cd\u03c0\u03bf\u03c2
|
||||
|
||||
#: ../../../processing/app/Editor.java:2507
|
||||
!Type\ board\ password\ to\ access\ its\ console=
|
||||
Type\ board\ password\ to\ access\ its\ console=\u03a0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03b1\u03c0\u03bf\u03ba\u03c4\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c0\u03c1\u03cc\u03c3\u03b2\u03b1\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03ba\u03bf\u03bd\u03c3\u03cc\u03bb\u03b1 \u03c4\u03bf\u03c5
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1673
|
||||
!Type\ board\ password\ to\ upload\ a\ new\ sketch=
|
||||
Type\ board\ password\ to\ upload\ a\ new\ sketch=\u03a0\u03bb\u03b7\u03ba\u03c4\u03c1\u03bf\u03bb\u03bf\u03b3\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03c6\u03bf\u03c1\u03c4\u03ce\u03c3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03bd\u03ad\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf
|
||||
|
||||
#: ../../../processing/app/Preferences.java:118
|
||||
!Ukrainian=
|
||||
Ukrainian=Ukrainian
|
||||
|
||||
#: ../../../processing/app/Editor.java:2524
|
||||
#: ../../../processing/app/NetworkMonitor.java:145
|
||||
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
|
||||
Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2\: \u03a4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af \u03c4\u03b7\u03bd \u03b3\u03ad\u03c6\u03c5\u03c1\u03b1;
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:130
|
||||
!Unable\ to\ connect\:\ retrying=
|
||||
Unable\ to\ connect\:\ retrying=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2\: \u0395\u03c0\u03b1\u03bd\u03ac\u03bb\u03b7\u03c8\u03b7
|
||||
|
||||
#: ../../../processing/app/Editor.java:2526
|
||||
!Unable\ to\ connect\:\ wrong\ password?=
|
||||
Unable\ to\ connect\:\ wrong\ password?=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03c3\u03cd\u03bd\u03b4\u03b5\u03c3\u03b7\u03c2\: \u039b\u03ac\u03b8\u03bf\u03c2 \u03c3\u03c5\u03bd\u03b8\u03b7\u03bc\u03b1\u03c4\u03b9\u03ba\u03cc;
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
|
||||
#, java-format
|
||||
!Unable\ to\ find\ {0}\ in\ {1}=
|
||||
Unable\ to\ find\ {0}\ in\ {1}=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 {0} \u03c3\u03c4\u03bf {1}
|
||||
|
||||
#: ../../../processing/app/Editor.java:2512
|
||||
!Unable\ to\ open\ serial\ monitor=
|
||||
Unable\ to\ open\ serial\ monitor=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03b7\u03c2 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae\u03c2 \u03bf\u03b8\u03cc\u03bd\u03b7\u03c2
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2709
|
||||
!Unable\ to\ open\ serial\ plotter=
|
||||
Unable\ to\ open\ serial\ plotter=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b1\u03bd\u03bf\u03af\u03b3\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c4\u03bf\u03c5 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03bf\u03cd plotter
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=
|
||||
Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=\u0391\u03b4\u03c5\u03bd\u03b1\u03bc\u03af\u03b1 \u03b5\u03cd\u03c1\u03b5\u03c3\u03b7\u03c2 \u03c4\u03bf\u03c5 Arduino.cc \u03bb\u03cc\u03b3\u03bf \u03c0\u03b9\u03b8\u03b1\u03bd\u03bf\u03cd \u03c0\u03c1\u03bf\u03b2\u03bb\u03ae\u03bc\u03b1\u03c4\u03bf\u03c2 \u03c3\u03c4\u03bf \u03b4\u03af\u03ba\u03c4\u03c5\u03bf.
|
||||
|
||||
#: Editor.java:1133 Editor.java:1355
|
||||
!Undo=
|
||||
Undo=\u0391\u03bd\u03b1\u03af\u03c1\u03b5\u03c3\u03b7
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
|
||||
#, java-format
|
||||
!Unhandled\ type\ {0}\ in\ context\ key\ {1}=
|
||||
Unhandled\ type\ {0}\ in\ context\ key\ {1}=\u0391\u03bd\u03b5\u03c0\u03af\u03bb\u03c5\u03c4\u03bf\u03c2 \u03c4\u03cd\u03c0\u03bf\u03c2 {0} \u03c3\u03c4\u03bf \u03b2\u03b1\u03c3\u03b9\u03ba\u03cc \u03c0\u03bb\u03b1\u03af\u03c3\u03b9\u03bf {1}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
|
||||
#, java-format
|
||||
!Unknown\ sketch\ file\ extension\:\ {0}=
|
||||
Unknown\ sketch\ file\ extension\:\ {0}=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5\: {0}
|
||||
|
||||
#: Platform.java:168
|
||||
!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
|
||||
Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u0391\u03c0\u03c1\u03bf\u03c3\u03b4\u03b9\u03cc\u03c1\u03b9\u03c3\u03c4\u03b7 \u03c0\u03bb\u03b1\u03c4\u03c6\u03cc\u03c1\u03bc\u03b1, \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03b4\u03b9\u03b1\u03b8\u03ad\u03c3\u03b9\u03bc\u03bf\u03c2 \u03b5\u03ba\u03ba\u03b9\u03bd\u03b7\u03c4\u03ae\u03c2.\n\u0393\u03b9\u03b1 \u03bd\u03b1 \u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03ac\u03bd\u03bf\u03b9\u03b3\u03bc\u03b1 URL \u03ae \u03c6\u03b1\u03ba\u03ad\u03bb\u03c9\u03bd, \u03c0\u03c1\u03bf\u03c3\u03b8\u03ad\u03c3\u03c4\u03b5\n "launcher\=/\u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae/\u03c3\u03c4\u03b7\u03bd/\u03b5\u03c6\u03b1\u03c1\u03bc\u03bf\u03b3\u03ae" \u03c3\u03c4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf preferences.txt
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27
|
||||
!Updatable=
|
||||
Updatable=\u0395\u03bd\u03b7\u03bc\u03b5\u03c1\u03ce\u03c3\u03b9\u03bc\u03bf
|
||||
|
||||
#: UpdateCheck.java:111
|
||||
!Update=
|
||||
Update=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7
|
||||
|
||||
#: Preferences.java:428
|
||||
!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c3\u03b5 \u03bd\u03ad\u03b1 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7 \u03bc\u03b5 \u03c4\u03b7\u03bd \u03b1\u03c0\u03bf\u03b8\u03ae\u03ba\u03b5\u03c5\u03c3\u03b7 (.ped -> .ino)
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167
|
||||
!Updating\ list\ of\ installed\ libraries=
|
||||
Updating\ list\ of\ installed\ libraries=\u0395\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03bb\u03af\u03c3\u03c4\u03b1\u03c2 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03c9\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03b7\u03ba\u03ce\u03bd
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:545
|
||||
Upload=\u0395\u03be\u03b1\u03b3\u03c9\u03b3\u03ae
|
||||
Upload=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: EditorToolbar.java:46 Editor.java:553
|
||||
Upload\ Using\ Programmer=\u0395\u03be\u03b1\u03b3\u03ce\u03b3\u03b7 \u039c\u03ad\u03c3\u03c9 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae
|
||||
Upload\ Using\ Programmer=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u039c\u03ad\u03c3\u03c9 \u03a0\u03c1\u03bf\u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03b9\u03c3\u03c4\u03ae
|
||||
|
||||
#: Editor.java:2403 Editor.java:2439
|
||||
!Upload\ canceled.=
|
||||
Upload\ canceled.=\u0397 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5.
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1678
|
||||
!Upload\ cancelled=
|
||||
Upload\ cancelled=\u0397 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b1\u03ba\u03c5\u03c1\u03ce\u03b8\u03b7\u03ba\u03b5.
|
||||
|
||||
#: Editor.java:2378
|
||||
!Uploading\ to\ I/O\ Board...=
|
||||
Uploading\ to\ I/O\ Board...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u0399/\u039f \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1...
|
||||
|
||||
#: Sketch.java:1622
|
||||
!Uploading...=
|
||||
Uploading...=\u03a6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7...
|
||||
|
||||
#: Editor.java:1269
|
||||
!Use\ Selection\ For\ Find=
|
||||
Use\ Selection\ For\ Find=\u03a7\u03c1\u03ae\u03c3\u03b7 \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae\u03c2 \u0393\u03b9\u03b1 \u0395\u03cd\u03c1\u03b5\u03c3\u03b7
|
||||
|
||||
#: Preferences.java:409
|
||||
!Use\ external\ editor=
|
||||
Use\ external\ editor=\u03a7\u03c1\u03ae\u03c3\u03b7 \u03b5\u03be\u03c9\u03c4\u03b5\u03c1\u03b9\u03ba\u03bf\u03cd \u03b5\u03c0\u03b5\u03be\u03b5\u03c1\u03b3\u03b1\u03c3\u03c4\u03ae \u03ba\u03b5\u03b9\u03bc\u03ad\u03bd\u03bf\u03c5
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499
|
||||
!Username\:=
|
||||
Username\:=\u038c\u03bd\u03bf\u03bc\u03b1 \u03c7\u03c1\u03ae\u03c3\u03c4\u03b7\:
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:410
|
||||
#, java-format
|
||||
!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=
|
||||
Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {0} \u03c3\u03c4\u03b7\u03bd \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 {1} \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\: {2} {3}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:94
|
||||
#, java-format
|
||||
!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=
|
||||
Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {0} \u03c3\u03c4\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\: {1} {2}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:320
|
||||
#, java-format
|
||||
!Using\ previously\ compiled\ file\:\ {0}=
|
||||
Using\ previously\ compiled\ file\:\ {0}=\u03a7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ce\u03bd\u03c4\u03b1\u03c2 \u03c4\u03bf \u03c0\u03c1\u03bf\u03b7\u03b3\u03bf\u03c5\u03bc\u03ad\u03bd\u03c9\u03c2 \u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03c9\u03c4\u03c4\u03b9\u03c3\u03bc\u03ad\u03bd\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\: {0}
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46
|
||||
Verify=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7
|
||||
|
||||
#: Preferences.java:400
|
||||
!Verify\ code\ after\ upload=
|
||||
Verify\ code\ after\ upload=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1 \u03bc\u03b5\u03c4\u03ac \u03c4\u03b7\u03bd \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:725
|
||||
!Verify/Compile=
|
||||
Verify/Compile=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7/\u039c\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:451
|
||||
!Verifying\ and\ uploading...=
|
||||
Verifying\ and\ uploading...=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03ba\u03b1\u03b9 \u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7...
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71
|
||||
!Verifying\ archive\ integrity...=
|
||||
Verifying\ archive\ integrity...=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7 \u03b1\u03ba\u03b5\u03c1\u03b1\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1\u03c2 \u03b1\u03c1\u03c7\u03b5\u03b9\u03bf\u03b8\u03ad\u03c4\u03b7\u03c3\u03b7\u03c2...
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:454
|
||||
!Verifying...=
|
||||
Verifying...=\u0395\u03c0\u03b9\u03ba\u03cd\u03c1\u03c9\u03c3\u03b7...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328
|
||||
#, java-format
|
||||
!Version\ <b>{0}</b>=
|
||||
Version\ <b>{0}</b>=\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 <b>{0}</b>
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326
|
||||
!Version\ unknown=
|
||||
Version\ unknown=\u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97
|
||||
#, java-format
|
||||
!Version\ {0}=
|
||||
Version\ {0}=\u0388\u03ba\u03b4\u03bf\u03c3\u03b7 {0}
|
||||
|
||||
#: ../../../processing/app/Preferences.java:154
|
||||
!Vietnamese=
|
||||
Vietnamese=Vietnamese
|
||||
|
||||
#: Editor.java:1105
|
||||
!Visit\ Arduino.cc=
|
||||
Visit\ Arduino.cc=\u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c6\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf Arduino.cc
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
|
||||
#, java-format
|
||||
!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=
|
||||
WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=\u03a0\u03a1\u039f\u0395\u0399\u0394\u039f\u03a0\u039f\u0399\u0397\u03a3\u0397\: \u0397 \u03ba\u03b1\u03c4\u03b7\u03b3\u03bf\u03c1\u03af\u03b1 '{0}' \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {1} \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03b3\u03c5\u03c1\u03b7. \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03c4\u03b7\u03c2 '{2}'
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
|
||||
#, java-format
|
||||
!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=
|
||||
WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=\u03a0\u03a1\u039f\u0395\u0399\u0394\u039f\u03a0\u039f\u0399\u0397\u03a3\u0397\: \u03a0\u03b1\u03c1\u03b1\u03c3\u03b9\u03c4\u03b9\u03ba\u03cc\u03c2 {0} \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2 \u03c3\u03c4\u03b7\u03bd '{1}' \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:115
|
||||
#, java-format
|
||||
!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=
|
||||
WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u03a0\u03a1\u039f\u0395\u0399\u0394\u039f\u03a0\u039f\u0399\u0397\u03a3\u0397\: \u0397 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 {0} \u03b9\u03c3\u03c7\u03c5\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c0\u03c9\u03c2 \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03c3\u03b5 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2(\u03ae) {1} \u03ba\u03b1\u03b9 \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b7\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03bc\u03b2\u03b1\u03c4\u03ae \u03bc\u03b5 \u03c4\u03b7\u03bd \u03c4\u03c1\u03ad\u03c7\u03bf\u03c5\u03c3\u03b1 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03c0\u03bf\u03c5 \u03c4\u03c1\u03ad\u03c7\u03b5\u03b9 \u03c3\u03b5 {2} \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ad\u03c2(\u03ae).
|
||||
|
||||
#: Base.java:2128
|
||||
Warning=\u0395\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1295
|
||||
!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=
|
||||
Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7; \u0391\u03c5\u03c4\u03cc\u03c2 \u03bf \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1\u03c2 \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03b9 \u03c4\u03b7\u03bd \u03b5\u03be\u03b1\u03b3\u03c9\u03b3\u03ae \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd. \u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c3\u03c5\u03bc\u03b2\u03bf\u03c5\u03bb\u03b5\u03c5\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03bf\u03bd \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03cc \u03c4\u03b7\u03c2.
|
||||
|
||||
#: ../../../cc/arduino/utils/ArchiveExtractor.java:197
|
||||
#, java-format
|
||||
!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=
|
||||
Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a4\u03bf \u03b1\u03c1\u03c7\u03b5\u03af\u03bf {0} \u03c3\u03c5\u03bd\u03b4\u03ad\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03bc\u03af\u03b1 \u03b1\u03c0\u03cc\u03bb\u03c5\u03c4\u03b7 \u03b4\u03b9\u03b1\u03b4\u03c1\u03bf\u03bc\u03ae {1}
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
|
||||
!Warning\:\ forced\ trusting\ untrusted\ contributions=
|
||||
Warning\:\ forced\ trusting\ untrusted\ contributions=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03bc\u03c0\u03b9\u03c3\u03c4\u03bf\u03c3\u03cd\u03bd\u03b7 \u03c3\u03b5 \u03bc\u03b7 \u03ad\u03bc\u03c0\u03b9\u03c3\u03c4\u03b5\u03c2 \u03c3\u03c5\u03bd\u03b5\u03b9\u03c3\u03c6\u03bf\u03c1\u03ad\u03c2
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
|
||||
#, java-format
|
||||
!Warning\:\ forced\ untrusted\ script\ execution\ ({0})=
|
||||
Warning\:\ forced\ untrusted\ script\ execution\ ({0})=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u0395\u03be\u03b1\u03bd\u03b1\u03b3\u03ba\u03b1\u03c3\u03bc\u03ad\u03bd\u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03bc\u03b7 \u03ad\u03bc\u03c0\u03b9\u03c3\u03c4\u03bf\u03c5 \u03c3\u03b5\u03bd\u03b1\u03c1\u03af\u03bf\u03c5 ({0})
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
|
||||
#, java-format
|
||||
!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=
|
||||
Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u039c\u03b7 \u03ad\u03bc\u03c0\u03b9\u03c3\u03c4\u03b7 \u03c3\u03c5\u03bd\u03b5\u03b9\u03c3\u03c6\u03bf\u03c1\u03ac, \u03c0\u03b1\u03c1\u03ac\u03bb\u03b7\u03c8\u03b7 \u03b5\u03ba\u03c4\u03ad\u03bb\u03b5\u03c3\u03b7 \u03c3\u03b5\u03bd\u03b1\u03c1\u03af\u03bf\u03c5 ({0})
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
|
||||
#, java-format
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a4\u03bf platform.txt \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 '{0}' \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03be\u03b5\u03c0\u03b5\u03c1\u03b1\u03c3\u03bc\u03ad\u03bd\u03bf {1}, \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03bc\u03b5\u03c4\u03b1\u03c4\u03c1\u03bf\u03c0\u03ae \u03c3\u03b5 {2}. \u0395\u03be\u03b5\u03c4\u03ac\u03c3\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b1\u03bd\u03b1\u03bd\u03ad\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1.
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a3\u03c4\u03bf platform.txt \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 '{0}' \u03bb\u03b5\u03af\u03c0\u03b5\u03b9 \u03b7 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 '{1}', \u03c7\u03c1\u03ae\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c0\u03c1\u03bf\u03ba\u03b1\u03b8\u03bf\u03c1\u03b9\u03c3\u03bc\u03ad\u03bd\u03b7\u03c2 \u03c4\u03b9\u03bc\u03ae\u03c2 '{2}'. \u03a3\u03ba\u03b5\u03c6\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1.
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:170
|
||||
#, java-format
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u03a0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\: \u03a3\u03c4\u03bf platform.txt \u03b1\u03c0\u03cc \u03c4\u03bf\u03bd \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1 '{0}' \u03bb\u03b5\u03af\u03c0\u03b5\u03b9 \u03b7 \u03b9\u03b4\u03b9\u03cc\u03c4\u03b7\u03c4\u03b1 '{1}', \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7 \u03c1\u03cd\u03b8\u03bc\u03b9\u03c3\u03b7 \u03c3\u03c4\u03b7\u03bd \u03c4\u03b9\u03bc\u03ae '{2}'. \u03a3\u03ba\u03b5\u03c6\u03c4\u03b5\u03af\u03c4\u03b5 \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03b1\u03c5\u03c4\u03bf\u03cd \u03c4\u03bf\u03c5 \u03c0\u03c5\u03c1\u03ae\u03bd\u03b1.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:190
|
||||
!Western\ Frisian=
|
||||
Western\ Frisian=Western Frisian
|
||||
|
||||
#: debug/Compiler.java:444
|
||||
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
|
||||
Wire.receive()\ has\ been\ renamed\ Wire.read().=\u03a4\u03bf Wire.receive() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 Wire.read().
|
||||
|
||||
#: debug/Compiler.java:438
|
||||
!Wire.send()\ has\ been\ renamed\ Wire.write().=
|
||||
Wire.send()\ has\ been\ renamed\ Wire.write().=\u03a4\u03bf Wire.send() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 Wire.write().
|
||||
|
||||
#: FindReplace.java:105
|
||||
!Wrap\ Around=
|
||||
Wrap\ Around=\u0391\u03bd\u03b1\u03b4\u03af\u03c0\u03bb\u03c9\u03c3\u03b7 \u0393\u03cd\u03c1\u03c9
|
||||
|
||||
#: debug/Uploader.java:213
|
||||
!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
|
||||
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u0392\u03c1\u03ad\u03b8\u03b7\u03ba\u03b5 \u03bb\u03ac\u03b8\u03bf\u03c2 \u03bc\u03b9\u03ba\u03c1\u03bf\u03b5\u03bb\u03b5\u03b3\u03ba\u03c4\u03ae\u03c2. \u0395\u03c0\u03b9\u03bb\u03ad\u03be\u03b1\u03c4\u03b5 \u03c4\u03b7\u03bd \u03c3\u03c9\u03c3\u03c4\u03ae \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03b1\u03c0\u03cc \u03c4\u03bf \u03bc\u03b5\u03bd\u03bf\u03cd \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 > \u03a0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1;
|
||||
|
||||
#: Preferences.java:77 UpdateCheck.java:108
|
||||
Yes=\u039d\u03b1\u03b9
|
||||
|
||||
#: Sketch.java:1074
|
||||
!You\ can't\ fool\ me=
|
||||
You\ can't\ fool\ me=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af \u03bd\u03b1 \u03bc\u03b5 \u03b3\u03b5\u03bb\u03ac\u03c3\u03b5\u03b9\u03c2
|
||||
|
||||
#: Sketch.java:411
|
||||
!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
|
||||
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf .cpp \u03af\u03b4\u03b9\u03bf\u03c5 \u03bf\u03bd\u03cc\u03bc\u03b1\u03c4\u03bf\u03c2 \u03bc\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2312
|
||||
!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=
|
||||
You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b5\u03b9\u03c3\u03ac\u03b3\u03b5\u03c4\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c0\u03bf\u03c5 \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03c4\u03bf sketchbook \u03c3\u03b1\u03c2
|
||||
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03ac\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf "{0}"\n\u03b5\u03c0\u03b5\u03b9\u03b4\u03ae \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03ad\u03c7\u03b5\u03b9 \u03ae\u03b4\u03b7 \u03ad\u03bd\u03b1 .cpp \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03bc\u03b5 \u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b1\u03c5\u03c4\u03cc.
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0394\u03b5\u03bd \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03b8\u03b7\u03ba\u03b5\u03cd\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\n\u03c3\u03c4\u03bf\u03bd \u03b5\u03b1\u03c5\u03c4\u03cc \u03c4\u03bf\u03c5. \u0391\u03c5\u03c4\u03cc \u03b8\u03b1 \u03c3\u03c5\u03bd\u03ad\u03c7\u03b9\u03b6\u03b5 \u03b1\u03b5\u03bd\u03ac\u03c9\u03c2.
|
||||
|
||||
#: Base.java:1888
|
||||
You\ forgot\ your\ sketchbook=\u039e\u03ad\u03c7\u03b1\u03c3\u03b5\u03c2 \u03c4\u03bf Sketchbook \u03c3\u03bf\u03c5
|
||||
|
||||
#: ../../../processing/app/AbstractMonitor.java:92
|
||||
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
|
||||
You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=\u03a0\u03b9\u03ad\u03c3\u03b1\u03c4\u03b5 {0} \u03b1\u03bb\u03bb\u03ac \u03b4\u03b5\u03bd \u03c3\u03c4\u03ac\u03bb\u03b8\u03b7\u03ba\u03b5 \u03c4\u03af\u03c0\u03bf\u03c4\u03b5. \u039c\u03ae\u03c0\u03c9\u03c2 \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03c0\u03b9\u03bb\u03ad\u03be\u03b5\u03c4\u03b5 \u03c4\u03b5\u03c1\u03bc\u03b1\u03c4\u03b9\u03c3\u03bc\u03cc \u03b3\u03c1\u03b1\u03bc\u03bc\u03ae\u03c2;
|
||||
|
||||
#: Base.java:536
|
||||
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0388\u03c6\u03c4\u03b1\u03c3\u03b5\u03c2 \u03c4\u03bf \u03cc\u03c1\u03b9\u03bf \u03b1\u03c5\u03c4\u03cc\u03bc\u03b1\u03c4\u03b7\u03c2 \u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03af\u03b1\u03c2 \u03c4\u03c9\u03bd \u03bd\u03ad\u03c9\u03bd \u03c3\u03c7\u03b5\u03b4\u03af\u03c9\u03bd, \u03b3\u03b9\u03b1 \u03c3\u03ae\u03bc\u03b5\u03c1\u03b1.\n\u03a4\u03b9 \u03b8\u03b1 \u0384\u03bb\u03b5\u03b3\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bb\u03af\u03b3\u03bf \u03c0\u03b5\u03c1\u03c0\u03ac\u03c4\u03b7\u03bc\u03b1;
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=
|
||||
Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u03a4\u03bf \u03b1\u03bd\u03c4\u03af\u03b3\u03c1\u03b1\u03c6\u03bf \u03c4\u03bf\u03c5 IDE \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c5\u03c0\u03bf\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 \u03c6\u03b1\u03ba\u03ad\u03bb\u03bf\u03c5 \u03c1\u03c5\u03b8\u03bc\u03af\u03c3\u03b5\u03c9\u03bd \u03c3\u03b1\u03c2.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf IDE \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=
|
||||
Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u03a4\u03bf \u03b1\u03bd\u03c4\u03af\u03b3\u03c1\u03b1\u03c6\u03bf \u03c4\u03bf\u03c5 IDE \u03b5\u03af\u03bd\u03b1\u03b9 \u03b5\u03b3\u03ba\u03b1\u03c4\u03b5\u03c3\u03c4\u03b7\u03bc\u03ad\u03bd\u03bf \u03c3\u03b5 \u03ad\u03bd\u03b1\u03bd \u03c5\u03c0\u03bf\u03c6\u03ac\u03ba\u03b5\u03bb\u03bf \u03c4\u03bf\u03c5 sketchbook \u03c3\u03b1\u03c2.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03bc\u03b5\u03c4\u03b1\u03ba\u03b9\u03bd\u03ae\u03c3\u03c4\u03b5 \u03c4\u03bf IDE \u03c3\u03b5 \u03ba\u03ac\u03c0\u03bf\u03b9\u03bf\u03bd \u03ac\u03bb\u03bb\u03bf\u03bd \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf.
|
||||
|
||||
#: Base.java:2638
|
||||
ZIP\ files\ or\ folders=\u03a3\u03c5\u03bc\u03c0\u03b9\u03b5\u03c3\u03bc\u03ad\u03bd\u03b1 \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03ae \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03b9
|
||||
@ -1685,147 +1691,147 @@ Zip\ doesn't\ contain\ a\ library=\u03a4\u03bf \u03c3\u03c5\u03bc\u03c0\u03b9\u0
|
||||
|
||||
#: Sketch.java:364
|
||||
#, java-format
|
||||
!".{0}"\ is\ not\ a\ valid\ extension.=
|
||||
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03ad\u03ba\u03c4\u03b1\u03c3\u03b7.
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
|
||||
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=\u03a4\u03bf "{0}" \u03c0\u03b5\u03c1\u03b9\u03ad\u03c7\u03b5\u03b9 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5\u03c2 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2. \u0391\u03bd \u03bf \u03ba\u03ce\u03b4\u03b9\u03ba\u03b1\u03c2 \u03ad\u03c7\u03b5\u03b9 \u03b4\u03b7\u03bc\u03b9\u03bf\u03c5\u03c1\u03b3\u03b7\u03b8\u03b5\u03af \u03bc\u03b5 \u03c0\u03b1\u03bb\u03b1\u03b9\u03cc\u03c4\u03b5\u03c1\u03b7 \u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 \u03c4\u03bf\u03c5 Arduino, \u03af\u03c3\u03c9\u03c2 \u03c7\u03c1\u03b5\u03b9\u03b1\u03c3\u03c4\u03b5\u03af \u03bd\u03b1 \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03ae\u03c3\u03b5\u03c4\u03b5 \u03c4\u03bf \u0395\u03c1\u03b3\u03b1\u03bb\u03b5\u03af\u03b1 -> \u0395\u03c0\u03b9\u03c3\u03ba\u03b5\u03c5\u03ae \u039a\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7\u03c2 & \u0395\u03c0\u03b1\u03bd\u03b1\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7 \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03b5\u03bd\u03b7\u03bc\u03ad\u03c1\u03c9\u03c3\u03b7 \u03c4\u03bf\u03c5 \u03c3\u03c7\u03b5\u03b4\u03af\u03bf\u03c5 \u03c3\u03b5 \u03ba\u03c9\u03b4\u03b9\u03ba\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7 UTF-8. \u0391\u03bd \u03cc\u03c7\u03b9, \u03bc\u03c0\u03bf\u03c1\u03b5\u03af\u03c4\u03b5 \u03bd\u03b1 \u03b4\u03b9\u03b1\u03b3\u03c1\u03ac\u03c8\u03b5\u03c4\u03b5 \u03c4\u03bf\u03c5\u03c2 \u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf\u03c5 \u03c7\u03b1\u03c1\u03b1\u03ba\u03c4\u03ae\u03c1\u03b5\u03c2 \u03b3\u03b9\u03b1 \u03bd\u03b1 \u03b1\u03c0\u03bf\u03c6\u03cd\u03b3\u03b5\u03c4\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03b7\u03bd \u03c0\u03c1\u03bf\u03b5\u03b9\u03b4\u03bf\u03c0\u03bf\u03af\u03b7\u03c3\u03b7.
|
||||
|
||||
#: debug/Compiler.java:409
|
||||
!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
|
||||
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 0019, \u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \u03b5\u03be\u03b1\u03c1\u03c4\u03ac\u03c4\u03b1\u03b9 \u03b1\u03c0\u03cc \u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 SPI.\n\u039c\u03bf\u03b9\u03ac\u03b6\u03b5\u03b9 \u03bd\u03b1 \u03c4\u03b7\u03bd \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c4\u03b5 \u03ae \u03ba\u03ac\u03c0\u03bf\u03b9\u03b1 \u03ac\u03bb\u03bb\u03b7 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 \u03c0\u03bf\u03c5 \u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9 \u03c3\u03b5 \u03b1\u03c5\u03c4\u03ae \u03c4\u03bf\u03c5 SPI.\n
|
||||
|
||||
#: debug/Compiler.java:415
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03bb\u03ad\u03be\u03b7 \u03ba\u03bb\u03b5\u03b9\u03b4\u03af 'BYTE' \u03b4\u03b5\u03bd \u03c5\u03c0\u03bf\u03c3\u03c4\u03b7\u03c1\u03af\u03b6\u03b5\u03c4\u03b1\u03b9.\n\u03a0\u03b1\u03c1\u03b1\u03ba\u03b1\u03bb\u03ce \u03c7\u03c1\u03b7\u03c3\u03b9\u03bc\u03bf\u03c0\u03bf\u03b9\u03b5\u03af\u03c3\u03c4\u03b5 \u03c4\u03bf Serial.write().\n\n
|
||||
|
||||
#: debug/Compiler.java:427
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Client \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \n\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetClient.\n\n
|
||||
|
||||
#: debug/Compiler.java:421
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Server \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \n\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetServer.\n\n
|
||||
|
||||
#: debug/Compiler.java:433
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03ba\u03bb\u03ac\u03c3\u03b7 Udp \u03c3\u03c4\u03b7\u03bd \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b7 Ethernet \n\u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \u03c3\u03b5 EthernetUdp.\n\n
|
||||
|
||||
#: debug/Compiler.java:445
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03c3\u03c5\u03bd\u03ac\u03c1\u03c4\u03b7\u03c3\u03b7 Wire.receive() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \nWire.read() \u03b3\u03b9\u03b1 \u03bf\u03bc\u03bf\u03b9\u03bf\u03bc\u03bf\u03c1\u03c6\u03af\u03b1 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n
|
||||
|
||||
#: debug/Compiler.java:439
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u0391\u03c0\u03cc \u03c4\u03bf Arduino 1.0, \u03b7 \u03c3\u03c5\u03bd\u03ac\u03c1\u03c4\u03b7\u03c3\u03b7 Wire.send() \u03ad\u03c7\u03b5\u03b9 \u03bc\u03b5\u03c4\u03bf\u03bd\u03bf\u03bc\u03b1\u03c3\u03c4\u03b5\u03af \nWire.write() \u03b3\u03b9\u03b1 \u03bf\u03bc\u03bf\u03b9\u03bf\u03bc\u03bf\u03c1\u03c6\u03af\u03b1 \u03bc\u03b5 \u03ac\u03bb\u03bb\u03b5\u03c2 \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2.\n\n
|
||||
|
||||
#: SerialMonitor.java:130 SerialMonitor.java:133
|
||||
!baud=
|
||||
baud=baud
|
||||
|
||||
#: Preferences.java:389
|
||||
!compilation\ =
|
||||
compilation\ =\u03bc\u03b5\u03c4\u03b1\u03b3\u03bb\u03ce\u03c4\u03c4\u03b9\u03c3\u03b7
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:111
|
||||
!connected\!=
|
||||
connected\!=\u03c3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03bf\!
|
||||
|
||||
#: Sketch.java:540
|
||||
!createNewFile()\ returned\ false=
|
||||
createNewFile()\ returned\ false=To createNewFile() \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 \u03c3\u03c6\u03ac\u03bb\u03bc\u03b1
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:469
|
||||
!enabled\ in\ File\ >\ Preferences.=
|
||||
enabled\ in\ File\ >\ Preferences.=\u03b5\u03bd\u03b5\u03c1\u03b3\u03bf\u03c0\u03bf\u03b9\u03b7\u03bc\u03ad\u03bd\u03bf \u03c3\u03c4\u03bf \u0391\u03c1\u03c7\u03b5\u03af\u03bf > \u0395\u03c0\u03b9\u03bb\u03bf\u03b3\u03ad\u03c2.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1352
|
||||
!http\://www.arduino.cc/=
|
||||
http\://www.arduino.cc/=http\://www.arduino.cc/
|
||||
|
||||
#: UpdateCheck.java:118
|
||||
!http\://www.arduino.cc/en/Main/Software=
|
||||
http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
|
||||
|
||||
#: UpdateCheck.java:53
|
||||
!http\://www.arduino.cc/latest.txt=
|
||||
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
|
||||
|
||||
#: Preferences.java:625
|
||||
#, java-format
|
||||
!ignoring\ invalid\ font\ size\ {0}=
|
||||
ignoring\ invalid\ font\ size\ {0}=\u03b1\u03b3\u03bd\u03cc\u03b7\u03c3\u03b7 \u03bc\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf\u03c5 \u03bc\u03b5\u03b3\u03ad\u03b8\u03bf\u03c5\u03c2 \u03b3\u03c1\u03b1\u03bc\u03bc\u03b1\u03c4\u03bf\u03c3\u03b5\u03b9\u03c1\u03ac\u03c2 {0}
|
||||
|
||||
#: Editor.java:936 Editor.java:943
|
||||
!name\ is\ null=
|
||||
name\ is\ null=\u03c4\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc
|
||||
|
||||
#: Editor.java:932
|
||||
!serialMenu\ is\ null=
|
||||
serialMenu\ is\ null=\u03c4\u03bf \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03cc\u039c\u03b5\u03bd\u03bf\u03cd \u03b5\u03af\u03bd\u03b1\u03b9 \u03ba\u03b5\u03bd\u03cc
|
||||
|
||||
#: debug/Uploader.java:195
|
||||
#, java-format
|
||||
!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
|
||||
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=\u03b7 \u03b5\u03c0\u03b9\u03bb\u03b5\u03b3\u03bc\u03ad\u03bd\u03b7 \u03c3\u03b5\u03b9\u03c1\u03b9\u03b1\u03ba\u03ae \u03b8\u03cd\u03c1\u03b1 {0} \u03b4\u03b5\u03bd \u03c5\u03c0\u03ac\u03c1\u03c7\u03b5\u03b9 \u03ae \u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 \u03c3\u03b1\u03c2 \u03b4\u03b5\u03bd \u03b5\u03af\u03bd\u03b1\u03b9 \u03c3\u03c5\u03bd\u03b4\u03b5\u03b4\u03b5\u03bc\u03ad\u03bd\u03b7
|
||||
|
||||
#: ../../../processing/app/Base.java:389
|
||||
#, java-format
|
||||
!unknown\ option\:\ {0}=
|
||||
unknown\ option\:\ {0}=\u03ac\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03c0\u03b1\u03c1\u03ac\u03bc\u03b5\u03c4\u03c1\u03bf\u03c2\: {0}
|
||||
|
||||
#: Preferences.java:391
|
||||
!upload=
|
||||
upload=\u03c6\u03cc\u03c1\u03c4\u03c9\u03c3\u03b7
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324
|
||||
#, java-format
|
||||
!version\ <b>{0}</b>=
|
||||
version\ <b>{0}</b>=\u03ad\u03ba\u03b4\u03bf\u03c3\u03b7 <b>{0}</b>
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2243
|
||||
#, java-format
|
||||
!{0}\ -\ {1}\ |\ Arduino\ {2}=
|
||||
{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | Arduino {2}
|
||||
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43
|
||||
#, java-format
|
||||
!{0}\ file\ signature\ verification\ failed=
|
||||
{0}\ file\ signature\ verification\ failed={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03b7 \u03b5\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310
|
||||
#, java-format
|
||||
!{0}\ file\ signature\ verification\ failed.\ File\ ignored.=
|
||||
{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03bf \u03b1\u03c0\u03ad\u03c4\u03c5\u03c7\u03b5 \u03b7 \u03b5\u03c0\u03b1\u03bb\u03ae\u03b8\u03b5\u03c5\u03c3\u03b7 \u03c4\u03b7\u03c2 \u03c5\u03c0\u03bf\u03b3\u03c1\u03b1\u03c6\u03ae\u03c2. \u0391\u03b3\u03bd\u03cc\u03b7\u03c3\u03b7 \u03b1\u03c1\u03c7\u03b5\u03af\u03bf\u03c5.
|
||||
|
||||
#: Editor.java:380
|
||||
#, java-format
|
||||
!{0}\ files\ added\ to\ the\ sketch.=
|
||||
{0}\ files\ added\ to\ the\ sketch.={0} \u03b1\u03c1\u03c7\u03b5\u03af\u03b1 \u03c0\u03c1\u03bf\u03c3\u03c4\u03ad\u03b8\u03b7\u03ba\u03b1\u03bd \u03c3\u03c4\u03bf \u03c3\u03c7\u03ad\u03b4\u03b9\u03bf.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1201
|
||||
#, java-format
|
||||
!{0}\ libraries=
|
||||
{0}\ libraries={0} \u03b2\u03b9\u03b2\u03bb\u03b9\u03bf\u03b8\u03ae\u03ba\u03b5\u03c2
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76
|
||||
#, java-format
|
||||
!{0}\ must\ be\ a\ folder=
|
||||
{0}\ must\ be\ a\ folder=\u03c4\u03bf {0} \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c6\u03ac\u03ba\u03b5\u03bb\u03bf\u03c2
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
|
||||
#, java-format
|
||||
!{0}\ pattern\ is\ missing=
|
||||
{0}\ pattern\ is\ missing=\u03c4\u03bf {0} \u03c5\u03c0\u03cc\u03b4\u03b5\u03b9\u03b3\u03bc\u03b1 \u03bb\u03b5\u03af\u03c0\u03b5\u03b9
|
||||
|
||||
#: debug/Compiler.java:365
|
||||
#, java-format
|
||||
!{0}\ returned\ {1}=
|
||||
{0}\ returned\ {1}=\u03c4\u03bf {0} \u03b5\u03c0\u03ad\u03c3\u03c4\u03c1\u03b5\u03c8\u03b5 {1}
|
||||
|
||||
#: Editor.java:2213
|
||||
#, java-format
|
||||
!{0}\ |\ Arduino\ {1}=
|
||||
{0}\ |\ Arduino\ {1}={0} | Arduino {1}
|
||||
|
||||
#: ../../../processing/app/Base.java:519
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=
|
||||
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf \u03cc\u03c1\u03b9\u03c3\u03bc\u03b1 \u03c3\u03c4\u03bf --pref, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03bf\u03c1\u03c6\u03ae "pref\=\u03c4\u03b9\u03bc\u03ae"
|
||||
|
||||
#: ../../../processing/app/Base.java:476
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"=
|
||||
{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03bf \u03cc\u03bd\u03bf\u03bc\u03b1 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1\u03c2, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03ad\u03c7\u03b5\u03b9 \u03c4\u03b7\u03bd \u03bc\u03bf\u03c1\u03c6\u03ae "package\:arch\:board" \u03ae "package\:arch\:board\:options"
|
||||
|
||||
#: ../../../processing/app/Base.java:509
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"=
|
||||
{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae "{1}" \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 "{2}"
|
||||
|
||||
#: ../../../processing/app/Base.java:507
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ option\ for\ board\ "{1}"=
|
||||
{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae \u03b3\u03b9\u03b1 \u03c4\u03b7\u03bd \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1 "{1}"
|
||||
|
||||
#: ../../../processing/app/Base.java:502
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"=
|
||||
{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: \u039c\u03b7 \u03ad\u03b3\u03ba\u03c5\u03c1\u03b7 \u03b5\u03c0\u03b9\u03bb\u03bf\u03b3\u03ae, \u03c0\u03c1\u03ad\u03c0\u03b5\u03b9 \u03bd\u03b1 \u03b5\u03af\u03bd\u03b1\u03b9 \u03c4\u03b7\u03c2 \u03bc\u03bf\u03c1\u03c6\u03ae\u03c2 "\u03cc\u03bd\u03bf\u03bc\u03b1\=\u03c4\u03b9\u03bc\u03ae"
|
||||
|
||||
#: ../../../processing/app/Base.java:486
|
||||
#, java-format
|
||||
!{0}\:\ Unknown\ architecture=
|
||||
{0}\:\ Unknown\ architecture={0}\: \u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03b1\u03c1\u03c7\u03b9\u03c4\u03b5\u03ba\u03c4\u03bf\u03bd\u03b9\u03ba\u03ae
|
||||
|
||||
#: ../../../processing/app/Base.java:491
|
||||
#, java-format
|
||||
!{0}\:\ Unknown\ board=
|
||||
{0}\:\ Unknown\ board={0}\: \u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03b7 \u03c0\u03bb\u03b1\u03ba\u03ad\u03c4\u03b1
|
||||
|
||||
#: ../../../processing/app/Base.java:481
|
||||
#, java-format
|
||||
!{0}\:\ Unknown\ package=
|
||||
{0}\:\ Unknown\ package={0}\: \u0386\u03b3\u03bd\u03c9\u03c3\u03c4\u03bf \u03c0\u03b1\u03ba\u03ad\u03c4\u03bf
|
||||
|
@ -8,12 +8,13 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: English (http://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -36,13 +37,16 @@ msgstr " Not used: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr " Used: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr "'Keyboard' not found. Does your sketch include the line '#include <Keyboard.h>'?"
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr "'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -873,6 +877,11 @@ msgstr "Error while loading code {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Error while printing."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Error while uploading"
|
||||
@ -2302,11 +2311,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "You can't rename the sketch to \"{0}\"\nbecause the sketch already has a .cpp file with that name."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "You can't save the sketch as \"{0}\"\nbecause the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr "You can't save the sketch as \"{0}\"\nbecause the sketch already has a file with that name."
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,7 +8,8 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: English (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
# Translators:
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: English (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino)
|
||||
@ -21,11 +22,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=\ Used\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' only supported on the Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?='Keyboard' not found. Does your sketch include the line '\#include <Keyboard.h>'?
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' only supported on the Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?='Mouse' not found. Does your sketch include the line '\#include <Mouse.h>'?
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' folder is no longer supported\! See http\://goo.gl/gfFJzU for more information
|
||||
@ -627,6 +628,10 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Error while printing.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=Error while setting serial port parameters\: {0} {1} {2} {3}
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Error while uploading
|
||||
|
||||
@ -1653,8 +1658,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=You can't import
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=You can't rename the sketch to "{0}"\nbecause the sketch already has a .cpp file with that name.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=You can't save the sketch as "{0}"\nbecause the sketch already has a .cpp file with that name.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=You can't save the sketch as "{0}"\nbecause the sketch already has a file with that name.
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=You cannot save the sketch into a folder\ninside itself. This would go on forever.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Andi Chandler <andi@gowling.com>, 2013-2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: English (United Kingdom) (http://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,13 +38,16 @@ msgstr " Not used: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr " Used: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -874,6 +878,11 @@ msgstr "Error while loading code {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Error while printing."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Error while uploading"
|
||||
@ -2303,11 +2312,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "You can't rename the sketch to \"{0}\"\nbecause the sketch already has a .cpp file with that name."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "You can't save the sketch as \"{0}\"\nbecause the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Andi Chandler <andi@gowling.com>, 2013-2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: English (United Kingdom) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/en_GB/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: en_GB\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (requires restart of Arduino)
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=\ Used\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' only supported on the Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' only supported on the Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Error while loading code {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Error while printing.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Error while uploading
|
||||
|
||||
@ -1654,8 +1659,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=You can't import
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=You can't rename the sketch to "{0}"\nbecause the sketch already has a .cpp file with that name.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=You can't save the sketch as "{0}"\nbecause the sketch already has a .cpp file with that name.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=You cannot save the sketch into a folder\ninside itself. This would go on forever.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# David Martin Garcia <base.dks@gmail.com>, 2012
|
||||
# Miguel Ángel Barrio Vázquez <descartex1@gmail.com>, 2012
|
||||
# Erik Fargas <efargaspro@gmail.com>, 2015
|
||||
@ -22,7 +23,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Spanish (http://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -45,13 +46,16 @@ msgstr " No usado: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr "Usado: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Teclado' sólo soportado por Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Ratón' sólo soportado por Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -882,6 +886,11 @@ msgstr "Error mientras se cargaba, código {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Error al imprimir."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Error mientras se enviaba"
|
||||
@ -2311,11 +2320,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "No puedes renombrar el programa a \"{0}\"\nporque el programa aún tiene un fichero .cpp con ese nombre"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "No puedes guardar el programa como \"{0}\"\nporque el programa aún tiene un fichero .cpp con ese nombre"
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# David Martin Garcia <base.dks@gmail.com>, 2012
|
||||
# Miguel \u00c1ngel Barrio V\u00e1zquez <descartex1@gmail.com>, 2012
|
||||
# Erik Fargas <efargaspro@gmail.com>, 2015
|
||||
@ -17,7 +18,7 @@
|
||||
# Moritz Werner Casero <moritzwernercasero@gmail.com>, 2015
|
||||
# Pedro Luis <plizze@gmail.com>, 2015
|
||||
# Salvador Parra Camacho <sparrac@gmail.com>, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Spanish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: es\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Spanish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/es/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: es\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(requiere reiniciar Arduino)
|
||||
@ -30,11 +31,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=Usado\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado' s\u00f3lo soportado por Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rat\u00f3n' s\u00f3lo soportado por Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -636,6 +637,10 @@ Error\ while\ loading\ code\ {0}=Error mientras se cargaba, c\u00f3digo {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Error al imprimir.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Error mientras se enviaba
|
||||
|
||||
@ -1662,8 +1667,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Usted no puede i
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes renombrar el programa a "{0}"\nporque el programa a\u00fan tiene un fichero .cpp con ese nombre
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes guardar el programa como "{0}"\nporque el programa a\u00fan tiene un fichero .cpp con ese nombre
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puedes guardar el programa dentro de una carpeta en su interior.\nEsto ser\u00eda infinito.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Cougar <transifex@lost.data.ee>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Estonian (http://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,13 +38,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' töötab vaid Arduino Leonardo peal"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' töötab vaid Arduino Leonardo peal"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -874,6 +878,11 @@ msgstr "Koodi laadimise viga {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Viga trükkimisel."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,11 +2312,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Visandit ei saa nimetada \"{0}\" sest sellise nimega .cpp fail on juba olemas."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Visandit ei saa salvestada nimega {0}\" sest\nsellise nimega .cpp fail on juba olemas."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Cougar <transifex@lost.data.ee>, 2013
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Estonian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Estonian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(vajab Arduino taask\u00e4ivitamist)
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' t\u00f6\u00f6tab vaid Arduino Leonardo peal
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' t\u00f6\u00f6tab vaid Arduino Leonardo peal
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Viga tr\u00fckkimisel.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama ni
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest sellise nimega .cpp fail on juba olemas.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega {0}" sest\nsellise nimega .cpp fail on juba olemas.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Cougar <cougar@random.ee>, 2012
|
||||
# Georg, 2014
|
||||
msgid ""
|
||||
@ -15,7 +16,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Estonian (Estonia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -38,13 +39,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' on toetatud vaid Arduino Leonardo plaatidega"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' on toetatud vaid Arduino Leonardo plaatidega"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -875,6 +879,11 @@ msgstr "Koodi laadimise viga {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Viga trükkimisel."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2304,11 +2313,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Visandit ei saa nimetada \"{0}\" sest\nsellise nimega .cpp fail on juba olemas."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Visandit ei saa salvestada nimega \"{0}\" sest\nsellise nimega .cpp fail on juba olemas."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,9 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Cougar <cougar@random.ee>, 2012
|
||||
# Georg, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et_EE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Estonian (Estonia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/et_EE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: et_EE\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (vajab Arduino taask\u00e4ivitamist)
|
||||
@ -23,11 +24,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' on toetatud vaid Arduino Leonardo plaatidega
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' on toetatud vaid Arduino Leonardo plaatidega
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=Koodi laadimise viga {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Viga tr\u00fckkimisel.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sama ni
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa nimetada "{0}" sest\nsellise nimega .cpp fail on juba olemas.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Visandit ei saa salvestada nimega "{0}" sest\nsellise nimega .cpp fail on juba olemas.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Sa ei saa salvestada visandit kausta,\nmis on sama kausta sees.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# @atzerritik, 2014
|
||||
# Ivan Barquero <ibarquero@outlook.es>, 2014
|
||||
# Ivan Barquero <ibarquero@outlook.es>, 2014
|
||||
@ -17,7 +18,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Basque (http://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -40,13 +41,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Teklatua' Arduino Leonardo-rekin bateragarria da soilik"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Sagua' Arduino Leonardo-rekin bateragarria da soilik"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -877,6 +881,11 @@ msgstr "Kodea {0} kargatzerakoan hutsa"
|
||||
msgid "Error while printing."
|
||||
msgstr "Inprimatzerakoan hutsa."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2306,11 +2315,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Ezin duzu Sketcha berrizendatu \"{0}\"\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Ezin duzu sketcha gorde \"{0}\"-a bezala\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,11 +8,12 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# @atzerritik, 2014
|
||||
# Ivan Barquero <ibarquero@outlook.es>, 2014
|
||||
# Ivan Barquero <ibarquero@outlook.es>, 2014
|
||||
# Zylu <rarodiez@gmail.com>, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Basque (http\://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: eu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Basque (http\://www.transifex.com/mbanzi/arduino-ide-15/language/eu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: eu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(Arduinoa berabiarazi behar da)
|
||||
@ -25,11 +26,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teklatua' Arduino Leonardo-rekin bateragarria da soilik
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Sagua' Arduino Leonardo-rekin bateragarria da soilik
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -631,6 +632,10 @@ Error\ while\ loading\ code\ {0}=Kodea {0} kargatzerakoan hutsa
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Inprimatzerakoan hutsa.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1657,8 +1662,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Ezin du
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ezin duzu Sketcha berrizendatu "{0}"\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Ezin duzu sketcha gorde "{0}"-a bezala\ndagoeneko Sketchak .cpp-fitxategi bat du izen horrekin eta.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Ezin duzu sketcha gorde bere burua \nbarruan karpeta batean. Honek betiko jarraituko luke.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# arminjavan <armin_javan@yahoo.com>, 2014
|
||||
# Ebrahim Byagowi <ebrahim@byagowi.com>, 2012
|
||||
msgid ""
|
||||
@ -15,7 +16,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Persian (http://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -38,13 +39,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "\"صفحه کلید\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "\"ماوس\" فقط دربردهای آردوینو لئوناردو پشتیبانی می گردد"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -875,6 +879,11 @@ msgstr "خطا به هنگام بارگیری کد {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "خطا هنگام چاپکردن."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2304,11 +2313,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "شما نمیتوانید طرح را به \"{0}\" تغییر نام دهید\nبه این دلیل که طرح در حال حاضر دارای یک پروندهٔ .cpp با نام مشابه است."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "شما نمیتوانید طرح را بهعنوان \"{0}\" ذخیرهسازید به این دلیل که طرح در حال حاضردارای یک پروندهٔ .cpp با نام مشابه است."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,9 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# arminjavan <armin_javan@yahoo.com>, 2014
|
||||
# Ebrahim Byagowi <ebrahim@byagowi.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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Persian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Persian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (\u0646\u06cc\u0627\u0632\u0645\u0646\u062f \u0628\u0627\u0632\u06af\u0634\u0627\u06cc\u06cc \u0645\u062c\u062f\u062f \u0646\u0645\u0648\u062f\u0646 \u0622\u0631\u062f\u0626\u06cc\u0646\u0648)
|
||||
@ -23,11 +24,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo="\u0635\u0641\u062d\u0647 \u06a9\u0644\u06cc\u062f" \u0641\u0642\u0637 \u062f\u0631\u0628\u0631\u062f\u0647\u0627\u06cc \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06af\u0631\u062f\u062f
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo="\u0645\u0627\u0648\u0633" \u0641\u0642\u0637 \u062f\u0631\u0628\u0631\u062f\u0647\u0627\u06cc \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc \u06af\u0631\u062f\u062f
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=\u062e\u0637\u0627 \u0628\u0647 \u0647\u0646\u0
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u062e\u0637\u0627 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e\u200c\u06a9\u0631\u062f\u0646.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0634\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647 "{0}" \u062a\u063a\u06cc\u06cc\u0631 \u0646\u0627\u0645 \u062f\u0647\u06cc\u062f\n\u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0637\u0631\u062d \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631 \u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u0628\u0647\u200c\u0639\u0646\u0648\u0627\u0646 "{0}" \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc\u062f \u0628\u0647 \u0627\u06cc\u0646 \u062f\u0644\u06cc\u0644 \u06a9\u0647 \u0637\u0631\u062d \u062f\u0631 \u062d\u0627\u0644 \u062d\u0627\u0636\u0631\u062f\u0627\u0631\u0627\u06cc \u06cc\u06a9 \u067e\u0631\u0648\u0646\u062f\u0647\u0654 .cpp \u0628\u0627 \u0646\u0627\u0645 \u0645\u0634\u0627\u0628\u0647 \u0627\u0633\u062a.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0634\u0645\u0627 \u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc\u062f \u0637\u0631\u062d \u0631\u0627 \u062f\u0631 \u062f\u0631\u0648\u0646 \u067e\u0648\u0634\u0647\u0654 \u062e\u0648\u062f\u0634 \u0630\u062e\u06cc\u0631\u0647\u200c\u0633\u0627\u0632\u06cc\u062f\n\u0627\u06cc\u0646 \u0634\u0627\u06cc\u062f \u0628\u0631\u0627\u06cc \u0647\u0645\u06cc\u0634\u0647 \u0628\u0627\u0634\u062f.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Ali Mirjamali <ali.mirjamali@gmail.com>, 2013
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Persian (Iran) (http://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,13 +38,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "کیبرد فقط در آردوینو لئوناردو پشتیبانی میشود"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "ماوس فقط در آردوینو لئوناردو پشتیبانی میشود"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -874,6 +878,11 @@ msgstr ""
|
||||
msgid "Error while printing."
|
||||
msgstr "خطا در هنگام چاپ."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,10 +2312,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Ali Mirjamali <ali.mirjamali@gmail.com>, 2013
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Persian (Iran) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa_IR\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Persian (Iran) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fa_IR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fa_IR\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
!\ \ (requires\ restart\ of\ Arduino)=
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u06a9\u06cc\u200c\u0628\u0631\u062f \u0641\u0642\u0637 \u062f\u0631 \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u0645\u0627\u0648\u0633 \u0641\u0642\u0637 \u062f\u0631 \u0622\u0631\u062f\u0648\u06cc\u0646\u0648 \u0644\u0626\u0648\u0646\u0627\u0631\u062f\u0648 \u067e\u0634\u062a\u06cc\u0628\u0627\u0646\u06cc \u0645\u06cc\u200c\u0634\u0648\u062f
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ touching\ serial\ port\ ''{0}''.=\u062e\u0637\u0627 \u062f\u0631 \u062f\u
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u062e\u0637\u0627 \u062f\u0631 \u0647\u0646\u06af\u0627\u0645 \u0686\u0627\u067e.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ You\ can't\ fool\ me=\u0646\u0645\u06cc\u200c\u062a\u0648\u0627\u0646\u06cc \u06
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Jaakko Fagerlund <jaakko.s.fagerlund@gmail.com>, 2013
|
||||
# lotof <leevi.tornblom@hotmail.com>, 2014
|
||||
msgid ""
|
||||
@ -15,7 +16,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Finnish (http://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -38,13 +39,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' on tuettu vain Arduino Leonardossa"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' on tuettu vain Arduino Leonardossa."
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -875,6 +879,11 @@ msgstr "Virhe ladatessa koodia {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Virhe tulostaessa."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2304,11 +2313,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Et voi nimetä ohjelmaasi \"{0}\" uudelleen,\nkoska samanniminen .cpp tiedosto on jo olemassa."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Et voi tallentaa sketsiäsi nimellä \"{0}\"\nkoska sketsillä on jo samanniminen .cpp tiedosto."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,9 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Jaakko Fagerlund <jaakko.s.fagerlund@gmail.com>, 2013
|
||||
# lotof <leevi.tornblom@hotmail.com>, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Finnish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Finnish (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (vaatii Arduinon k\u00e4ynnist\u00e4misen uudelleen)s
|
||||
@ -23,11 +24,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' on tuettu vain Arduino Leonardossa
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' on tuettu vain Arduino Leonardossa.
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=Virhe ladatessa koodia {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Virhe tulostaessa.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Sinulla
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Et voi nimet\u00e4 ohjelmaasi "{0}" uudelleen,\nkoska samanniminen .cpp tiedosto on jo olemassa.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Et voi tallentaa sketsi\u00e4si nimell\u00e4 "{0}"\nkoska sketsill\u00e4 on jo samanniminen .cpp tiedosto.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Et voi tallentaa sketsia kansioon kansion\nitsens\u00e4 sis\u00e4ll\u00e4. T\u00e4m\u00e4h\u00e4n jatkuisi loputtomiin.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# David A. Mellis <>, 2012
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Filipino (http://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,12 +38,15 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
@ -874,6 +878,11 @@ msgstr "May mali habang niloload ang code {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "May mali habang nagpi-print."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,11 +2312,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Hindi maaaring palitan ang pangalan sa \"{0}\"\nsapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Hindi maaaring ma-save ang sketch bilang \"{0}\"\ndahil ang mayroon na itong .cpp na may parehong pangalan."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# David A. Mellis <>, 2012
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Filipino (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fil\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Filipino (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fil/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fil\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (kinakailangang i-restart ang Arduino)
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=May mali habang niloload ang code {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=May mali habang nagpi-print.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Hindi m
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Hindi maaaring palitan ang pangalan sa "{0}"\nsapagkat mayroon ng .cpp file na may ganyang pangalan sa sketch.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Hindi maaaring ma-save ang sketch bilang "{0}"\ndahil ang mayroon na itong .cpp na may parehong pangalan.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Hindi mo maaaring i-save ang sketch sa loob ng folder\nkung saaan nakalagay sketch. Magpapatuloy lamang ito ng walang katapusan.
|
||||
|
@ -8,8 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Alexis Morin <mail@alexismorin.com>, 2012
|
||||
# AntoineM <antoine.meillet+transifex@gmail.com>, 2012
|
||||
# BlueskyFR <hugo.cartigny@gmail.com>, 2015
|
||||
# dbarbier <bouzim@gmail.com>, 2013-2014
|
||||
# dbarbier <bouzim@gmail.com>, 2012
|
||||
# dbarbier <bouzim@gmail.com>, 2012
|
||||
@ -25,7 +27,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: French (http://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -41,26 +43,29 @@ msgstr " (nécessite un redémarrage d'Arduino)"
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
msgid " Not used: {0}"
|
||||
msgstr "Non utilisé: {0}"
|
||||
msgstr "Non utilisé : {0}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:525
|
||||
#, java-format
|
||||
msgid " Used: {0}"
|
||||
msgstr "Utilisé: {0}"
|
||||
msgstr "Utilisé : {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "« Keyboard » n'est pris en compte que par l'Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "« Mouse » n'est pris en compte que par l'Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more "
|
||||
"information"
|
||||
msgstr "le dossier 'arch' n'est plus supporté! Pour plus d'informations http://goo.gl/gfFJzU"
|
||||
msgstr "le dossier 'arch' n'est plus supporté ! Voir http://goo.gl/gfFJzU pour plus d'informations"
|
||||
|
||||
#: Preferences.java:478
|
||||
msgid "(edit only when Arduino is not running)"
|
||||
@ -78,7 +83,7 @@ msgstr "--curdir n'est plus supporté"
|
||||
msgid ""
|
||||
"--verbose, --verbose-upload and --verbose-build can only be used together "
|
||||
"with --verify or --upload"
|
||||
msgstr "--verbose, --verbose-upload et --verbose-build ne peuvent être utilisées qu'avec --verify ou --upload"
|
||||
msgstr "--verbose, --verbose-upload et --verbose-build ne peuvent être utilisées ensemble qu'avec --verify ou --upload"
|
||||
|
||||
#: Sketch.java:746
|
||||
msgid ".pde -> .ino"
|
||||
@ -87,18 +92,18 @@ msgstr ".pde -> .ino"
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
|
||||
#, java-format
|
||||
msgid "<br/>Update available for some of your {0}boards{1}"
|
||||
msgstr "<br/> Mise a jour disponible pour certaine des vos {0}cartes{1}"
|
||||
msgstr "<br/> Mise à jour disponible pour certaines des vos {0}cartes{1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66
|
||||
#, java-format
|
||||
msgid ""
|
||||
"<br/>Update available for some of your {0}boards{1} and {2}libraries{3}"
|
||||
msgstr "<br/> Mise a jour disponible pour certaine des vos {0}cartes{1} et {2}bibliothèques{3}"
|
||||
msgstr "<br/>Mise à jour disponible pour certaines des vos {0}cartes{1} et {2}bibliothèques{3}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62
|
||||
#, java-format
|
||||
msgid "<br/>Update available for some of your {0}libraries{1}"
|
||||
msgstr "<br/> Mise a jour disponible pour certaine des vos {0}bibliothèques{1}"
|
||||
msgstr "<br/> Mise à jour disponible pour certaines de vos {0}bibliothèques{1}"
|
||||
|
||||
#: Editor.java:2053
|
||||
msgid ""
|
||||
@ -132,7 +137,7 @@ msgstr "Une nouvelle version d'Arduino est disponible,\nvoulez-vous visiter la p
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid "A newer {0} package is available"
|
||||
msgstr "Un nouveau paquet {0} est disponible"
|
||||
msgstr "Un nouveau package {0} est disponible"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
msgid "A subfolder of your sketchbook is not a valid library"
|
||||
@ -144,7 +149,7 @@ msgstr "À propos d'Arduino"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
msgid "Add .ZIP Library..."
|
||||
msgstr "Ajouter la bibliothèque .ZIP"
|
||||
msgstr "Ajouter la bibliothèque .ZIP..."
|
||||
|
||||
#: Editor.java:650
|
||||
msgid "Add File..."
|
||||
@ -185,7 +190,7 @@ msgstr "Une erreur s'est produit durant la mise a jour du catalogue de biblioth
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "An error occurred while uploading the sketch"
|
||||
msgstr "Une erreur est survenue lors du téléversement du croquis"
|
||||
msgstr "Une erreur est survenue lors du transfert du croquis"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
@ -195,7 +200,7 @@ msgstr "Une erreur est survenue lors de la vérification du croquis"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
msgid "An error occurred while verifying/uploading the sketch"
|
||||
msgstr "Une erreur est survenue lors de la vérification et du téléversement du croquis"
|
||||
msgstr "Une erreur est survenue lors de la vérification et du transfert du croquis"
|
||||
|
||||
#: Base.java:228
|
||||
msgid ""
|
||||
@ -709,7 +714,7 @@ msgstr "Impression terminée."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
msgid "Done uploading"
|
||||
msgstr "Téléversement terminé"
|
||||
msgstr "Transfert terminé"
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
msgid "Done uploading."
|
||||
@ -885,9 +890,14 @@ msgstr "Erreur lors du chargement du code {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Erreur d'impression."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Erreur lors du téléversement"
|
||||
msgstr "Erreur lors du transfert"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2409
|
||||
#: ../../../processing/app/Editor.java:2449
|
||||
@ -902,7 +912,7 @@ msgstr "Erreur lors de la vérification"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
msgid "Error while verifying/uploading"
|
||||
msgstr "Erreur lors de la vérification et du téléversement."
|
||||
msgstr "Erreur lors de la vérification et du transfert."
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "Estonian"
|
||||
@ -1039,11 +1049,11 @@ msgstr "Les variables globales utilisent {0} octets de mémoire dynamique."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
msgid "Go to line"
|
||||
msgstr ""
|
||||
msgstr "Aller à la ligne"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
msgid "Go to line..."
|
||||
msgstr ""
|
||||
msgstr "Aller à la ligne..."
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
@ -1204,7 +1214,7 @@ msgstr "La bibliothèque est déja installé: {0} version {1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
msgid "Line number:"
|
||||
msgstr ""
|
||||
msgstr "Ligne numéro :"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Lithuaninan"
|
||||
@ -1217,7 +1227,7 @@ msgstr "Chargement de la configuration"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
msgid "Looking for recipes like {0}*{1}"
|
||||
msgstr ""
|
||||
msgstr "Recherche des recettes comme {0}*{1}"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1684
|
||||
msgid "Low memory available, stability problems may occur."
|
||||
@ -1242,7 +1252,7 @@ msgstr "Message"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81
|
||||
#, java-format
|
||||
msgid "Missing '{0}' from library in {1}"
|
||||
msgstr ""
|
||||
msgstr "Fichier manquant '{0}' de la bibliothèque dans {1}"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
msgid "Mode not supported"
|
||||
@ -1291,7 +1301,7 @@ msgstr "Ports réseau"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
msgid "Network upload using programmer not supported"
|
||||
msgstr "Le téléversement par réseau en utilisant le programmateur n'est pas pris en charge"
|
||||
msgstr "Le transfert par réseau via le programmateur n'est pas pris en charge"
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
msgid "New"
|
||||
@ -1446,7 +1456,7 @@ msgstr "persan (Iran)"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79
|
||||
#, java-format
|
||||
msgid "Platform {0} (package {1}) is unknown"
|
||||
msgstr ""
|
||||
msgstr "La plateforme {0} (package{1}) est incconu"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
msgid "Please confirm boards deletion"
|
||||
@ -1566,7 +1576,7 @@ msgstr "Programmateur"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80
|
||||
#, java-format
|
||||
msgid "Progress {0}"
|
||||
msgstr ""
|
||||
msgstr "Progression {0}"
|
||||
|
||||
#: Base.java:783 Editor.java:593
|
||||
msgid "Quit"
|
||||
@ -1574,7 +1584,7 @@ msgstr "Quitter"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1233
|
||||
msgid "RETIRED"
|
||||
msgstr ""
|
||||
msgstr "Retiré"
|
||||
|
||||
#: Editor.java:1138 Editor.java:1140 Editor.java:1390
|
||||
msgid "Redo"
|
||||
@ -1630,12 +1640,12 @@ msgstr "roumain"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83
|
||||
#, java-format
|
||||
msgid "Running recipe: {0}"
|
||||
msgstr ""
|
||||
msgstr "Exécution de la recette : {0}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82
|
||||
#, java-format
|
||||
msgid "Running: {0}"
|
||||
msgstr ""
|
||||
msgstr "Exécution de : {0}"
|
||||
|
||||
#: Preferences.java:114
|
||||
msgid "Russian"
|
||||
@ -1665,7 +1675,7 @@ msgstr "Enregistrer le dossier des croquis sous..."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:425
|
||||
msgid "Save when verifying or uploading"
|
||||
msgstr "Sauvegarder avant la vérification ou le téléversement"
|
||||
msgstr "Sauvegarder pendant la vérification ou le transfert"
|
||||
|
||||
#: Editor.java:2270 Editor.java:2308
|
||||
msgid "Saving..."
|
||||
@ -1745,7 +1755,7 @@ msgstr "Ports série"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
|
||||
#, java-format
|
||||
msgid "Setting build path to {0}"
|
||||
msgstr ""
|
||||
msgstr "Définition du chemin de compilation sur {0}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
|
||||
msgid "Settings"
|
||||
@ -2031,7 +2041,7 @@ msgstr "Tapez le mot de passe de la carte pour accéder à sa console"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1673
|
||||
msgid "Type board password to upload a new sketch"
|
||||
msgstr "Tapez le mot de passe de la carte pour téléverser un nouveau croquis"
|
||||
msgstr "Tapez le mot de passe de la carte pour transférer un nouveau croquis"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:118
|
||||
msgid "Ukrainian"
|
||||
@ -2053,7 +2063,7 @@ msgstr "Connexion impossible : mauvais mot de passe ?"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
|
||||
#, java-format
|
||||
msgid "Unable to find {0} in {1}"
|
||||
msgstr ""
|
||||
msgstr "Impossible de trouver {0} dans {1}"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2512
|
||||
msgid "Unable to open serial monitor"
|
||||
@ -2075,12 +2085,12 @@ msgstr "Annuler"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
|
||||
#, java-format
|
||||
msgid "Unhandled type {0} in context key {1}"
|
||||
msgstr ""
|
||||
msgstr "Exception non-gérée {0} dans le contexte-clé {1}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
|
||||
#, java-format
|
||||
msgid "Unknown sketch file extension: {0}"
|
||||
msgstr ""
|
||||
msgstr "Extension de croquis inconnue : {0}"
|
||||
|
||||
#: Platform.java:168
|
||||
msgid ""
|
||||
@ -2207,12 +2217,12 @@ msgstr "Visiter Arduino.cc"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
|
||||
#, java-format
|
||||
msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'"
|
||||
msgstr ""
|
||||
msgstr "ATTENTION : La catégorie '{0}' dans la bibliothèque {1} n'est pas valide. Définition sur : '{2}'"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
|
||||
#, java-format
|
||||
msgid "WARNING: Spurious {0} folder in '{1}' library"
|
||||
msgstr ""
|
||||
msgstr "ATTENTION : Faux {0} dossier dans la bibliothèque '{1}'"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:115
|
||||
#, java-format
|
||||
@ -2261,7 +2271,7 @@ msgstr "Attention: platform.txt du cœur '{0}' contiens {1} dépassé, converti
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' misses property '{1}', using default "
|
||||
"value '{2}'. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Attention : platform.txt du noyau '{0}' ne contient pas la propriété '{1}', utilisation de la valeur par défaut '{2}'. Pensez à mettre à jour ce noyau."
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:170
|
||||
#, java-format
|
||||
@ -2314,11 +2324,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Vous ne pouvez renommer le croquis en « {0} »\ncar il existe déjà un fichier .cpp portant ce nom."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Vous ne pouvez enregistrer le croquis sous « {0} »\nCar il existe déjà un fichier .cpp portant ce nom."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
@ -2520,12 +2530,12 @@ msgstr "{0} bibliothèques"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76
|
||||
#, java-format
|
||||
msgid "{0} must be a folder"
|
||||
msgstr ""
|
||||
msgstr "{0} doit être un dossier"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
|
||||
#, java-format
|
||||
msgid "{0} pattern is missing"
|
||||
msgstr ""
|
||||
msgstr "{0} est un schéma manquant"
|
||||
|
||||
#: debug/Compiler.java:365
|
||||
#, java-format
|
||||
|
@ -8,8 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Alexis Morin <mail@alexismorin.com>, 2012
|
||||
# AntoineM <antoine.meillet+transifex@gmail.com>, 2012
|
||||
# BlueskyFR <hugo.cartigny@gmail.com>, 2015
|
||||
# dbarbier <bouzim@gmail.com>, 2013-2014
|
||||
# dbarbier <bouzim@gmail.com>, 2012
|
||||
# dbarbier <bouzim@gmail.com>, 2012
|
||||
@ -20,27 +22,27 @@
|
||||
# R D <rdoume@gmail.com>, 2012
|
||||
# Simon <eskimon@outlook.com>, 2015
|
||||
# Vincent Moulin <contact@nilux.org>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: French (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: French (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino)
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
\ Not\ used\:\ {0}=Non utilis\u00e9\: {0}
|
||||
\ Not\ used\:\ {0}=Non utilis\u00e9 \: {0}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:525
|
||||
#, java-format
|
||||
\ Used\:\ {0}=Utilis\u00e9\: {0}
|
||||
\ Used\:\ {0}=Utilis\u00e9 \: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab\u00a0Keyboard\u00a0\u00bb n'est pris en compte que par l'Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab\u00a0Mouse\u00a0\u00bb n'est pris en compte que par l'Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=le dossier 'arch' n'est plus support\u00e9\! Pour plus d'informations http\://goo.gl/gfFJzU
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=le dossier 'arch' n'est plus support\u00e9 \! Voir http\://goo.gl/gfFJzU pour plus d'informations
|
||||
|
||||
#: Preferences.java:478
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(\u00e9diter uniquement lorsque Arduino ne s'ex\u00e9cute pas)
|
||||
@ -52,22 +54,22 @@
|
||||
--curdir\ no\ longer\ supported=--curdir n'est plus support\u00e9
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload et --verbose-build ne peuvent \u00eatre utilis\u00e9es qu'avec --verify ou --upload
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload et --verbose-build ne peuvent \u00eatre utilis\u00e9es ensemble qu'avec --verify ou --upload
|
||||
|
||||
#: Sketch.java:746
|
||||
.pde\ ->\ .ino=.pde -> .ino
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
|
||||
#, java-format
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}=<br/> Mise a jour disponible pour certaine des vos {0}cartes{1}
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}=<br/> Mise \u00e0 jour disponible pour certaines des vos {0}cartes{1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66
|
||||
#, java-format
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=<br/> Mise a jour disponible pour certaine des vos {0}cartes{1} et {2}biblioth\u00e8ques{3}
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=<br/>Mise \u00e0 jour disponible pour certaines des vos {0}cartes{1} et {2}biblioth\u00e8ques{3}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62
|
||||
#, java-format
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=<br/> Mise a jour disponible pour certaine des vos {0}biblioth\u00e8ques{1}
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=<br/> Mise \u00e0 jour disponible pour certaines de vos {0}biblioth\u00e8ques{1}
|
||||
|
||||
#: 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>Voulez-vous enregistrer les changements<BR> avant de fermer\u00a0?</b><p>Si vous n'enregistrez pas, vos changements seront perdus.
|
||||
@ -89,7 +91,7 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
A\ newer\ {0}\ package\ is\ available=Un nouveau paquet {0} est disponible
|
||||
A\ newer\ {0}\ package\ is\ available=Un nouveau package {0} est disponible
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Un sous-dossier de votre carnet de croquis n'est pas une biblioth\u00e8que valide
|
||||
@ -98,7 +100,7 @@ A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=Un sous-dossier d
|
||||
About\ Arduino=\u00c0 propos d'Arduino
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
Add\ .ZIP\ Library...=Ajouter la biblioth\u00e8que .ZIP
|
||||
Add\ .ZIP\ Library...=Ajouter la biblioth\u00e8que .ZIP...
|
||||
|
||||
#: Editor.java:650
|
||||
Add\ File...=Ajouter un fichier...
|
||||
@ -127,7 +129,7 @@ An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ atte
|
||||
An\ error\ occurred\ while\ updating\ libraries\ index\!=Une erreur s'est produit durant la mise a jour du catalogue de biblioth\u00e8que
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors du t\u00e9l\u00e9versement du croquis
|
||||
An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors du transfert du croquis
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
@ -135,7 +137,7 @@ An\ error\ occurred\ while\ uploading\ the\ sketch=Une erreur est survenue lors
|
||||
An\ error\ occurred\ while\ verifying\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification du croquis
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification et du t\u00e9l\u00e9versement du croquis
|
||||
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=Une erreur est survenue lors de la v\u00e9rification et du transfert du croquis
|
||||
|
||||
#: Base.java:228
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Une erreur inconnue est survenue en essayant de\ncharger du code sp\u00e9cifique \u00e0 votre plate-forme.
|
||||
@ -505,7 +507,7 @@ Done\ compiling.=Compilation termin\u00e9e.
|
||||
Done\ printing.=Impression termin\u00e9e.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
Done\ uploading=T\u00e9l\u00e9versement termin\u00e9
|
||||
Done\ uploading=Transfert termin\u00e9
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
Done\ uploading.=T\u00e9l\u00e9versement termin\u00e9
|
||||
@ -639,8 +641,12 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Erreur d'impression.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Erreur lors du t\u00e9l\u00e9versement
|
||||
Error\ while\ uploading=Erreur lors du transfert
|
||||
|
||||
#: ../../../processing/app/Editor.java:2409
|
||||
#: ../../../processing/app/Editor.java:2449
|
||||
@ -652,7 +658,7 @@ Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=Erreur lors
|
||||
Error\ while\ verifying=Erreur lors de la v\u00e9rification
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
Error\ while\ verifying/uploading=Erreur lors de la v\u00e9rification et du t\u00e9l\u00e9versement.
|
||||
Error\ while\ verifying/uploading=Erreur lors de la v\u00e9rification et du transfert.
|
||||
|
||||
#: Preferences.java:93
|
||||
Estonian=estonien
|
||||
@ -753,10 +759,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\
|
||||
Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=Les variables globales utilisent {0} octets de m\u00e9moire dynamique.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
!Go\ to\ line=
|
||||
Go\ to\ line=Aller \u00e0 la ligne
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
!Go\ to\ line...=
|
||||
Go\ to\ line...=Aller \u00e0 la ligne...
|
||||
|
||||
#: Preferences.java:98
|
||||
Greek=grec
|
||||
@ -873,7 +879,7 @@ Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=Une librairie ne peut
|
||||
Library\ is\ already\ installed\:\ {0}\ version\ {1}=La biblioth\u00e8que est d\u00e9ja install\u00e9\: {0} version {1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
!Line\ number\:=
|
||||
Line\ number\:=Ligne num\u00e9ro \:
|
||||
|
||||
#: Preferences.java:106
|
||||
Lithuaninan=lituanien
|
||||
@ -883,7 +889,7 @@ Loading\ configuration...=Chargement de la configuration
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
!Looking\ for\ recipes\ like\ {0}*{1}=
|
||||
Looking\ for\ recipes\ like\ {0}*{1}=Recherche des recettes comme {0}*{1}
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1684
|
||||
Low\ memory\ available,\ stability\ problems\ may\ occur.=La m\u00e9moire disponible faible, des probl\u00e8mes de stabilit\u00e9 pourraient survenir.
|
||||
@ -902,7 +908,7 @@ Message=Message
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81
|
||||
#, java-format
|
||||
!Missing\ '{0}'\ from\ library\ in\ {1}=
|
||||
Missing\ '{0}'\ from\ library\ in\ {1}=Fichier manquant '{0}' de la biblioth\u00e8que dans {1}
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
Mode\ not\ supported=Mode non support\u00e9
|
||||
@ -939,7 +945,7 @@ Network=R\u00e9seau
|
||||
Network\ ports=Ports r\u00e9seau
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
Network\ upload\ using\ programmer\ not\ supported=Le t\u00e9l\u00e9versement par r\u00e9seau en utilisant le programmateur n'est pas pris en charge
|
||||
Network\ upload\ using\ programmer\ not\ supported=Le transfert par r\u00e9seau via le programmateur n'est pas pris en charge
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
New=Nouveau
|
||||
@ -1055,7 +1061,7 @@ Persian\ (Iran)=persan (Iran)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79
|
||||
#, java-format
|
||||
!Platform\ {0}\ (package\ {1})\ is\ unknown=
|
||||
Platform\ {0}\ (package\ {1})\ is\ unknown=La plateforme {0} (package{1}) est incconu
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
Please\ confirm\ boards\ deletion=Confirmez la suppression des cartes
|
||||
@ -1144,13 +1150,13 @@ Programmer=Programmateur
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80
|
||||
#, java-format
|
||||
!Progress\ {0}=
|
||||
Progress\ {0}=Progression {0}
|
||||
|
||||
#: Base.java:783 Editor.java:593
|
||||
Quit=Quitter
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1233
|
||||
!RETIRED=
|
||||
RETIRED=Retir\u00e9
|
||||
|
||||
#: Editor.java:1138 Editor.java:1140 Editor.java:1390
|
||||
Redo=R\u00e9tablir
|
||||
@ -1193,11 +1199,11 @@ Romanian=roumain
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83
|
||||
#, java-format
|
||||
!Running\ recipe\:\ {0}=
|
||||
Running\ recipe\:\ {0}=Ex\u00e9cution de la recette \: {0}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82
|
||||
#, java-format
|
||||
!Running\:\ {0}=
|
||||
Running\:\ {0}=Ex\u00e9cution de \: {0}
|
||||
|
||||
#: Preferences.java:114
|
||||
Russian=russe
|
||||
@ -1220,7 +1226,7 @@ Save\ changes\ to\ "{0}"?\ \ =Enregistrer les changements dans \u00ab\u00a0{0}\u
|
||||
Save\ sketch\ folder\ as...=Enregistrer le dossier des croquis sous...
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:425
|
||||
Save\ when\ verifying\ or\ uploading=Sauvegarder avant la v\u00e9rification ou le t\u00e9l\u00e9versement
|
||||
Save\ when\ verifying\ or\ uploading=Sauvegarder pendant la v\u00e9rification ou le transfert
|
||||
|
||||
#: Editor.java:2270 Editor.java:2308
|
||||
Saving...=Enregistrement...
|
||||
@ -1278,7 +1284,7 @@ Serial\ ports=Ports s\u00e9rie
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
|
||||
#, java-format
|
||||
!Setting\ build\ path\ to\ {0}=
|
||||
Setting\ build\ path\ to\ {0}=D\u00e9finition du chemin de compilation sur {0}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
|
||||
Settings=Param\u00e8tres
|
||||
@ -1460,7 +1466,7 @@ Type=Type
|
||||
Type\ board\ password\ to\ access\ its\ console=Tapez le mot de passe de la carte pour acc\u00e9der \u00e0 sa console
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1673
|
||||
Type\ board\ password\ to\ upload\ a\ new\ sketch=Tapez le mot de passe de la carte pour t\u00e9l\u00e9verser un nouveau croquis
|
||||
Type\ board\ password\ to\ upload\ a\ new\ sketch=Tapez le mot de passe de la carte pour transf\u00e9rer un nouveau croquis
|
||||
|
||||
#: ../../../processing/app/Preferences.java:118
|
||||
Ukrainian=ukrainien
|
||||
@ -1477,7 +1483,7 @@ Unable\ to\ connect\:\ wrong\ password?=Connexion impossible \: mauvais mot de p
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
|
||||
#, java-format
|
||||
!Unable\ to\ find\ {0}\ in\ {1}=
|
||||
Unable\ to\ find\ {0}\ in\ {1}=Impossible de trouver {0} dans {1}
|
||||
|
||||
#: ../../../processing/app/Editor.java:2512
|
||||
Unable\ to\ open\ serial\ monitor=Impossible d'ouvrir le moniteur s\u00e9rie
|
||||
@ -1494,11 +1500,11 @@ Undo=Annuler
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
|
||||
#, java-format
|
||||
!Unhandled\ type\ {0}\ in\ context\ key\ {1}=
|
||||
Unhandled\ type\ {0}\ in\ context\ key\ {1}=Exception non-g\u00e9r\u00e9e {0} dans le contexte-cl\u00e9 {1}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
|
||||
#, java-format
|
||||
!Unknown\ sketch\ file\ extension\:\ {0}=
|
||||
Unknown\ sketch\ file\ extension\:\ {0}=Extension de croquis inconnue \: {0}
|
||||
|
||||
#: Platform.java:168
|
||||
Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Plate-forme non sp\u00e9cifi\u00e9e, aucun lanceur disponible.\nPour permettre l'ouverture d'URLs ou de dossiers, \najouter une ligne \u00ab\u00a0launcher\=/chemin/vers/app\u00a0\u00bb \u00e0 preferences.txt
|
||||
@ -1593,11 +1599,11 @@ Visit\ Arduino.cc=Visiter Arduino.cc
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
|
||||
#, java-format
|
||||
!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=
|
||||
WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=ATTENTION \: La cat\u00e9gorie '{0}' dans la biblioth\u00e8que {1} n'est pas valide. D\u00e9finition sur \: '{2}'
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
|
||||
#, java-format
|
||||
!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=
|
||||
WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=ATTENTION \: Faux {0} dossier dans la biblioth\u00e8que '{1}'
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:115
|
||||
#, java-format
|
||||
@ -1629,7 +1635,7 @@ Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=Atten
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=Attention\: platform.txt du c\u0153ur '{0}' contiens {1} d\u00e9pass\u00e9, converti automatiquement en {2}. La mise a niveau de ce c\u0153ur est conseill\u00e9e.
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=Attention \: platform.txt du noyau '{0}' ne contient pas la propri\u00e9t\u00e9 '{1}', utilisation de la valeur par d\u00e9faut '{2}'. Pensez \u00e0 mettre \u00e0 jour ce noyau.
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:170
|
||||
#, java-format
|
||||
@ -1665,8 +1671,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Vous ne pouvez p
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez renommer le croquis en \u00ab\u00a0{0}\u00a0\u00bb\ncar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez enregistrer le croquis sous \u00ab\u00a0{0}\u00a0\u00bb\nCar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Vous ne pouvez enregistrer ce croquis dans son\npropre dossier. Cela ferait une boucle infinie.
|
||||
@ -1793,11 +1799,11 @@ version\ <b>{0}</b>=version <b>{0}</b>
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76
|
||||
#, java-format
|
||||
!{0}\ must\ be\ a\ folder=
|
||||
{0}\ must\ be\ a\ folder={0} doit \u00eatre un dossier
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
|
||||
#, java-format
|
||||
!{0}\ pattern\ is\ missing=
|
||||
{0}\ pattern\ is\ missing={0} est un sch\u00e9ma manquant
|
||||
|
||||
#: debug/Compiler.java:365
|
||||
#, java-format
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Alexis Morin <carignan.boy@gmail.com>, 2015
|
||||
# Alexis Morin <carignan.boy@gmail.com>, 2012
|
||||
msgid ""
|
||||
@ -15,7 +16,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: French (Canada) (http://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -38,13 +39,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "« Keyboard » n'est supporté que sur l'Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "« Mouse » n'est supporté que sur l'Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -875,6 +879,11 @@ msgstr "Erreur lors du chargement du code {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Erreur d'impression."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2304,11 +2313,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Vous ne pouvez renommer le croquis en « {0} »\ncar il existe déjà un fichier .cpp portant ce nom."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Vous ne pouvez enregistrer le croquis sous « {0} »\nCar il existe déjà un fichier .cpp portant ce nom."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,9 +8,10 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Alexis Morin <carignan.boy@gmail.com>, 2015
|
||||
# Alexis Morin <carignan.boy@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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: French (Canada) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr_CA\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: French (Canada) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fr_CA/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fr_CA\nPlural-Forms\: nplurals\=2; plural\=(n > 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino)
|
||||
@ -23,11 +24,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab Keyboard \u00bb n'est support\u00e9 que sur l'Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00ab Mouse \u00bb n'est support\u00e9 que sur l'Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -629,6 +630,10 @@ Error\ while\ loading\ code\ {0}=Erreur lors du chargement du code {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Erreur d'impression.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1655,8 +1660,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Vous ne
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez renommer le croquis en \u00ab {0} \u00bb\ncar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Vous ne pouvez enregistrer le croquis sous \u00ab {0} \u00bb\nCar il existe d\u00e9j\u00e0 un fichier .cpp portant ce nom.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Vous ne pouvez enregistrer le croquis dans un dossier\nse contenant. \u00c7a irait pour toujours.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Robin van der Vliet <info@robinvandervliet.nl>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Western Frisian (http://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -37,12 +38,15 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
@ -874,6 +878,11 @@ msgstr ""
|
||||
msgid "Error while printing."
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2303,10 +2312,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,8 +8,9 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Robin van der Vliet <info@robinvandervliet.nl>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Western Frisian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Western Frisian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/fy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: fy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
!\ \ (requires\ restart\ of\ Arduino)=
|
||||
@ -22,11 +23,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -628,6 +629,10 @@ Error\ inside\ Serial.{0}()=Flater yn Serial.{0}()
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1654,8 +1659,8 @@ Yes=Ja
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# ccpr1l <csdpe0810-tf@yahoo.es>, 2014
|
||||
# Diego Prado Gesto <>, 2012
|
||||
# Marce Villarino <mvillarino@gmail.com>, 2013
|
||||
@ -17,7 +18,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Galician (http://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -40,13 +41,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "«Keyboard» so é compatíbel coa Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "«Mouse» só é compatíbel coa Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -877,6 +881,11 @@ msgstr "Produciuse un erro mentres se cargaba o código {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Erro na impresión."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2306,11 +2315,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Non podes cambiar o nome do sketch a «{0}»\nporque o sketch xa ten un ficheiro .cpp con ese nome."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Non podes gardar o sketch como «{0}»\nporque o sketch xa ten un ficheiro .cpp con ese nome."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,11 +8,12 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# ccpr1l <csdpe0810-tf@yahoo.es>, 2014
|
||||
# Diego Prado Gesto <>, 2012
|
||||
# Marce Villarino <mvillarino@gmail.com>, 2013
|
||||
# Marce Villarino <mvillarino@kde-espana.es>, 2013
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Galician (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Galician (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (require reiniciar Arduino)
|
||||
@ -25,11 +26,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abKeyboard\u00bb so \u00e9 compat\u00edbel coa Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u00abMouse\u00bb s\u00f3 \u00e9 compat\u00edbel coa Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -631,6 +632,10 @@ Error\ while\ loading\ code\ {0}=Produciuse un erro mentres se cargaba o c\u00f3
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Erro na impresi\u00f3n.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1657,8 +1662,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Non pod
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes cambiar o nome do sketch a \u00ab{0}\u00bb\nporque o sketch xa ten un ficheiro .cpp con ese nome.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non podes gardar o sketch como \u00ab{0}\u00bb\nporque o sketch xa ten un ficheiro .cpp con ese nome.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non podes gardar o sketch nun cartafol\ndentro de si mesmo. Isto poder\u00eda acabar nun bucle infinito.
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Xurxo Guerra Perez <xguerrap@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Galician (Spain) (http://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -30,20 +31,23 @@ msgstr "(requírese o reinicio de Arduino)"
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
msgid " Not used: {0}"
|
||||
msgstr ""
|
||||
msgstr "Sen usar: {0}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:525
|
||||
#, java-format
|
||||
msgid " Used: {0}"
|
||||
msgstr "Usado: {0}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Teclado' só soportado no Arduino Leonardo"
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Rato' só soportado no Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -57,11 +61,11 @@ msgstr "(editar só cando Arduino non está en execución)"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
msgid "(legacy)"
|
||||
msgstr ""
|
||||
msgstr "(herdanza)"
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
msgid "--curdir no longer supported"
|
||||
msgstr ""
|
||||
msgstr "--curdir non soportado"
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
msgid ""
|
||||
@ -121,7 +125,7 @@ msgstr "Esta dispoñible unha nova versión de Arduino,\nDesexas visitar a páxi
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid "A newer {0} package is available"
|
||||
msgstr ""
|
||||
msgstr "Hai un novo paquete dispoñible {0}"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
msgid "A subfolder of your sketchbook is not a valid library"
|
||||
@ -133,7 +137,7 @@ msgstr "Sobre Arduino"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
msgid "Add .ZIP Library..."
|
||||
msgstr ""
|
||||
msgstr "Engadir a biblioteca .ZIP..."
|
||||
|
||||
#: Editor.java:650
|
||||
msgid "Add File..."
|
||||
@ -159,7 +163,7 @@ msgstr "Albanés"
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Todo"
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
msgid ""
|
||||
@ -170,7 +174,7 @@ msgstr ""
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
|
||||
msgid "An error occurred while updating libraries index!"
|
||||
msgstr ""
|
||||
msgstr "Produciuse un erro ao actualizar o índice das bibliotecas!"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "An error occurred while uploading the sketch"
|
||||
@ -372,7 +376,7 @@ msgstr "Bosniaco"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Both NL & CR"
|
||||
msgstr ""
|
||||
msgstr "Ambos NL e CR"
|
||||
|
||||
#: Preferences.java:81
|
||||
msgid "Browse"
|
||||
@ -644,7 +648,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
msgstr "Predefinido"
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
msgid "Delete"
|
||||
@ -658,7 +662,7 @@ msgstr ""
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
msgid "Discard all changes and reload sketch?"
|
||||
msgstr ""
|
||||
msgstr "Desbotar todos os cambios e volver cargar o sketch?"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:438
|
||||
msgid "Display line numbers"
|
||||
@ -669,7 +673,7 @@ msgstr "Amosar os números de liña"
|
||||
msgid ""
|
||||
"Do you want to remove {0}?\n"
|
||||
"If you do so you won't be able to use {0} any more."
|
||||
msgstr ""
|
||||
msgstr "Queres eliminar {0}?\nSe o fas non poderás empregar {0} nunca máis."
|
||||
|
||||
#: Editor.java:2064
|
||||
msgid "Don't Save"
|
||||
@ -698,16 +702,16 @@ msgstr "Impresión satisfactoria."
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
msgid "Done uploading"
|
||||
msgstr ""
|
||||
msgstr "Subido correctamente"
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
msgid "Done uploading."
|
||||
msgstr ""
|
||||
msgstr "Subido correctamente."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105
|
||||
#, java-format
|
||||
msgid "Downloaded {0}kb of {1}kb."
|
||||
msgstr ""
|
||||
msgstr "Descargados {0}kb de {1}kb."
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107
|
||||
msgid "Downloading boards definitions."
|
||||
@ -715,21 +719,21 @@ msgstr ""
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86
|
||||
msgid "Downloading libraries index..."
|
||||
msgstr ""
|
||||
msgstr "Descangando o índice das bibliotecas..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115
|
||||
#, java-format
|
||||
msgid "Downloading library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Descargando a biblioteca: {0}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318
|
||||
msgid "Downloading platforms index..."
|
||||
msgstr ""
|
||||
msgstr "Descargando o índice das plataformas..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113
|
||||
#, java-format
|
||||
msgid "Downloading tools ({0}/{1})."
|
||||
msgstr ""
|
||||
msgstr "Descargando ferramentas ({0}/{1})."
|
||||
|
||||
#: Preferences.java:91
|
||||
msgid "Dutch"
|
||||
@ -874,6 +878,11 @@ msgstr "Produciuse un erro ao cargar o código {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Erro na impresión."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Erro ao subir"
|
||||
@ -1028,11 +1037,11 @@ msgstr "As variables globais usan {0} bytes de memoria dinámica."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
msgid "Go to line"
|
||||
msgstr ""
|
||||
msgstr "Ir á liña"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
msgid "Go to line..."
|
||||
msgstr ""
|
||||
msgstr "Ir á liña..."
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
@ -1052,7 +1061,7 @@ msgstr "Hindi"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
msgid "Host name:"
|
||||
msgstr ""
|
||||
msgstr "Nome da máquina:"
|
||||
|
||||
#: Sketch.java:295
|
||||
msgid ""
|
||||
@ -1093,12 +1102,12 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:778
|
||||
msgid "Include Library"
|
||||
msgstr ""
|
||||
msgstr "Incluír biblioteca"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
msgid "Incorrect IDE installation folder"
|
||||
msgstr ""
|
||||
msgstr "Cartafol de instalación do IDE incorrecto"
|
||||
|
||||
#: Editor.java:1216 Editor.java:2757
|
||||
msgid "Increase Indent"
|
||||
@ -1110,7 +1119,7 @@ msgstr "Indonesio"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
msgid "Initializing packages..."
|
||||
msgstr ""
|
||||
msgstr "Inicializando os paquetes..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81
|
||||
@ -1119,15 +1128,15 @@ msgstr ""
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
msgstr "Instalar"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
msgid "Installation completed!"
|
||||
msgstr ""
|
||||
msgstr "Instalación completada!"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
msgstr "Instalado"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
msgid "Installing boards..."
|
||||
@ -1136,17 +1145,17 @@ msgstr ""
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126
|
||||
#, java-format
|
||||
msgid "Installing library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Instalando a biblioteca: {0}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134
|
||||
#, java-format
|
||||
msgid "Installing tools ({0}/{1})..."
|
||||
msgstr ""
|
||||
msgstr "Instalando ferramentas ({0}/{1})..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
msgstr "Instalando..."
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
@ -1176,7 +1185,7 @@ msgstr "Letón"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
msgid "Library Manager"
|
||||
msgstr ""
|
||||
msgstr "Xestor da biblioteca"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
msgid "Library added to your libraries. Check \"Include library\" menu"
|
||||
@ -1189,11 +1198,11 @@ msgstr ""
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107
|
||||
#, java-format
|
||||
msgid "Library is already installed: {0} version {1}"
|
||||
msgstr ""
|
||||
msgstr "A biblioteca xa está instalada: {0} versión {1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
msgid "Line number:"
|
||||
msgstr ""
|
||||
msgstr "Número de liña:"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Lithuaninan"
|
||||
@ -1201,7 +1210,7 @@ msgstr "Lituano"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:132
|
||||
msgid "Loading configuration..."
|
||||
msgstr ""
|
||||
msgstr "Cargando a configuración..."
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
@ -1239,7 +1248,7 @@ msgstr "Modo non soportado"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
msgstr "Máis"
|
||||
|
||||
#: Preferences.java:449
|
||||
msgid "More preferences can be edited directly in the file"
|
||||
@ -1272,7 +1281,7 @@ msgstr "Nepalés"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
msgstr "Rede"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
msgid "Network ports"
|
||||
@ -2303,10 +2312,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
|
@ -8,25 +8,26 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Xurxo Guerra Perez <xguerrap@gmail.com>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Galician (Spain) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl_ES\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Galician (Spain) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/gl_ES/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: gl_ES\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(requ\u00edrese o reinicio de Arduino)
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
!\ Not\ used\:\ {0}=
|
||||
\ Not\ used\:\ {0}=Sen usar\: {0}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:525
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
\ Used\:\ {0}=Usado\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Teclado' s\u00f3 soportado no Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Rato' s\u00f3 soportado no Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -35,10 +36,10 @@
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3 cando Arduino non est\u00e1 en execuci\u00f3n)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
!(legacy)=
|
||||
(legacy)=(herdanza)
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
!--curdir\ no\ longer\ supported=
|
||||
--curdir\ no\ longer\ supported=--curdir non soportado
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload e --verbose-build s\u00f3 se poden empregar xunto con --verify ou --upload
|
||||
@ -78,7 +79,7 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
!A\ newer\ {0}\ package\ is\ available=
|
||||
A\ newer\ {0}\ package\ is\ available=Hai un novo paquete dispo\u00f1ible {0}
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=
|
||||
@ -87,7 +88,7 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
|
||||
About\ Arduino=Sobre Arduino
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
!Add\ .ZIP\ Library...=
|
||||
Add\ .ZIP\ Library...=Engadir a biblioteca .ZIP...
|
||||
|
||||
#: Editor.java:650
|
||||
Add\ File...=Engadir ficheiro...
|
||||
@ -107,13 +108,13 @@ Albanian=Alban\u00e9s
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
!All=
|
||||
All=Todo
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
|
||||
!An\ error\ occurred\ while\ updating\ libraries\ index\!=
|
||||
An\ error\ occurred\ while\ updating\ libraries\ index\!=Produciuse un erro ao actualizar o \u00edndice das bibliotecas\!
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
An\ error\ occurred\ while\ uploading\ the\ sketch=Produciuse un erro subindo o sketch
|
||||
@ -258,7 +259,7 @@ Board\:\ =Placa\:
|
||||
Bosnian=Bosniaco
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Both\ NL\ &\ CR=
|
||||
Both\ NL\ &\ CR=Ambos NL e CR
|
||||
|
||||
#: Preferences.java:81
|
||||
!Browse=
|
||||
@ -456,7 +457,7 @@ Danish\ (Denmark)=Dan\u00e9s (Dinamarca)
|
||||
!Decrease\ Indent=
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
!Default=
|
||||
Default=Predefinido
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
Delete=Eliminar
|
||||
@ -465,14 +466,14 @@ Delete=Eliminar
|
||||
!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
!Discard\ all\ changes\ and\ reload\ sketch?=
|
||||
Discard\ all\ changes\ and\ reload\ sketch?=Desbotar todos os cambios e volver cargar o sketch?
|
||||
|
||||
#: ../../../processing/app/Preferences.java:438
|
||||
Display\ line\ numbers=Amosar os n\u00fameros de li\u00f1a
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
#, java-format
|
||||
!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=
|
||||
Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=Queres eliminar {0}?\nSe o fas non poder\u00e1s empregar {0} nunca m\u00e1is.
|
||||
|
||||
#: Editor.java:2064
|
||||
Don't\ Save=Non gardar
|
||||
@ -494,31 +495,31 @@ Done\ compiling.=Compilaci\u00f3n satisfactoria.
|
||||
Done\ printing.=Impresi\u00f3n satisfactoria.
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
!Done\ uploading=
|
||||
Done\ uploading=Subido correctamente
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
!Done\ uploading.=
|
||||
Done\ uploading.=Subido correctamente.
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105
|
||||
#, java-format
|
||||
!Downloaded\ {0}kb\ of\ {1}kb.=
|
||||
Downloaded\ {0}kb\ of\ {1}kb.=Descargados {0}kb de {1}kb.
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107
|
||||
!Downloading\ boards\ definitions.=
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86
|
||||
!Downloading\ libraries\ index...=
|
||||
Downloading\ libraries\ index...=Descangando o \u00edndice das bibliotecas...
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115
|
||||
#, java-format
|
||||
!Downloading\ library\:\ {0}=
|
||||
Downloading\ library\:\ {0}=Descargando a biblioteca\: {0}
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318
|
||||
!Downloading\ platforms\ index...=
|
||||
Downloading\ platforms\ index...=Descargando o \u00edndice das plataformas...
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113
|
||||
#, java-format
|
||||
!Downloading\ tools\ ({0}/{1}).=
|
||||
Downloading\ tools\ ({0}/{1}).=Descargando ferramentas ({0}/{1}).
|
||||
|
||||
#: Preferences.java:91
|
||||
Dutch=Neerland\u00e9s
|
||||
@ -628,6 +629,10 @@ Error\ while\ loading\ code\ {0}=Produciuse un erro ao cargar o c\u00f3digo {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Erro na impresi\u00f3n.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Erro ao subir
|
||||
|
||||
@ -742,10 +747,10 @@ Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\
|
||||
Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=As variables globais usan {0} bytes de memoria din\u00e1mica.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
!Go\ to\ line=
|
||||
Go\ to\ line=Ir \u00e1 li\u00f1a
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
!Go\ to\ line...=
|
||||
Go\ to\ line...=Ir \u00e1 li\u00f1a...
|
||||
|
||||
#: Preferences.java:98
|
||||
Greek=Grego
|
||||
@ -760,7 +765,7 @@ Help=Axuda
|
||||
Hindi=Hindi
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
!Host\ name\:=
|
||||
Host\ name\:=Nome da m\u00e1quina\:
|
||||
|
||||
#: Sketch.java:295
|
||||
!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
|
||||
@ -784,11 +789,11 @@ Ignoring\ bad\ library\ name=Ignorar os nomes de biblioteca non v\u00e1lidos
|
||||
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:778
|
||||
!Include\ Library=
|
||||
Include\ Library=Inclu\u00edr biblioteca
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
!Incorrect\ IDE\ installation\ folder=
|
||||
Incorrect\ IDE\ installation\ folder=Cartafol de instalaci\u00f3n do IDE incorrecto
|
||||
|
||||
#: Editor.java:1216 Editor.java:2757
|
||||
!Increase\ Indent=
|
||||
@ -797,7 +802,7 @@ Ignoring\ bad\ library\ name=Ignorar os nomes de biblioteca non v\u00e1lidos
|
||||
Indonesian=Indonesio
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
!Initializing\ packages...=
|
||||
Initializing\ packages...=Inicializando os paquetes...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81
|
||||
@ -805,28 +810,28 @@ Indonesian=Indonesio
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
!Install=
|
||||
Install=Instalar
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
!Installation\ completed\!=
|
||||
Installation\ completed\!=Instalaci\u00f3n completada\!
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
!Installed=
|
||||
Installed=Instalado
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
!Installing\ boards...=
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126
|
||||
#, java-format
|
||||
!Installing\ library\:\ {0}=
|
||||
Installing\ library\:\ {0}=Instalando a biblioteca\: {0}
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134
|
||||
#, java-format
|
||||
!Installing\ tools\ ({0}/{1})...=
|
||||
Installing\ tools\ ({0}/{1})...=Instalando ferramentas ({0}/{1})...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
!Installing...=
|
||||
Installing...=Instalando...
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
@ -849,7 +854,7 @@ Korean=Coreano
|
||||
Latvian=Let\u00f3n
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
!Library\ Manager=
|
||||
Library\ Manager=Xestor da biblioteca
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=
|
||||
@ -859,16 +864,16 @@ Latvian=Let\u00f3n
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107
|
||||
#, java-format
|
||||
!Library\ is\ already\ installed\:\ {0}\ version\ {1}=
|
||||
Library\ is\ already\ installed\:\ {0}\ version\ {1}=A biblioteca xa est\u00e1 instalada\: {0} versi\u00f3n {1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
!Line\ number\:=
|
||||
Line\ number\:=N\u00famero de li\u00f1a\:
|
||||
|
||||
#: Preferences.java:106
|
||||
Lithuaninan=Lituano
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:132
|
||||
!Loading\ configuration...=
|
||||
Loading\ configuration...=Cargando a configuraci\u00f3n...
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
@ -897,7 +902,7 @@ Message=Mensaxe
|
||||
Mode\ not\ supported=Modo non soportado
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
!More=
|
||||
More=M\u00e1is
|
||||
|
||||
#: Preferences.java:449
|
||||
!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
|
||||
@ -922,7 +927,7 @@ Name\ for\ new\ file\:=Nome do novo ficheiro\:
|
||||
Nepali=Nepal\u00e9s
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
!Network=
|
||||
Network=Rede
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
Network\ ports=Portos de rede
|
||||
@ -1654,8 +1659,8 @@ Yes=Si
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Gaurav Waghmare <gauravwaghmare30@gmail.com>, 2015
|
||||
# Nishant Sood <nishant@winacro.com>, 2012
|
||||
# Parimal Naigaonkar <parimal.86@gmail.com>, 2012
|
||||
@ -16,7 +17,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Hindi (http://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -39,12 +40,15 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
@ -876,6 +880,11 @@ msgstr "कोड लोड करते समय त्रुटी {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "प्रिंटिंग करते समय त्रुटी "
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2305,11 +2314,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "स्केत्च का नाम बदल के \"{0}\" नहीं रखा जा सकता \nक्यूंकि इस नाम की .cpp फाइल पहले से hai"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "आप स्केत्च को {०} की तरह नहीं सेव कर सकते\nक्यूंकि इस नाम की .cpp फाइल पहले ही वहां है "
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,10 +8,11 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Gaurav Waghmare <gauravwaghmare30@gmail.com>, 2015
|
||||
# Nishant Sood <nishant@winacro.com>, 2012
|
||||
# Parimal Naigaonkar <parimal.86@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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Hindi (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Hindi (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hi/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hi\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u0905\u0930\u094d\u0926\u0941\u0907\u0928\u094b \u0915\u094b \u092b\u093f\u0930 \u0938\u0947 \u091a\u093e\u0932\u0942 \u0915\u0930\u0928\u0947 \u0915\u0940 \u0906\u0935\u0936\u094d\u092f\u0915)
|
||||
@ -24,11 +25,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -630,6 +631,10 @@ Error\ while\ loading\ code\ {0}=\u0915\u094b\u0921 \u0932\u094b\u0921 \u0915\u0
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u092a\u094d\u0930\u093f\u0902\u091f\u093f\u0902\u0917 \u0915\u0930\u0924\u0947 \u0938\u092e\u092f \u0924\u094d\u0930\u0941\u091f\u0940
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0938\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u093e \u0928\u093e\u092e \u092c\u0926\u0932 \u0915\u0947 "{0}" \u0928\u0939\u0940\u0902 \u0930\u0916\u093e \u091c\u093e \u0938\u0915\u0924\u093e \n\u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 .cpp \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0938\u0947 hai
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0906\u092a \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b {\u0966} \u0915\u0940 \u0924\u0930\u0939 \u0928\u0939\u0940\u0902 \u0938\u0947\u0935 \u0915\u0930 \u0938\u0915\u0924\u0947\n\u0915\u094d\u092f\u0942\u0902\u0915\u093f \u0907\u0938 \u0928\u093e\u092e \u0915\u0940 .cpp \u092b\u093e\u0907\u0932 \u092a\u0939\u0932\u0947 \u0939\u0940 \u0935\u0939\u093e\u0902 \u0939\u0948
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0906\u092a \u090f\u0915 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u0940 \u092a\u0941\u0938\u093f\u0924\u0915\u093e \u0915\u0947 \u0905\u0928\u094d\u0926\u0930 \u0939\u0940 \u0909\u0938 \u0938\u094d\u0915\u0947\u0924\u094d\u091a \u0915\u094b \u0938\u0947\u0935 \u0928\u0939\u0940\u0902 \u0915\u0930 \u0938\u0915\u0924\u0947 \n\u092f\u0939 \u0928\u0939\u0940\u0902 \u0939\u094b \u0938\u0915\u0924\u093e ,\u0907\u0938\u0915\u093e \u0915\u094b\u0908 \u0905\u0902\u0924 \u0928\u0939\u0940\u0902
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Dubravko Penezic <dpenezic@gmail.com>, 2012
|
||||
# Dubravko Penezic <dpenezic@gmail.com>, 2013
|
||||
# mbruck <mladen.bruck@gmail.com>, 2014
|
||||
@ -16,7 +17,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Croatian (Croatia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -39,13 +40,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' podrška dostupna samo na Arduino Leonardu"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' podrška dostupna samo na Arduino Leonardo-u"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -876,6 +880,11 @@ msgstr "Greška pri učitavanju koda {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Greška pri tiskanju."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2305,11 +2314,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Nemoguće je preimenovati skicu u \"{0}\"\njer takva skica već ima .cpp datoteku s istim imenom"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Nemožete snimiti skicu kao \"{0}\"\nzato što skica već ima .cpp kao ime datoteke."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,10 +8,11 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Dubravko Penezic <dpenezic@gmail.com>, 2012
|
||||
# Dubravko Penezic <dpenezic@gmail.com>, 2013
|
||||
# mbruck <mladen.bruck@gmail.com>, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hr_HR\nPlural-Forms\: nplurals\=3; plural\=n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Croatian (Croatia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hr_HR/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hr_HR\nPlural-Forms\: nplurals\=3; plural\=n%10\=\=1 && n%100\!\=11 ? 0 \: n%10>\=2 && n%10<\=4 && (n%100<10 || n%100>\=20) ? 1 \: 2;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (potrebno ponovno pokretanje Arduina)
|
||||
@ -24,11 +25,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' podr\u0161ka dostupna samo na Arduino Leonardu
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' podr\u0161ka dostupna samo na Arduino Leonardo-u
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -630,6 +631,10 @@ Error\ while\ loading\ code\ {0}=Gre\u0161ka pri u\u010ditavanju koda {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Gre\u0161ka pri tiskanju.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nemogu\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nemogu\u0107e je preimenovati skicu u "{0}"\njer takva skica ve\u0107 ima .cpp datoteku s istim imenom
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nemo\u017eete snimiti skicu kao "{0}"\nzato \u0161to skica ve\u0107 ima .cpp kao ime datoteke.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nemogu\u0107e je pohraniti skicu u mapu\nunutar samog sebe. To bi potrajalo u beskona\u010dnost.
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# benewfy <benewfy@gmail.com>, 2015
|
||||
# Melinda <ghostgirl1983@gmail.com>, 2014
|
||||
# Cseh Robert <tavir@tavir.hu>, 2012
|
||||
@ -16,7 +17,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Hungarian (http://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -39,13 +40,16 @@ msgstr "Nem használt: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr "Használt: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "Az 'USB billentyűzet' megvalósítást csak az Arduino Leonardo támogatja."
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "Az 'USB Egér' megvalósítást csak az Arduino Leonardo támogatja."
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -63,7 +67,7 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
msgid "--curdir no longer supported"
|
||||
msgstr ""
|
||||
msgstr "--curdir továbbiakban nem támogatott"
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
msgid ""
|
||||
@ -97,7 +101,7 @@ msgid ""
|
||||
" font: 11pt \"Lucida Grande\"; margin-top: 8px }</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."
|
||||
msgstr "<html> <head> <style type=\"text/css\">b { font: 13pt \"Lucida Grande\" }p { font: 11pt \"Lucida Grande\"; margin-top: 8px }</style> </head><b>Szeretné menteni a változtatásokat ezen a Sketchen<BR> mielött bezárná?</b><p>Ha nem menti el, a változtatások elvesznek."
|
||||
msgstr "<html> <head> <style type=\"text/css\">b { font: 13pt \"Lucida Grande\" }p { font: 11pt \"Lucida Grande\"; margin-top: 8px }</style> </head><b>Szeretné menteni a változtatásokat ezen a vázlaton<BR> mielött bezárná?</b><p>Ha nem menti el, a változtatások elvesznek."
|
||||
|
||||
#: Sketch.java:398
|
||||
#, java-format
|
||||
@ -107,7 +111,7 @@ msgstr "A \"{0}\" file már létezik a \"{1}\" mappában!"
|
||||
#: Editor.java:2169
|
||||
#, java-format
|
||||
msgid "A folder named \"{0}\" already exists. Can't open sketch."
|
||||
msgstr "Ez a mappa \"{0}\" már létezik. Sketchet nem lehet megnyitni."
|
||||
msgstr "\"{0}\" nevű mappa már létezik. Vázlatot nem lehet megnyitni."
|
||||
|
||||
#: Base.java:2690
|
||||
#, java-format
|
||||
@ -127,7 +131,7 @@ msgstr "Egy új {0} csomag elérhető"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
msgid "A subfolder of your sketchbook is not a valid library"
|
||||
msgstr ""
|
||||
msgstr "A vázlatfüzetének egy almappája nem egy érvényes könyvtár"
|
||||
|
||||
#: Editor.java:1116
|
||||
msgid "About Arduino"
|
||||
@ -135,7 +139,7 @@ msgstr "Arduinoról"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
msgid "Add .ZIP Library..."
|
||||
msgstr ""
|
||||
msgstr ".ZIP könyvtár hozzáadása..."
|
||||
|
||||
#: Editor.java:650
|
||||
msgid "Add File..."
|
||||
@ -151,7 +155,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:161
|
||||
msgid "Afrikaans"
|
||||
msgstr ""
|
||||
msgstr "Afrikaans"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:96
|
||||
msgid "Albanian"
|
||||
@ -204,11 +208,11 @@ msgstr "Aragóniai"
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
msgid "Archive Sketch"
|
||||
msgstr "Sketch arhiválása"
|
||||
msgstr "Vázlat arhiválása"
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
msgid "Archive sketch as:"
|
||||
msgstr "Sketch arhiválása másként:"
|
||||
msgstr "Vázlat archiválása másként:"
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
msgid "Archive sketch canceled."
|
||||
@ -244,7 +248,7 @@ msgstr "Arduino nem futtatható, mert nem hozható létre\\na felhasználói be
|
||||
msgid ""
|
||||
"Arduino cannot run because it could not\n"
|
||||
"create a folder to store your sketchbook."
|
||||
msgstr "Arduino nem futtatható, mert nem hozható létre\\na felhasználói Sketch mentések mappája."
|
||||
msgstr "Arduino nem futtatható, mert nem hozható létre\nfelhasználói mappa a vázlatfüzete tárolására."
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:471
|
||||
msgid "Arduino: "
|
||||
@ -283,11 +287,11 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:137
|
||||
msgid "Armenian"
|
||||
msgstr ""
|
||||
msgstr "Örmény"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:138
|
||||
msgid "Asturian"
|
||||
msgstr ""
|
||||
msgstr "Asztúriai"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:145
|
||||
msgid "Authorization required"
|
||||
@ -324,11 +328,11 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
msgid "Basque"
|
||||
msgstr ""
|
||||
msgstr "Baszk"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:139
|
||||
msgid "Belarusian"
|
||||
msgstr ""
|
||||
msgstr "Fehérorosz"
|
||||
|
||||
#: ../../../processing/app/Base.java:1433
|
||||
#: ../../../processing/app/Editor.java:707
|
||||
@ -370,7 +374,7 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:140
|
||||
msgid "Bosnian"
|
||||
msgstr ""
|
||||
msgstr "Bosnyák"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Both NL & CR"
|
||||
@ -390,15 +394,15 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:80
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
msgstr "Bolgár"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:141
|
||||
msgid "Burmese (Myanmar)"
|
||||
msgstr ""
|
||||
msgstr "Burmai (Mianmar)"
|
||||
|
||||
#: Editor.java:708
|
||||
msgid "Burn Bootloader"
|
||||
msgstr ""
|
||||
msgstr "Bootloader égetése"
|
||||
|
||||
#: Editor.java:2504
|
||||
msgid "Burning bootloader to I/O Board (this may take a minute)..."
|
||||
@ -406,7 +410,7 @@ msgstr ""
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77
|
||||
msgid "CRC doesn't match. File is corrupted."
|
||||
msgstr ""
|
||||
msgstr "CRC nem egyezik. A fájl sérült."
|
||||
|
||||
#: ../../../processing/app/Base.java:379
|
||||
#, java-format
|
||||
@ -420,12 +424,12 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:92
|
||||
msgid "Canadian French"
|
||||
msgstr ""
|
||||
msgstr "Kanadai francia"
|
||||
|
||||
#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2064 Editor.java:2145 Editor.java:2465
|
||||
msgid "Cancel"
|
||||
msgstr ""
|
||||
msgstr "Mégse"
|
||||
|
||||
#: Sketch.java:455
|
||||
msgid "Cannot Rename"
|
||||
@ -441,7 +445,7 @@ msgstr "Soremelés"
|
||||
|
||||
#: Preferences.java:87
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
msgstr "Katalán"
|
||||
|
||||
#: Preferences.java:419
|
||||
msgid "Check for updates on startup"
|
||||
@ -449,15 +453,15 @@ msgstr "Újabb verzió ellenőrzése indításkor"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:142
|
||||
msgid "Chinese (China)"
|
||||
msgstr ""
|
||||
msgstr "Kínai (Kína)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
msgid "Chinese (Taiwan)"
|
||||
msgstr ""
|
||||
msgstr "Kínai (Tajvan)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:143
|
||||
msgid "Chinese (Taiwan) (Big5)"
|
||||
msgstr ""
|
||||
msgstr "Kínai (Tajvan) (Big5)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98
|
||||
msgid "Click for a list of unofficial boards support URLs"
|
||||
@ -481,11 +485,11 @@ msgstr ""
|
||||
|
||||
#: Editor.java:1157 Editor.java:2707
|
||||
msgid "Copy"
|
||||
msgstr ""
|
||||
msgstr "Másolás"
|
||||
|
||||
#: Editor.java:1177 Editor.java:2723
|
||||
msgid "Copy as HTML"
|
||||
msgstr ""
|
||||
msgstr "Másolás HTML-ként"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:455
|
||||
msgid "Copy error messages"
|
||||
@ -506,11 +510,11 @@ msgstr "Nem másolható a megfelelő helyre."
|
||||
|
||||
#: Editor.java:2179
|
||||
msgid "Could not create the sketch folder."
|
||||
msgstr ""
|
||||
msgstr "A vázlat mappa nem hozható létre."
|
||||
|
||||
#: Editor.java:2206
|
||||
msgid "Could not create the sketch."
|
||||
msgstr "Sketch nem hozható létre."
|
||||
msgstr "A vázlat nem hozható létre."
|
||||
|
||||
#: Sketch.java:617
|
||||
#, java-format
|
||||
@ -626,19 +630,19 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:82
|
||||
msgid "Croatian"
|
||||
msgstr ""
|
||||
msgstr "Horvát"
|
||||
|
||||
#: Editor.java:1149 Editor.java:2699
|
||||
msgid "Cut"
|
||||
msgstr ""
|
||||
msgstr "Kivágás"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:119
|
||||
msgid "Czech (Czech Republic)"
|
||||
msgstr ""
|
||||
msgstr "Cseh (Cseh Köztársaság)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:120
|
||||
msgid "Danish (Denmark)"
|
||||
msgstr ""
|
||||
msgstr "Dán (Dánia)"
|
||||
|
||||
#: Editor.java:1224 Editor.java:2765
|
||||
msgid "Decrease Indent"
|
||||
@ -646,7 +650,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
msgstr "Alapértelmezett"
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
msgid "Delete"
|
||||
@ -735,11 +739,11 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:91
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
msgstr "Holland"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
msgid "Dutch (Netherlands)"
|
||||
msgstr ""
|
||||
msgstr "Holland (Hollandia)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1309
|
||||
msgid "Edison Help"
|
||||
@ -747,7 +751,7 @@ msgstr ""
|
||||
|
||||
#: Editor.java:1130
|
||||
msgid "Edit"
|
||||
msgstr ""
|
||||
msgstr "Szerkesztés"
|
||||
|
||||
#: Preferences.java:370
|
||||
msgid "Editor font size: "
|
||||
@ -763,11 +767,11 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:92
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
msgstr "Angol"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:145
|
||||
msgid "English (United Kingdom)"
|
||||
msgstr ""
|
||||
msgstr "Angol (Egyesült Királyság)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271
|
||||
@ -780,7 +784,7 @@ msgstr ""
|
||||
|
||||
#: Editor.java:1062
|
||||
msgid "Environment"
|
||||
msgstr ""
|
||||
msgstr "Környezet"
|
||||
|
||||
#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
|
||||
#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
|
||||
@ -857,7 +861,7 @@ msgstr "Hiba a \"{0}\" port hozzáférés során."
|
||||
|
||||
#: Editor.java:2512 Editor.java:2516 Editor.java:2520
|
||||
msgid "Error while burning bootloader."
|
||||
msgstr ""
|
||||
msgstr "Hiba a bootloader égetése közben."
|
||||
|
||||
#: ../../../processing/app/Editor.java:2555
|
||||
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
|
||||
@ -874,6 +878,11 @@ msgstr ""
|
||||
|
||||
#: Editor.java:2567
|
||||
msgid "Error while printing."
|
||||
msgstr "Hiba a nyomtatás közben."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
@ -897,15 +906,15 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "Estonian"
|
||||
msgstr ""
|
||||
msgstr "Észt"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:146
|
||||
msgid "Estonian (Estonia)"
|
||||
msgstr ""
|
||||
msgstr "Észt (Észtország)"
|
||||
|
||||
#: Editor.java:516
|
||||
msgid "Examples"
|
||||
msgstr ""
|
||||
msgstr "Példák"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1244
|
||||
msgid "Examples from Custom Libraries"
|
||||
@ -930,11 +939,11 @@ msgstr ""
|
||||
|
||||
#: Editor.java:491
|
||||
msgid "File"
|
||||
msgstr ""
|
||||
msgstr "Fájl"
|
||||
|
||||
#: Preferences.java:94
|
||||
msgid "Filipino"
|
||||
msgstr ""
|
||||
msgstr "Filippínó"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95
|
||||
msgid "Filter your search..."
|
||||
@ -966,7 +975,7 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:147
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
msgstr "Finn"
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
@ -986,19 +995,19 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:95
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
msgstr "Francia"
|
||||
|
||||
#: Editor.java:1097
|
||||
msgid "Frequently Asked Questions"
|
||||
msgstr ""
|
||||
msgstr "Gyakran Ismételt Kérdések"
|
||||
|
||||
#: Preferences.java:96
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
msgstr "Galíciai"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:176
|
||||
msgid "Galician (Spain)"
|
||||
msgstr ""
|
||||
msgstr "Galíciai (Spanyolország)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1288
|
||||
msgid "Galileo Help"
|
||||
@ -1006,11 +1015,11 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:94
|
||||
msgid "Georgian"
|
||||
msgstr ""
|
||||
msgstr "Grúz"
|
||||
|
||||
#: Preferences.java:97
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
msgstr "Német"
|
||||
|
||||
#: Editor.java:1054
|
||||
msgid "Getting Started"
|
||||
@ -1038,19 +1047,19 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
msgstr "Görög"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:95
|
||||
msgid "Hebrew"
|
||||
msgstr ""
|
||||
msgstr "Héber"
|
||||
|
||||
#: Editor.java:1015
|
||||
msgid "Help"
|
||||
msgstr ""
|
||||
msgstr "Súgó"
|
||||
|
||||
#: Preferences.java:99
|
||||
msgid "Hindi"
|
||||
msgstr ""
|
||||
msgstr "Hindi"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
msgid "Host name:"
|
||||
@ -1060,7 +1069,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"How about saving the sketch first \n"
|
||||
"before trying to rename it?"
|
||||
msgstr "A Sketch csak mentés után\\nnevezhető át!"
|
||||
msgstr "Mi lenne, ha mentené a vázlatot, \nmielőtt megpróbálja átnevezni?"
|
||||
|
||||
#: Sketch.java:882
|
||||
msgid "How very Borges of you"
|
||||
@ -1068,7 +1077,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:100
|
||||
msgid "Hungarian"
|
||||
msgstr ""
|
||||
msgstr "Magyar"
|
||||
|
||||
#: FindReplace.java:96
|
||||
msgid "Ignore Case"
|
||||
@ -1080,7 +1089,7 @@ msgstr "Hibás könyvtárnév kihagyása"
|
||||
|
||||
#: Base.java:1436
|
||||
msgid "Ignoring sketch with bad name"
|
||||
msgstr "Hibás Sketch név kihagyása"
|
||||
msgstr "Hibás nevű vázlat kihagyása"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:736
|
||||
msgid ""
|
||||
@ -1108,7 +1117,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:101
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
msgstr "Indonéz"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
msgid "Initializing packages..."
|
||||
@ -1121,15 +1130,15 @@ msgstr ""
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
msgstr "Telepítés"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
msgid "Installation completed!"
|
||||
msgstr ""
|
||||
msgstr "Telepítés befejeződött!"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
msgstr "Telepítve"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
msgid "Installing boards..."
|
||||
@ -1148,7 +1157,7 @@ msgstr ""
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
msgstr "Telepítés..."
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
@ -1162,7 +1171,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:102
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
msgstr "Olasz"
|
||||
|
||||
#: Preferences.java:103
|
||||
msgid "Japanese"
|
||||
@ -1178,7 +1187,7 @@ msgstr "Lett"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
msgid "Library Manager"
|
||||
msgstr ""
|
||||
msgstr "Könyvtár kezelő"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
msgid "Library added to your libraries. Check \"Include library\" menu"
|
||||
@ -1216,7 +1225,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1168
|
||||
msgid "Manage Libraries..."
|
||||
msgstr ""
|
||||
msgstr "Könyvtárak kezelése..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466
|
||||
msgid "Manual proxy configuration"
|
||||
@ -1224,7 +1233,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:107
|
||||
msgid "Marathi"
|
||||
msgstr ""
|
||||
msgstr "Marathi"
|
||||
|
||||
#: Base.java:2112
|
||||
msgid "Message"
|
||||
@ -1241,7 +1250,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
msgstr "Továbbiak"
|
||||
|
||||
#: Preferences.java:449
|
||||
msgid "More preferences can be edited directly in the file"
|
||||
@ -1249,7 +1258,7 @@ msgstr "További számos beállítás elérhető a file közvetlen szerkesztés
|
||||
|
||||
#: Editor.java:2156
|
||||
msgid "Moving"
|
||||
msgstr ""
|
||||
msgstr "Áthelyezés"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
msgid "Multiple files not supported"
|
||||
@ -1270,15 +1279,15 @@ msgstr "Új file neve:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
msgid "Nepali"
|
||||
msgstr ""
|
||||
msgstr "Nepáli"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
msgstr "Hálózat"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
msgid "Network ports"
|
||||
msgstr ""
|
||||
msgstr "Hálózati portok"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
msgid "Network upload using programmer not supported"
|
||||
@ -1286,7 +1295,7 @@ msgstr ""
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
msgid "New"
|
||||
msgstr ""
|
||||
msgstr "Új"
|
||||
|
||||
#: EditorHeader.java:292
|
||||
msgid "New Tab"
|
||||
@ -1302,7 +1311,7 @@ msgstr "Következő fül"
|
||||
|
||||
#: Preferences.java:78 UpdateCheck.java:108
|
||||
msgid "No"
|
||||
msgstr ""
|
||||
msgstr "Nem"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:158
|
||||
msgid "No authorization data found"
|
||||
@ -1338,7 +1347,7 @@ msgstr ""
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453
|
||||
msgid "No proxy"
|
||||
msgstr ""
|
||||
msgstr "Nincs proxy"
|
||||
|
||||
#: Base.java:541
|
||||
msgid "No really, time for some fresh air for you."
|
||||
@ -1352,11 +1361,11 @@ msgstr ""
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
msgid "No sketch"
|
||||
msgstr ""
|
||||
msgstr "Nincs vázlat"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
msgid "No sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Nincs vázlatfüzet"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:204
|
||||
msgid "No valid code files found"
|
||||
@ -1373,7 +1382,7 @@ msgstr ""
|
||||
|
||||
#: ../../../processing/app/Preferences.java:108
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
msgstr "Norvég"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1656
|
||||
msgid ""
|
||||
@ -1384,7 +1393,7 @@ msgstr ""
|
||||
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2145 Editor.java:2465
|
||||
msgid "OK"
|
||||
msgstr ""
|
||||
msgstr "OK"
|
||||
|
||||
#: Sketch.java:992 Editor.java:376
|
||||
msgid "One file added to the sketch."
|
||||
@ -1408,7 +1417,7 @@ msgstr ""
|
||||
|
||||
#: Base.java:636
|
||||
msgid "Open an Arduino sketch..."
|
||||
msgstr "Arduino Sketch megnyitása..."
|
||||
msgstr "Arduino vázlat megnyitása..."
|
||||
|
||||
#: Base.java:903 Editor.java:501
|
||||
msgid "Open..."
|
||||
@ -1449,7 +1458,7 @@ msgstr ""
|
||||
|
||||
#: debug/Compiler.java:408
|
||||
msgid "Please import the SPI library from the Sketch > Import Library menu."
|
||||
msgstr "Az SPI függvények használatához a Sketch > Függvény import alatt az SPI-re van szüksége."
|
||||
msgstr "Kérem importálja az SPI könyvtárat a Vázlat > Könyvtár Importálása menüből."
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
msgid "Please import the Wire library from the Sketch > Import Library menu."
|
||||
@ -1668,7 +1677,7 @@ msgstr ""
|
||||
|
||||
#: Base.java:1909
|
||||
msgid "Select (or create new) folder for sketches..."
|
||||
msgstr "Válassz (vagy hozz létre) mappát a Sketch-eknek..."
|
||||
msgstr "Válasszon (vagy hozzon létre) mappát a vázlatoknak..."
|
||||
|
||||
#: Editor.java:1198 Editor.java:2739
|
||||
msgid "Select All"
|
||||
@ -1684,7 +1693,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:330
|
||||
msgid "Select new sketchbook location"
|
||||
msgstr "Válasszon új SketchBook mappát"
|
||||
msgstr "Válasszon új vázlatfüzet helyet"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249
|
||||
@ -1768,15 +1777,15 @@ msgstr ""
|
||||
|
||||
#: Base.java:1411
|
||||
msgid "Sketch Does Not Exist"
|
||||
msgstr "Sketch nem nyitható meg"
|
||||
msgstr "A vázlat nem létezik"
|
||||
|
||||
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
|
||||
msgid "Sketch is Read-Only"
|
||||
msgstr "A Sketch írásvédett"
|
||||
msgstr "A vázlat csak olvasható"
|
||||
|
||||
#: Sketch.java:294
|
||||
msgid "Sketch is Untitled"
|
||||
msgstr "A Sketch most Névtelen (Untitled)"
|
||||
msgstr "A vázlat Névtelen"
|
||||
|
||||
#: Sketch.java:720
|
||||
msgid "Sketch is read-only"
|
||||
@ -1801,11 +1810,11 @@ msgstr ""
|
||||
|
||||
#: Base.java:258
|
||||
msgid "Sketchbook folder disappeared"
|
||||
msgstr "A SketchBook mappa elérhetetlen"
|
||||
msgstr "A vázlatfüzet mappa eltűnt"
|
||||
|
||||
#: Preferences.java:315
|
||||
msgid "Sketchbook location:"
|
||||
msgstr "SketchBook helye:"
|
||||
msgstr "Vázlatfüzet helye:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
msgid "Sketchbook path not defined"
|
||||
@ -1824,7 +1833,7 @@ msgid ""
|
||||
"Some files are marked \"read-only\", so you'll\n"
|
||||
"need to re-save the sketch in another location,\n"
|
||||
"and try again."
|
||||
msgstr "Néhány file csak olvasható, így más helyre mentés után\\nújra meg kell próbálni."
|
||||
msgstr "Néhány fájl \"csak olvasható\"-nak van jelölve, így\nújra kell mentenie a vázlatot másik helyre és\nújrapróbálni."
|
||||
|
||||
#: Sketch.java:721
|
||||
msgid ""
|
||||
@ -1928,7 +1937,7 @@ msgid ""
|
||||
"The selected sketch no longer exists.\n"
|
||||
"You may need to restart Arduino to update\n"
|
||||
"the sketchbook menu."
|
||||
msgstr "A kiválasztott Sketch nem érhető el.\\nA SketchBook menü frissítéséhez az Arduino\\nújraindítása szükséges."
|
||||
msgstr "A kiválasztott vázlat már nem létezik.\nLehet, hogy újra kell indítania az Arduino-t,\nhogy frissítse a vázlatfüzet menüt."
|
||||
|
||||
#: Base.java:1430
|
||||
#, java-format
|
||||
@ -1938,7 +1947,7 @@ msgid ""
|
||||
"(ASCII-only with no spaces, and it cannot start with a number).\n"
|
||||
"To get rid of this message, remove the sketch from\n"
|
||||
"{1}"
|
||||
msgstr "A \"{0}\" Sketch nem használható.\\nA Sketch neve csak angol abc betűit, számokat\\ntartalmazhat, szóköz nélkül és az első betűje nem lehet szám.\\nA hibás Sketch-et távolítsd el\\na(z) {1} mappából!"
|
||||
msgstr "A \"{0}\" vázlat nem használható.\nA vázlatok neve csak angol abc betűit és számokat tartalmazhat\n(csak ASCII szóköz nélkül és nem kezdődhet számmal). Ahhoz,\nhogy megszabaduljon ettől az üzenettőt, távolítsa el a vázlatot innen:\n{1}"
|
||||
|
||||
#: Sketch.java:1755
|
||||
msgid ""
|
||||
@ -1961,7 +1970,7 @@ msgid ""
|
||||
"location, and create a new sketchbook folder if\n"
|
||||
"necessary. Arduino will then stop talking about\n"
|
||||
"himself in the third person."
|
||||
msgstr "A SketchBook mappa nem érhető el.\\nAz alapértelmezett hely lesz kiválasztva, és\\nitt létrehozva a sketch mappa."
|
||||
msgstr "A vázlatfüzet mappa már nem létezik.\nAz Arduino átvált az alapértelmezett vázlatfüzet\nhelyre, és készít egy új vázlatfüzet mappát, ha\nszükséges. Az Arduino ekkor befejezi magáról a\nharmadik személyként való említést."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514
|
||||
msgid ""
|
||||
@ -2091,7 +2100,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:428
|
||||
msgid "Update sketch files to new extension on save (.pde -> .ino)"
|
||||
msgstr "Sketch frissítése az új kiterjesztéssel (.pde -> .ino)"
|
||||
msgstr "Vázlat fájlok frissítés új kiterjesztésre mentésnél (.pde -> .ino)"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167
|
||||
msgid "Updating list of installed libraries"
|
||||
@ -2305,10 +2314,10 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
@ -2319,7 +2328,7 @@ msgstr ""
|
||||
|
||||
#: Base.java:1888
|
||||
msgid "You forgot your sketchbook"
|
||||
msgstr "Felejtsd el a SketchBook-odat"
|
||||
msgstr "Felejtse el a vázlatfüzetét"
|
||||
|
||||
#: ../../../processing/app/AbstractMonitor.java:92
|
||||
msgid ""
|
||||
@ -2330,7 +2339,7 @@ msgstr ""
|
||||
msgid ""
|
||||
"You've reached the limit for auto naming of new sketches\n"
|
||||
"for the day. How about going for a walk instead?"
|
||||
msgstr "Meghaladtad az egy napra jutó új Sketch-ek létrehozási\\n\nszámot. Nem kéne sétálni egyet - pihenésül?"
|
||||
msgstr "Meghaladta a napi korlátot az új vázlatok automatikus\nnévadásához. Mi lenne, ha inkább sétálna egyet?"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
msgid ""
|
||||
@ -2501,7 +2510,7 @@ msgstr ""
|
||||
#: Editor.java:380
|
||||
#, java-format
|
||||
msgid "{0} files added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "{0} fájl hozzáadva a vázlathoz."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1201
|
||||
#, java-format
|
||||
|
@ -8,10 +8,11 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# benewfy <benewfy@gmail.com>, 2015
|
||||
# Melinda <ghostgirl1983@gmail.com>, 2014
|
||||
# Cseh Robert <tavir@tavir.hu>, 2012
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Hungarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Hungarian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hu/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hu\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(Arduino \u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges)
|
||||
@ -24,11 +25,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=Haszn\u00e1lt\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=Az 'USB billenty\u0171zet' megval\u00f3s\u00edt\u00e1st csak az Arduino Leonardo t\u00e1mogatja.
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=Az 'USB Eg\u00e9r' megval\u00f3s\u00edt\u00e1st csak az Arduino Leonardo t\u00e1mogatja.
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -40,7 +41,7 @@
|
||||
!(legacy)=
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
!--curdir\ no\ longer\ supported=
|
||||
--curdir\ no\ longer\ supported=--curdir tov\u00e1bbiakban nem t\u00e1mogatott
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
|
||||
@ -61,7 +62,7 @@
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
|
||||
|
||||
#: 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>Szeretn\u00e9 menteni a v\u00e1ltoztat\u00e1sokat ezen a Sketchen<BR> miel\u00f6tt bez\u00e1rn\u00e1?</b><p>Ha nem menti el, a v\u00e1ltoztat\u00e1sok elvesznek.
|
||||
<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>Szeretn\u00e9 menteni a v\u00e1ltoztat\u00e1sokat ezen a v\u00e1zlaton<BR> miel\u00f6tt bez\u00e1rn\u00e1?</b><p>Ha nem menti el, a v\u00e1ltoztat\u00e1sok elvesznek.
|
||||
|
||||
#: Sketch.java:398
|
||||
#, java-format
|
||||
@ -69,7 +70,7 @@ A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=A "{0}" file m\u00e1r l\u00e9t
|
||||
|
||||
#: Editor.java:2169
|
||||
#, java-format
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Ez a mappa "{0}" m\u00e1r l\u00e9tezik. Sketchet nem lehet megnyitni.
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.="{0}" nev\u0171 mappa m\u00e1r l\u00e9tezik. V\u00e1zlatot nem lehet megnyitni.
|
||||
|
||||
#: Base.java:2690
|
||||
#, java-format
|
||||
@ -83,13 +84,13 @@ A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\
|
||||
A\ newer\ {0}\ package\ is\ available=Egy \u00faj {0} csomag el\u00e9rhet\u0151
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=
|
||||
A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=A v\u00e1zlatf\u00fczet\u00e9nek egy almapp\u00e1ja nem egy \u00e9rv\u00e9nyes k\u00f6nyvt\u00e1r
|
||||
|
||||
#: Editor.java:1116
|
||||
About\ Arduino=Arduinor\u00f3l
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
!Add\ .ZIP\ Library...=
|
||||
Add\ .ZIP\ Library...=.ZIP k\u00f6nyvt\u00e1r hozz\u00e1ad\u00e1sa...
|
||||
|
||||
#: Editor.java:650
|
||||
Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa...
|
||||
@ -101,7 +102,7 @@ Add\ File...=F\u00e1jl hozz\u00e1ad\u00e1sa...
|
||||
!Additional\ Boards\ Manager\ URLs\:\ =
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:161
|
||||
!Afrikaans=
|
||||
Afrikaans=Afrikaans
|
||||
|
||||
#: ../../../processing/app/Preferences.java:96
|
||||
Albanian=Alb\u00e1n
|
||||
@ -138,10 +139,10 @@ Arabic=Arab
|
||||
Aragonese=Arag\u00f3niai
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
Archive\ Sketch=Sketch arhiv\u00e1l\u00e1sa
|
||||
Archive\ Sketch=V\u00e1zlat arhiv\u00e1l\u00e1sa
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
Archive\ sketch\ as\:=Sketch arhiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\:
|
||||
Archive\ sketch\ as\:=V\u00e1zlat archiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\:
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
!Archive\ sketch\ canceled.=
|
||||
@ -162,7 +163,7 @@ Archive\ sketch\ as\:=Sketch arhiv\u00e1l\u00e1sa m\u00e1sk\u00e9nt\:
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\\na felhaszn\u00e1l\u00f3i be\u00e1ll\u00edt\u00e1sok mapp\u00e1ja.
|
||||
|
||||
#: Base.java:1889
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\\na felhaszn\u00e1l\u00f3i Sketch ment\u00e9sek mapp\u00e1ja.
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nem futtathat\u00f3, mert nem hozhat\u00f3 l\u00e9tre\nfelhaszn\u00e1l\u00f3i mappa a v\u00e1zlatf\u00fczete t\u00e1rol\u00e1s\u00e1ra.
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:471
|
||||
Arduino\:\ =Arduino\:
|
||||
@ -192,10 +193,10 @@ Arduino\:\ =Arduino\:
|
||||
!Argument\ required\ for\ {0}=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:137
|
||||
!Armenian=
|
||||
Armenian=\u00d6rm\u00e9ny
|
||||
|
||||
#: ../../../processing/app/Preferences.java:138
|
||||
!Asturian=
|
||||
Asturian=Aszt\u00fariai
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:145
|
||||
!Authorization\ required=
|
||||
@ -223,10 +224,10 @@ Arduino\:\ =Arduino\:
|
||||
!Bad\ file\ selected=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
!Basque=
|
||||
Basque=Baszk
|
||||
|
||||
#: ../../../processing/app/Preferences.java:139
|
||||
!Belarusian=
|
||||
Belarusian=Feh\u00e9rorosz
|
||||
|
||||
#: ../../../processing/app/Base.java:1433
|
||||
#: ../../../processing/app/Editor.java:707
|
||||
@ -257,7 +258,7 @@ Arduino\:\ =Arduino\:
|
||||
!Bootloader\ file\ specified\ but\ missing\:\ {0}=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:140
|
||||
!Bosnian=
|
||||
Bosnian=Bosny\u00e1k
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza
|
||||
@ -272,19 +273,19 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza
|
||||
!Built-in\ Examples=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:80
|
||||
!Bulgarian=
|
||||
Bulgarian=Bolg\u00e1r
|
||||
|
||||
#: ../../../processing/app/Preferences.java:141
|
||||
!Burmese\ (Myanmar)=
|
||||
Burmese\ (Myanmar)=Burmai (Mianmar)
|
||||
|
||||
#: Editor.java:708
|
||||
!Burn\ Bootloader=
|
||||
Burn\ Bootloader=Bootloader \u00e9get\u00e9se
|
||||
|
||||
#: Editor.java:2504
|
||||
!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77
|
||||
!CRC\ doesn't\ match.\ File\ is\ corrupted.=
|
||||
CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC nem egyezik. A f\u00e1jl s\u00e9r\u00fclt.
|
||||
|
||||
#: ../../../processing/app/Base.java:379
|
||||
#, java-format
|
||||
@ -295,11 +296,11 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza
|
||||
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:92
|
||||
!Canadian\ French=
|
||||
Canadian\ French=Kanadai francia
|
||||
|
||||
#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2064 Editor.java:2145 Editor.java:2465
|
||||
!Cancel=
|
||||
Cancel=M\u00e9gse
|
||||
|
||||
#: Sketch.java:455
|
||||
!Cannot\ Rename=
|
||||
@ -311,19 +312,19 @@ Both\ NL\ &\ CR=Soremel\u00e9s \u00e9s kocsivissza
|
||||
Carriage\ return=Soremel\u00e9s
|
||||
|
||||
#: Preferences.java:87
|
||||
!Catalan=
|
||||
Catalan=Katal\u00e1n
|
||||
|
||||
#: Preferences.java:419
|
||||
Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se ind\u00edt\u00e1skor
|
||||
|
||||
#: ../../../processing/app/Preferences.java:142
|
||||
!Chinese\ (China)=
|
||||
Chinese\ (China)=K\u00ednai (K\u00edna)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
!Chinese\ (Taiwan)=
|
||||
Chinese\ (Taiwan)=K\u00ednai (Tajvan)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:143
|
||||
!Chinese\ (Taiwan)\ (Big5)=
|
||||
Chinese\ (Taiwan)\ (Big5)=K\u00ednai (Tajvan) (Big5)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98
|
||||
!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=
|
||||
@ -341,10 +342,10 @@ Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se in
|
||||
!Compiling\ sketch...=
|
||||
|
||||
#: Editor.java:1157 Editor.java:2707
|
||||
!Copy=
|
||||
Copy=M\u00e1sol\u00e1s
|
||||
|
||||
#: Editor.java:1177 Editor.java:2723
|
||||
!Copy\ as\ HTML=
|
||||
Copy\ as\ HTML=M\u00e1sol\u00e1s HTML-k\u00e9nt
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:455
|
||||
!Copy\ error\ messages=
|
||||
@ -360,10 +361,10 @@ Check\ for\ updates\ on\ startup=\u00dajabb verzi\u00f3 ellen\u0151rz\u00e9se in
|
||||
Could\ not\ copy\ to\ a\ proper\ location.=Nem m\u00e1solhat\u00f3 a megfelel\u0151 helyre.
|
||||
|
||||
#: Editor.java:2179
|
||||
!Could\ not\ create\ the\ sketch\ folder.=
|
||||
Could\ not\ create\ the\ sketch\ folder.=A v\u00e1zlat mappa nem hozhat\u00f3 l\u00e9tre.
|
||||
|
||||
#: Editor.java:2206
|
||||
Could\ not\ create\ the\ sketch.=Sketch nem hozhat\u00f3 l\u00e9tre.
|
||||
Could\ not\ create\ the\ sketch.=A v\u00e1zlat nem hozhat\u00f3 l\u00e9tre.
|
||||
|
||||
#: Sketch.java:617
|
||||
#, java-format
|
||||
@ -443,22 +444,22 @@ Could\ not\ replace\ {0}=Nem cser\u00e9lhet\u0151\: {0}
|
||||
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:82
|
||||
!Croatian=
|
||||
Croatian=Horv\u00e1t
|
||||
|
||||
#: Editor.java:1149 Editor.java:2699
|
||||
!Cut=
|
||||
Cut=Kiv\u00e1g\u00e1s
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:119
|
||||
!Czech\ (Czech\ Republic)=
|
||||
Czech\ (Czech\ Republic)=Cseh (Cseh K\u00f6zt\u00e1rsas\u00e1g)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:120
|
||||
!Danish\ (Denmark)=
|
||||
Danish\ (Denmark)=D\u00e1n (D\u00e1nia)
|
||||
|
||||
#: Editor.java:1224 Editor.java:2765
|
||||
!Decrease\ Indent=
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
!Default=
|
||||
Default=Alap\u00e9rtelmezett
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
Delete=T\u00f6rl\u00e9s
|
||||
@ -523,16 +524,16 @@ Done\ Saving.=Ment\u00e9s k\u00e9sz.
|
||||
!Downloading\ tools\ ({0}/{1}).=
|
||||
|
||||
#: Preferences.java:91
|
||||
!Dutch=
|
||||
Dutch=Holland
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
!Dutch\ (Netherlands)=
|
||||
Dutch\ (Netherlands)=Holland (Hollandia)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1309
|
||||
!Edison\ Help=
|
||||
|
||||
#: Editor.java:1130
|
||||
!Edit=
|
||||
Edit=Szerkeszt\u00e9s
|
||||
|
||||
#: Preferences.java:370
|
||||
Editor\ font\ size\:\ =Szerkeszt\u0151 bet\u0171m\u00e9ret\:
|
||||
@ -544,10 +545,10 @@ Editor\ language\:\ =Szerkeszt\u0151 nyelve\:
|
||||
!Enable\ Code\ Folding=
|
||||
|
||||
#: Preferences.java:92
|
||||
!English=
|
||||
English=Angol
|
||||
|
||||
#: ../../../processing/app/Preferences.java:145
|
||||
!English\ (United\ Kingdom)=
|
||||
English\ (United\ Kingdom)=Angol (Egyes\u00fclt Kir\u00e1lys\u00e1g)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271
|
||||
@ -557,7 +558,7 @@ Editor\ language\:\ =Szerkeszt\u0151 nyelve\:
|
||||
!Enter\ additional\ URLs,\ one\ for\ each\ row=
|
||||
|
||||
#: Editor.java:1062
|
||||
!Environment=
|
||||
Environment=K\u00f6rnyezet
|
||||
|
||||
#: Base.java:2147 Preferences.java:256 Sketch.java:475 Sketch.java:481
|
||||
#: Sketch.java:496 Sketch.java:503 Sketch.java:526 Sketch.java:543
|
||||
@ -615,7 +616,7 @@ Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ r
|
||||
Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00e9s sor\u00e1n.
|
||||
|
||||
#: Editor.java:2512 Editor.java:2516 Editor.java:2520
|
||||
!Error\ while\ burning\ bootloader.=
|
||||
Error\ while\ burning\ bootloader.=Hiba a bootloader \u00e9get\u00e9se k\u00f6zben.
|
||||
|
||||
#: ../../../processing/app/Editor.java:2555
|
||||
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
@ -628,7 +629,11 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
|
||||
!Error\ while\ loading\ code\ {0}=
|
||||
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
Error\ while\ printing.=Hiba a nyomtat\u00e1s k\u00f6zben.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
@ -646,13 +651,13 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
|
||||
!Error\ while\ verifying/uploading=
|
||||
|
||||
#: Preferences.java:93
|
||||
!Estonian=
|
||||
Estonian=\u00c9szt
|
||||
|
||||
#: ../../../processing/app/Preferences.java:146
|
||||
!Estonian\ (Estonia)=
|
||||
Estonian\ (Estonia)=\u00c9szt (\u00c9sztorsz\u00e1g)
|
||||
|
||||
#: Editor.java:516
|
||||
!Examples=
|
||||
Examples=P\u00e9ld\u00e1k
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1244
|
||||
!Examples\ from\ Custom\ Libraries=
|
||||
@ -671,10 +676,10 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
|
||||
!Failed\ to\ open\ sketch\:\ "{0}"=
|
||||
|
||||
#: Editor.java:491
|
||||
!File=
|
||||
File=F\u00e1jl
|
||||
|
||||
#: Preferences.java:94
|
||||
!Filipino=
|
||||
Filipino=Filipp\u00edn\u00f3
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95
|
||||
!Filter\ your\ search...=
|
||||
@ -698,7 +703,7 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
|
||||
!Find\:=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:147
|
||||
!Finnish=
|
||||
Finnish=Finn
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
@ -712,25 +717,25 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
|
||||
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=
|
||||
|
||||
#: Preferences.java:95
|
||||
!French=
|
||||
French=Francia
|
||||
|
||||
#: Editor.java:1097
|
||||
!Frequently\ Asked\ Questions=
|
||||
Frequently\ Asked\ Questions=Gyakran Ism\u00e9telt K\u00e9rd\u00e9sek
|
||||
|
||||
#: Preferences.java:96
|
||||
!Galician=
|
||||
Galician=Gal\u00edciai
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:176
|
||||
!Galician\ (Spain)=
|
||||
Galician\ (Spain)=Gal\u00edciai (Spanyolorsz\u00e1g)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1288
|
||||
!Galileo\ Help=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:94
|
||||
!Georgian=
|
||||
Georgian=Gr\u00faz
|
||||
|
||||
#: Preferences.java:97
|
||||
!German=
|
||||
German=N\u00e9met
|
||||
|
||||
#: Editor.java:1054
|
||||
!Getting\ Started=
|
||||
@ -750,28 +755,28 @@ Error\ touching\ serial\ port\ ''{0}''.=Hiba a "{0}" port hozz\u00e1f\u00e9r\u00
|
||||
!Go\ to\ line...=
|
||||
|
||||
#: Preferences.java:98
|
||||
!Greek=
|
||||
Greek=G\u00f6r\u00f6g
|
||||
|
||||
#: ../../../processing/app/Preferences.java:95
|
||||
!Hebrew=
|
||||
Hebrew=H\u00e9ber
|
||||
|
||||
#: Editor.java:1015
|
||||
!Help=
|
||||
Help=S\u00fag\u00f3
|
||||
|
||||
#: Preferences.java:99
|
||||
!Hindi=
|
||||
Hindi=Hindi
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
!Host\ name\:=
|
||||
|
||||
#: Sketch.java:295
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sketch csak ment\u00e9s ut\u00e1n\\nnevezhet\u0151 \u00e1t\!
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Mi lenne, ha menten\u00e9 a v\u00e1zlatot, \nmiel\u0151tt megpr\u00f3b\u00e1lja \u00e1tnevezni?
|
||||
|
||||
#: Sketch.java:882
|
||||
!How\ very\ Borges\ of\ you=
|
||||
|
||||
#: Preferences.java:100
|
||||
!Hungarian=
|
||||
Hungarian=Magyar
|
||||
|
||||
#: FindReplace.java:96
|
||||
!Ignore\ Case=
|
||||
@ -780,7 +785,7 @@ How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=A Sket
|
||||
Ignoring\ bad\ library\ name=Hib\u00e1s k\u00f6nyvt\u00e1rn\u00e9v kihagy\u00e1sa
|
||||
|
||||
#: Base.java:1436
|
||||
Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa
|
||||
Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s nev\u0171 v\u00e1zlat kihagy\u00e1sa
|
||||
|
||||
#: ../../../processing/app/Sketch.java:736
|
||||
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
|
||||
@ -796,7 +801,7 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa
|
||||
!Increase\ Indent=
|
||||
|
||||
#: Preferences.java:101
|
||||
!Indonesian=
|
||||
Indonesian=Indon\u00e9z
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
!Initializing\ packages...=
|
||||
@ -807,13 +812,13 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
!Install=
|
||||
Install=Telep\u00edt\u00e9s
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
!Installation\ completed\!=
|
||||
Installation\ completed\!=Telep\u00edt\u00e9s befejez\u0151d\u00f6tt\!
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
!Installed=
|
||||
Installed=Telep\u00edtve
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
!Installing\ boards...=
|
||||
@ -828,7 +833,7 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
!Installing...=
|
||||
Installing...=Telep\u00edt\u00e9s...
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
@ -839,7 +844,7 @@ Ignoring\ sketch\ with\ bad\ name=Hib\u00e1s Sketch n\u00e9v kihagy\u00e1sa
|
||||
!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=
|
||||
|
||||
#: Preferences.java:102
|
||||
!Italian=
|
||||
Italian=Olasz
|
||||
|
||||
#: Preferences.java:103
|
||||
Japanese=Jap\u00e1n
|
||||
@ -851,7 +856,7 @@ Korean=Koreai
|
||||
Latvian=Lett
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
!Library\ Manager=
|
||||
Library\ Manager=K\u00f6nyvt\u00e1r kezel\u0151
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=
|
||||
@ -880,13 +885,13 @@ Lithuaninan=Litv\u00e1n
|
||||
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1168
|
||||
!Manage\ Libraries...=
|
||||
Manage\ Libraries...=K\u00f6nyvt\u00e1rak kezel\u00e9se...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466
|
||||
!Manual\ proxy\ configuration=
|
||||
|
||||
#: Preferences.java:107
|
||||
!Marathi=
|
||||
Marathi=Marathi
|
||||
|
||||
#: Base.java:2112
|
||||
Message=\u00dczenet
|
||||
@ -899,13 +904,13 @@ Message=\u00dczenet
|
||||
!Mode\ not\ supported=
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
!More=
|
||||
More=Tov\u00e1bbiak
|
||||
|
||||
#: Preferences.java:449
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Tov\u00e1bbi sz\u00e1mos be\u00e1ll\u00edt\u00e1s el\u00e9rhet\u0151 a file k\u00f6zvetlen szerkeszt\u00e9s\u00e9vel
|
||||
|
||||
#: Editor.java:2156
|
||||
!Moving=
|
||||
Moving=\u00c1thelyez\u00e9s
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
!Multiple\ files\ not\ supported=
|
||||
@ -921,19 +926,19 @@ More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Tov\u00e1bbi sz\u00e
|
||||
Name\ for\ new\ file\:=\u00daj file neve\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
!Nepali=
|
||||
Nepali=Nep\u00e1li
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
!Network=
|
||||
Network=H\u00e1l\u00f3zat
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
!Network\ ports=
|
||||
Network\ ports=H\u00e1l\u00f3zati portok
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
!Network\ upload\ using\ programmer\ not\ supported=
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
!New=
|
||||
New=\u00daj
|
||||
|
||||
#: EditorHeader.java:292
|
||||
New\ Tab=\u00daj f\u00fcl
|
||||
@ -945,7 +950,7 @@ New\ Tab=\u00daj f\u00fcl
|
||||
Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl
|
||||
|
||||
#: Preferences.java:78 UpdateCheck.java:108
|
||||
!No=
|
||||
No=Nem
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:158
|
||||
!No\ authorization\ data\ found=
|
||||
@ -972,7 +977,7 @@ Next\ Tab=K\u00f6vetkez\u0151 f\u00fcl
|
||||
!No\ parameters=
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453
|
||||
!No\ proxy=
|
||||
No\ proxy=Nincs proxy
|
||||
|
||||
#: Base.java:541
|
||||
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151 leveg\u0151zn\u00f6d egyet.
|
||||
@ -983,10 +988,10 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
!No\ sketch=
|
||||
No\ sketch=Nincs v\u00e1zlat
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
!No\ sketchbook=
|
||||
No\ sketchbook=Nincs v\u00e1zlatf\u00fczet
|
||||
|
||||
#: ../../../processing/app/Sketch.java:204
|
||||
!No\ valid\ code\ files\ found=
|
||||
@ -999,14 +1004,14 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151
|
||||
!None=
|
||||
|
||||
#: ../../../processing/app/Preferences.java:108
|
||||
!Norwegian\ Bokm\u00e5l=
|
||||
Norwegian\ Bokm\u00e5l=Norv\u00e9g
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1656
|
||||
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
|
||||
|
||||
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2145 Editor.java:2465
|
||||
!OK=
|
||||
OK=OK
|
||||
|
||||
#: Sketch.java:992 Editor.java:376
|
||||
!One\ file\ added\ to\ the\ sketch.=
|
||||
@ -1024,7 +1029,7 @@ No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Hopp\u00e1, itt az id\u0151
|
||||
!Open\ URL=
|
||||
|
||||
#: Base.java:636
|
||||
Open\ an\ Arduino\ sketch...=Arduino Sketch megnyit\u00e1sa...
|
||||
Open\ an\ Arduino\ sketch...=Arduino v\u00e1zlat megnyit\u00e1sa...
|
||||
|
||||
#: Base.java:903 Editor.java:501
|
||||
Open...=Megnyit...
|
||||
@ -1055,7 +1060,7 @@ Persian=Perzsa
|
||||
!Please\ confirm\ library\ deletion=
|
||||
|
||||
#: debug/Compiler.java:408
|
||||
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Az SPI f\u00fcggv\u00e9nyek haszn\u00e1lat\u00e1hoz a Sketch > F\u00fcggv\u00e9ny import alatt az SPI-re van sz\u00fcks\u00e9ge.
|
||||
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=K\u00e9rem import\u00e1lja az SPI k\u00f6nyvt\u00e1rat a V\u00e1zlat > K\u00f6nyvt\u00e1r Import\u00e1l\u00e1sa men\u00fcb\u0151l.
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
|
||||
@ -1220,7 +1225,7 @@ Saving...=Ment\u00e9s...
|
||||
!Search\ all\ Sketch\ Tabs=
|
||||
|
||||
#: Base.java:1909
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lassz (vagy hozz l\u00e9tre) mapp\u00e1t a Sketch-eknek...
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lasszon (vagy hozzon l\u00e9tre) mapp\u00e1t a v\u00e1zlatoknak...
|
||||
|
||||
#: Editor.java:1198 Editor.java:2739
|
||||
!Select\ All=
|
||||
@ -1232,7 +1237,7 @@ Select\ (or\ create\ new)\ folder\ for\ sketches...=V\u00e1lassz (vagy hozz l\u0
|
||||
!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
|
||||
|
||||
#: Preferences.java:330
|
||||
Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj SketchBook mapp\u00e1t
|
||||
Select\ new\ sketchbook\ location=V\u00e1lasszon \u00faj v\u00e1zlatf\u00fczet helyet
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249
|
||||
@ -1293,13 +1298,13 @@ Show\ verbose\ output\ during\:\ =Log mutat\u00e1sa\:
|
||||
!Sketch\ Disappeared=
|
||||
|
||||
#: Base.java:1411
|
||||
Sketch\ Does\ Not\ Exist=Sketch nem nyithat\u00f3 meg
|
||||
Sketch\ Does\ Not\ Exist=A v\u00e1zlat nem l\u00e9tezik
|
||||
|
||||
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
|
||||
Sketch\ is\ Read-Only=A Sketch \u00edr\u00e1sv\u00e9dett
|
||||
Sketch\ is\ Read-Only=A v\u00e1zlat csak olvashat\u00f3
|
||||
|
||||
#: Sketch.java:294
|
||||
Sketch\ is\ Untitled=A Sketch most N\u00e9vtelen (Untitled)
|
||||
Sketch\ is\ Untitled=A v\u00e1zlat N\u00e9vtelen
|
||||
|
||||
#: Sketch.java:720
|
||||
!Sketch\ is\ read-only=
|
||||
@ -1315,10 +1320,10 @@ Sketch\ is\ Untitled=A Sketch most N\u00e9vtelen (Untitled)
|
||||
!Sketchbook=
|
||||
|
||||
#: Base.java:258
|
||||
Sketchbook\ folder\ disappeared=A SketchBook mappa el\u00e9rhetetlen
|
||||
Sketchbook\ folder\ disappeared=A v\u00e1zlatf\u00fczet mappa elt\u0171nt
|
||||
|
||||
#: Preferences.java:315
|
||||
Sketchbook\ location\:=SketchBook helye\:
|
||||
Sketchbook\ location\:=V\u00e1zlatf\u00fczet helye\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
!Sketchbook\ path\ not\ defined=
|
||||
@ -1330,7 +1335,7 @@ Sketchbook\ location\:=SketchBook helye\:
|
||||
!Slovenian=
|
||||
|
||||
#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u00e9h\u00e1ny file csak olvashat\u00f3, \u00edgy m\u00e1s helyre ment\u00e9s ut\u00e1n\\n\u00fajra meg kell pr\u00f3b\u00e1lni.
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=N\u00e9h\u00e1ny f\u00e1jl "csak olvashat\u00f3"-nak van jel\u00f6lve, \u00edgy\n\u00fajra kell mentenie a v\u00e1zlatot m\u00e1sik helyre \u00e9s\n\u00fajrapr\u00f3b\u00e1lni.
|
||||
|
||||
#: Sketch.java:721
|
||||
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
|
||||
@ -1397,11 +1402,11 @@ The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\
|
||||
The\ name\ cannot\ start\ with\ a\ period.=A n\u00e9v nem kezd\u0151dhet peri\u00f3dus-jellel.
|
||||
|
||||
#: Base.java:1412
|
||||
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A kiv\u00e1lasztott Sketch nem \u00e9rhet\u0151 el.\\nA SketchBook men\u00fc friss\u00edt\u00e9s\u00e9hez az Arduino\\n\u00fajraind\u00edt\u00e1sa sz\u00fcks\u00e9ges.
|
||||
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=A kiv\u00e1lasztott v\u00e1zlat m\u00e1r nem l\u00e9tezik.\nLehet, hogy \u00fajra kell ind\u00edtania az Arduino-t,\nhogy friss\u00edtse a v\u00e1zlatf\u00fczet men\u00fct.
|
||||
|
||||
#: Base.java:1430
|
||||
#, java-format
|
||||
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=A "{0}" Sketch nem haszn\u00e1lhat\u00f3.\\nA Sketch neve csak angol abc bet\u0171it, sz\u00e1mokat\\ntartalmazhat, sz\u00f3k\u00f6z n\u00e9lk\u00fcl \u00e9s az els\u0151 bet\u0171je nem lehet sz\u00e1m.\\nA hib\u00e1s Sketch-et t\u00e1vol\u00edtsd el\\na(z) {1} mapp\u00e1b\u00f3l\!
|
||||
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=A "{0}" v\u00e1zlat nem haszn\u00e1lhat\u00f3.\nA v\u00e1zlatok neve csak angol abc bet\u0171it \u00e9s sz\u00e1mokat tartalmazhat\n(csak ASCII sz\u00f3k\u00f6z n\u00e9lk\u00fcl \u00e9s nem kezd\u0151dhet sz\u00e1mmal). Ahhoz,\nhogy megszabaduljon ett\u0151l az \u00fczenett\u0151t, t\u00e1vol\u00edtsa el a v\u00e1zlatot innen\:\n{1}
|
||||
|
||||
#: Sketch.java:1755
|
||||
!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
|
||||
@ -1410,7 +1415,7 @@ The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic
|
||||
!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=
|
||||
|
||||
#: Base.java:259
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A SketchBook mappa nem \u00e9rhet\u0151 el.\\nAz alap\u00e9rtelmezett hely lesz kiv\u00e1lasztva, \u00e9s\\nitt l\u00e9trehozva a sketch mappa.
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=A v\u00e1zlatf\u00fczet mappa m\u00e1r nem l\u00e9tezik.\nAz Arduino \u00e1tv\u00e1lt az alap\u00e9rtelmezett v\u00e1zlatf\u00fczet\nhelyre, \u00e9s k\u00e9sz\u00edt egy \u00faj v\u00e1zlatf\u00fczet mapp\u00e1t, ha\nsz\u00fcks\u00e9ges. Az Arduino ekkor befejezi mag\u00e1r\u00f3l a\nharmadik szem\u00e9lyk\u00e9nt val\u00f3 eml\u00edt\u00e9st.
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514
|
||||
!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=
|
||||
@ -1502,7 +1507,7 @@ Time\ for\ a\ Break=Itt az id\u0151 sz\u00fcnetet tartani
|
||||
!Update=
|
||||
|
||||
#: Preferences.java:428
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Sketch friss\u00edt\u00e9se az \u00faj kiterjeszt\u00e9ssel (.pde -> .ino)
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=V\u00e1zlat f\u00e1jlok friss\u00edt\u00e9s \u00faj kiterjeszt\u00e9sre ment\u00e9sn\u00e9l (.pde -> .ino)
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167
|
||||
!Updating\ list\ of\ installed\ libraries=
|
||||
@ -1656,20 +1661,20 @@ Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
|
||||
#: Base.java:1888
|
||||
You\ forgot\ your\ sketchbook=Felejtsd el a SketchBook-odat
|
||||
You\ forgot\ your\ sketchbook=Felejtse el a v\u00e1zlatf\u00fczet\u00e9t
|
||||
|
||||
#: ../../../processing/app/AbstractMonitor.java:92
|
||||
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
|
||||
|
||||
#: Base.java:536
|
||||
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Meghaladtad az egy napra jut\u00f3 \u00faj Sketch-ek l\u00e9trehoz\u00e1si\\n\nsz\u00e1mot. Nem k\u00e9ne s\u00e9t\u00e1lni egyet - pihen\u00e9s\u00fcl?
|
||||
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Meghaladta a napi korl\u00e1tot az \u00faj v\u00e1zlatok automatikus\nn\u00e9vad\u00e1s\u00e1hoz. Mi lenne, ha ink\u00e1bb s\u00e9t\u00e1lna egyet?
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=
|
||||
@ -1776,7 +1781,7 @@ upload=felt\u00f6lt\u00e9skor
|
||||
|
||||
#: Editor.java:380
|
||||
#, java-format
|
||||
!{0}\ files\ added\ to\ the\ sketch.=
|
||||
{0}\ files\ added\ to\ the\ sketch.={0} f\u00e1jl hozz\u00e1adva a v\u00e1zlathoz.
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1201
|
||||
#, java-format
|
||||
|
@ -8,13 +8,15 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# zepyur <jrvezh@yahoo.com>, 2012
|
||||
# Levon <deimusmeister@gmail.com>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Armenian (http://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -25,69 +27,72 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
msgid " (requires restart of Arduino)"
|
||||
msgstr ""
|
||||
msgstr "(պահանջվում է Արդուինոի վերագործարկում)"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
msgid " Not used: {0}"
|
||||
msgstr ""
|
||||
msgstr "Չօգտագործված: {0}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:525
|
||||
#, java-format
|
||||
msgid " Used: {0}"
|
||||
msgstr "Օգտագործված: {0}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
"'arch' folder is no longer supported! See http://goo.gl/gfFJzU for more "
|
||||
"information"
|
||||
msgstr ""
|
||||
msgstr "'arch' պանակը այլեւս չի աջակվում! Լրացուցիչ ինֆորմացիայի համար այցելեք http://goo.gl/gfFJzU"
|
||||
|
||||
#: Preferences.java:478
|
||||
msgid "(edit only when Arduino is not running)"
|
||||
msgstr ""
|
||||
msgstr "(խմբագրել միայն երբ Արդուինոն միացված է)"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
msgid "(legacy)"
|
||||
msgstr ""
|
||||
msgstr "(ժառանգություն)"
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
msgid "--curdir no longer supported"
|
||||
msgstr ""
|
||||
msgstr "--curdir -ը այլեւս չի աջակցվում"
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
msgid ""
|
||||
"--verbose, --verbose-upload and --verbose-build can only be used together "
|
||||
"with --verify or --upload"
|
||||
msgstr ""
|
||||
msgstr "--verbose, --verbose-upload եւ --verbose-build կարող կիրառվել միասին միայն --verify կամ --upload -ի հետ"
|
||||
|
||||
#: Sketch.java:746
|
||||
msgid ".pde -> .ino"
|
||||
msgstr ""
|
||||
msgstr ".pde -> .ino"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
|
||||
#, java-format
|
||||
msgid "<br/>Update available for some of your {0}boards{1}"
|
||||
msgstr ""
|
||||
msgstr "<br/>Թարմացում է հասանելի ձեր որոշ {0}հարթակների համար{1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66
|
||||
#, java-format
|
||||
msgid ""
|
||||
"<br/>Update available for some of your {0}boards{1} and {2}libraries{3}"
|
||||
msgstr ""
|
||||
msgstr "<br/>Թարմացում է հասանելի ձեր որոշ {0}հարթակների{1} եւ {2}գրադարանների համար{3}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62
|
||||
#, java-format
|
||||
msgid "<br/>Update available for some of your {0}libraries{1}"
|
||||
msgstr ""
|
||||
msgstr "<br/>Թարմացում է հասանելի ձեր որոշ {0}գրադարանների համար{1}"
|
||||
|
||||
#: Editor.java:2053
|
||||
msgid ""
|
||||
@ -95,37 +100,37 @@ msgid ""
|
||||
" 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."
|
||||
msgstr ""
|
||||
msgstr "<html> <head> <style type=\"text/css\">b { font: 13pt \"Lucida Grande\" }p { font: 11pt \"Lucida Grande\"; margin-top: 8px }</style> </head><b>Ցանկանում եք պահպանել փոփոխությունները այս գծանկարի համար<BR> նախկան փակելը?</b><p>Եթե ոչ, ապա ձեր փոփոխությունները կչեղարկվեն:"
|
||||
|
||||
#: Sketch.java:398
|
||||
#, java-format
|
||||
msgid "A file named \"{0}\" already exists in \"{1}\""
|
||||
msgstr ""
|
||||
msgstr "\"{0}\" անունով ֆայլը արդեն գոյություն ունի \"{1}\"-ում"
|
||||
|
||||
#: Editor.java:2169
|
||||
#, java-format
|
||||
msgid "A folder named \"{0}\" already exists. Can't open sketch."
|
||||
msgstr ""
|
||||
msgstr "\"{0}\" անունով պանակը արդեն գոյություն ունի: Հնարավոր չէ բացել գծանկարը:"
|
||||
|
||||
#: Base.java:2690
|
||||
#, java-format
|
||||
msgid "A library named {0} already exists"
|
||||
msgstr ""
|
||||
msgstr "{0} անունով գրադարանը արդեն գոյություն ունի"
|
||||
|
||||
#: UpdateCheck.java:103
|
||||
msgid ""
|
||||
"A new version of Arduino is available,\n"
|
||||
"would you like to visit the Arduino download page?"
|
||||
msgstr ""
|
||||
msgstr "Արդուինոի նոր տարբերակը արդեն հասանելի է,\nցանկանում եք այցելել Արդուինոի ներբեռման էջը?"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid "A newer {0} package is available"
|
||||
msgstr ""
|
||||
msgstr "Նոր {0} փաթեթը հասանելի է"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
msgid "A subfolder of your sketchbook is not a valid library"
|
||||
msgstr ""
|
||||
msgstr "Ձեր գծագրի ենթապանակը արդի գրադարան չէ"
|
||||
|
||||
#: Editor.java:1116
|
||||
msgid "About Arduino"
|
||||
@ -133,7 +138,7 @@ msgstr "Արդուինոյի մասին"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
msgid "Add .ZIP Library..."
|
||||
msgstr ""
|
||||
msgstr "Ավելացնել .ZIP գրադարան..."
|
||||
|
||||
#: Editor.java:650
|
||||
msgid "Add File..."
|
||||
@ -141,56 +146,56 @@ msgstr "Ավելացնել նիշք․․․"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73
|
||||
msgid "Additional Boards Manager URLs"
|
||||
msgstr ""
|
||||
msgstr "Լրացուցիչ հարթակների կառավարիչների URL-ներ"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268
|
||||
msgid "Additional Boards Manager URLs: "
|
||||
msgstr ""
|
||||
msgstr "Լրացուցիչ հարթակների կառավարիչների URL-ներ:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:161
|
||||
msgid "Afrikaans"
|
||||
msgstr ""
|
||||
msgstr "Աֆրիկաանս"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:96
|
||||
msgid "Albanian"
|
||||
msgstr ""
|
||||
msgstr "Ալբաներեն"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
msgid "All"
|
||||
msgstr ""
|
||||
msgstr "Բոլորը"
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
msgid ""
|
||||
"An error occurred while trying to fix the file encoding.\n"
|
||||
"Do not attempt to save this sketch as it may overwrite\n"
|
||||
"the old version. Use Open to re-open the sketch and try again.\n"
|
||||
msgstr ""
|
||||
msgstr "Սխալ տեղի ունեցավ ֆայլի կոդավորումը ուղղելու ընթացքում:\nՄի փորձեք պահպանել գծագիրը, քանի որ այն կարող վերագրել\nհին տարբարակը: Օգտագործեք վերաբացել գծագիրը եւ կրկին փորձեք:\n"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
|
||||
msgid "An error occurred while updating libraries index!"
|
||||
msgstr ""
|
||||
msgstr "Գրադարանների ինդեկսի թարմացման ժամանակ սխալ տեղի ունեցավ!"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "An error occurred while uploading the sketch"
|
||||
msgstr ""
|
||||
msgstr "Գծագիրը վերբեռնելիս սխալ տեղի ունեցավ"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
msgid "An error occurred while verifying the sketch"
|
||||
msgstr ""
|
||||
msgstr "Գծագրի ստուգման ընթացքում սխալ տեղի ունեցավ"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
msgid "An error occurred while verifying/uploading the sketch"
|
||||
msgstr ""
|
||||
msgstr "Գծագրի ստուգման/վերբեռնման ընթացքում սխալ տեղի ունեցավ"
|
||||
|
||||
#: Base.java:228
|
||||
msgid ""
|
||||
"An unknown error occurred while trying to load\n"
|
||||
"platform-specific code for your machine."
|
||||
msgstr ""
|
||||
msgstr "Անհայտ սխալ է տեղի ունեցել պլատֆորմին առանձնահատուկ\nկոդի ձեր համակարգչին բեռնման ընթացքում:"
|
||||
|
||||
#: Preferences.java:85
|
||||
msgid "Arabic"
|
||||
@ -198,181 +203,181 @@ msgstr "Արաբերեն"
|
||||
|
||||
#: Preferences.java:86
|
||||
msgid "Aragonese"
|
||||
msgstr ""
|
||||
msgstr "Արագոներեն"
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
msgid "Archive Sketch"
|
||||
msgstr ""
|
||||
msgstr "Արխիվացնել գծանկարը"
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
msgid "Archive sketch as:"
|
||||
msgstr ""
|
||||
msgstr "Արխիվացնել գծանկարը որպես:"
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
msgid "Archive sketch canceled."
|
||||
msgstr ""
|
||||
msgstr "Գծանկարի արխիվացումը չեղարկել"
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
msgid ""
|
||||
"Archiving the sketch has been canceled because\n"
|
||||
"the sketch couldn't save properly."
|
||||
msgstr ""
|
||||
msgstr "Գծանկարի արխիվացումը չեղարկվել է, քանի որ\nգծանկարը հնարավոր չէր ճիշտ պահել"
|
||||
|
||||
#: ../../../processing/app/I18n.java:83
|
||||
msgid "Arduino ARM (32-bits) Boards"
|
||||
msgstr ""
|
||||
msgstr "Արդուինո ARM (32-bit) հարթակները"
|
||||
|
||||
#: ../../../processing/app/I18n.java:82
|
||||
msgid "Arduino AVR Boards"
|
||||
msgstr ""
|
||||
msgstr "Արդուինո AVR հարթակներ"
|
||||
|
||||
#: Editor.java:2137
|
||||
msgid ""
|
||||
"Arduino can only open its own sketches\n"
|
||||
"and other files ending in .ino or .pde"
|
||||
msgstr ""
|
||||
msgstr "Արդուինով կարող է բացել միայն սեփական գծանկարները\nեւ այլ ֆայլեր .ino կամ .pde վերջավորությամբ"
|
||||
|
||||
#: Base.java:1682
|
||||
msgid ""
|
||||
"Arduino cannot run because it could not\n"
|
||||
"create a folder to store your settings."
|
||||
msgstr ""
|
||||
msgstr "Արդուինոն չի կարող աշխատել, քանի որ հնարավոր չէր\nստելծել պանակ ձեր կարգավորումները պահելու համար:"
|
||||
|
||||
#: Base.java:1889
|
||||
msgid ""
|
||||
"Arduino cannot run because it could not\n"
|
||||
"create a folder to store your sketchbook."
|
||||
msgstr ""
|
||||
msgstr "Արդուինոն չի կարող աշխատել, քանի որ հնարավոր չէր\nստելծել պանակ ձեր գծագրերի գիրքը պահելու համար:"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:471
|
||||
msgid "Arduino: "
|
||||
msgstr ""
|
||||
msgstr "Արդուինո:"
|
||||
|
||||
#: Sketch.java:588
|
||||
#, java-format
|
||||
msgid "Are you sure you want to delete \"{0}\"?"
|
||||
msgstr ""
|
||||
msgstr "Վստահ եք որ ցանկանում եք ջնջել \"{0}\"?"
|
||||
|
||||
#: Sketch.java:587
|
||||
msgid "Are you sure you want to delete this sketch?"
|
||||
msgstr ""
|
||||
msgstr "Վստահ եք որ ցանկանում եք ջնջել այս գծանկարը ?"
|
||||
|
||||
#: ../../../processing/app/Base.java:356
|
||||
msgid "Argument required for --board"
|
||||
msgstr ""
|
||||
msgstr "--board -ի համար արգումենտ է պահանջվում"
|
||||
|
||||
#: ../../../processing/app/Base.java:363
|
||||
msgid "Argument required for --port"
|
||||
msgstr ""
|
||||
msgstr "--port -ի համար արգումենտ է պահանջվում"
|
||||
|
||||
#: ../../../processing/app/Base.java:377
|
||||
msgid "Argument required for --pref"
|
||||
msgstr ""
|
||||
msgstr "--pref -ի համար արգումենտ է պահանջվում"
|
||||
|
||||
#: ../../../processing/app/Base.java:384
|
||||
msgid "Argument required for --preferences-file"
|
||||
msgstr ""
|
||||
msgstr "--preferences-file -ի համար արգումենտ է պահանջվում"
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:76
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:83
|
||||
#, java-format
|
||||
msgid "Argument required for {0}"
|
||||
msgstr ""
|
||||
msgstr "{0}-ի համար արգումենտ է պահանջվում"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:137
|
||||
msgid "Armenian"
|
||||
msgstr ""
|
||||
msgstr "Հայերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:138
|
||||
msgid "Asturian"
|
||||
msgstr ""
|
||||
msgstr "Աստուրերեն"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:145
|
||||
msgid "Authorization required"
|
||||
msgstr ""
|
||||
msgstr "Լիազորություն է պահանջվում"
|
||||
|
||||
#: tools/AutoFormat.java:91
|
||||
msgid "Auto Format"
|
||||
msgstr ""
|
||||
msgstr "Ավտոֆորմատավորում"
|
||||
|
||||
#: tools/AutoFormat.java:944
|
||||
msgid "Auto Format finished."
|
||||
msgstr ""
|
||||
msgstr "Ավտոֆորմատավորումը ավարտված է:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457
|
||||
msgid "Auto-detect proxy settings"
|
||||
msgstr ""
|
||||
msgstr "Պրոքսի պարամետրերի ավտոմատ ճանաչում"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474
|
||||
msgid "Automatic proxy configuration URL:"
|
||||
msgstr ""
|
||||
msgstr "Ավտոմատ պրոքսի կոնֆիգուրացիայի URL:"
|
||||
|
||||
#: SerialMonitor.java:110
|
||||
msgid "Autoscroll"
|
||||
msgstr ""
|
||||
msgstr "Ավտոգալարում"
|
||||
|
||||
#: Editor.java:2619
|
||||
#, java-format
|
||||
msgid "Bad error line: {0}"
|
||||
msgstr ""
|
||||
msgstr "Վատ սխալի տող: {0}"
|
||||
|
||||
#: Editor.java:2136
|
||||
msgid "Bad file selected"
|
||||
msgstr ""
|
||||
msgstr "Վատ ֆայլ է ընտրված"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
msgid "Basque"
|
||||
msgstr ""
|
||||
msgstr "Բասկերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:139
|
||||
msgid "Belarusian"
|
||||
msgstr ""
|
||||
msgstr "Բելառուսերեն"
|
||||
|
||||
#: ../../../processing/app/Base.java:1433
|
||||
#: ../../../processing/app/Editor.java:707
|
||||
msgid "Board"
|
||||
msgstr ""
|
||||
msgstr "Հարթակ"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62
|
||||
#, java-format
|
||||
msgid "Board {0} (platform {1}, package {2}) is unknown"
|
||||
msgstr ""
|
||||
msgstr "Հարթակ {0} (պլատֆորմ {1}, փաթեթ {2}) -ը ճանաչված չէ"
|
||||
|
||||
#: ../../../processing/app/debug/TargetBoard.java:42
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Board {0}:{1}:{2} doesn''t define a ''build.board'' preference. Auto-set to:"
|
||||
" {3}"
|
||||
msgstr ""
|
||||
msgstr " {0}:{1}:{2} հարթակը չի սահմանում ''build.board'' կարգավորումը: Ավտոմատ նշանակում: {3}"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:472
|
||||
msgid "Board: "
|
||||
msgstr ""
|
||||
msgstr "Հարթակ:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
msgid "Boards Manager"
|
||||
msgstr ""
|
||||
msgstr "Հարթակների կառավարիչ"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1320
|
||||
msgid "Boards Manager..."
|
||||
msgstr ""
|
||||
msgstr "Հարթակների կառավարիչ..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328
|
||||
msgid "Boards included in this package:"
|
||||
msgstr ""
|
||||
msgstr "Հարթակները ներառված են այս փաթեթում:"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1273
|
||||
#, java-format
|
||||
msgid "Bootloader file specified but missing: {0}"
|
||||
msgstr ""
|
||||
msgstr "Bootloader ֆայլը նշված է սակայն գտնված չէ: {0}"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:140
|
||||
msgid "Bosnian"
|
||||
msgstr ""
|
||||
msgstr "Բոսներեն"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Both NL & CR"
|
||||
msgstr ""
|
||||
msgstr "Երկուսն էլ NL & CR"
|
||||
|
||||
#: Preferences.java:81
|
||||
msgid "Browse"
|
||||
@ -380,45 +385,45 @@ msgstr "Զննել"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1530
|
||||
msgid "Build options changed, rebuilding all"
|
||||
msgstr ""
|
||||
msgstr "Կառուցման տարբերակները փոփոխվել են, վերակառուցել ամբողջը"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1210
|
||||
msgid "Built-in Examples"
|
||||
msgstr ""
|
||||
msgstr "Ներդրվաց օրինակներ"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:80
|
||||
msgid "Bulgarian"
|
||||
msgstr ""
|
||||
msgstr "Բուլղարերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:141
|
||||
msgid "Burmese (Myanmar)"
|
||||
msgstr ""
|
||||
msgstr "Բուռմերեն (Մյանմար)"
|
||||
|
||||
#: Editor.java:708
|
||||
msgid "Burn Bootloader"
|
||||
msgstr ""
|
||||
msgstr "Վառել Bootloader-ը"
|
||||
|
||||
#: Editor.java:2504
|
||||
msgid "Burning bootloader to I/O Board (this may take a minute)..."
|
||||
msgstr ""
|
||||
msgstr "bootloader-ը վառվում է I/O հարթակին (սա կարող է տեւել միքանի րոպե)..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77
|
||||
msgid "CRC doesn't match. File is corrupted."
|
||||
msgstr ""
|
||||
msgstr "CRC -ին չի համապատասխանում: Ֆայլը վնասված է:"
|
||||
|
||||
#: ../../../processing/app/Base.java:379
|
||||
#, java-format
|
||||
msgid "Can only pass one of: {0}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր է փոխանցել {0}-ից միայն մեկը"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
msgid "Can't find the sketch in the specified path"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ գտնել գծանկար նշված ճանապարհին"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:92
|
||||
msgid "Canadian French"
|
||||
msgstr ""
|
||||
msgstr "Կանադական ֆրանսերեն"
|
||||
|
||||
#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2064 Editor.java:2145 Editor.java:2465
|
||||
@ -427,15 +432,15 @@ msgstr "Չեղարկել"
|
||||
|
||||
#: Sketch.java:455
|
||||
msgid "Cannot Rename"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ վերանվանել"
|
||||
|
||||
#: ../../../processing/app/Base.java:465
|
||||
msgid "Cannot specify any sketch files"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ նշել որեւէ գծագրի ֆայլ"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Carriage return"
|
||||
msgstr ""
|
||||
msgstr "Նոր տող"
|
||||
|
||||
#: Preferences.java:87
|
||||
msgid "Catalan"
|
||||
@ -443,23 +448,23 @@ msgstr "Կատալոներեն"
|
||||
|
||||
#: Preferences.java:419
|
||||
msgid "Check for updates on startup"
|
||||
msgstr ""
|
||||
msgstr "Վերսկսման ժամանակ ստուգել թարմացումները"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:142
|
||||
msgid "Chinese (China)"
|
||||
msgstr ""
|
||||
msgstr "Չիներեն (Չինաստան)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
msgid "Chinese (Taiwan)"
|
||||
msgstr ""
|
||||
msgstr "Չիներեն (Թայվան)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:143
|
||||
msgid "Chinese (Taiwan) (Big5)"
|
||||
msgstr ""
|
||||
msgstr "Chinese (Taiwan) (Big5)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98
|
||||
msgid "Click for a list of unofficial boards support URLs"
|
||||
msgstr ""
|
||||
msgstr "Սեղմեք ոչ օֆիցիալ հարթակների սպասարկման URL-ների ցուցակի համար"
|
||||
|
||||
#: Editor.java:521 Editor.java:2024
|
||||
msgid "Close"
|
||||
@ -467,15 +472,15 @@ msgstr "Փակել"
|
||||
|
||||
#: Editor.java:1208 Editor.java:2749
|
||||
msgid "Comment/Uncomment"
|
||||
msgstr ""
|
||||
msgstr "Մեկնաբանել/Մեկնաբանությունը չեղարկել"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266
|
||||
msgid "Compiler warnings: "
|
||||
msgstr ""
|
||||
msgstr "Կոմպիլիացիայի նախազգուշացումներ:"
|
||||
|
||||
#: Sketch.java:1608 Editor.java:1890
|
||||
msgid "Compiling sketch..."
|
||||
msgstr ""
|
||||
msgstr "Գծանկարը կոմպիլիացվում է..."
|
||||
|
||||
#: Editor.java:1157 Editor.java:2707
|
||||
msgid "Copy"
|
||||
@ -483,42 +488,42 @@ msgstr "Պատճենել"
|
||||
|
||||
#: Editor.java:1177 Editor.java:2723
|
||||
msgid "Copy as HTML"
|
||||
msgstr ""
|
||||
msgstr "Պատճենել որպես HTML"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:455
|
||||
msgid "Copy error messages"
|
||||
msgstr ""
|
||||
msgstr "Պատճենման սխալի հաղորդագրություններ"
|
||||
|
||||
#: Editor.java:1165 Editor.java:2715
|
||||
msgid "Copy for Forum"
|
||||
msgstr ""
|
||||
msgstr "Պատճենել ֆորումի համար"
|
||||
|
||||
#: Sketch.java:1089
|
||||
#, java-format
|
||||
msgid "Could not add ''{0}'' to the sketch."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր ավելացնել ''{0}'' գծագրին:"
|
||||
|
||||
#: Editor.java:2188
|
||||
msgid "Could not copy to a proper location."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր պատճենել համապատասխան վայր"
|
||||
|
||||
#: Editor.java:2179
|
||||
msgid "Could not create the sketch folder."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր ստեղծել գծագրի պանակը"
|
||||
|
||||
#: Editor.java:2206
|
||||
msgid "Could not create the sketch."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր ստեղծել գծագիրը"
|
||||
|
||||
#: Sketch.java:617
|
||||
#, java-format
|
||||
msgid "Could not delete \"{0}\"."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր ջնջել \"{0}\"-ը:"
|
||||
|
||||
#: Sketch.java:1066
|
||||
#, java-format
|
||||
msgid "Could not delete the existing ''{0}'' file."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր ջնջել գոյություն ունեցող \"{0}\" ֆայլը:"
|
||||
|
||||
#: Base.java:2533 Base.java:2556
|
||||
#, java-format
|
||||
@ -528,75 +533,75 @@ msgstr "{0}-ն չեղավ ջնջել"
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:74
|
||||
#, java-format
|
||||
msgid "Could not find boards.txt in {0}. Is it pre-1.5?"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր գտնել boards.txt -ը {0} -ում. Դա pre-1.5 է ?"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
|
||||
#, java-format
|
||||
msgid "Could not find tool {0}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր գտնել {0} գործիքը"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
|
||||
#, java-format
|
||||
msgid "Could not find tool {0} from package {1}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր գտնել {0} գործիքը {1} փաթեթից"
|
||||
|
||||
#: Base.java:1934
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Could not open the URL\n"
|
||||
"{0}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր բացել հետեւյալ URL-ը\n{0}"
|
||||
|
||||
#: Base.java:1958
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Could not open the folder\n"
|
||||
"{0}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր բացել հետեւյալ պանակը\n{0}"
|
||||
|
||||
#: Sketch.java:1769
|
||||
msgid ""
|
||||
"Could not properly re-save the sketch. You may be in trouble at this point,\n"
|
||||
"and it might be time to copy and paste your code to another text editor."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր հարկին վերապահել գծագիրը: Դուք հնարավոր է պրոբլեմներ ունենաք,\nԵւ հնարավոր է ժամանակն է պատճենել կոդը այլ տեքստային խմբագրիչում:"
|
||||
|
||||
#: Sketch.java:1768
|
||||
msgid "Could not re-save sketch"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր վերապահել գծագիրը"
|
||||
|
||||
#: Theme.java:52
|
||||
msgid ""
|
||||
"Could not read color theme settings.\n"
|
||||
"You'll need to reinstall Arduino."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր կարդալ գունային թեմայի կարգավորումները:\nԴուք պետք է վերատեղադրեք Արդուինոն:"
|
||||
|
||||
#: Preferences.java:219
|
||||
msgid ""
|
||||
"Could not read default settings.\n"
|
||||
"You'll need to reinstall Arduino."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր կարդալ լռելյայն կարգավորումները:\nԴուք պետք է վերատեղադրեք Արդուինոն:"
|
||||
|
||||
#: Base.java:2482
|
||||
#, java-format
|
||||
msgid "Could not remove old version of {0}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր ջնջել {0}-ի հին տարբերակը "
|
||||
|
||||
#: Sketch.java:483 Sketch.java:528
|
||||
#, java-format
|
||||
msgid "Could not rename \"{0}\" to \"{1}\""
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր վերանվանել \"{0}\"-ը \"{1}\"-ի"
|
||||
|
||||
#: Sketch.java:475
|
||||
msgid "Could not rename the sketch. (0)"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր վերանվանել գծագիրը: (0)"
|
||||
|
||||
#: Sketch.java:496
|
||||
msgid "Could not rename the sketch. (1)"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր վերանվանել գծագիրը: (1)"
|
||||
|
||||
#: Sketch.java:503
|
||||
msgid "Could not rename the sketch. (2)"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր վերանվանել գծագիրը: (2)"
|
||||
|
||||
#: Base.java:2492
|
||||
#, java-format
|
||||
@ -605,71 +610,71 @@ msgstr "{0}-ն չեղավ փոխարինել"
|
||||
|
||||
#: tools/Archiver.java:74
|
||||
msgid "Couldn't archive sketch"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր արխիվացնել գծագիրը"
|
||||
|
||||
#: Sketch.java:1647
|
||||
msgid "Couldn't determine program size: {0}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր որոշել գծագրի չափը: {0}"
|
||||
|
||||
#: Sketch.java:616
|
||||
msgid "Couldn't do it"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէր անել դա"
|
||||
|
||||
#: debug/BasicUploader.java:209
|
||||
msgid ""
|
||||
"Couldn't find a Board on the selected port. Check that you have the correct "
|
||||
"port selected. If it is correct, try pressing the board's reset button "
|
||||
"after initiating the upload."
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չեղավ գտնել հարթակ նշված պորտում: Համոզվեք որ ճիշտ պորտ եք նշել: Եթե այն ճիշտ է, փորձեք սեղմել հարթակի վերագործարկման կոճակը վերբեռնումը սկսելուց առաջ:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:82
|
||||
msgid "Croatian"
|
||||
msgstr ""
|
||||
msgstr "Խորվաթերեն"
|
||||
|
||||
#: Editor.java:1149 Editor.java:2699
|
||||
msgid "Cut"
|
||||
msgstr ""
|
||||
msgstr "Կտրել"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:119
|
||||
msgid "Czech (Czech Republic)"
|
||||
msgstr ""
|
||||
msgstr "Չեխերեն (Չեխիա)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:120
|
||||
msgid "Danish (Denmark)"
|
||||
msgstr ""
|
||||
msgstr "Դանիերեն (Դանիա)"
|
||||
|
||||
#: Editor.java:1224 Editor.java:2765
|
||||
msgid "Decrease Indent"
|
||||
msgstr ""
|
||||
msgstr "Փոքրացնել տարածությունը"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
msgid "Default"
|
||||
msgstr ""
|
||||
msgstr "Լռելյայն"
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
msgid "Delete"
|
||||
msgstr ""
|
||||
msgstr "Ջնջէլ"
|
||||
|
||||
#: debug/Uploader.java:199
|
||||
msgid ""
|
||||
"Device is not responding, check the right serial port is selected or RESET "
|
||||
"the board right before exporting"
|
||||
msgstr ""
|
||||
msgstr "Սարքը չի արձագանքում, ստուգեք արդյոք ճիշտ պորտն է նշված կամ վերագործարկեք հարթակը արտահանելուց առաջ"
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
msgid "Discard all changes and reload sketch?"
|
||||
msgstr ""
|
||||
msgstr "Չեղարկել բոլոր փոփոխությունները եւ վերբեռնել գծագիրը?"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:438
|
||||
msgid "Display line numbers"
|
||||
msgstr ""
|
||||
msgstr "Ցուցադրել տողերի համարները"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Do you want to remove {0}?\n"
|
||||
"If you do so you won't be able to use {0} any more."
|
||||
msgstr ""
|
||||
msgstr "Ցանկանում եք ջնջել {0}-ը?\nԵթե ցանկանում եք, ապա {0}-ը օգտագործել հնարավոր այլևս չի լինի:"
|
||||
|
||||
#: Editor.java:2064
|
||||
msgid "Don't Save"
|
||||
@ -677,59 +682,59 @@ msgstr "Չհիշել"
|
||||
|
||||
#: Editor.java:2275 Editor.java:2311
|
||||
msgid "Done Saving."
|
||||
msgstr ""
|
||||
msgstr "Պահումն ավարտված է"
|
||||
|
||||
#: Editor.java:2510
|
||||
msgid "Done burning bootloader."
|
||||
msgstr ""
|
||||
msgstr "bootloader վառումն ավարտված է:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:507
|
||||
#: ../../../processing/app/BaseNoGui.java:552
|
||||
msgid "Done compiling"
|
||||
msgstr ""
|
||||
msgstr "Կոմպիլիացիան ավարտված է"
|
||||
|
||||
#: Editor.java:1911 Editor.java:1928
|
||||
msgid "Done compiling."
|
||||
msgstr ""
|
||||
msgstr "Կոմպիլիացիան ավարտված է:"
|
||||
|
||||
#: Editor.java:2564
|
||||
msgid "Done printing."
|
||||
msgstr ""
|
||||
msgstr "Տպելն ավարտված է"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
msgid "Done uploading"
|
||||
msgstr ""
|
||||
msgstr "Վերբեռնումն ավարտված է"
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
msgid "Done uploading."
|
||||
msgstr ""
|
||||
msgstr "Վերբեռնումն ավարտված է:"
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105
|
||||
#, java-format
|
||||
msgid "Downloaded {0}kb of {1}kb."
|
||||
msgstr ""
|
||||
msgstr "Ներբեռնված է {0}kb {1}kb-ից:"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107
|
||||
msgid "Downloading boards definitions."
|
||||
msgstr ""
|
||||
msgstr "Ներբեռնվում է հարթակի սահմանումները:"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86
|
||||
msgid "Downloading libraries index..."
|
||||
msgstr ""
|
||||
msgstr "Ներբեռնվում է գրադարանների ինդեկսը..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115
|
||||
#, java-format
|
||||
msgid "Downloading library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Ներբեռնվում է {0} գրադարանը"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318
|
||||
msgid "Downloading platforms index..."
|
||||
msgstr ""
|
||||
msgstr "Ներբեռնվում է պլատֆորմների ինդեկսը..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113
|
||||
#, java-format
|
||||
msgid "Downloading tools ({0}/{1})."
|
||||
msgstr ""
|
||||
msgstr "Ներբեռնվում են գործիքները ({0}/{1})."
|
||||
|
||||
#: Preferences.java:91
|
||||
msgid "Dutch"
|
||||
@ -737,11 +742,11 @@ msgstr "Հոլանդերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
msgid "Dutch (Netherlands)"
|
||||
msgstr ""
|
||||
msgstr "Հոլանդերեն (Հոլանդիա)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1309
|
||||
msgid "Edison Help"
|
||||
msgstr ""
|
||||
msgstr "Եդիսոնի օգնություն"
|
||||
|
||||
#: Editor.java:1130
|
||||
msgid "Edit"
|
||||
@ -749,15 +754,15 @@ msgstr "Խմբագրել"
|
||||
|
||||
#: Preferences.java:370
|
||||
msgid "Editor font size: "
|
||||
msgstr ""
|
||||
msgstr "Խմբագրիչի տառատեսակի չափը:"
|
||||
|
||||
#: Preferences.java:353
|
||||
msgid "Editor language: "
|
||||
msgstr ""
|
||||
msgstr "Խմբագրիչի լեզուն:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322
|
||||
msgid "Enable Code Folding"
|
||||
msgstr ""
|
||||
msgstr "Ակտիվացնել կոդի փաթաթումը"
|
||||
|
||||
#: Preferences.java:92
|
||||
msgid "English"
|
||||
@ -765,16 +770,16 @@ msgstr "Անգլերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:145
|
||||
msgid "English (United Kingdom)"
|
||||
msgstr ""
|
||||
msgstr "Անգլերեն (Միացյալ Թագավորություն)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271
|
||||
msgid "Enter a comma separated list of urls"
|
||||
msgstr ""
|
||||
msgstr "Մուտքագրեք ստորակետով բաժանված url-ների ցանկը"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96
|
||||
msgid "Enter additional URLs, one for each row"
|
||||
msgstr ""
|
||||
msgstr "Մուտքագրել լրացուցիչ URL-ներ, մեկական ամեն տողում"
|
||||
|
||||
#: Editor.java:1062
|
||||
msgid "Environment"
|
||||
@ -788,110 +793,115 @@ msgstr "Սխալ"
|
||||
|
||||
#: Sketch.java:1065 Sketch.java:1088
|
||||
msgid "Error adding file"
|
||||
msgstr ""
|
||||
msgstr "Ֆայլի ավելացման սխալ"
|
||||
|
||||
#: debug/Compiler.java:369
|
||||
msgid "Error compiling."
|
||||
msgstr ""
|
||||
msgstr "Կոմպիլիացիայի սխալ:"
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113
|
||||
#, java-format
|
||||
msgid "Error downloading {0}"
|
||||
msgstr ""
|
||||
msgstr "Ներբեռման սխալ {0}"
|
||||
|
||||
#: Base.java:1674
|
||||
msgid "Error getting the Arduino data folder."
|
||||
msgstr ""
|
||||
msgstr "Սխալ Արդունոի տվյալներ պանակը բեռնելիս:"
|
||||
|
||||
#: Serial.java:593
|
||||
#, java-format
|
||||
msgid "Error inside Serial.{0}()"
|
||||
msgstr ""
|
||||
msgstr "Սխալ սերիալում.{0}()"
|
||||
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:95
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:106
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:117
|
||||
#, java-format
|
||||
msgid "Error loading {0}"
|
||||
msgstr ""
|
||||
msgstr "Բեռնման սխալ {0}"
|
||||
|
||||
#: Serial.java:181
|
||||
#, java-format
|
||||
msgid "Error opening serial port ''{0}''."
|
||||
msgstr ""
|
||||
msgstr "Սերիալ պորտի բացման սխալ ''{0}'':"
|
||||
|
||||
#: ../../../processing/app/Serial.java:119
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Error opening serial port ''{0}''. Try consulting the documentation at "
|
||||
"http://playground.arduino.cc/Linux/All#Permission"
|
||||
msgstr ""
|
||||
msgstr "Սխալ ''{0}' սերիալ պորտը բացելիս: Նայիր փաստաթղթերը այտեղ http://playground.arduino.cc/Linux/All#Permission"
|
||||
|
||||
#: Preferences.java:277
|
||||
msgid "Error reading preferences"
|
||||
msgstr ""
|
||||
msgstr "Սխալ հղումները կարդալիս"
|
||||
|
||||
#: Preferences.java:279
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Error reading the preferences file. Please delete (or move)\n"
|
||||
"{0} and restart Arduino."
|
||||
msgstr ""
|
||||
msgstr "Սխալ կարգավորումների ֆայլը կարդալիս: Խնդրում ենք ջնջել(կամ մաքրել) {0}-ը և վերագործարկեք Արդուինոն:"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245
|
||||
msgid "Error running post install script"
|
||||
msgstr ""
|
||||
msgstr "Սխալ հետ-տեղադրման սկրիպտը աշխատացնելիս"
|
||||
|
||||
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
|
||||
msgid "Error starting discovery method: "
|
||||
msgstr ""
|
||||
msgstr "Սխալ ճանաչման մեթոդը սկսելուց:"
|
||||
|
||||
#: Serial.java:125
|
||||
#, java-format
|
||||
msgid "Error touching serial port ''{0}''."
|
||||
msgstr ""
|
||||
msgstr "Սխալ ''{0}'' սերիալ պորտի վերաբերյալ:"
|
||||
|
||||
#: Editor.java:2512 Editor.java:2516 Editor.java:2520
|
||||
msgid "Error while burning bootloader."
|
||||
msgstr ""
|
||||
msgstr "Սխալ bootloader-ի վառման ընթացքում:"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2555
|
||||
msgid "Error while burning bootloader: missing '{0}' configuration parameter"
|
||||
msgstr ""
|
||||
msgstr "Սխալ bootloader-ը վառելիս: պակասող '{0}' կոնֆիգուրացիոն պարամետր"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1940
|
||||
msgid "Error while compiling: missing '{0}' configuration parameter"
|
||||
msgstr ""
|
||||
msgstr "Սխալ կոմպիլացիայի ընթացքում: պակասող '{0}' կոնֆիգուրացիոն պարամետր"
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
msgid "Error while loading code {0}"
|
||||
msgstr ""
|
||||
msgstr "Սխալ {0}-ի բեռնման ընթացքում"
|
||||
|
||||
#: Editor.java:2567
|
||||
msgid "Error while printing."
|
||||
msgstr "Սխալ տպելու ընթացքում:"
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
msgstr "Սխալ վերբեռնման ընթացքում"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2409
|
||||
#: ../../../processing/app/Editor.java:2449
|
||||
msgid "Error while uploading: missing '{0}' configuration parameter"
|
||||
msgstr ""
|
||||
msgstr "Սխալ վերբեռնման ընթացքում: պակասող '{0}' կոնֆիգուրացիայի պարամետր"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
msgid "Error while verifying"
|
||||
msgstr ""
|
||||
msgstr "Սխալ ստուգման ընթացքում"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
msgid "Error while verifying/uploading"
|
||||
msgstr ""
|
||||
msgstr "Սխալ ստուգման/վերբեռնման ընթացքում"
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "Estonian"
|
||||
@ -899,7 +909,7 @@ msgstr "Էստոներեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:146
|
||||
msgid "Estonian (Estonia)"
|
||||
msgstr ""
|
||||
msgstr "Էստոներեն (Էստոնիա)"
|
||||
|
||||
#: Editor.java:516
|
||||
msgid "Examples"
|
||||
@ -907,24 +917,24 @@ msgstr "Օրինակներ"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1244
|
||||
msgid "Examples from Custom Libraries"
|
||||
msgstr ""
|
||||
msgstr "Օրինակներ հարմարեցված գրադարաններից"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1222
|
||||
msgid "Examples from Libraries"
|
||||
msgstr ""
|
||||
msgstr "Օրինակներ գրադարանից"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:753
|
||||
msgid "Export canceled, changes must first be saved."
|
||||
msgstr ""
|
||||
msgstr "Արտահանումն չեղարկվեց, փոփոխությունները պետք է առաջին հերթին պահվեն:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:750
|
||||
msgid "Export compiled Binary"
|
||||
msgstr ""
|
||||
msgstr "Արտահանել կոմպիլացված բինարը"
|
||||
|
||||
#: ../../../processing/app/Base.java:416
|
||||
#, java-format
|
||||
msgid "Failed to open sketch: \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Ձախողվեց բացել գծագիրը: \"{0}\""
|
||||
|
||||
#: Editor.java:491
|
||||
msgid "File"
|
||||
@ -932,11 +942,11 @@ msgstr "Նիշք"
|
||||
|
||||
#: Preferences.java:94
|
||||
msgid "Filipino"
|
||||
msgstr ""
|
||||
msgstr "Ֆիլիպիներեն"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95
|
||||
msgid "Filter your search..."
|
||||
msgstr ""
|
||||
msgstr "Ֆիլտրել ձեր որոնումը"
|
||||
|
||||
#: FindReplace.java:124 FindReplace.java:127
|
||||
msgid "Find"
|
||||
@ -952,7 +962,7 @@ msgstr "Գտնել նախկինը"
|
||||
|
||||
#: Editor.java:1086 Editor.java:2775
|
||||
msgid "Find in Reference"
|
||||
msgstr ""
|
||||
msgstr "Փնտրել հղումներում"
|
||||
|
||||
#: Editor.java:1234
|
||||
msgid "Find..."
|
||||
@ -960,27 +970,27 @@ msgstr "Գտնել․․․"
|
||||
|
||||
#: FindReplace.java:80
|
||||
msgid "Find:"
|
||||
msgstr ""
|
||||
msgstr "Գտնել:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:147
|
||||
msgid "Finnish"
|
||||
msgstr ""
|
||||
msgstr "Ֆիններեն"
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
msgid "Fix Encoding & Reload"
|
||||
msgstr ""
|
||||
msgstr "Ուղղել կոդավորումը եւ վերաբեռնել"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:318
|
||||
msgid ""
|
||||
"For information on installing libraries, see: "
|
||||
"http://www.arduino.cc/en/Guide/Libraries\n"
|
||||
msgstr ""
|
||||
msgstr "Գրադարանները տեղադրելու մասին ինֆորմացիայի համար տես: http://www.arduino.cc/en/Guide/Libraries\n"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
|
||||
#, java-format
|
||||
msgid "Forcing reset using 1200bps open/close on port {0}"
|
||||
msgstr ""
|
||||
msgstr "Ստիպողական վերագործարկում օգտագործելով 1200bps open/close {0}-ի վրա"
|
||||
|
||||
#: Preferences.java:95
|
||||
msgid "French"
|
||||
@ -996,15 +1006,15 @@ msgstr "Գալիսերեն"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:176
|
||||
msgid "Galician (Spain)"
|
||||
msgstr ""
|
||||
msgstr "Գալիսերեն (Իսպանիա)"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1288
|
||||
msgid "Galileo Help"
|
||||
msgstr ""
|
||||
msgstr "Գալիլեոի օգնություն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:94
|
||||
msgid "Georgian"
|
||||
msgstr ""
|
||||
msgstr "Վրացերեն"
|
||||
|
||||
#: Preferences.java:97
|
||||
msgid "German"
|
||||
@ -1012,27 +1022,27 @@ msgstr "Գերմաներեն"
|
||||
|
||||
#: Editor.java:1054
|
||||
msgid "Getting Started"
|
||||
msgstr ""
|
||||
msgstr "Ինչից սկսել"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1646
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Global variables use {0} bytes ({2}%%) of dynamic memory, leaving {3} bytes "
|
||||
"for local variables. Maximum is {1} bytes."
|
||||
msgstr ""
|
||||
msgstr "Գլոբալ փոփոխականները օգտագործում են դինամիկ հիշողության {0} բայթ ({2}%%), թողնելով {3} բայց լոկալ փոփոխականներին: Առավելագույնը {1} բայթ է: "
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1651
|
||||
#, java-format
|
||||
msgid "Global variables use {0} bytes of dynamic memory."
|
||||
msgstr ""
|
||||
msgstr "Գլոբալ փոփոխականները օգտագործում են դինամիկ հիշողության {0} բայթ: "
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
msgid "Go to line"
|
||||
msgstr ""
|
||||
msgstr "Անցնել դեպի տող"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
msgid "Go to line..."
|
||||
msgstr ""
|
||||
msgstr "Անցնել դեպի տող..."
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Greek"
|
||||
@ -1040,7 +1050,7 @@ msgstr "Հունարեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:95
|
||||
msgid "Hebrew"
|
||||
msgstr ""
|
||||
msgstr "Եփրաերեն"
|
||||
|
||||
#: Editor.java:1015
|
||||
msgid "Help"
|
||||
@ -1048,21 +1058,21 @@ msgstr "Օգնություն"
|
||||
|
||||
#: Preferences.java:99
|
||||
msgid "Hindi"
|
||||
msgstr ""
|
||||
msgstr "Հինդի"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
msgid "Host name:"
|
||||
msgstr ""
|
||||
msgstr "Համակարգչի անունը:"
|
||||
|
||||
#: Sketch.java:295
|
||||
msgid ""
|
||||
"How about saving the sketch first \n"
|
||||
"before trying to rename it?"
|
||||
msgstr ""
|
||||
msgstr "Ինչ եք կարծում գծագիրը պահպանելու մասին,\nայն վերանվանելուց առաջ?"
|
||||
|
||||
#: Sketch.java:882
|
||||
msgid "How very Borges of you"
|
||||
msgstr ""
|
||||
msgstr "How very Borges of you"
|
||||
|
||||
#: Preferences.java:100
|
||||
msgid "Hungarian"
|
||||
@ -1070,15 +1080,15 @@ msgstr "Հունգարերեն"
|
||||
|
||||
#: FindReplace.java:96
|
||||
msgid "Ignore Case"
|
||||
msgstr ""
|
||||
msgstr "Անտեսել մեծատառ/փոքրատառը"
|
||||
|
||||
#: Base.java:1058
|
||||
msgid "Ignoring bad library name"
|
||||
msgstr ""
|
||||
msgstr "Անտեսվում է գրադարանի վատ անվանումը"
|
||||
|
||||
#: Base.java:1436
|
||||
msgid "Ignoring sketch with bad name"
|
||||
msgstr ""
|
||||
msgstr "Անտեսվում է գծագրի վատ անվանումը"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:736
|
||||
msgid ""
|
||||
@ -1089,20 +1099,20 @@ msgid ""
|
||||
"disable this in the Preferences dialog.\n"
|
||||
"\n"
|
||||
"Save sketch and update its extension?"
|
||||
msgstr ""
|
||||
msgstr "Արդուինո 1.0-ում լռելյայն ընդլայնումը փոխվել է\n.pde-ից .ino-ի: Նոր գծագրերը (ներառյալ նրանք որոնք ստեղծվել են Պահպանել-Որպես -ով) կօգրագործեն նոր ընդլայնումը: Արդեն\nգոյություն ունեցող գցագրերը կթարմացվեն նոր ընդլայնման \nպահպանման դեպքում, սակայն դուք կարող եք անջատել այն Կարգավորումների դիալոգում:\n\nՊահել գծագիրը եւ թարմացնել ընդլայնումը?"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:778
|
||||
msgid "Include Library"
|
||||
msgstr ""
|
||||
msgstr "Ներառել գրադարան"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
msgid "Incorrect IDE installation folder"
|
||||
msgstr ""
|
||||
msgstr "IDE-ի սխալ տեղադրման պանակ"
|
||||
|
||||
#: Editor.java:1216 Editor.java:2757
|
||||
msgid "Increase Indent"
|
||||
msgstr ""
|
||||
msgstr "Մեծացնել տարածությունը"
|
||||
|
||||
#: Preferences.java:101
|
||||
msgid "Indonesian"
|
||||
@ -1110,7 +1120,7 @@ msgstr "Ինդոնեզերեն"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
msgid "Initializing packages..."
|
||||
msgstr ""
|
||||
msgstr "Փաթեթների ինիցիալիզացիա"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81
|
||||
@ -1119,44 +1129,44 @@ msgstr ""
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
msgid "Install"
|
||||
msgstr ""
|
||||
msgstr "Տեղադրել"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
msgid "Installation completed!"
|
||||
msgstr ""
|
||||
msgstr "Տեղադրումը ավարտվեց!"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
msgid "Installed"
|
||||
msgstr ""
|
||||
msgstr "Տեղադրված"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
msgid "Installing boards..."
|
||||
msgstr ""
|
||||
msgstr "Հարտակները տեղադրվում են..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126
|
||||
#, java-format
|
||||
msgid "Installing library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Տեղադրվում է գրադարանը: {0}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134
|
||||
#, java-format
|
||||
msgid "Installing tools ({0}/{1})..."
|
||||
msgstr ""
|
||||
msgstr "Տեղադրվում են գործիքները ({0}/{1})..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
msgid "Installing..."
|
||||
msgstr ""
|
||||
msgstr "Տեղադրվում է..."
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
msgid "Invalid library found in {0}: {1}"
|
||||
msgstr ""
|
||||
msgstr "Սխալ գրադարան է հայտնաբերվել {0}-ում: {1}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66
|
||||
#, java-format
|
||||
msgid "Invalid quoting: no closing [{0}] char found."
|
||||
msgstr ""
|
||||
msgstr "Անվավեր մեջբերում: Փակման [{0}] նշանը չի հայտնաբերվել:"
|
||||
|
||||
#: Preferences.java:102
|
||||
msgid "Italian"
|
||||
@ -1176,24 +1186,24 @@ msgstr "Լատվերեն"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
msgid "Library Manager"
|
||||
msgstr ""
|
||||
msgstr "Գրադարանի կառավարիչ"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
msgid "Library added to your libraries. Check \"Include library\" menu"
|
||||
msgstr ""
|
||||
msgstr "Գրադարանը ավելացվեց ձեր գրադարանին. Ստուգեք \"Ներառել գրադարան\" մենյուն"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71
|
||||
msgid "Library can't use both 'src' and 'utility' folders."
|
||||
msgstr ""
|
||||
msgstr "Գրադարանը չի կարող օգտագործել 'src' և 'utility' պանակները:"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107
|
||||
#, java-format
|
||||
msgid "Library is already installed: {0} version {1}"
|
||||
msgstr ""
|
||||
msgstr "Գրադարանը արդեն տեղադրված է: {0} տարբերակ {1}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
msgid "Line number:"
|
||||
msgstr ""
|
||||
msgstr "Տող համար:"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Lithuaninan"
|
||||
@ -1201,28 +1211,28 @@ msgstr "Լիտվաներեն"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:132
|
||||
msgid "Loading configuration..."
|
||||
msgstr ""
|
||||
msgstr "Կոնֆիգուրացիայի բեռնում"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
msgid "Looking for recipes like {0}*{1}"
|
||||
msgstr ""
|
||||
msgstr "Փնտրվում են {0}*{1}-ին նման բաղադրամասեր"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1684
|
||||
msgid "Low memory available, stability problems may occur."
|
||||
msgstr ""
|
||||
msgstr "Քիչ հիշողություն է հասանելի, ստաբիլության խնդիրներ կարող են տեղի ունենալ:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1168
|
||||
msgid "Manage Libraries..."
|
||||
msgstr ""
|
||||
msgstr "Կառավարել գրադարանները..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466
|
||||
msgid "Manual proxy configuration"
|
||||
msgstr ""
|
||||
msgstr "Անհատական պրոքսիի կարգավորում"
|
||||
|
||||
#: Preferences.java:107
|
||||
msgid "Marathi"
|
||||
msgstr ""
|
||||
msgstr "Մարաթերեն"
|
||||
|
||||
#: Base.java:2112
|
||||
msgid "Message"
|
||||
@ -1231,19 +1241,19 @@ msgstr "Հաղորդագրություն"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81
|
||||
#, java-format
|
||||
msgid "Missing '{0}' from library in {1}"
|
||||
msgstr ""
|
||||
msgstr "Պակասող '{0}' գրադարանից {1}-ում"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
msgid "Mode not supported"
|
||||
msgstr ""
|
||||
msgstr "Ռեժիմը չի ապահովվում"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
msgid "More"
|
||||
msgstr ""
|
||||
msgstr "Ավելին"
|
||||
|
||||
#: Preferences.java:449
|
||||
msgid "More preferences can be edited directly in the file"
|
||||
msgstr ""
|
||||
msgstr "Ավել կարգավորումներ կարող են խմբագրվել անմիջապես ֆայլում"
|
||||
|
||||
#: Editor.java:2156
|
||||
msgid "Moving"
|
||||
@ -1251,36 +1261,36 @@ msgstr "Տեղափոխել"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
msgid "Multiple files not supported"
|
||||
msgstr ""
|
||||
msgstr "Բազմակի ֆայլերը չեն աջակցվում"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:520
|
||||
#, java-format
|
||||
msgid "Multiple libraries were found for \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "Բազմակի գրադարաններ են հայտնաբերվել \"{0}\"-ի համար"
|
||||
|
||||
#: ../../../processing/app/Base.java:395
|
||||
msgid "Must specify exactly one sketch file"
|
||||
msgstr ""
|
||||
msgstr "Պետք է նշել միայն մեկ գծագրի ֆայլ"
|
||||
|
||||
#: Sketch.java:282
|
||||
msgid "Name for new file:"
|
||||
msgstr ""
|
||||
msgstr "Նոր անվանում ֆայլի համար:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
msgid "Nepali"
|
||||
msgstr ""
|
||||
msgstr "Նեպալերեն"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
msgid "Network"
|
||||
msgstr ""
|
||||
msgstr "Ցանց"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
msgid "Network ports"
|
||||
msgstr ""
|
||||
msgstr "Ցանցային պորտեր"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
msgid "Network upload using programmer not supported"
|
||||
msgstr ""
|
||||
msgstr "Ցանցային վերբեռնում օգտագործելով ծրագրավորողը չի աջակցվում"
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
msgid "New"
|
||||
@ -1288,15 +1298,15 @@ msgstr "Նոր"
|
||||
|
||||
#: EditorHeader.java:292
|
||||
msgid "New Tab"
|
||||
msgstr ""
|
||||
msgstr "Նոր տաբ"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "Newline"
|
||||
msgstr ""
|
||||
msgstr "նոր տող"
|
||||
|
||||
#: EditorHeader.java:340
|
||||
msgid "Next Tab"
|
||||
msgstr ""
|
||||
msgstr "Հաջորդ տաբ"
|
||||
|
||||
#: Preferences.java:78 UpdateCheck.java:108
|
||||
msgid "No"
|
||||
@ -1304,80 +1314,80 @@ msgstr "Ոչ"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:158
|
||||
msgid "No authorization data found"
|
||||
msgstr ""
|
||||
msgstr "Լիազորման տվյալներ չեն գտնվել"
|
||||
|
||||
#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
|
||||
msgid "No changes necessary for Auto Format."
|
||||
msgstr ""
|
||||
msgstr "Ավտոմատ ֆորմատավորման համառ փոփոխություններ հարկավոր չեն:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
msgid "No command line parameters found"
|
||||
msgstr ""
|
||||
msgstr "Հրամանի տողի պարամետրերը չեն գտնվել"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:200
|
||||
msgid "No compiled sketch found"
|
||||
msgstr ""
|
||||
msgstr "Կոմպիլացված գծագիր չի գտնվել"
|
||||
|
||||
#: Editor.java:373
|
||||
msgid "No files were added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "Գծագրին ֆայլ չի ավելացվել:"
|
||||
|
||||
#: Platform.java:167
|
||||
msgid "No launcher available"
|
||||
msgstr ""
|
||||
msgstr "Գործարկիչը հասանելի չէ"
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
msgid "No line ending"
|
||||
msgstr ""
|
||||
msgstr "Չկա տողի վերջավորում"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
msgid "No parameters"
|
||||
msgstr ""
|
||||
msgstr "Պարամետրերը չկան"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453
|
||||
msgid "No proxy"
|
||||
msgstr ""
|
||||
msgstr "Պրոքսի չկա"
|
||||
|
||||
#: Base.java:541
|
||||
msgid "No really, time for some fresh air for you."
|
||||
msgstr ""
|
||||
msgstr "Ոչ իրոք, ժամանակն է օդափոխվելու"
|
||||
|
||||
#: Editor.java:1872
|
||||
#, java-format
|
||||
msgid "No reference available for \"{0}\""
|
||||
msgstr ""
|
||||
msgstr "\"{0}\"-ի համար հղում հասանելի չէ"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
msgid "No sketch"
|
||||
msgstr ""
|
||||
msgstr "գծագիր չկա"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
msgid "No sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Գծագրի գիրք չկա"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:204
|
||||
msgid "No valid code files found"
|
||||
msgstr ""
|
||||
msgstr "Վավեր կոդի ֆայլեր չկան"
|
||||
|
||||
#: ../../../processing/app/debug/TargetPackage.java:63
|
||||
#, java-format
|
||||
msgid "No valid hardware definitions found in folder {0}."
|
||||
msgstr ""
|
||||
msgstr "Վավեր սարքային սահմանումներ {0} պանակում չկան:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184
|
||||
msgid "None"
|
||||
msgstr ""
|
||||
msgstr "Ոչ մեկը"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:108
|
||||
msgid "Norwegian Bokmål"
|
||||
msgstr ""
|
||||
msgstr "Նորվեգերեն"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1656
|
||||
msgid ""
|
||||
"Not enough memory; see http://www.arduino.cc/en/Guide/Troubleshooting#size "
|
||||
"for tips on reducing your footprint."
|
||||
msgstr ""
|
||||
msgstr "Ոչ բավարար հիշողություն; տես http://www.arduino.cc/en/Guide/Troubleshooting#size"
|
||||
|
||||
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2145 Editor.java:2465
|
||||
@ -1386,11 +1396,11 @@ msgstr "Լավ"
|
||||
|
||||
#: Sketch.java:992 Editor.java:376
|
||||
msgid "One file added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "Մեկ ֆայլ ավելացվեց գծագրին:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
msgid "Only --verify, --upload or --get-pref are supported"
|
||||
msgstr ""
|
||||
msgstr "Միայն --verify, --upload կամ --get-pref են աջակցվում"
|
||||
|
||||
#: EditorToolbar.java:41
|
||||
msgid "Open"
|
||||
@ -1398,15 +1408,15 @@ msgstr "Բացել"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:625
|
||||
msgid "Open Recent"
|
||||
msgstr ""
|
||||
msgstr "Բացել վերջիններից"
|
||||
|
||||
#: Editor.java:2688
|
||||
msgid "Open URL"
|
||||
msgstr ""
|
||||
msgstr "Բացել URL"
|
||||
|
||||
#: Base.java:636
|
||||
msgid "Open an Arduino sketch..."
|
||||
msgstr ""
|
||||
msgstr "Բացել Արդուինոի գծագիր..."
|
||||
|
||||
#: Base.java:903 Editor.java:501
|
||||
msgid "Open..."
|
||||
@ -1414,11 +1424,11 @@ msgstr "Բացել․․․"
|
||||
|
||||
#: Editor.java:563
|
||||
msgid "Page Setup"
|
||||
msgstr ""
|
||||
msgstr "Էջի կարգավորում"
|
||||
|
||||
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
|
||||
msgid "Password:"
|
||||
msgstr ""
|
||||
msgstr "Գաղտնաբառ:"
|
||||
|
||||
#: Editor.java:1189 Editor.java:2731
|
||||
msgid "Paste"
|
||||
@ -1430,33 +1440,33 @@ msgstr "Պարսկերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:161
|
||||
msgid "Persian (Iran)"
|
||||
msgstr ""
|
||||
msgstr "Պարսկերեն (Իրան)"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79
|
||||
#, java-format
|
||||
msgid "Platform {0} (package {1}) is unknown"
|
||||
msgstr ""
|
||||
msgstr "Անհայտ պլատֆորմ {0} ({1} փաթեթ)"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
msgid "Please confirm boards deletion"
|
||||
msgstr ""
|
||||
msgstr "Խնդրում եմ հաստատեք հարթակի ջնջումը"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
msgid "Please confirm library deletion"
|
||||
msgstr ""
|
||||
msgstr "Խնդրում եմ հաստատեք գրադարանի ջնջումը"
|
||||
|
||||
#: debug/Compiler.java:408
|
||||
msgid "Please import the SPI library from the Sketch > Import Library menu."
|
||||
msgstr ""
|
||||
msgstr "Խնդրում ենք ներմուծեք SPI գրադարանը Գծագիր > Ներմուծել գրադարան մենյուից:"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
msgid "Please import the Wire library from the Sketch > Import Library menu."
|
||||
msgstr ""
|
||||
msgstr "Խնդրում ենք ներմուծեք Wire գրադարանը Գծագիր > Ներմուծել գրադարան մենյուից:"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
|
||||
msgid "Please select a programmer from Tools->Programmer menu"
|
||||
msgstr ""
|
||||
msgstr "Խնդրում ենք նշել ծրագրավորողը Գործիքներ->Ծրագրավորող մենյուից"
|
||||
|
||||
#: Preferences.java:110
|
||||
msgid "Polish"
|
||||
@ -1464,31 +1474,31 @@ msgstr "Լեհերեն"
|
||||
|
||||
#: ../../../processing/app/Editor.java:718
|
||||
msgid "Port"
|
||||
msgstr ""
|
||||
msgstr "Պորտ"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491
|
||||
msgid "Port number:"
|
||||
msgstr ""
|
||||
msgstr "Պորտի համար:"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:151
|
||||
msgid "Portugese"
|
||||
msgstr ""
|
||||
msgstr "Պորտուգալերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:127
|
||||
msgid "Portuguese (Brazil)"
|
||||
msgstr ""
|
||||
msgstr "Պորտուգալերեն (Բրազիլիա)"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:128
|
||||
msgid "Portuguese (Portugal)"
|
||||
msgstr ""
|
||||
msgstr "Պորտուգալերեն (Պորտուգալիա)"
|
||||
|
||||
#: Preferences.java:295 Editor.java:583
|
||||
msgid "Preferences"
|
||||
msgstr ""
|
||||
msgstr "Կարգավորումներ"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:297
|
||||
msgid "Preparing boards..."
|
||||
msgstr ""
|
||||
msgstr "Հարթակները նախապատրաստվում են"
|
||||
|
||||
#: FindReplace.java:123 FindReplace.java:128
|
||||
msgid "Previous"
|
||||
@ -1496,57 +1506,57 @@ msgstr "Նախկին"
|
||||
|
||||
#: EditorHeader.java:326
|
||||
msgid "Previous Tab"
|
||||
msgstr ""
|
||||
msgstr "Նախորդ տաբ"
|
||||
|
||||
#: Editor.java:571
|
||||
msgid "Print"
|
||||
msgstr ""
|
||||
msgstr "Տպել"
|
||||
|
||||
#: Editor.java:2571
|
||||
msgid "Printing canceled."
|
||||
msgstr ""
|
||||
msgstr "Տպումը չեղարկված է"
|
||||
|
||||
#: Editor.java:2547
|
||||
msgid "Printing..."
|
||||
msgstr ""
|
||||
msgstr "Տպվում է"
|
||||
|
||||
#: Base.java:1957
|
||||
msgid "Problem Opening Folder"
|
||||
msgstr ""
|
||||
msgstr "Խնդիր Պանակը Բացելիս"
|
||||
|
||||
#: Base.java:1933
|
||||
msgid "Problem Opening URL"
|
||||
msgstr ""
|
||||
msgstr "Խնդիր URL-ը բացելիս"
|
||||
|
||||
#: Base.java:227
|
||||
msgid "Problem Setting the Platform"
|
||||
msgstr ""
|
||||
msgstr "Խնդիր Պլատֆորմը կարգավորելիս"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
|
||||
msgid "Problem accessing board folder /www/sd"
|
||||
msgstr ""
|
||||
msgstr "Խնդիր հարթակի /www/sd պանակը մուտք գործելիս"
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
|
||||
msgid "Problem accessing files in folder "
|
||||
msgstr ""
|
||||
msgstr "Խնդիր պանակում ֆայլեր մուտք գործելիս"
|
||||
|
||||
#: Base.java:1673
|
||||
msgid "Problem getting data folder"
|
||||
msgstr ""
|
||||
msgstr "Խնդիր տվյալների պանակը կարդալիս"
|
||||
|
||||
#: debug/Uploader.java:209
|
||||
msgid ""
|
||||
"Problem uploading to board. See "
|
||||
"http://www.arduino.cc/en/Guide/Troubleshooting#upload for suggestions."
|
||||
msgstr ""
|
||||
msgstr "Խնդիր հարթակ վերբեռնելիս: Առաջարկների համար տես http://www.arduino.cc/en/Guide/Troubleshooting#upload"
|
||||
|
||||
#: Sketch.java:355 Sketch.java:362 Sketch.java:373
|
||||
msgid "Problem with rename"
|
||||
msgstr ""
|
||||
msgstr "Խնդիր վերանվանման հետ"
|
||||
|
||||
#: ../../../processing/app/I18n.java:86
|
||||
msgid "Processor"
|
||||
msgstr ""
|
||||
msgstr "Պրոցեսոր"
|
||||
|
||||
#: Editor.java:704
|
||||
msgid "Programmer"
|
||||
@ -1555,7 +1565,7 @@ msgstr "Ծրագրավորող"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80
|
||||
#, java-format
|
||||
msgid "Progress {0}"
|
||||
msgstr ""
|
||||
msgstr "Պրոգրես {0}"
|
||||
|
||||
#: Base.java:783 Editor.java:593
|
||||
msgid "Quit"
|
||||
@ -1563,33 +1573,33 @@ msgstr "Լքել"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1233
|
||||
msgid "RETIRED"
|
||||
msgstr ""
|
||||
msgstr "RETIRED"
|
||||
|
||||
#: Editor.java:1138 Editor.java:1140 Editor.java:1390
|
||||
msgid "Redo"
|
||||
msgstr ""
|
||||
msgstr "Վերադարձնել"
|
||||
|
||||
#: Editor.java:1078
|
||||
msgid "Reference"
|
||||
msgstr ""
|
||||
msgstr "Հղում"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85
|
||||
msgid "Remove"
|
||||
msgstr ""
|
||||
msgstr "Ջնջել"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157
|
||||
#, java-format
|
||||
msgid "Removing library: {0}"
|
||||
msgstr ""
|
||||
msgstr "Ջնջվում է գրադարանը: {0}"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203
|
||||
msgid "Removing..."
|
||||
msgstr ""
|
||||
msgstr "Ջնջվում են..."
|
||||
|
||||
#: EditorHeader.java:300
|
||||
msgid "Rename"
|
||||
msgstr ""
|
||||
msgstr "Վերանվանել"
|
||||
|
||||
#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
|
||||
msgid "Replace"
|
||||
@ -1606,29 +1616,29 @@ msgstr "Բոլորը փոխարինել"
|
||||
#: Sketch.java:1043
|
||||
#, java-format
|
||||
msgid "Replace the existing version of {0}?"
|
||||
msgstr ""
|
||||
msgstr "Փոխարինել {0}-ի գոյություն ունեցող տարբերակը?"
|
||||
|
||||
#: FindReplace.java:81
|
||||
msgid "Replace with:"
|
||||
msgstr ""
|
||||
msgstr "Փոխարինել:"
|
||||
|
||||
#: Preferences.java:113
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
msgstr "Ռումիներեն"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83
|
||||
#, java-format
|
||||
msgid "Running recipe: {0}"
|
||||
msgstr ""
|
||||
msgstr "Աշխատող բաղադրատոմս: {0}"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82
|
||||
#, java-format
|
||||
msgid "Running: {0}"
|
||||
msgstr ""
|
||||
msgstr "Աշխատող: {0}"
|
||||
|
||||
#: Preferences.java:114
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
msgstr "Ռուսերեն"
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
|
||||
#: Editor.java:2064 Editor.java:2468
|
||||
@ -1641,20 +1651,20 @@ msgstr "Հիշել որպես․․․"
|
||||
|
||||
#: Editor.java:2317
|
||||
msgid "Save Canceled."
|
||||
msgstr ""
|
||||
msgstr "Հիշումը չեղարկվեց:"
|
||||
|
||||
#: Editor.java:2020
|
||||
#, java-format
|
||||
msgid "Save changes to \"{0}\"? "
|
||||
msgstr ""
|
||||
msgstr "Հիշել \"{0}\"-ի փոփոխությունները? "
|
||||
|
||||
#: Sketch.java:825
|
||||
msgid "Save sketch folder as..."
|
||||
msgstr ""
|
||||
msgstr "Պահել գծագրի պանակը որպես..."
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:425
|
||||
msgid "Save when verifying or uploading"
|
||||
msgstr ""
|
||||
msgstr "Պահպանել երբ ստուգվում է կամ վերբեռնվում"
|
||||
|
||||
#: Editor.java:2270 Editor.java:2308
|
||||
msgid "Saving..."
|
||||
@ -1662,11 +1672,11 @@ msgstr "Հիշում․․․"
|
||||
|
||||
#: ../../../processing/app/FindReplace.java:131
|
||||
msgid "Search all Sketch Tabs"
|
||||
msgstr ""
|
||||
msgstr "Փնտրել բոլոր Գծագրի Տաբերը"
|
||||
|
||||
#: Base.java:1909
|
||||
msgid "Select (or create new) folder for sketches..."
|
||||
msgstr ""
|
||||
msgstr "Նշել (կամ ստեղծել նոր) պանակ գծագրերի համար..."
|
||||
|
||||
#: Editor.java:1198 Editor.java:2739
|
||||
msgid "Select All"
|
||||
@ -1674,32 +1684,32 @@ msgstr "Ընտրել բոլորը"
|
||||
|
||||
#: Base.java:2636
|
||||
msgid "Select a zip file or a folder containing the library you'd like to add"
|
||||
msgstr ""
|
||||
msgstr "Նշել zip ֆայլ կամ գրադարան պարունակող պանակ, որը ցանկանում եք ավելացնել"
|
||||
|
||||
#: Sketch.java:975
|
||||
msgid "Select an image or other data file to copy to your sketch"
|
||||
msgstr ""
|
||||
msgstr "Նշել նկար կամ այլ տվյալների ֆայլ գծագրում պատճենելու համար"
|
||||
|
||||
#: Preferences.java:330
|
||||
msgid "Select new sketchbook location"
|
||||
msgstr ""
|
||||
msgstr "Նշել նոր գծագրերի գրքի տեղ"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249
|
||||
msgid "Select version"
|
||||
msgstr ""
|
||||
msgstr "Նշել տարբերակը"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:146
|
||||
msgid "Selected board depends on '{0}' core (not installed)."
|
||||
msgstr ""
|
||||
msgstr "Նշված հարթակը կախված է '{0}'-ի միջուկից (չի տեղադրված) "
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:374
|
||||
msgid "Selected board is not available"
|
||||
msgstr ""
|
||||
msgstr "Նշված հարթակը հասանելի չէ"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:423
|
||||
msgid "Selected library is not available"
|
||||
msgstr ""
|
||||
msgstr "Նշված գրադարանը հասանելի չէ"
|
||||
|
||||
#: SerialMonitor.java:93
|
||||
msgid "Send"
|
||||
@ -1707,153 +1717,153 @@ msgstr "Ուղարկել"
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
|
||||
msgid "Serial Monitor"
|
||||
msgstr ""
|
||||
msgstr "Սերիալ Մոնիտոր"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:804
|
||||
msgid "Serial Plotter"
|
||||
msgstr ""
|
||||
msgstr "Սերիալ Արտապատկերիչ"
|
||||
|
||||
#: Serial.java:194
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Serial port ''{0}'' not found. Did you select the right one from the Tools >"
|
||||
" Serial Port menu?"
|
||||
msgstr ""
|
||||
msgstr "''{0}'' սերիալ պորտը չի գտնված: Դուք ընտրել եք ճիշտ օրինակը Գործիքներ > Սերիալ Պորտ մենյուից?"
|
||||
|
||||
#: Editor.java:2343
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Serial port {0} not found.\n"
|
||||
"Retry the upload with another serial port?"
|
||||
msgstr ""
|
||||
msgstr "''{0}'' սերիալ պորտը չի գտնված:\nԿրկին փորձել վերբեռնել այլ սերիալ պորտով?"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
msgid "Serial ports"
|
||||
msgstr ""
|
||||
msgstr "Սերիալ պորտեր"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
|
||||
#, java-format
|
||||
msgid "Setting build path to {0}"
|
||||
msgstr ""
|
||||
msgstr "Կառուցման ճանապարհի տեղադրում {0}-ի"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
|
||||
msgid "Settings"
|
||||
msgstr ""
|
||||
msgstr "Կարգավորումներ"
|
||||
|
||||
#: Base.java:1681
|
||||
msgid "Settings issues"
|
||||
msgstr ""
|
||||
msgstr "Կարգավորումների խնդիրներ"
|
||||
|
||||
#: Editor.java:641
|
||||
msgid "Show Sketch Folder"
|
||||
msgstr ""
|
||||
msgstr "Ցուցադրել գծագրերի պանակը"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:468
|
||||
msgid "Show verbose output during compilation"
|
||||
msgstr ""
|
||||
msgstr "Ցույց տալ բազմակի արտահանումը կոմպիլիացիայի ընթացքում"
|
||||
|
||||
#: Preferences.java:387
|
||||
msgid "Show verbose output during: "
|
||||
msgstr ""
|
||||
msgstr "Ցույց տալ բազմակի արտահանումը ընթացքում:"
|
||||
|
||||
#: Editor.java:607
|
||||
msgid "Sketch"
|
||||
msgstr ""
|
||||
msgstr "Գծագիր"
|
||||
|
||||
#: Sketch.java:1754
|
||||
msgid "Sketch Disappeared"
|
||||
msgstr ""
|
||||
msgstr "Գծագիրն անհետացավ"
|
||||
|
||||
#: Base.java:1411
|
||||
msgid "Sketch Does Not Exist"
|
||||
msgstr ""
|
||||
msgstr "Գծագիրն գոյություն չունի"
|
||||
|
||||
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
|
||||
msgid "Sketch is Read-Only"
|
||||
msgstr ""
|
||||
msgstr "Գծագիրն միայն կարդալու է"
|
||||
|
||||
#: Sketch.java:294
|
||||
msgid "Sketch is Untitled"
|
||||
msgstr ""
|
||||
msgstr "Գծագիրն անվերնագիր է"
|
||||
|
||||
#: Sketch.java:720
|
||||
msgid "Sketch is read-only"
|
||||
msgstr ""
|
||||
msgstr "Գծագիրն միայն կարդալու է"
|
||||
|
||||
#: Sketch.java:1653
|
||||
msgid ""
|
||||
"Sketch too big; see http://www.arduino.cc/en/Guide/Troubleshooting#size for "
|
||||
"tips on reducing it."
|
||||
msgstr ""
|
||||
msgstr "Գծագիրը շատ մեծ է; չափը փոքրացնելու առաջարկների համար տես http://www.arduino.cc/en/Guide/Troubleshooting#size"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1639
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Sketch uses {0} bytes ({2}%%) of program storage space. Maximum is {1} "
|
||||
"bytes."
|
||||
msgstr ""
|
||||
msgstr "Գծագիրը ծրագրի պահեստային տարածքից օգրագործում է {0} բայթ ({2}%%): Մաքսիմումը {1} բայթ է:"
|
||||
|
||||
#: Editor.java:510
|
||||
msgid "Sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Գծագրերի գիրք"
|
||||
|
||||
#: Base.java:258
|
||||
msgid "Sketchbook folder disappeared"
|
||||
msgstr ""
|
||||
msgstr "Գծագրերի գիրք պանակը անհետացավ"
|
||||
|
||||
#: Preferences.java:315
|
||||
msgid "Sketchbook location:"
|
||||
msgstr ""
|
||||
msgstr "Գծագրերի գրքի տեղը"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
msgid "Sketchbook path not defined"
|
||||
msgstr ""
|
||||
msgstr "Գծագրերի գրքի ճանապարհն սահմանված չէ"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:185
|
||||
msgid "Slovak"
|
||||
msgstr ""
|
||||
msgstr "Սլովակերեն"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:152
|
||||
msgid "Slovenian"
|
||||
msgstr ""
|
||||
msgstr "Սլովեներեն"
|
||||
|
||||
#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
|
||||
msgid ""
|
||||
"Some files are marked \"read-only\", so you'll\n"
|
||||
"need to re-save the sketch in another location,\n"
|
||||
"and try again."
|
||||
msgstr ""
|
||||
msgstr "Որոշ ֆայլեր նշված են որպես \"միայն կարդալու\",\nդուք պետք է պահպանեք գծագիրը ուրիշ տեղում,\nեւ նորից կրկնեք:"
|
||||
|
||||
#: Sketch.java:721
|
||||
msgid ""
|
||||
"Some files are marked \"read-only\", so you'll\n"
|
||||
"need to re-save this sketch to another location."
|
||||
msgstr ""
|
||||
msgstr "Որոշ ֆայլեր նշված են որպես \"միայն կարդալու\",\nդուք պետք է պահպանեք գծագիրը ուրիշ տեղում:"
|
||||
|
||||
#: Sketch.java:457
|
||||
#, java-format
|
||||
msgid "Sorry, a sketch (or folder) named \"{0}\" already exists."
|
||||
msgstr ""
|
||||
msgstr "Ներողություն, \"{0}\" անունով գծագիրը (կամ պանակը) գոյություն ունի:"
|
||||
|
||||
#: Preferences.java:115
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
msgstr "Իսպաներեն"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2333
|
||||
msgid "Specified folder/zip file does not contain a valid library"
|
||||
msgstr ""
|
||||
msgstr "Նշված պանակը/zip ֆայլը վավեր գրադարան չի պարունակում"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:466
|
||||
msgid "Starting..."
|
||||
msgstr ""
|
||||
msgstr "Միանում է..."
|
||||
|
||||
#: Base.java:540
|
||||
msgid "Sunshine"
|
||||
msgstr ""
|
||||
msgstr "Արեւի լույս"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:153
|
||||
msgid "Swedish"
|
||||
msgstr ""
|
||||
msgstr "Շվեդերեն"
|
||||
|
||||
#: Preferences.java:84
|
||||
msgid "System Default"
|
||||
@ -1861,38 +1871,38 @@ msgstr "Համակարգի լռելյայն"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:188
|
||||
msgid "Talossan"
|
||||
msgstr ""
|
||||
msgstr "Թալոսերեն"
|
||||
|
||||
#: Preferences.java:116
|
||||
msgid "Tamil"
|
||||
msgstr ""
|
||||
msgstr "Թամիլ"
|
||||
|
||||
#: debug/Compiler.java:414
|
||||
msgid "The 'BYTE' keyword is no longer supported."
|
||||
msgstr ""
|
||||
msgstr "'BYTE' հիմանբառը այլևս չի աջակցվում:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
msgid "The --upload option supports only one file at a time"
|
||||
msgstr ""
|
||||
msgstr "--upload տարբերակը աջակցում է միայն մեկ ֆայլ "
|
||||
|
||||
#: debug/Compiler.java:426
|
||||
msgid "The Client class has been renamed EthernetClient."
|
||||
msgstr ""
|
||||
msgstr "Client դասը վերանվանվեց EthernetClient-ի:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
msgid ""
|
||||
"The IDE includes an updated {0} package, but you're using an older one.\n"
|
||||
"Do you want to upgrade {0}?"
|
||||
msgstr ""
|
||||
msgstr " IDE-ն պարունակում է {0} փաթեթի թարմացում, սակայն դուք հին տարբերակն եք օգտագործում\nՑանկանում եք թարմացնել {0}-ը?"
|
||||
|
||||
#: debug/Compiler.java:420
|
||||
msgid "The Server class has been renamed EthernetServer."
|
||||
msgstr ""
|
||||
msgstr "Server դասը վերանվանվեց EthernetServer-ի:"
|
||||
|
||||
#: debug/Compiler.java:432
|
||||
msgid "The Udp class has been renamed EthernetUdp."
|
||||
msgstr ""
|
||||
msgstr "Udp դասը վերանվանվեց EthernetUdp-ի:"
|
||||
|
||||
#: Editor.java:2147
|
||||
#, java-format
|
||||
@ -1900,7 +1910,7 @@ msgid ""
|
||||
"The file \"{0}\" needs to be inside\n"
|
||||
"a sketch folder named \"{1}\".\n"
|
||||
"Create this folder, move the file, and continue?"
|
||||
msgstr ""
|
||||
msgstr "\"{0}\" ֆայլը պետք է լինի\n\"{1}\" անվամբ պանակի մեջ:\nՍտեղծել այդ պանակը, տեղափոխել ֆայլը, եւ շարունակել?"
|
||||
|
||||
#: Base.java:1054 Base.java:2674
|
||||
#, java-format
|
||||
@ -1908,25 +1918,25 @@ msgid ""
|
||||
"The library \"{0}\" cannot be used.\n"
|
||||
"Library names must contain only basic letters and numbers.\n"
|
||||
"(ASCII only and no spaces, and it cannot start with a number)"
|
||||
msgstr ""
|
||||
msgstr "\"{0}\" գրադարանը չի կարող օգտագործվել:\nԳրադարանների անունները պետք է պարունակեն հիմնական տառեր եւ թվեր:\n(Միայն ASCII եւ առանց բացակների, եւ այն չի կարող սկսվել թվով)"
|
||||
|
||||
#: Sketch.java:374
|
||||
msgid ""
|
||||
"The main file can't use an extension.\n"
|
||||
"(It may be time for your to graduate to a\n"
|
||||
"\"real\" programming environment)"
|
||||
msgstr ""
|
||||
msgstr "Հիմնական ֆայլը չի կարող օգտագործել ընդլայնում:\n(Հնարավոր է արդեն ժամանակն է անցնել \"իրական\" ծրագրավորման միջավայրի)"
|
||||
|
||||
#: Sketch.java:356
|
||||
msgid "The name cannot start with a period."
|
||||
msgstr ""
|
||||
msgstr "Անունը չի կարող սկսվել բացակով:"
|
||||
|
||||
#: Base.java:1412
|
||||
msgid ""
|
||||
"The selected sketch no longer exists.\n"
|
||||
"You may need to restart Arduino to update\n"
|
||||
"the sketchbook menu."
|
||||
msgstr ""
|
||||
msgstr "Նշված գծագիրը այլեւս գոյություն չունի:\nԴուք հնարավոր է պետք է վերագործարկել \nԱրդուինոն գծագրերի գրքի մենյուն թարմացնելու համար"
|
||||
|
||||
#: Base.java:1430
|
||||
#, java-format
|
||||
@ -1936,21 +1946,21 @@ msgid ""
|
||||
"(ASCII-only with no spaces, and it cannot start with a number).\n"
|
||||
"To get rid of this message, remove the sketch from\n"
|
||||
"{1}"
|
||||
msgstr ""
|
||||
msgstr "\"{0}\" գծագիրը չի կարող օգտագործվել:\nԳծագրի անունները պետք է պարունակեն հիմնական տառեր եւ թվեր:\n(Միայն ASCII եւ առանց բացակների, եւ այն չի կարող սկսվել թվով)\nԱյս հաղորդագրությունից ազատվելու համար, ջնջեք գծագիրը {1}-ից"
|
||||
|
||||
#: Sketch.java:1755
|
||||
msgid ""
|
||||
"The sketch folder has disappeared.\n"
|
||||
" Will attempt to re-save in the same location,\n"
|
||||
"but anything besides the code will be lost."
|
||||
msgstr ""
|
||||
msgstr "Գծագրի պանակը անհետացել է:\nՄենք կփորձենք վերապահել նույն տեղում,\nսակայն կոդից բացի ամեն ինչ կկորի:"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:2028
|
||||
msgid ""
|
||||
"The sketch name had to be modified. Sketch names can only consist\n"
|
||||
"of ASCII characters and numbers (but cannot start with a number).\n"
|
||||
"They should also be less than 64 characters long."
|
||||
msgstr ""
|
||||
msgstr "Գծագրի անունը պետք է փոփոխվի: Գծագրի անունը կարող է բաղկացած լինել միայն ASCII տառատեսակներից եւ թվերից (չի կարող սկսվել թվով):\nԱյն պետք է նաեւ 64 սիմվոլից պակաս լինի:"
|
||||
|
||||
#: Base.java:259
|
||||
msgid ""
|
||||
@ -1959,39 +1969,39 @@ msgid ""
|
||||
"location, and create a new sketchbook folder if\n"
|
||||
"necessary. Arduino will then stop talking about\n"
|
||||
"himself in the third person."
|
||||
msgstr ""
|
||||
msgstr "Գծագրերի գրքի պանակը այլեւս գոյություն չունի:\nԱրդուինոն կանցնի լռելյան գծագրերի գրքի տեղանքին\nեւ կստեղծի նոր գծագրերի գրքի պանակ եթե \nանհրաժեշտություն կա: Արդուինոն կդադարի իր մասին\nերրորդ դեմքով խոսալուց:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514
|
||||
msgid ""
|
||||
"The specified sketchbook folder contains your copy of the IDE.\n"
|
||||
"Please choose a different folder for your sketchbook."
|
||||
msgstr ""
|
||||
msgstr "Նշված գծանկարների գրքի պանակը պարունակում է ձեր IDE-ի պատճենը:\nԽնդրում ենք ընտրել մեկ այլ պանակ ձեր գծանկարների գրքի համար:"
|
||||
|
||||
#: Sketch.java:1075
|
||||
msgid ""
|
||||
"This file has already been copied to the\n"
|
||||
"location from which where you're trying to add it.\n"
|
||||
"I ain't not doin nuthin'."
|
||||
msgstr ""
|
||||
msgstr "Այս ֆայլը արդեն պատճենվել է\nայնտեղ որտեղից ոդուք փորձում եք ավելացնել այն:\nԵս ոչ մի բան չեմ անում:"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
msgid ""
|
||||
"This library is not listed on Library Manager. You won't be able to reinstall it from here.\n"
|
||||
"Are you sure you want to delete it?"
|
||||
msgstr ""
|
||||
msgstr "Գրադարանը նշված չէ Գրադարանի Կառավարչի ցուցակում: Դուք հնարավորություն չեք ունենա այլեւս այստեղից վերատեղադրելու:\nՎստահ եք, որ ուզում եք ջնջել դա?"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:467
|
||||
msgid "This report would have more information with"
|
||||
msgstr ""
|
||||
msgstr "Այս զեկույցը պետք է ավելի շատ տեղեկատվություն ունենա"
|
||||
|
||||
#: Base.java:535
|
||||
msgid "Time for a Break"
|
||||
msgstr ""
|
||||
msgstr "Դադարի ժամանակն է"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94
|
||||
#, java-format
|
||||
msgid "Tool {0} is not available for your operating system."
|
||||
msgstr ""
|
||||
msgstr "{0} գործիքը ձեր օպերացիոն համակարգի համար հասանելի չէ:"
|
||||
|
||||
#: Editor.java:663
|
||||
msgid "Tools"
|
||||
@ -1999,63 +2009,63 @@ msgstr "Գործիքներ"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97
|
||||
msgid "Topic"
|
||||
msgstr ""
|
||||
msgstr "Վերնագիր"
|
||||
|
||||
#: Editor.java:1070
|
||||
msgid "Troubleshooting"
|
||||
msgstr ""
|
||||
msgstr "Խնդիրների լուծում"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:117
|
||||
msgid "Turkish"
|
||||
msgstr ""
|
||||
msgstr "Թուրքերեն"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105
|
||||
msgid "Type"
|
||||
msgstr ""
|
||||
msgstr "Հավաքել"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2507
|
||||
msgid "Type board password to access its console"
|
||||
msgstr ""
|
||||
msgstr "Հավաքեք հարթակի գաղտնաբառը վահանակ մուտք գործելու համար"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1673
|
||||
msgid "Type board password to upload a new sketch"
|
||||
msgstr ""
|
||||
msgstr "Հավաքեք հարթակի գաղտնաբառը գծագիրը վերբեռնելու համար"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:118
|
||||
msgid "Ukrainian"
|
||||
msgstr ""
|
||||
msgstr "Ուկրաիներեն"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2524
|
||||
#: ../../../processing/app/NetworkMonitor.java:145
|
||||
msgid "Unable to connect: is the sketch using the bridge?"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չեր կապնվել: գծագիրը օգտագործում է կամուրջ?"
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:130
|
||||
msgid "Unable to connect: retrying"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ կապնվել: նորից ենք փորձում"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2526
|
||||
msgid "Unable to connect: wrong password?"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ կապնվել: սխալ գաղտնաբառ?"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
|
||||
#, java-format
|
||||
msgid "Unable to find {0} in {1}"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ գտնել {0}-ը {1}-ում"
|
||||
|
||||
#: ../../../processing/app/Editor.java:2512
|
||||
msgid "Unable to open serial monitor"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ բացել մոնիտորը"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2709
|
||||
msgid "Unable to open serial plotter"
|
||||
msgstr ""
|
||||
msgstr "Հնարավոր չէ բացել սերիալ արտապատկերիչը"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
msgid "Unable to reach Arduino.cc due to possible network issues."
|
||||
msgstr ""
|
||||
msgstr "Arduino.cc-ը հասանելի չէ, հնարավոր ցանցային խնդիրների պատճառով:"
|
||||
|
||||
#: Editor.java:1133 Editor.java:1355
|
||||
msgid "Undo"
|
||||
@ -2064,24 +2074,24 @@ msgstr "Հետ շրջել"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
|
||||
#, java-format
|
||||
msgid "Unhandled type {0} in context key {1}"
|
||||
msgstr ""
|
||||
msgstr "{0} չճանաճված տիպ {1} բանալու կոնտեքստում"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
|
||||
#, java-format
|
||||
msgid "Unknown sketch file extension: {0}"
|
||||
msgstr ""
|
||||
msgstr "Անհայտ գծագրի ֆայլի ընդլայնում: {0}"
|
||||
|
||||
#: Platform.java:168
|
||||
msgid ""
|
||||
"Unspecified platform, no launcher available.\n"
|
||||
"To enable opening URLs or folders, add a \n"
|
||||
"\"launcher=/path/to/app\" line to preferences.txt"
|
||||
msgstr ""
|
||||
msgstr "Չնշված պլատֆորմ, գործարկիչը հասանելի չէ:\nURL-ների կամ պանակներ բացումը ավելացնելու համար,\nավելացրեք \"launcher=/path/to/app\" տողը preferences.txt ֆայլում"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27
|
||||
msgid "Updatable"
|
||||
msgstr ""
|
||||
msgstr "Թարամացման ենթակա"
|
||||
|
||||
#: UpdateCheck.java:111
|
||||
msgid "Update"
|
||||
@ -2089,11 +2099,11 @@ msgstr "Թարմացում"
|
||||
|
||||
#: Preferences.java:428
|
||||
msgid "Update sketch files to new extension on save (.pde -> .ino)"
|
||||
msgstr ""
|
||||
msgstr "Պայման ժամական թարմացնել գծագրերի ֆայլերը նոր ընդլայնմամբ (.pde -> .ino)"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167
|
||||
msgid "Updating list of installed libraries"
|
||||
msgstr ""
|
||||
msgstr "Տեղադրված գրադարաններ ցուցակը թարմացվում է"
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:545
|
||||
msgid "Upload"
|
||||
@ -2101,19 +2111,19 @@ msgstr "Ներբեռնել"
|
||||
|
||||
#: EditorToolbar.java:46 Editor.java:553
|
||||
msgid "Upload Using Programmer"
|
||||
msgstr ""
|
||||
msgstr "Վերբեռնել Օգտագործելով Ծրագրավորողը"
|
||||
|
||||
#: Editor.java:2403 Editor.java:2439
|
||||
msgid "Upload canceled."
|
||||
msgstr ""
|
||||
msgstr "Վերբեռնում չեղարկվեց:"
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1678
|
||||
msgid "Upload cancelled"
|
||||
msgstr ""
|
||||
msgstr "Վերբեռնումը չեղարկված է"
|
||||
|
||||
#: Editor.java:2378
|
||||
msgid "Uploading to I/O Board..."
|
||||
msgstr ""
|
||||
msgstr "Վերբեռնվում է I/O հարթակ..."
|
||||
|
||||
#: Sketch.java:1622
|
||||
msgid "Uploading..."
|
||||
@ -2121,31 +2131,31 @@ msgstr "Ներբեռնում․․․"
|
||||
|
||||
#: Editor.java:1269
|
||||
msgid "Use Selection For Find"
|
||||
msgstr ""
|
||||
msgstr "Օգտագործել Նշումը Փնտրելու համար"
|
||||
|
||||
#: Preferences.java:409
|
||||
msgid "Use external editor"
|
||||
msgstr ""
|
||||
msgstr "Օգտագործել արտաքին խմբագրիչ"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499
|
||||
msgid "Username:"
|
||||
msgstr ""
|
||||
msgstr "Օգտանուն"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:410
|
||||
#, java-format
|
||||
msgid "Using library {0} at version {1} in folder: {2} {3}"
|
||||
msgstr ""
|
||||
msgstr "Օգտագործելով {1} տարբերակի {0} գրադարանը հետեւյալ պանակում: {2} {3}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:94
|
||||
#, java-format
|
||||
msgid "Using library {0} in folder: {1} {2}"
|
||||
msgstr ""
|
||||
msgstr "Օգտագործելով {0} գրադարանը հետեւյալ պանակում: {1} {2}"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:320
|
||||
#, java-format
|
||||
msgid "Using previously compiled file: {0}"
|
||||
msgstr ""
|
||||
msgstr "Օգտագործելով նախկինում կոմպիլացված ֆայլը: {0}"
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46
|
||||
msgid "Verify"
|
||||
@ -2153,133 +2163,133 @@ msgstr "Ստուգել"
|
||||
|
||||
#: Preferences.java:400
|
||||
msgid "Verify code after upload"
|
||||
msgstr ""
|
||||
msgstr "Ստուգել կոդը վերբեռնումից հետո"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:725
|
||||
msgid "Verify/Compile"
|
||||
msgstr ""
|
||||
msgstr "Ստուգել/Կոմպիլացնել"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:451
|
||||
msgid "Verifying and uploading..."
|
||||
msgstr ""
|
||||
msgstr "Ստուգվում և վերբեռնվում է..."
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71
|
||||
msgid "Verifying archive integrity..."
|
||||
msgstr ""
|
||||
msgstr "Ստուգվում է արխիվի ամբողջականությունը"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:454
|
||||
msgid "Verifying..."
|
||||
msgstr ""
|
||||
msgstr "Ստուգվում է..."
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328
|
||||
#, java-format
|
||||
msgid "Version <b>{0}</b>"
|
||||
msgstr ""
|
||||
msgstr "Տարբերակ <b>{0}</b>"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326
|
||||
msgid "Version unknown"
|
||||
msgstr ""
|
||||
msgstr "Տարբերակը ճանաչված չէ"
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97
|
||||
#, java-format
|
||||
msgid "Version {0}"
|
||||
msgstr ""
|
||||
msgstr "Տարբերակ {0}"
|
||||
|
||||
#: ../../../processing/app/Preferences.java:154
|
||||
msgid "Vietnamese"
|
||||
msgstr ""
|
||||
msgstr "Վիետնամերեն"
|
||||
|
||||
#: Editor.java:1105
|
||||
msgid "Visit Arduino.cc"
|
||||
msgstr ""
|
||||
msgstr "Այցելեք Arduino.cc"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
|
||||
#, java-format
|
||||
msgid "WARNING: Category '{0}' in library {1} is not valid. Setting to '{2}'"
|
||||
msgstr ""
|
||||
msgstr "ԶԳՈՒՇԱՑՈՒՄ: {1} Գրադարանում '{0}' կատեգորիան վավեր չէ: Դրվում է '{2}'-ին"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
|
||||
#, java-format
|
||||
msgid "WARNING: Spurious {0} folder in '{1}' library"
|
||||
msgstr ""
|
||||
msgstr "ԶԳՈՒՇԱՑՈՒՄ: '{1}' գրադարանում կեղծված {0} թղթապանակ"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:115
|
||||
#, java-format
|
||||
msgid ""
|
||||
"WARNING: library {0} claims to run on {1} architecture(s) and may be "
|
||||
"incompatible with your current board which runs on {2} architecture(s)."
|
||||
msgstr ""
|
||||
msgstr "ԶԳՈՒՇԱՑՈՒՄ: {0} գրադարանը աշխատում է {1} ճարտարապետությամբ() եւ հնարավոր է համատեղելի չլինի ձեր ընթացիկ հարթակի հետ որը ունի {2} ճարտարապետություն()"
|
||||
|
||||
#: Base.java:2128
|
||||
msgid "Warning"
|
||||
msgstr "Ուշադրություն"
|
||||
msgstr "Զգուշացում"
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1295
|
||||
msgid ""
|
||||
"Warning: This core does not support exporting sketches. Please consider "
|
||||
"upgrading it or contacting its author"
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: Այս միջուկը գծագրերի արտահանում չի ապահովվում. Ինիկատի ունեցեք այն թարմացնել կամ հեղինակի հետ կապնվել"
|
||||
|
||||
#: ../../../cc/arduino/utils/ArchiveExtractor.java:197
|
||||
#, java-format
|
||||
msgid "Warning: file {0} links to an absolute path {1}"
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: {0} ֆայլը միանում է {1} բացարձակ ճանապարհին"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
|
||||
msgid "Warning: forced trusting untrusted contributions"
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: ստիպողական վտահում չվստահված ներդրողներին"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
|
||||
#, java-format
|
||||
msgid "Warning: forced untrusted script execution ({0})"
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: ստիպողական ({0}) սկրիպտի աշխատեցում"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
|
||||
#, java-format
|
||||
msgid "Warning: non trusted contribution, skipping script execution ({0})"
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: չվստահված ներդրող, շրջանցվում է ({0}) սկրիպտի կատարումը"
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' contains deprecated {1}, automatically"
|
||||
" converted to {2}. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: platform.txt-ի '{0}' միջուկը պարունակում է հնացած {1}, ավտոմատ ձեւափոխել է {2}-ի:\nԻնիկատի ունեցեք թարմացնել այս միջուկը:"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' misses property '{1}', using default "
|
||||
"value '{2}'. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: platform.txt-ի '{0}' միջուկից բացակայում է {1} հատկությունը, օգտագործվում է {2} լռելյայն արժեքը:\nԻնիկատի ունեցեք թարմացնել այս միջուկը:"
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:170
|
||||
#, java-format
|
||||
msgid ""
|
||||
"Warning: platform.txt from core '{0}' misses property {1}, automatically set"
|
||||
" to {2}. Consider upgrading this core."
|
||||
msgstr ""
|
||||
msgstr "Զգուշացում: platform.txt-ի '{0}' միջուկից բացակայում է {1} հատկությունը, ավտոմատ վերագրվում է {2}:\nԻնիկատի ունեցեք թարմացնել այս միջուկը:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:190
|
||||
msgid "Western Frisian"
|
||||
msgstr ""
|
||||
msgstr "Արեւմտյան Ֆրիզերեն"
|
||||
|
||||
#: debug/Compiler.java:444
|
||||
msgid "Wire.receive() has been renamed Wire.read()."
|
||||
msgstr ""
|
||||
msgstr "Wire.receive()-ը վերանվանվել է Wire.read()-ի:"
|
||||
|
||||
#: debug/Compiler.java:438
|
||||
msgid "Wire.send() has been renamed Wire.write()."
|
||||
msgstr ""
|
||||
msgstr "Wire.send()-ը վերանվանվել է Wire.write()-ի:"
|
||||
|
||||
#: FindReplace.java:105
|
||||
msgid "Wrap Around"
|
||||
msgstr ""
|
||||
msgstr "Պատել Շուրջը"
|
||||
|
||||
#: debug/Uploader.java:213
|
||||
msgid ""
|
||||
"Wrong microcontroller found. Did you select the right board from the Tools "
|
||||
"> Board menu?"
|
||||
msgstr ""
|
||||
msgstr "Սխալ միկրոկոնտրոլլեր է գտնվել: Դուք նշել եք ճիշտ հարթակը Գործիքներ > Հարթակ մենյուից?"
|
||||
|
||||
#: Preferences.java:77 UpdateCheck.java:108
|
||||
msgid "Yes"
|
||||
@ -2287,73 +2297,73 @@ msgstr "Այո"
|
||||
|
||||
#: Sketch.java:1074
|
||||
msgid "You can't fool me"
|
||||
msgstr ""
|
||||
msgstr "Դուք չեք կարող խաբել ինձ"
|
||||
|
||||
#: Sketch.java:411
|
||||
msgid "You can't have a .cpp file with the same name as the sketch."
|
||||
msgstr ""
|
||||
msgstr "Դուք չեք կարող ունենալ .cpp նույն անվաբմ ինչ գծագրի անունն է:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2312
|
||||
msgid "You can't import a folder that contains your sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Դուք չեք կարող ներմուծել պանակ, որը պարունակում է ձեր գծագրի գիրքը"
|
||||
|
||||
#: Sketch.java:421
|
||||
msgid ""
|
||||
"You can't rename the sketch to \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr ""
|
||||
msgstr "Դուք չեք կարող վերանվանել գծագիրը \"{0}\"-ի,\nքանի որ գծագիրը արդեն ունի նույն անունով .cpp ֆայլ:"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
"You cannot save the sketch into a folder\n"
|
||||
"inside itself. This would go on forever."
|
||||
msgstr ""
|
||||
msgstr "Դուք չեք կարող պահպանել գծագիրը իր մեջ գտնվող պանակի մեջ:\nԱյն կտեւի անվերջ:"
|
||||
|
||||
#: Base.java:1888
|
||||
msgid "You forgot your sketchbook"
|
||||
msgstr ""
|
||||
msgstr "Դուք մոռացել եք գծագրերի գիրքը"
|
||||
|
||||
#: ../../../processing/app/AbstractMonitor.java:92
|
||||
msgid ""
|
||||
"You've pressed {0} but nothing was sent. Should you select a line ending?"
|
||||
msgstr ""
|
||||
msgstr "Դուք փոխանցել եք {0} բայց ոչինչ չի վերագրվել: Դուք պետք է նշեք տողի խմբագրում? "
|
||||
|
||||
#: Base.java:536
|
||||
msgid ""
|
||||
"You've reached the limit for auto naming of new sketches\n"
|
||||
"for the day. How about going for a walk instead?"
|
||||
msgstr ""
|
||||
msgstr "Դուք հասել եք օրվա համար գծագրերի ավտոմատ անվանման սահմանին: Միգուցե գնաք զբոսնելու?"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
msgid ""
|
||||
"Your copy of the IDE is installed in a subfolder of your settings folder.\n"
|
||||
"Please move the IDE to another folder."
|
||||
msgstr ""
|
||||
msgstr "Ձեր IDE-ի պատճենը տեղադրված է կարգավորումների ենթապանակում:\nԽնդրում ենք տեղափոխել IDE-ն այլ պանակ:"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
msgid ""
|
||||
"Your copy of the IDE is installed in a subfolder of your sketchbook.\n"
|
||||
"Please move the IDE to another folder."
|
||||
msgstr ""
|
||||
msgstr "Ձեր IDE-ի պատճենը տեղադրված է գծագրերի գրքի ենթապանակում:\nԽնդրում ենք տեղափոխել IDE-ն այլ պանակ:"
|
||||
|
||||
#: Base.java:2638
|
||||
msgid "ZIP files or folders"
|
||||
msgstr ""
|
||||
msgstr "Ֆայլերը կամ պանակները ZIP անել"
|
||||
|
||||
#: Base.java:2661
|
||||
msgid "Zip doesn't contain a library"
|
||||
msgstr ""
|
||||
msgstr "Zip-ը գրադարան չի պարունակում"
|
||||
|
||||
#: Sketch.java:364
|
||||
#, java-format
|
||||
msgid "\".{0}\" is not a valid extension."
|
||||
msgstr ""
|
||||
msgstr "\".{0}\"-ը վավեր ընդլայնում չէ:"
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
@ -2362,7 +2372,7 @@ msgid ""
|
||||
"older version of Arduino,you may need to use Tools -> Fix Encoding & Reload "
|
||||
"to updatethe sketch to use UTF-8 encoding. If not, you may need todelete the"
|
||||
" bad characters to get rid of this warning."
|
||||
msgstr ""
|
||||
msgstr "\"{0}\"-ը պարունակում է չճանաչված սիմվոլներ: Եթե այս կոդը ստեղծվել է Արդուինոի հին տարբերակով, դուք հնարավոր է պետք է օգտագործեք Գործիքներ -> Ուղղել Կոդավորումը & Վերբեռնել գծագիրը UTF-8 կոդավորման թարմացնելու համար: Եթե ոչ, ապա դուք պետք է ջնջեք վատ սիմվոլները զգուշացումից ազատվելու համար:"
|
||||
|
||||
#: debug/Compiler.java:409
|
||||
msgid ""
|
||||
@ -2370,7 +2380,7 @@ msgid ""
|
||||
"As of Arduino 0019, the Ethernet library depends on the SPI library.\n"
|
||||
"You appear to be using it or another library that depends on the SPI library.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 0019-ում Ethernet գրադարանը կախված է SPI գրադարանից:\nԴուք ամենայն հավանականությամբ օգտագործում եք այն կամ այլ գրադարան, որը կախված է SPI գրադարանից:\n"
|
||||
|
||||
#: debug/Compiler.java:415
|
||||
msgid ""
|
||||
@ -2378,192 +2388,192 @@ msgid ""
|
||||
"As of Arduino 1.0, the 'BYTE' keyword is no longer supported.\n"
|
||||
"Please use Serial.write() instead.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 1.0-ում 'BYTE' հիմնաբառը այլեւս չի աջակցվում:\nԽնդրում ենք փոխարենը օգտագործել Serial.write() :\n"
|
||||
|
||||
#: debug/Compiler.java:427
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Client class in the Ethernet library has been renamed to EthernetClient.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 1.0-ում Client դասը վերանվանվել է EthernetClient-ի:\n\n"
|
||||
|
||||
#: debug/Compiler.java:421
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Server class in the Ethernet library has been renamed to EthernetServer.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 1.0-ում Server դասը վերանվանվել է EthernetServer-ի:\n\n"
|
||||
|
||||
#: debug/Compiler.java:433
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Udp class in the Ethernet library has been renamed to EthernetUdp.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 1.0-ում Udp դասը վերանվանվել է EthernetUdp-ի:\n\n"
|
||||
|
||||
#: debug/Compiler.java:445
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Wire.receive() function was renamed to Wire.read() for consistency with other libraries.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 1.0-ում Wire.receive() ֆունկցիան վերանվանվել է Wire.read()-ի այլ գրադարանների հետ կայունության համար:\n\n"
|
||||
|
||||
#: debug/Compiler.java:439
|
||||
msgid ""
|
||||
"\n"
|
||||
"As of Arduino 1.0, the Wire.send() function was renamed to Wire.write() for consistency with other libraries.\n"
|
||||
"\n"
|
||||
msgstr ""
|
||||
msgstr "\nArduino 1.0-ում Wire.send() ֆունկցիան վերանվանվել է Wire.write()-ի այլ գրադարանների հետ կայունության համար:\n\n"
|
||||
|
||||
#: SerialMonitor.java:130 SerialMonitor.java:133
|
||||
msgid "baud"
|
||||
msgstr ""
|
||||
msgstr "բոդ"
|
||||
|
||||
#: Preferences.java:389
|
||||
msgid "compilation "
|
||||
msgstr ""
|
||||
msgstr "կոմպիլացիա"
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:111
|
||||
msgid "connected!"
|
||||
msgstr ""
|
||||
msgstr "կապնվեց!"
|
||||
|
||||
#: Sketch.java:540
|
||||
msgid "createNewFile() returned false"
|
||||
msgstr ""
|
||||
msgstr "createNewFile()-ն վերադարձրեց false"
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:469
|
||||
msgid "enabled in File > Preferences."
|
||||
msgstr ""
|
||||
msgstr "միացնել Ֆայլ > Կարգավորումներ -ում"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1352
|
||||
msgid "http://www.arduino.cc/"
|
||||
msgstr ""
|
||||
msgstr "http://www.arduino.cc/"
|
||||
|
||||
#: UpdateCheck.java:118
|
||||
msgid "http://www.arduino.cc/en/Main/Software"
|
||||
msgstr ""
|
||||
msgstr "http://www.arduino.cc/en/Main/Software"
|
||||
|
||||
#: UpdateCheck.java:53
|
||||
msgid "http://www.arduino.cc/latest.txt"
|
||||
msgstr ""
|
||||
msgstr "http://www.arduino.cc/latest.txt"
|
||||
|
||||
#: Preferences.java:625
|
||||
#, java-format
|
||||
msgid "ignoring invalid font size {0}"
|
||||
msgstr ""
|
||||
msgstr "Անվավեր տառատեսակի չափը {0} անտեսվում է"
|
||||
|
||||
#: Editor.java:936 Editor.java:943
|
||||
msgid "name is null"
|
||||
msgstr ""
|
||||
msgstr "անունը null է"
|
||||
|
||||
#: Editor.java:932
|
||||
msgid "serialMenu is null"
|
||||
msgstr ""
|
||||
msgstr "serialMenu-ն null է"
|
||||
|
||||
#: debug/Uploader.java:195
|
||||
#, java-format
|
||||
msgid ""
|
||||
"the selected serial port {0} does not exist or your board is not connected"
|
||||
msgstr ""
|
||||
msgstr "{0} սերիալ պորտը գոյություն չունի կամ հարթակը կապնված չէ"
|
||||
|
||||
#: ../../../processing/app/Base.java:389
|
||||
#, java-format
|
||||
msgid "unknown option: {0}"
|
||||
msgstr ""
|
||||
msgstr "անհայտ տարբերակ: {0}"
|
||||
|
||||
#: Preferences.java:391
|
||||
msgid "upload"
|
||||
msgstr ""
|
||||
msgstr "վերբեռնում"
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324
|
||||
#, java-format
|
||||
msgid "version <b>{0}</b>"
|
||||
msgstr ""
|
||||
msgstr "տարբերակ <b>{0}</b>"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2243
|
||||
#, java-format
|
||||
msgid "{0} - {1} | Arduino {2}"
|
||||
msgstr ""
|
||||
msgstr "{0} - {1} | Արդուինո {2}"
|
||||
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43
|
||||
#, java-format
|
||||
msgid "{0} file signature verification failed"
|
||||
msgstr ""
|
||||
msgstr "{0} ֆայլի ստորագրման ստուգումը ձախողվեց"
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310
|
||||
#, java-format
|
||||
msgid "{0} file signature verification failed. File ignored."
|
||||
msgstr ""
|
||||
msgstr "{0} ֆայլի ստորագրման ստուգումը ձախողվեց: Ֆայլը անտեսվեց:"
|
||||
|
||||
#: Editor.java:380
|
||||
#, java-format
|
||||
msgid "{0} files added to the sketch."
|
||||
msgstr ""
|
||||
msgstr "{0} ֆայլեր ավելացվեցին գծագրին:"
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1201
|
||||
#, java-format
|
||||
msgid "{0} libraries"
|
||||
msgstr ""
|
||||
msgstr "{0} գրադարաններ"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76
|
||||
#, java-format
|
||||
msgid "{0} must be a folder"
|
||||
msgstr ""
|
||||
msgstr "{0}-ը պետք է լինի պանակ"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
|
||||
#, java-format
|
||||
msgid "{0} pattern is missing"
|
||||
msgstr ""
|
||||
msgstr "{0} օրինաչափություն բացակայում է"
|
||||
|
||||
#: debug/Compiler.java:365
|
||||
#, java-format
|
||||
msgid "{0} returned {1}"
|
||||
msgstr ""
|
||||
msgstr "{0}-ը վերադարձրեց {1}"
|
||||
|
||||
#: Editor.java:2213
|
||||
#, java-format
|
||||
msgid "{0} | Arduino {1}"
|
||||
msgstr ""
|
||||
msgstr "{0} | Արդունո{1}"
|
||||
|
||||
#: ../../../processing/app/Base.java:519
|
||||
#, java-format
|
||||
msgid "{0}: Invalid argument to --pref, should be of the form \"pref=value\""
|
||||
msgstr ""
|
||||
msgstr "{0}: --pref -ի սխալ արգումենտ, պետք է լինի \"pref=value\" ֆորմատով"
|
||||
|
||||
#: ../../../processing/app/Base.java:476
|
||||
#, java-format
|
||||
msgid ""
|
||||
"{0}: Invalid board name, it should be of the form \"package:arch:board\" or "
|
||||
"\"package:arch:board:options\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Սխալ հարթակի անուն, պետք է լինի \"package:arch:board\" կամ \"package:arch:board:options\" ֆորմատով"
|
||||
|
||||
#: ../../../processing/app/Base.java:509
|
||||
#, java-format
|
||||
msgid "{0}: Invalid option for \"{1}\" option for board \"{2}\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Անվավեր տարբերակ \"{1}\", \"{2}\" տարբերակ հարթակի համար"
|
||||
|
||||
#: ../../../processing/app/Base.java:507
|
||||
#, java-format
|
||||
msgid "{0}: Invalid option for board \"{1}\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Անվավեր տարբերակ \"{1}\" հարթակի համար"
|
||||
|
||||
#: ../../../processing/app/Base.java:502
|
||||
#, java-format
|
||||
msgid "{0}: Invalid option, should be of the form \"name=value\""
|
||||
msgstr ""
|
||||
msgstr "{0}: Անվավեր տարբերակ, պետք է լինի հետեւյալ ձեւով \"name=value\""
|
||||
|
||||
#: ../../../processing/app/Base.java:486
|
||||
#, java-format
|
||||
msgid "{0}: Unknown architecture"
|
||||
msgstr ""
|
||||
msgstr "{0}: Անհայտ ճարտարապետություն"
|
||||
|
||||
#: ../../../processing/app/Base.java:491
|
||||
#, java-format
|
||||
msgid "{0}: Unknown board"
|
||||
msgstr ""
|
||||
msgstr "{0}: Անհայտ հարթակ"
|
||||
|
||||
#: ../../../processing/app/Base.java:481
|
||||
#, java-format
|
||||
msgid "{0}: Unknown package"
|
||||
msgstr ""
|
||||
msgstr "{0}: Անհայտ փաթեթ"
|
||||
|
@ -8,368 +8,370 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# zepyur <jrvezh@yahoo.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-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Armenian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
# Levon <deimusmeister@gmail.com>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Armenian (http\://www.transifex.com/mbanzi/arduino-ide-15/language/hy/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: hy\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
!\ \ (requires\ restart\ of\ Arduino)=
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574 \u0567 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0578\u0582\u0574)
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
#, java-format
|
||||
!\ Not\ used\:\ {0}=
|
||||
\ Not\ used\:\ {0}=\u0549\u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0561\u056e\: {0}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:525
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
\ Used\:\ {0}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0561\u056e\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
!'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
!'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information='arch' \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u057e\u0578\u0582\u0574\! \u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 \u056b\u0576\u0586\u0578\u0580\u0574\u0561\u0581\u056b\u0561\u0575\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0575\u0581\u0565\u056c\u0565\u0584 http\://goo.gl/gfFJzU
|
||||
|
||||
#: Preferences.java:478
|
||||
!(edit\ only\ when\ Arduino\ is\ not\ running)=
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(\u056d\u0574\u0562\u0561\u0563\u0580\u0565\u056c \u0574\u056b\u0561\u0575\u0576 \u0565\u0580\u0562 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0574\u056b\u0561\u0581\u057e\u0561\u056e \u0567)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:67
|
||||
!(legacy)=
|
||||
(legacy)=(\u056a\u0561\u057c\u0561\u0576\u0563\u0578\u0582\u0569\u0575\u0578\u0582\u0576)
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:149
|
||||
!--curdir\ no\ longer\ supported=
|
||||
--curdir\ no\ longer\ supported=--curdir -\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Base.java:468
|
||||
!--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=
|
||||
--verbose,\ --verbose-upload\ and\ --verbose-build\ can\ only\ be\ used\ together\ with\ --verify\ or\ --upload=--verbose, --verbose-upload \u0565\u0582 --verbose-build \u056f\u0561\u0580\u0578\u0572 \u056f\u056b\u0580\u0561\u057c\u057e\u0565\u056c \u0574\u056b\u0561\u057d\u056b\u0576 \u0574\u056b\u0561\u0575\u0576 --verify \u056f\u0561\u0574 --upload -\u056b \u0570\u0565\u057f
|
||||
|
||||
#: Sketch.java:746
|
||||
!.pde\ ->\ .ino=
|
||||
.pde\ ->\ .ino=.pde -> .ino
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:64
|
||||
#, java-format
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}=
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}=<br/>\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0571\u0565\u0580 \u0578\u0580\u0578\u0577 {0}\u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580{1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:66
|
||||
#, java-format
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}boards{1}\ and\ {2}libraries{3}=<br/>\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0571\u0565\u0580 \u0578\u0580\u0578\u0577 {0}\u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b{1} \u0565\u0582 {2}\u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580{3}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ContributionsSelfCheck.java:62
|
||||
#, java-format
|
||||
!<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=
|
||||
<br/>Update\ available\ for\ some\ of\ your\ {0}libraries{1}=<br/>\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0571\u0565\u0580 \u0578\u0580\u0578\u0577 {0}\u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580{1}
|
||||
|
||||
#: Editor.java:2053
|
||||
!<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>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>\u0551\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u0561\u0575\u057d \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u056b \u0570\u0561\u0574\u0561\u0580<BR> \u0576\u0561\u056d\u056f\u0561\u0576 \u0583\u0561\u056f\u0565\u056c\u0568?</b><p>\u0535\u0569\u0565 \u0578\u0579, \u0561\u057a\u0561 \u0571\u0565\u0580 \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u056f\u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0576\:
|
||||
|
||||
#: Sketch.java:398
|
||||
#, java-format
|
||||
!A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=
|
||||
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"="{0}" \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u0586\u0561\u0575\u056c\u0568 \u0561\u0580\u0564\u0565\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b "{1}"-\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:2169
|
||||
#, java-format
|
||||
!A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.="{0}" \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0580\u0564\u0565\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b\: \u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0562\u0561\u0581\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568\:
|
||||
|
||||
#: Base.java:2690
|
||||
#, java-format
|
||||
!A\ library\ named\ {0}\ already\ exists=
|
||||
A\ library\ named\ {0}\ already\ exists={0} \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u0580\u0564\u0565\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b
|
||||
|
||||
#: UpdateCheck.java:103
|
||||
!A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=
|
||||
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0576\u0578\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 \u0561\u0580\u0564\u0565\u0576 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0567,\n\u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u0561\u0575\u0581\u0565\u056c\u0565\u056c \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0576\u0565\u0580\u0562\u0565\u057c\u0574\u0561\u0576 \u0567\u057b\u0568?
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
!A\ newer\ {0}\ package\ is\ available=
|
||||
A\ newer\ {0}\ package\ is\ available=\u0546\u0578\u0580 {0} \u0583\u0561\u0569\u0565\u0569\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0567
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2307
|
||||
!A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=
|
||||
A\ subfolder\ of\ your\ sketchbook\ is\ not\ a\ valid\ library=\u0541\u0565\u0580 \u0563\u056e\u0561\u0563\u0580\u056b \u0565\u0576\u0569\u0561\u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0580\u0564\u056b \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0579\u0567
|
||||
|
||||
#: Editor.java:1116
|
||||
About\ Arduino=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0575\u056b \u0574\u0561\u057d\u056b\u0576
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1177
|
||||
!Add\ .ZIP\ Library...=
|
||||
Add\ .ZIP\ Library...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c .ZIP \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576...
|
||||
|
||||
#: Editor.java:650
|
||||
Add\ File...=\u0531\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0576\u056b\u0577\u0584\u2024\u2024\u2024
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:73
|
||||
!Additional\ Boards\ Manager\ URLs=
|
||||
Additional\ Boards\ Manager\ URLs=\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579\u0576\u0565\u0580\u056b URL-\u0576\u0565\u0580
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:268
|
||||
!Additional\ Boards\ Manager\ URLs\:\ =
|
||||
Additional\ Boards\ Manager\ URLs\:\ =\u053c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579\u0576\u0565\u0580\u056b URL-\u0576\u0565\u0580\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:161
|
||||
!Afrikaans=
|
||||
Afrikaans=\u0531\u0586\u0580\u056b\u056f\u0561\u0561\u0576\u057d
|
||||
|
||||
#: ../../../processing/app/Preferences.java:96
|
||||
!Albanian=
|
||||
Albanian=\u0531\u056c\u0562\u0561\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/DropdownAllItem.java:42
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownAllCoresItem.java:43
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:187
|
||||
!All=
|
||||
All=\u0532\u0578\u056c\u0578\u0580\u0568
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
!An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=
|
||||
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u054d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e \u0586\u0561\u0575\u056c\u056b \u056f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 \u0578\u0582\u0572\u0572\u0565\u056c\u0578\u0582 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\:\n\u0544\u056b \u0583\u0578\u0580\u0571\u0565\u0584 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568, \u0584\u0561\u0576\u056b \u0578\u0580 \u0561\u0575\u0576 \u056f\u0561\u0580\u0578\u0572 \u057e\u0565\u0580\u0561\u0563\u0580\u0565\u056c\n\u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0561\u0580\u0561\u056f\u0568\: \u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u0584 \u057e\u0565\u0580\u0561\u0562\u0561\u0581\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0565\u0582 \u056f\u0580\u056f\u056b\u0576 \u0583\u0578\u0580\u0571\u0565\u0584\:\n
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:99
|
||||
!An\ error\ occurred\ while\ updating\ libraries\ index\!=
|
||||
An\ error\ occurred\ while\ updating\ libraries\ index\!=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u056b\u0576\u0564\u0565\u056f\u057d\u056b \u0569\u0561\u0580\u0574\u0561\u0581\u0574\u0561\u0576 \u056a\u0561\u0574\u0561\u0576\u0561\u056f \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e\!
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!An\ error\ occurred\ while\ uploading\ the\ sketch=
|
||||
An\ error\ occurred\ while\ uploading\ the\ sketch=\u0533\u056e\u0561\u0563\u056b\u0580\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c\u056b\u057d \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
!An\ error\ occurred\ while\ verifying\ the\ sketch=
|
||||
An\ error\ occurred\ while\ verifying\ the\ sketch=\u0533\u056e\u0561\u0563\u0580\u056b \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
!An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=
|
||||
An\ error\ occurred\ while\ verifying/uploading\ the\ sketch=\u0533\u056e\u0561\u0563\u0580\u056b \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576/\u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574 \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0561\u057e
|
||||
|
||||
#: Base.java:228
|
||||
!An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=\u0531\u0576\u0570\u0561\u0575\u057f \u057d\u056d\u0561\u056c \u0567 \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u056c \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574\u056b\u0576 \u0561\u057c\u0561\u0576\u0571\u0576\u0561\u0570\u0561\u057f\u0578\u0582\u056f\n\u056f\u0578\u0564\u056b \u0571\u0565\u0580 \u0570\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u0579\u056b\u0576 \u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\:
|
||||
|
||||
#: Preferences.java:85
|
||||
Arabic=\u0531\u0580\u0561\u0562\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Preferences.java:86
|
||||
!Aragonese=
|
||||
Aragonese=\u0531\u0580\u0561\u0563\u0578\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
!Archive\ Sketch=
|
||||
Archive\ Sketch=\u0531\u0580\u056d\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
!Archive\ sketch\ as\:=
|
||||
Archive\ sketch\ as\:=\u0531\u0580\u056d\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 \u0578\u0580\u057a\u0565\u057d\:
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
!Archive\ sketch\ canceled.=
|
||||
Archive\ sketch\ canceled.=\u0533\u056e\u0561\u0576\u056f\u0561\u0580\u056b \u0561\u0580\u056d\u056b\u057e\u0561\u0581\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u0565\u056c
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
!Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u0533\u056e\u0561\u0576\u056f\u0561\u0580\u056b \u0561\u0580\u056d\u056b\u057e\u0561\u0581\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u056c \u0567, \u0584\u0561\u0576\u056b \u0578\u0580\n\u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0573\u056b\u0577\u057f \u057a\u0561\u0570\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/I18n.java:83
|
||||
!Arduino\ ARM\ (32-bits)\ Boards=
|
||||
Arduino\ ARM\ (32-bits)\ Boards=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 ARM (32-bit) \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u0568
|
||||
|
||||
#: ../../../processing/app/I18n.java:82
|
||||
!Arduino\ AVR\ Boards=
|
||||
Arduino\ AVR\ Boards=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 AVR \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580
|
||||
|
||||
#: Editor.java:2137
|
||||
!Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=
|
||||
Arduino\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u057e \u056f\u0561\u0580\u0578\u0572 \u0567 \u0562\u0561\u0581\u0565\u056c \u0574\u056b\u0561\u0575\u0576 \u057d\u0565\u0583\u0561\u056f\u0561\u0576 \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0576\u0565\u0580\u0568\n\u0565\u0582 \u0561\u0575\u056c \u0586\u0561\u0575\u056c\u0565\u0580 .ino \u056f\u0561\u0574 .pde \u057e\u0565\u0580\u057b\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0561\u0574\u0562
|
||||
|
||||
#: Base.java:1682
|
||||
!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0561\u0577\u056d\u0561\u057f\u0565\u056c, \u0584\u0561\u0576\u056b \u0578\u0580 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580\n\u057d\u057f\u0565\u056c\u056e\u0565\u056c \u057a\u0561\u0576\u0561\u056f \u0571\u0565\u0580 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u0568 \u057a\u0561\u0570\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: Base.java:1889
|
||||
!Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0561\u0577\u056d\u0561\u057f\u0565\u056c, \u0584\u0561\u0576\u056b \u0578\u0580 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580\n\u057d\u057f\u0565\u056c\u056e\u0565\u056c \u057a\u0561\u0576\u0561\u056f \u0571\u0565\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584\u0568 \u057a\u0561\u0570\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:471
|
||||
!Arduino\:\ =
|
||||
Arduino\:\ =\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\:
|
||||
|
||||
#: Sketch.java:588
|
||||
#, java-format
|
||||
!Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=\u054e\u057d\u057f\u0561\u0570 \u0565\u0584 \u0578\u0580 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c "{0}"?
|
||||
|
||||
#: Sketch.java:587
|
||||
!Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=\u054e\u057d\u057f\u0561\u0570 \u0565\u0584 \u0578\u0580 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c \u0561\u0575\u057d \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0568 ?
|
||||
|
||||
#: ../../../processing/app/Base.java:356
|
||||
!Argument\ required\ for\ --board=
|
||||
Argument\ required\ for\ --board=--board -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Base.java:363
|
||||
!Argument\ required\ for\ --port=
|
||||
Argument\ required\ for\ --port=--port -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Base.java:377
|
||||
!Argument\ required\ for\ --pref=
|
||||
Argument\ required\ for\ --pref=--pref -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Base.java:384
|
||||
!Argument\ required\ for\ --preferences-file=
|
||||
Argument\ required\ for\ --preferences-file=--preferences-file -\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:76
|
||||
#: ../../../processing/app/helpers/CommandlineParser.java:83
|
||||
#, java-format
|
||||
!Argument\ required\ for\ {0}=
|
||||
Argument\ required\ for\ {0}={0}-\u056b \u0570\u0561\u0574\u0561\u0580 \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Preferences.java:137
|
||||
!Armenian=
|
||||
Armenian=\u0540\u0561\u0575\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:138
|
||||
!Asturian=
|
||||
Asturian=\u0531\u057d\u057f\u0578\u0582\u0580\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:145
|
||||
!Authorization\ required=
|
||||
Authorization\ required=\u053c\u056b\u0561\u0566\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0567 \u057a\u0561\u0570\u0561\u0576\u057b\u057e\u0578\u0582\u0574
|
||||
|
||||
#: tools/AutoFormat.java:91
|
||||
!Auto\ Format=
|
||||
Auto\ Format=\u0531\u057e\u057f\u0578\u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574
|
||||
|
||||
#: tools/AutoFormat.java:944
|
||||
!Auto\ Format\ finished.=
|
||||
Auto\ Format\ finished.=\u0531\u057e\u057f\u0578\u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:457
|
||||
!Auto-detect\ proxy\ settings=
|
||||
Auto-detect\ proxy\ settings=\u054a\u0580\u0578\u0584\u057d\u056b \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580\u0565\u0580\u056b \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u0573\u0561\u0576\u0561\u0579\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:474
|
||||
!Automatic\ proxy\ configuration\ URL\:=
|
||||
Automatic\ proxy\ configuration\ URL\:=\u0531\u057e\u057f\u0578\u0574\u0561\u057f \u057a\u0580\u0578\u0584\u057d\u056b \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0561\u0575\u056b URL\:
|
||||
|
||||
#: SerialMonitor.java:110
|
||||
!Autoscroll=
|
||||
Autoscroll=\u0531\u057e\u057f\u0578\u0563\u0561\u056c\u0561\u0580\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:2619
|
||||
#, java-format
|
||||
!Bad\ error\ line\:\ {0}=
|
||||
Bad\ error\ line\:\ {0}=\u054e\u0561\u057f \u057d\u056d\u0561\u056c\u056b \u057f\u0578\u0572\: {0}
|
||||
|
||||
#: Editor.java:2136
|
||||
!Bad\ file\ selected=
|
||||
Bad\ file\ selected=\u054e\u0561\u057f \u0586\u0561\u0575\u056c \u0567 \u0568\u0576\u057f\u0580\u057e\u0561\u056e
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
!Basque=
|
||||
Basque=\u0532\u0561\u057d\u056f\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:139
|
||||
!Belarusian=
|
||||
Belarusian=\u0532\u0565\u056c\u0561\u057c\u0578\u0582\u057d\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Base.java:1433
|
||||
#: ../../../processing/app/Editor.java:707
|
||||
!Board=
|
||||
Board=\u0540\u0561\u0580\u0569\u0561\u056f
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:62
|
||||
#, java-format
|
||||
!Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=
|
||||
Board\ {0}\ (platform\ {1},\ package\ {2})\ is\ unknown=\u0540\u0561\u0580\u0569\u0561\u056f {0} (\u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574 {1}, \u0583\u0561\u0569\u0565\u0569 {2}) -\u0568 \u0573\u0561\u0576\u0561\u0579\u057e\u0561\u056e \u0579\u0567
|
||||
|
||||
#: ../../../processing/app/debug/TargetBoard.java:42
|
||||
#, java-format
|
||||
!Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=
|
||||
Board\ {0}\:{1}\:{2}\ doesn''t\ define\ a\ ''build.board''\ preference.\ Auto-set\ to\:\ {3}=\ {0}\:{1}\:{2} \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0579\u056b \u057d\u0561\u0570\u0574\u0561\u0576\u0578\u0582\u0574 ''build.board'' \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568\: \u0531\u057e\u057f\u0578\u0574\u0561\u057f \u0576\u0577\u0561\u0576\u0561\u056f\u0578\u0582\u0574\: {3}
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:472
|
||||
!Board\:\ =
|
||||
Board\:\ =\u0540\u0561\u0580\u0569\u0561\u056f\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
!Boards\ Manager=
|
||||
Boards\ Manager=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1320
|
||||
!Boards\ Manager...=
|
||||
Boards\ Manager...=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:328
|
||||
!Boards\ included\ in\ this\ package\:=
|
||||
Boards\ included\ in\ this\ package\:=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u0568 \u0576\u0565\u0580\u0561\u057c\u057e\u0561\u056e \u0565\u0576 \u0561\u0575\u057d \u0583\u0561\u0569\u0565\u0569\u0578\u0582\u0574\:
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1273
|
||||
#, java-format
|
||||
!Bootloader\ file\ specified\ but\ missing\:\ {0}=
|
||||
Bootloader\ file\ specified\ but\ missing\:\ {0}=Bootloader \u0586\u0561\u0575\u056c\u0568 \u0576\u0577\u057e\u0561\u056e \u0567 \u057d\u0561\u056f\u0561\u0575\u0576 \u0563\u057f\u0576\u057e\u0561\u056e \u0579\u0567\: {0}
|
||||
|
||||
#: ../../../processing/app/Preferences.java:140
|
||||
!Bosnian=
|
||||
Bosnian=\u0532\u0578\u057d\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Both\ NL\ &\ CR=
|
||||
Both\ NL\ &\ CR=\u0535\u0580\u056f\u0578\u0582\u057d\u0576 \u0567\u056c NL & CR
|
||||
|
||||
#: Preferences.java:81
|
||||
Browse=\u0536\u0576\u0576\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1530
|
||||
!Build\ options\ changed,\ rebuilding\ all=
|
||||
Build\ options\ changed,\ rebuilding\ all=\u053f\u0561\u057c\u0578\u0582\u0581\u0574\u0561\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0576\u0565\u0580\u0568 \u0583\u0578\u0583\u0578\u056d\u057e\u0565\u056c \u0565\u0576, \u057e\u0565\u0580\u0561\u056f\u0561\u057c\u0578\u0582\u0581\u0565\u056c \u0561\u0574\u0562\u0578\u0572\u057b\u0568
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1210
|
||||
!Built-in\ Examples=
|
||||
Built-in\ Examples=\u0546\u0565\u0580\u0564\u0580\u057e\u0561\u0581 \u0585\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580
|
||||
|
||||
#: ../../../processing/app/Preferences.java:80
|
||||
!Bulgarian=
|
||||
Bulgarian=\u0532\u0578\u0582\u056c\u0572\u0561\u0580\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:141
|
||||
!Burmese\ (Myanmar)=
|
||||
Burmese\ (Myanmar)=\u0532\u0578\u0582\u057c\u0574\u0565\u0580\u0565\u0576 (\u0544\u0575\u0561\u0576\u0574\u0561\u0580)
|
||||
|
||||
#: Editor.java:708
|
||||
!Burn\ Bootloader=
|
||||
Burn\ Bootloader=\u054e\u0561\u057c\u0565\u056c Bootloader-\u0568
|
||||
|
||||
#: Editor.java:2504
|
||||
!Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=
|
||||
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=bootloader-\u0568 \u057e\u0561\u057c\u057e\u0578\u0582\u0574 \u0567 I/O \u0570\u0561\u0580\u0569\u0561\u056f\u056b\u0576 (\u057d\u0561 \u056f\u0561\u0580\u0578\u0572 \u0567 \u057f\u0565\u0582\u0565\u056c \u0574\u056b\u0584\u0561\u0576\u056b \u0580\u0578\u057a\u0565)...
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:77
|
||||
!CRC\ doesn't\ match.\ File\ is\ corrupted.=
|
||||
CRC\ doesn't\ match.\ File\ is\ corrupted.=CRC -\u056b\u0576 \u0579\u056b \u0570\u0561\u0574\u0561\u057a\u0561\u057f\u0561\u057d\u056d\u0561\u0576\u0578\u0582\u0574\: \u0556\u0561\u0575\u056c\u0568 \u057e\u0576\u0561\u057d\u057e\u0561\u056e \u0567\:
|
||||
|
||||
#: ../../../processing/app/Base.java:379
|
||||
#, java-format
|
||||
!Can\ only\ pass\ one\ of\:\ {0}=
|
||||
Can\ only\ pass\ one\ of\:\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u0583\u0578\u056d\u0561\u0576\u0581\u0565\u056c {0}-\u056b\u0581 \u0574\u056b\u0561\u0575\u0576 \u0574\u0565\u056f\u0568
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
!Can't\ find\ the\ sketch\ in\ the\ specified\ path=
|
||||
Can't\ find\ the\ sketch\ in\ the\ specified\ path=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0563\u057f\u0576\u0565\u056c \u0563\u056e\u0561\u0576\u056f\u0561\u0580 \u0576\u0577\u057e\u0561\u056e \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u056b\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:92
|
||||
!Canadian\ French=
|
||||
Canadian\ French=\u053f\u0561\u0576\u0561\u0564\u0561\u056f\u0561\u0576 \u0586\u0580\u0561\u0576\u057d\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Preferences.java:79 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2064 Editor.java:2145 Editor.java:2465
|
||||
Cancel=\u0549\u0565\u0572\u0561\u0580\u056f\u0565\u056c
|
||||
|
||||
#: Sketch.java:455
|
||||
!Cannot\ Rename=
|
||||
Cannot\ Rename=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/Base.java:465
|
||||
!Cannot\ specify\ any\ sketch\ files=
|
||||
Cannot\ specify\ any\ sketch\ files=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0576\u0577\u0565\u056c \u0578\u0580\u0565\u0582\u0567 \u0563\u056e\u0561\u0563\u0580\u056b \u0586\u0561\u0575\u056c
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Carriage\ return=
|
||||
Carriage\ return=\u0546\u0578\u0580 \u057f\u0578\u0572
|
||||
|
||||
#: Preferences.java:87
|
||||
Catalan=\u053f\u0561\u057f\u0561\u056c\u0578\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Preferences.java:419
|
||||
!Check\ for\ updates\ on\ startup=
|
||||
Check\ for\ updates\ on\ startup=\u054e\u0565\u0580\u057d\u056f\u057d\u0574\u0561\u0576 \u056a\u0561\u0574\u0561\u0576\u0561\u056f \u057d\u057f\u0578\u0582\u0563\u0565\u056c \u0569\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574\u0576\u0565\u0580\u0568
|
||||
|
||||
#: ../../../processing/app/Preferences.java:142
|
||||
!Chinese\ (China)=
|
||||
Chinese\ (China)=\u0549\u056b\u0576\u0565\u0580\u0565\u0576 (\u0549\u056b\u0576\u0561\u057d\u057f\u0561\u0576)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
!Chinese\ (Taiwan)=
|
||||
Chinese\ (Taiwan)=\u0549\u056b\u0576\u0565\u0580\u0565\u0576 (\u0539\u0561\u0575\u057e\u0561\u0576)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:143
|
||||
!Chinese\ (Taiwan)\ (Big5)=
|
||||
Chinese\ (Taiwan)\ (Big5)=Chinese (Taiwan) (Big5)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:98
|
||||
!Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=
|
||||
Click\ for\ a\ list\ of\ unofficial\ boards\ support\ URLs=\u054d\u0565\u0572\u0574\u0565\u0584 \u0578\u0579 \u0585\u0586\u056b\u0581\u056b\u0561\u056c \u0570\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u056b \u057d\u057a\u0561\u057d\u0561\u0580\u056f\u0574\u0561\u0576 URL-\u0576\u0565\u0580\u056b \u0581\u0578\u0582\u0581\u0561\u056f\u056b \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: Editor.java:521 Editor.java:2024
|
||||
Close=\u0553\u0561\u056f\u0565\u056c
|
||||
|
||||
#: Editor.java:1208 Editor.java:2749
|
||||
!Comment/Uncomment=
|
||||
Comment/Uncomment=\u0544\u0565\u056f\u0576\u0561\u0562\u0561\u0576\u0565\u056c/\u0544\u0565\u056f\u0576\u0561\u0562\u0561\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u0565\u056c
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:266
|
||||
!Compiler\ warnings\:\ =
|
||||
Compiler\ warnings\:\ =\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0575\u056b \u0576\u0561\u056d\u0561\u0566\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\u0576\u0565\u0580\:
|
||||
|
||||
#: Sketch.java:1608 Editor.java:1890
|
||||
!Compiling\ sketch...=
|
||||
Compiling\ sketch...=\u0533\u056e\u0561\u0576\u056f\u0561\u0580\u0568 \u056f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u057e\u0578\u0582\u0574 \u0567...
|
||||
|
||||
#: Editor.java:1157 Editor.java:2707
|
||||
Copy=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c
|
||||
|
||||
#: Editor.java:1177 Editor.java:2723
|
||||
!Copy\ as\ HTML=
|
||||
Copy\ as\ HTML=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u0578\u0580\u057a\u0565\u057d HTML
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:455
|
||||
!Copy\ error\ messages=
|
||||
Copy\ error\ messages=\u054a\u0561\u057f\u0573\u0565\u0576\u0574\u0561\u0576 \u057d\u056d\u0561\u056c\u056b \u0570\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580
|
||||
|
||||
#: Editor.java:1165 Editor.java:2715
|
||||
!Copy\ for\ Forum=
|
||||
Copy\ for\ Forum=\u054a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u0586\u0578\u0580\u0578\u0582\u0574\u056b \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: Sketch.java:1089
|
||||
#, java-format
|
||||
!Could\ not\ add\ ''{0}''\ to\ the\ sketch.=
|
||||
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c ''{0}'' \u0563\u056e\u0561\u0563\u0580\u056b\u0576\:
|
||||
|
||||
#: Editor.java:2188
|
||||
!Could\ not\ copy\ to\ a\ proper\ location.=
|
||||
Could\ not\ copy\ to\ a\ proper\ location.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u0570\u0561\u0574\u0561\u057a\u0561\u057f\u0561\u057d\u056d\u0561\u0576 \u057e\u0561\u0575\u0580
|
||||
|
||||
#: Editor.java:2179
|
||||
!Could\ not\ create\ the\ sketch\ folder.=
|
||||
Could\ not\ create\ the\ sketch\ folder.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057d\u057f\u0565\u0572\u056e\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568
|
||||
|
||||
#: Editor.java:2206
|
||||
!Could\ not\ create\ the\ sketch.=
|
||||
Could\ not\ create\ the\ sketch.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057d\u057f\u0565\u0572\u056e\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568
|
||||
|
||||
#: Sketch.java:617
|
||||
#, java-format
|
||||
!Could\ not\ delete\ "{0}".=
|
||||
Could\ not\ delete\ "{0}".=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057b\u0576\u057b\u0565\u056c "{0}"-\u0568\:
|
||||
|
||||
#: Sketch.java:1066
|
||||
#, java-format
|
||||
!Could\ not\ delete\ the\ existing\ ''{0}''\ file.=
|
||||
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057b\u0576\u057b\u0565\u056c \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0581\u0578\u0572 "{0}" \u0586\u0561\u0575\u056c\u0568\:
|
||||
|
||||
#: Base.java:2533 Base.java:2556
|
||||
#, java-format
|
||||
@ -377,182 +379,182 @@ Could\ not\ delete\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u057b\u0576\u
|
||||
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:74
|
||||
#, java-format
|
||||
!Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=
|
||||
Could\ not\ find\ boards.txt\ in\ {0}.\ Is\ it\ pre-1.5?=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0563\u057f\u0576\u0565\u056c boards.txt -\u0568 {0} -\u0578\u0582\u0574. \u0534\u0561 pre-1.5 \u0567 ?
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:282
|
||||
#, java-format
|
||||
!Could\ not\ find\ tool\ {0}=
|
||||
Could\ not\ find\ tool\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0563\u057f\u0576\u0565\u056c {0} \u0563\u0578\u0580\u056e\u056b\u0584\u0568
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:278
|
||||
#, java-format
|
||||
!Could\ not\ find\ tool\ {0}\ from\ package\ {1}=
|
||||
Could\ not\ find\ tool\ {0}\ from\ package\ {1}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0563\u057f\u0576\u0565\u056c {0} \u0563\u0578\u0580\u056e\u056b\u0584\u0568 {1} \u0583\u0561\u0569\u0565\u0569\u056b\u0581
|
||||
|
||||
#: Base.java:1934
|
||||
#, java-format
|
||||
!Could\ not\ open\ the\ URL\n{0}=
|
||||
Could\ not\ open\ the\ URL\n{0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0562\u0561\u0581\u0565\u056c \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c URL-\u0568\n{0}
|
||||
|
||||
#: Base.java:1958
|
||||
#, java-format
|
||||
!Could\ not\ open\ the\ folder\n{0}=
|
||||
Could\ not\ open\ the\ folder\n{0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0562\u0561\u0581\u0565\u056c \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u057a\u0561\u0576\u0561\u056f\u0568\n{0}
|
||||
|
||||
#: Sketch.java:1769
|
||||
!Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=
|
||||
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0570\u0561\u0580\u056f\u056b\u0576 \u057e\u0565\u0580\u0561\u057a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: \u0534\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u057a\u0580\u0578\u0562\u056c\u0565\u0574\u0576\u0565\u0580 \u0578\u0582\u0576\u0565\u0576\u0561\u0584,\n\u0535\u0582 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 \u057a\u0561\u057f\u0573\u0565\u0576\u0565\u056c \u056f\u0578\u0564\u0568 \u0561\u0575\u056c \u057f\u0565\u0584\u057d\u057f\u0561\u0575\u056b\u0576 \u056d\u0574\u0562\u0561\u0563\u0580\u056b\u0579\u0578\u0582\u0574\:
|
||||
|
||||
#: Sketch.java:1768
|
||||
!Could\ not\ re-save\ sketch=
|
||||
Could\ not\ re-save\ sketch=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u057a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568
|
||||
|
||||
#: Theme.java:52
|
||||
!Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
|
||||
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u056f\u0561\u0580\u0564\u0561\u056c \u0563\u0578\u0582\u0576\u0561\u0575\u056b\u0576 \u0569\u0565\u0574\u0561\u0575\u056b \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u0568\:\n\u0534\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057e\u0565\u0580\u0561\u057f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576\:
|
||||
|
||||
#: Preferences.java:219
|
||||
!Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=
|
||||
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u056f\u0561\u0580\u0564\u0561\u056c \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u0568\:\n\u0534\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057e\u0565\u0580\u0561\u057f\u0565\u0572\u0561\u0564\u0580\u0565\u0584 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576\:
|
||||
|
||||
#: Base.java:2482
|
||||
#, java-format
|
||||
!Could\ not\ remove\ old\ version\ of\ {0}=
|
||||
Could\ not\ remove\ old\ version\ of\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057b\u0576\u057b\u0565\u056c {0}-\u056b \u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568
|
||||
|
||||
#: Sketch.java:483 Sketch.java:528
|
||||
#, java-format
|
||||
!Could\ not\ rename\ "{0}"\ to\ "{1}"=
|
||||
Could\ not\ rename\ "{0}"\ to\ "{1}"=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c "{0}"-\u0568 "{1}"-\u056b
|
||||
|
||||
#: Sketch.java:475
|
||||
!Could\ not\ rename\ the\ sketch.\ (0)=
|
||||
Could\ not\ rename\ the\ sketch.\ (0)=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: (0)
|
||||
|
||||
#: Sketch.java:496
|
||||
!Could\ not\ rename\ the\ sketch.\ (1)=
|
||||
Could\ not\ rename\ the\ sketch.\ (1)=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: (1)
|
||||
|
||||
#: Sketch.java:503
|
||||
!Could\ not\ rename\ the\ sketch.\ (2)=
|
||||
Could\ not\ rename\ the\ sketch.\ (2)=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: (2)
|
||||
|
||||
#: Base.java:2492
|
||||
#, java-format
|
||||
Could\ not\ replace\ {0}={0}-\u0576 \u0579\u0565\u0572\u0561\u057e \u0583\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c
|
||||
|
||||
#: tools/Archiver.java:74
|
||||
!Couldn't\ archive\ sketch=
|
||||
Couldn't\ archive\ sketch=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0561\u0580\u056d\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568
|
||||
|
||||
#: Sketch.java:1647
|
||||
!Couldn't\ determine\ program\ size\:\ {0}=
|
||||
Couldn't\ determine\ program\ size\:\ {0}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0578\u0580\u0578\u0577\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u056b \u0579\u0561\u0583\u0568\: {0}
|
||||
|
||||
#: Sketch.java:616
|
||||
!Couldn't\ do\ it=
|
||||
Couldn't\ do\ it=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567\u0580 \u0561\u0576\u0565\u056c \u0564\u0561
|
||||
|
||||
#: debug/BasicUploader.java:209
|
||||
!Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=
|
||||
Couldn't\ find\ a\ Board\ on\ the\ selected\ port.\ Check\ that\ you\ have\ the\ correct\ port\ selected.\ \ If\ it\ is\ correct,\ try\ pressing\ the\ board's\ reset\ button\ after\ initiating\ the\ upload.=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0565\u0572\u0561\u057e \u0563\u057f\u0576\u0565\u056c \u0570\u0561\u0580\u0569\u0561\u056f \u0576\u0577\u057e\u0561\u056e \u057a\u0578\u0580\u057f\u0578\u0582\u0574\: \u0540\u0561\u0574\u0578\u0566\u057e\u0565\u0584 \u0578\u0580 \u0573\u056b\u0577\u057f \u057a\u0578\u0580\u057f \u0565\u0584 \u0576\u0577\u0565\u056c\: \u0535\u0569\u0565 \u0561\u0575\u0576 \u0573\u056b\u0577\u057f \u0567, \u0583\u0578\u0580\u0571\u0565\u0584 \u057d\u0565\u0572\u0574\u0565\u056c \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0574\u0561\u0576 \u056f\u0578\u0573\u0561\u056f\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0568 \u057d\u056f\u057d\u0565\u056c\u0578\u0582\u0581 \u0561\u057c\u0561\u057b\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:82
|
||||
!Croatian=
|
||||
Croatian=\u053d\u0578\u0580\u057e\u0561\u0569\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Editor.java:1149 Editor.java:2699
|
||||
!Cut=
|
||||
Cut=\u053f\u057f\u0580\u0565\u056c
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:119
|
||||
!Czech\ (Czech\ Republic)=
|
||||
Czech\ (Czech\ Republic)=\u0549\u0565\u056d\u0565\u0580\u0565\u0576 (\u0549\u0565\u056d\u056b\u0561)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:120
|
||||
!Danish\ (Denmark)=
|
||||
Danish\ (Denmark)=\u0534\u0561\u0576\u056b\u0565\u0580\u0565\u0576 (\u0534\u0561\u0576\u056b\u0561)
|
||||
|
||||
#: Editor.java:1224 Editor.java:2765
|
||||
!Decrease\ Indent=
|
||||
Decrease\ Indent=\u0553\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:185
|
||||
!Default=
|
||||
Default=\u053c\u057c\u0565\u056c\u0575\u0561\u0575\u0576
|
||||
|
||||
#: EditorHeader.java:314 Sketch.java:591
|
||||
!Delete=
|
||||
Delete=\u054b\u0576\u057b\u0567\u056c
|
||||
|
||||
#: debug/Uploader.java:199
|
||||
!Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=
|
||||
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=\u054d\u0561\u0580\u0584\u0568 \u0579\u056b \u0561\u0580\u0571\u0561\u0563\u0561\u0576\u0584\u0578\u0582\u0574, \u057d\u057f\u0578\u0582\u0563\u0565\u0584 \u0561\u0580\u0564\u0575\u0578\u0584 \u0573\u056b\u0577\u057f \u057a\u0578\u0580\u057f\u0576 \u0567 \u0576\u0577\u057e\u0561\u056e \u056f\u0561\u0574 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0565\u056c\u0578\u0582\u0581 \u0561\u057c\u0561\u057b
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
!Discard\ all\ changes\ and\ reload\ sketch?=
|
||||
Discard\ all\ changes\ and\ reload\ sketch?=\u0549\u0565\u0572\u0561\u0580\u056f\u0565\u056c \u0562\u0578\u056c\u0578\u0580 \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u0565\u0582 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568?
|
||||
|
||||
#: ../../../processing/app/Preferences.java:438
|
||||
!Display\ line\ numbers=
|
||||
Display\ line\ numbers=\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u057f\u0578\u0572\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580\u0576\u0565\u0580\u0568
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
#, java-format
|
||||
!Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=
|
||||
Do\ you\ want\ to\ remove\ {0}?\nIf\ you\ do\ so\ you\ won't\ be\ able\ to\ use\ {0}\ any\ more.=\u0551\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c {0}-\u0568?\n\u0535\u0569\u0565 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584, \u0561\u057a\u0561 {0}-\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0561\u0575\u056c\u0587\u057d \u0579\u056b \u056c\u056b\u0576\u056b\:
|
||||
|
||||
#: Editor.java:2064
|
||||
Don't\ Save=\u0549\u0570\u056b\u0577\u0565\u056c
|
||||
|
||||
#: Editor.java:2275 Editor.java:2311
|
||||
!Done\ Saving.=
|
||||
Done\ Saving.=\u054a\u0561\u0570\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567
|
||||
|
||||
#: Editor.java:2510
|
||||
!Done\ burning\ bootloader.=
|
||||
Done\ burning\ bootloader.=bootloader \u057e\u0561\u057c\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:507
|
||||
#: ../../../processing/app/BaseNoGui.java:552
|
||||
!Done\ compiling=
|
||||
Done\ compiling=\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567
|
||||
|
||||
#: Editor.java:1911 Editor.java:1928
|
||||
!Done\ compiling.=
|
||||
Done\ compiling.=\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\:
|
||||
|
||||
#: Editor.java:2564
|
||||
!Done\ printing.=
|
||||
Done\ printing.=\u054f\u057a\u0565\u056c\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:514
|
||||
!Done\ uploading=
|
||||
Done\ uploading=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567
|
||||
|
||||
#: Editor.java:2395 Editor.java:2431
|
||||
!Done\ uploading.=
|
||||
Done\ uploading.=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0576 \u0561\u057e\u0561\u0580\u057f\u057e\u0561\u056e \u0567\:
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:105
|
||||
#, java-format
|
||||
!Downloaded\ {0}kb\ of\ {1}kb.=
|
||||
Downloaded\ {0}kb\ of\ {1}kb.=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0561\u056e \u0567 {0}kb {1}kb-\u056b\u0581\:
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:107
|
||||
!Downloading\ boards\ definitions.=
|
||||
Downloading\ boards\ definitions.=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u057d\u0561\u0570\u0574\u0561\u0576\u0578\u0582\u0574\u0576\u0565\u0580\u0568\:
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:86
|
||||
!Downloading\ libraries\ index...=
|
||||
Downloading\ libraries\ index...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u056b\u0576\u0564\u0565\u056f\u057d\u0568...
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:115
|
||||
#, java-format
|
||||
!Downloading\ library\:\ {0}=
|
||||
Downloading\ library\:\ {0}=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:318
|
||||
!Downloading\ platforms\ index...=
|
||||
Downloading\ platforms\ index...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574\u0576\u0565\u0580\u056b \u056b\u0576\u0564\u0565\u056f\u057d\u0568...
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:113
|
||||
#, java-format
|
||||
!Downloading\ tools\ ({0}/{1}).=
|
||||
Downloading\ tools\ ({0}/{1}).=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0565\u0576 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u0568 ({0}/{1}).
|
||||
|
||||
#: Preferences.java:91
|
||||
Dutch=\u0540\u0578\u056c\u0561\u0576\u0564\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:144
|
||||
!Dutch\ (Netherlands)=
|
||||
Dutch\ (Netherlands)=\u0540\u0578\u056c\u0561\u0576\u0564\u0565\u0580\u0565\u0576 (\u0540\u0578\u056c\u0561\u0576\u0564\u056b\u0561)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1309
|
||||
!Edison\ Help=
|
||||
Edison\ Help=\u0535\u0564\u056b\u057d\u0578\u0576\u056b \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576
|
||||
|
||||
#: Editor.java:1130
|
||||
Edit=\u053d\u0574\u0562\u0561\u0563\u0580\u0565\u056c
|
||||
|
||||
#: Preferences.java:370
|
||||
!Editor\ font\ size\:\ =
|
||||
Editor\ font\ size\:\ =\u053d\u0574\u0562\u0561\u0563\u0580\u056b\u0579\u056b \u057f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f\u056b \u0579\u0561\u0583\u0568\:
|
||||
|
||||
#: Preferences.java:353
|
||||
!Editor\ language\:\ =
|
||||
Editor\ language\:\ =\u053d\u0574\u0562\u0561\u0563\u0580\u056b\u0579\u056b \u056c\u0565\u0566\u0578\u0582\u0576\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:322
|
||||
!Enable\ Code\ Folding=
|
||||
Enable\ Code\ Folding=\u0531\u056f\u057f\u056b\u057e\u0561\u0581\u0576\u0565\u056c \u056f\u0578\u0564\u056b \u0583\u0561\u0569\u0561\u0569\u0578\u0582\u0574\u0568
|
||||
|
||||
#: Preferences.java:92
|
||||
English=\u0531\u0576\u0563\u056c\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:145
|
||||
!English\ (United\ Kingdom)=
|
||||
English\ (United\ Kingdom)=\u0531\u0576\u0563\u056c\u0565\u0580\u0565\u0576 (\u0544\u056b\u0561\u0581\u0575\u0561\u056c \u0539\u0561\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:269
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:271
|
||||
!Enter\ a\ comma\ separated\ list\ of\ urls=
|
||||
Enter\ a\ comma\ separated\ list\ of\ urls=\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u0584 \u057d\u057f\u0578\u0580\u0561\u056f\u0565\u057f\u0578\u057e \u0562\u0561\u056a\u0561\u0576\u057e\u0561\u056e url-\u0576\u0565\u0580\u056b \u0581\u0561\u0576\u056f\u0568
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/AdditionalBoardsManagerURLTextArea.java:96
|
||||
!Enter\ additional\ URLs,\ one\ for\ each\ row=
|
||||
Enter\ additional\ URLs,\ one\ for\ each\ row=\u0544\u0578\u0582\u057f\u0584\u0561\u0563\u0580\u0565\u056c \u056c\u0580\u0561\u0581\u0578\u0582\u0581\u056b\u0579 URL-\u0576\u0565\u0580, \u0574\u0565\u056f\u0561\u056f\u0561\u0576 \u0561\u0574\u0565\u0576 \u057f\u0578\u0572\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:1062
|
||||
Environment=\u0544\u056b\u057b\u0561\u057e\u0561\u0575\u0580
|
||||
@ -563,119 +565,123 @@ Environment=\u0544\u056b\u057b\u0561\u057e\u0561\u0575\u0580
|
||||
Error=\u054d\u056d\u0561\u056c
|
||||
|
||||
#: Sketch.java:1065 Sketch.java:1088
|
||||
!Error\ adding\ file=
|
||||
Error\ adding\ file=\u0556\u0561\u0575\u056c\u056b \u0561\u057e\u0565\u056c\u0561\u0581\u0574\u0561\u0576 \u057d\u056d\u0561\u056c
|
||||
|
||||
#: debug/Compiler.java:369
|
||||
!Error\ compiling.=
|
||||
Error\ compiling.=\u053f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0575\u056b \u057d\u056d\u0561\u056c\:
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:113
|
||||
#, java-format
|
||||
!Error\ downloading\ {0}=
|
||||
Error\ downloading\ {0}=\u0546\u0565\u0580\u0562\u0565\u057c\u0574\u0561\u0576 \u057d\u056d\u0561\u056c {0}
|
||||
|
||||
#: Base.java:1674
|
||||
!Error\ getting\ the\ Arduino\ data\ folder.=
|
||||
Error\ getting\ the\ Arduino\ data\ folder.=\u054d\u056d\u0561\u056c \u0531\u0580\u0564\u0578\u0582\u0576\u0578\u056b \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580 \u057a\u0561\u0576\u0561\u056f\u0568 \u0562\u0565\u057c\u0576\u0565\u056c\u056b\u057d\:
|
||||
|
||||
#: Serial.java:593
|
||||
#, java-format
|
||||
!Error\ inside\ Serial.{0}()=
|
||||
Error\ inside\ Serial.{0}()=\u054d\u056d\u0561\u056c \u057d\u0565\u0580\u056b\u0561\u056c\u0578\u0582\u0574.{0}()
|
||||
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:95
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:106
|
||||
#: ../../../processing/app/debug/TargetPlatform.java:117
|
||||
#, java-format
|
||||
!Error\ loading\ {0}=
|
||||
Error\ loading\ {0}=\u0532\u0565\u057c\u0576\u0574\u0561\u0576 \u057d\u056d\u0561\u056c {0}
|
||||
|
||||
#: Serial.java:181
|
||||
#, java-format
|
||||
!Error\ opening\ serial\ port\ ''{0}''.=
|
||||
Error\ opening\ serial\ port\ ''{0}''.=\u054d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u056b \u0562\u0561\u0581\u0574\u0561\u0576 \u057d\u056d\u0561\u056c ''{0}''\:
|
||||
|
||||
#: ../../../processing/app/Serial.java:119
|
||||
#, java-format
|
||||
!Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=
|
||||
Error\ opening\ serial\ port\ ''{0}''.\ Try\ consulting\ the\ documentation\ at\ http\://playground.arduino.cc/Linux/All\#Permission=\u054d\u056d\u0561\u056c ''{0}' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0562\u0561\u0581\u0565\u056c\u056b\u057d\: \u0546\u0561\u0575\u056b\u0580 \u0583\u0561\u057d\u057f\u0561\u0569\u0572\u0569\u0565\u0580\u0568 \u0561\u0575\u057f\u0565\u0572 http\://playground.arduino.cc/Linux/All\#Permission
|
||||
|
||||
#: Preferences.java:277
|
||||
!Error\ reading\ preferences=
|
||||
Error\ reading\ preferences=\u054d\u056d\u0561\u056c \u0570\u0572\u0578\u0582\u0574\u0576\u0565\u0580\u0568 \u056f\u0561\u0580\u0564\u0561\u056c\u056b\u057d
|
||||
|
||||
#: Preferences.java:279
|
||||
#, java-format
|
||||
!Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=
|
||||
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=\u054d\u056d\u0561\u056c \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u0586\u0561\u0575\u056c\u0568 \u056f\u0561\u0580\u0564\u0561\u056c\u056b\u057d\: \u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u057b\u0576\u057b\u0565\u056c(\u056f\u0561\u0574 \u0574\u0561\u0584\u0580\u0565\u056c) {0}-\u0568 \u0587 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0565\u0584 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576\:
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:146
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:166
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:245
|
||||
!Error\ running\ post\ install\ script=
|
||||
Error\ running\ post\ install\ script=\u054d\u056d\u0561\u056c \u0570\u0565\u057f-\u057f\u0565\u0572\u0561\u0564\u0580\u0574\u0561\u0576 \u057d\u056f\u0580\u056b\u057a\u057f\u0568 \u0561\u0577\u056d\u0561\u057f\u0561\u0581\u0576\u0565\u056c\u056b\u057d
|
||||
|
||||
#: ../../../cc/arduino/packages/DiscoveryManager.java:25
|
||||
!Error\ starting\ discovery\ method\:\ =
|
||||
Error\ starting\ discovery\ method\:\ =\u054d\u056d\u0561\u056c \u0573\u0561\u0576\u0561\u0579\u0574\u0561\u0576 \u0574\u0565\u0569\u0578\u0564\u0568 \u057d\u056f\u057d\u0565\u056c\u0578\u0582\u0581\:
|
||||
|
||||
#: Serial.java:125
|
||||
#, java-format
|
||||
!Error\ touching\ serial\ port\ ''{0}''.=
|
||||
Error\ touching\ serial\ port\ ''{0}''.=\u054d\u056d\u0561\u056c ''{0}'' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u056b \u057e\u0565\u0580\u0561\u0562\u0565\u0580\u0575\u0561\u056c\:
|
||||
|
||||
#: Editor.java:2512 Editor.java:2516 Editor.java:2520
|
||||
!Error\ while\ burning\ bootloader.=
|
||||
Error\ while\ burning\ bootloader.=\u054d\u056d\u0561\u056c bootloader-\u056b \u057e\u0561\u057c\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\:
|
||||
|
||||
#: ../../../processing/app/Editor.java:2555
|
||||
!Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
Error\ while\ burning\ bootloader\:\ missing\ '{0}'\ configuration\ parameter=\u054d\u056d\u0561\u056c bootloader-\u0568 \u057e\u0561\u057c\u0565\u056c\u056b\u057d\: \u057a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0578\u0576 \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1940
|
||||
!Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
Error\ while\ compiling\:\ missing\ '{0}'\ configuration\ parameter=\u054d\u056d\u0561\u056c \u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: \u057a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0578\u0576 \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
!Error\ while\ loading\ code\ {0}=
|
||||
Error\ while\ loading\ code\ {0}=\u054d\u056d\u0561\u056c {0}-\u056b \u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:2567
|
||||
!Error\ while\ printing.=
|
||||
Error\ while\ printing.=\u054d\u056d\u0561\u056c \u057f\u057a\u0565\u056c\u0578\u0582 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\:
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
Error\ while\ uploading=\u054d\u056d\u0561\u056c \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Editor.java:2409
|
||||
#: ../../../processing/app/Editor.java:2449
|
||||
!Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=
|
||||
Error\ while\ uploading\:\ missing\ '{0}'\ configuration\ parameter=\u054d\u056d\u0561\u056c \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\: \u057a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u056f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0561\u0575\u056b \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:506
|
||||
#: ../../../processing/app/BaseNoGui.java:551
|
||||
#: ../../../processing/app/BaseNoGui.java:554
|
||||
!Error\ while\ verifying=
|
||||
Error\ while\ verifying=\u054d\u056d\u0561\u056c \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:521
|
||||
!Error\ while\ verifying/uploading=
|
||||
Error\ while\ verifying/uploading=\u054d\u056d\u0561\u056c \u057d\u057f\u0578\u0582\u0563\u0574\u0561\u0576/\u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0574\u0561\u0576 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574
|
||||
|
||||
#: Preferences.java:93
|
||||
Estonian=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:146
|
||||
!Estonian\ (Estonia)=
|
||||
Estonian\ (Estonia)=\u0537\u057d\u057f\u0578\u0576\u0565\u0580\u0565\u0576 (\u0537\u057d\u057f\u0578\u0576\u056b\u0561)
|
||||
|
||||
#: Editor.java:516
|
||||
Examples=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1244
|
||||
!Examples\ from\ Custom\ Libraries=
|
||||
Examples\ from\ Custom\ Libraries=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 \u0570\u0561\u0580\u0574\u0561\u0580\u0565\u0581\u057e\u0561\u056e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b\u0581
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1222
|
||||
!Examples\ from\ Libraries=
|
||||
Examples\ from\ Libraries=\u0555\u0580\u056b\u0576\u0561\u056f\u0576\u0565\u0580 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:753
|
||||
!Export\ canceled,\ changes\ must\ first\ be\ saved.=
|
||||
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u0531\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574\u0576 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0581, \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u057a\u0565\u057f\u0584 \u0567 \u0561\u057c\u0561\u057b\u056b\u0576 \u0570\u0565\u0580\u0569\u056b\u0576 \u057a\u0561\u0570\u057e\u0565\u0576\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:750
|
||||
!Export\ compiled\ Binary=
|
||||
Export\ compiled\ Binary=\u0531\u0580\u057f\u0561\u0570\u0561\u0576\u0565\u056c \u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u057e\u0561\u056e \u0562\u056b\u0576\u0561\u0580\u0568
|
||||
|
||||
#: ../../../processing/app/Base.java:416
|
||||
#, java-format
|
||||
!Failed\ to\ open\ sketch\:\ "{0}"=
|
||||
Failed\ to\ open\ sketch\:\ "{0}"=\u0541\u0561\u056d\u0578\u0572\u057e\u0565\u0581 \u0562\u0561\u0581\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568\: "{0}"
|
||||
|
||||
#: Editor.java:491
|
||||
File=\u0546\u056b\u0577\u0584
|
||||
|
||||
#: Preferences.java:94
|
||||
!Filipino=
|
||||
Filipino=\u0556\u056b\u056c\u056b\u057a\u056b\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:95
|
||||
!Filter\ your\ search...=
|
||||
Filter\ your\ search...=\u0556\u056b\u056c\u057f\u0580\u0565\u056c \u0571\u0565\u0580 \u0578\u0580\u0578\u0576\u0578\u0582\u0574\u0568
|
||||
|
||||
#: FindReplace.java:124 FindReplace.java:127
|
||||
Find=\u0533\u057f\u0576\u0565\u056c
|
||||
@ -687,27 +693,27 @@ Find\ Next=\u0533\u057f\u0576\u0565\u056c \u0574\u0575\u0578\u0582\u057d\u0568
|
||||
Find\ Previous=\u0533\u057f\u0576\u0565\u056c \u0576\u0561\u056d\u056f\u056b\u0576\u0568
|
||||
|
||||
#: Editor.java:1086 Editor.java:2775
|
||||
!Find\ in\ Reference=
|
||||
Find\ in\ Reference=\u0553\u0576\u057f\u0580\u0565\u056c \u0570\u0572\u0578\u0582\u0574\u0576\u0565\u0580\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:1234
|
||||
Find...=\u0533\u057f\u0576\u0565\u056c\u2024\u2024\u2024
|
||||
|
||||
#: FindReplace.java:80
|
||||
!Find\:=
|
||||
Find\:=\u0533\u057f\u0576\u0565\u056c\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:147
|
||||
!Finnish=
|
||||
Finnish=\u0556\u056b\u0576\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
!Fix\ Encoding\ &\ Reload=
|
||||
Fix\ Encoding\ &\ Reload=\u0548\u0582\u0572\u0572\u0565\u056c \u056f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 \u0565\u0582 \u057e\u0565\u0580\u0561\u0562\u0565\u057c\u0576\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:318
|
||||
!For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=
|
||||
For\ information\ on\ installing\ libraries,\ see\:\ http\://www.arduino.cc/en/Guide/Libraries\n=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\u0578\u0582 \u0574\u0561\u057d\u056b\u0576 \u056b\u0576\u0586\u0578\u0580\u0574\u0561\u0581\u056b\u0561\u0575\u056b \u0570\u0561\u0574\u0561\u0580 \u057f\u0565\u057d\: http\://www.arduino.cc/en/Guide/Libraries\n
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:118
|
||||
#, java-format
|
||||
!Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=
|
||||
Forcing\ reset\ using\ 1200bps\ open/close\ on\ port\ {0}=\u054d\u057f\u056b\u057a\u0578\u0572\u0561\u056f\u0561\u0576 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0578\u0582\u0574 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e 1200bps open/close {0}-\u056b \u057e\u0580\u0561
|
||||
|
||||
#: Preferences.java:95
|
||||
French=\u0556\u0580\u0561\u0576\u057d\u0565\u0580\u0565\u0576
|
||||
@ -719,85 +725,85 @@ Frequently\ Asked\ Questions=\u0540\u0561\u0573\u0561\u056d \u057f\u0580\u057e\u
|
||||
Galician=\u0533\u0561\u056c\u056b\u057d\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:176
|
||||
!Galician\ (Spain)=
|
||||
Galician\ (Spain)=\u0533\u0561\u056c\u056b\u057d\u0565\u0580\u0565\u0576 (\u053b\u057d\u057a\u0561\u0576\u056b\u0561)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1288
|
||||
!Galileo\ Help=
|
||||
Galileo\ Help=\u0533\u0561\u056c\u056b\u056c\u0565\u0578\u056b \u0585\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:94
|
||||
!Georgian=
|
||||
Georgian=\u054e\u0580\u0561\u0581\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Preferences.java:97
|
||||
German=\u0533\u0565\u0580\u0574\u0561\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Editor.java:1054
|
||||
!Getting\ Started=
|
||||
Getting\ Started=\u053b\u0576\u0579\u056b\u0581 \u057d\u056f\u057d\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1646
|
||||
#, java-format
|
||||
!Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=
|
||||
Global\ variables\ use\ {0}\ bytes\ ({2}%%)\ of\ dynamic\ memory,\ leaving\ {3}\ bytes\ for\ local\ variables.\ Maximum\ is\ {1}\ bytes.=\u0533\u056c\u0578\u0562\u0561\u056c \u0583\u0578\u0583\u0578\u056d\u0561\u056f\u0561\u0576\u0576\u0565\u0580\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0565\u0576 \u0564\u056b\u0576\u0561\u0574\u056b\u056f \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0561\u0576 {0} \u0562\u0561\u0575\u0569 ({2}%%), \u0569\u0578\u0572\u0576\u0565\u056c\u0578\u057e {3} \u0562\u0561\u0575\u0581 \u056c\u0578\u056f\u0561\u056c \u0583\u0578\u0583\u0578\u056d\u0561\u056f\u0561\u0576\u0576\u0565\u0580\u056b\u0576\: \u0531\u057c\u0561\u057e\u0565\u056c\u0561\u0563\u0578\u0582\u0575\u0576\u0568 {1} \u0562\u0561\u0575\u0569 \u0567\:
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1651
|
||||
#, java-format
|
||||
!Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=
|
||||
Global\ variables\ use\ {0}\ bytes\ of\ dynamic\ memory.=\u0533\u056c\u0578\u0562\u0561\u056c \u0583\u0578\u0583\u0578\u056d\u0561\u056f\u0561\u0576\u0576\u0565\u0580\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0565\u0576 \u0564\u056b\u0576\u0561\u0574\u056b\u056f \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0561\u0576 {0} \u0562\u0561\u0575\u0569\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:66
|
||||
!Go\ to\ line=
|
||||
Go\ to\ line=\u0531\u0576\u0581\u0576\u0565\u056c \u0564\u0565\u057a\u056b \u057f\u0578\u0572
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1460
|
||||
!Go\ to\ line...=
|
||||
Go\ to\ line...=\u0531\u0576\u0581\u0576\u0565\u056c \u0564\u0565\u057a\u056b \u057f\u0578\u0572...
|
||||
|
||||
#: Preferences.java:98
|
||||
Greek=\u0540\u0578\u0582\u0576\u0561\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:95
|
||||
!Hebrew=
|
||||
Hebrew=\u0535\u0583\u0580\u0561\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Editor.java:1015
|
||||
Help=\u0555\u0563\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576
|
||||
|
||||
#: Preferences.java:99
|
||||
!Hindi=
|
||||
Hindi=\u0540\u056b\u0576\u0564\u056b
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:489
|
||||
!Host\ name\:=
|
||||
Host\ name\:=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u0579\u056b \u0561\u0576\u0578\u0582\u0576\u0568\:
|
||||
|
||||
#: Sketch.java:295
|
||||
!How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u053b\u0576\u0579 \u0565\u0584 \u056f\u0561\u0580\u056e\u0578\u0582\u0574 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c\u0578\u0582 \u0574\u0561\u057d\u056b\u0576,\n\u0561\u0575\u0576 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c\u0578\u0582\u0581 \u0561\u057c\u0561\u057b?
|
||||
|
||||
#: Sketch.java:882
|
||||
!How\ very\ Borges\ of\ you=
|
||||
How\ very\ Borges\ of\ you=How very Borges of you
|
||||
|
||||
#: Preferences.java:100
|
||||
Hungarian=\u0540\u0578\u0582\u0576\u0563\u0561\u0580\u0565\u0580\u0565\u0576
|
||||
|
||||
#: FindReplace.java:96
|
||||
!Ignore\ Case=
|
||||
Ignore\ Case=\u0531\u0576\u057f\u0565\u057d\u0565\u056c \u0574\u0565\u056e\u0561\u057f\u0561\u057c/\u0583\u0578\u0584\u0580\u0561\u057f\u0561\u057c\u0568
|
||||
|
||||
#: Base.java:1058
|
||||
!Ignoring\ bad\ library\ name=
|
||||
Ignoring\ bad\ library\ name=\u0531\u0576\u057f\u0565\u057d\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u057e\u0561\u057f \u0561\u0576\u057e\u0561\u0576\u0578\u0582\u0574\u0568
|
||||
|
||||
#: Base.java:1436
|
||||
!Ignoring\ sketch\ with\ bad\ name=
|
||||
Ignoring\ sketch\ with\ bad\ name=\u0531\u0576\u057f\u0565\u057d\u057e\u0578\u0582\u0574 \u0567 \u0563\u056e\u0561\u0563\u0580\u056b \u057e\u0561\u057f \u0561\u0576\u057e\u0561\u0576\u0578\u0582\u0574\u0568
|
||||
|
||||
#: ../../../processing/app/Sketch.java:736
|
||||
!In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As")\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 1.0-\u0578\u0582\u0574 \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\u0568 \u0583\u0578\u056d\u057e\u0565\u056c \u0567\n.pde-\u056b\u0581 .ino-\u056b\: \u0546\u0578\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u0568 (\u0576\u0565\u0580\u0561\u057c\u0575\u0561\u056c \u0576\u0580\u0561\u0576\u0584 \u0578\u0580\u0578\u0576\u0584 \u057d\u057f\u0565\u0572\u056e\u057e\u0565\u056c \u0565\u0576 \u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c-\u0548\u0580\u057a\u0565\u057d -\u0578\u057e) \u056f\u0585\u0563\u0580\u0561\u0563\u0578\u0580\u056e\u0565\u0576 \u0576\u0578\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\u0568\: \u0531\u0580\u0564\u0565\u0576\n\u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0581\u0578\u0572 \u0563\u0581\u0561\u0563\u0580\u0565\u0580\u0568 \u056f\u0569\u0561\u0580\u0574\u0561\u0581\u057e\u0565\u0576 \u0576\u0578\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0574\u0561\u0576 \n\u057a\u0561\u0570\u057a\u0561\u0576\u0574\u0561\u0576 \u0564\u0565\u057a\u0584\u0578\u0582\u0574, \u057d\u0561\u056f\u0561\u0575\u0576 \u0564\u0578\u0582\u0584 \u056f\u0561\u0580\u0578\u0572 \u0565\u0584 \u0561\u0576\u057b\u0561\u057f\u0565\u056c \u0561\u0575\u0576 \u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u0564\u056b\u0561\u056c\u0578\u0563\u0578\u0582\u0574\:\n\n\u054a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0565\u0582 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\u0568?
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:778
|
||||
!Include\ Library=
|
||||
Include\ Library=\u0546\u0565\u0580\u0561\u057c\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
!Incorrect\ IDE\ installation\ folder=
|
||||
Incorrect\ IDE\ installation\ folder=IDE-\u056b \u057d\u056d\u0561\u056c \u057f\u0565\u0572\u0561\u0564\u0580\u0574\u0561\u0576 \u057a\u0561\u0576\u0561\u056f
|
||||
|
||||
#: Editor.java:1216 Editor.java:2757
|
||||
!Increase\ Indent=
|
||||
Increase\ Indent=\u0544\u0565\u056e\u0561\u0581\u0576\u0565\u056c \u057f\u0561\u0580\u0561\u056e\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568
|
||||
|
||||
#: Preferences.java:101
|
||||
Indonesian=\u053b\u0576\u0564\u0578\u0576\u0565\u0566\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:295
|
||||
!Initializing\ packages...=
|
||||
Initializing\ packages...=\u0553\u0561\u0569\u0565\u0569\u0576\u0565\u0580\u056b \u056b\u0576\u056b\u0581\u056b\u0561\u056c\u056b\u0566\u0561\u0581\u056b\u0561
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:75
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:81
|
||||
@ -805,36 +811,36 @@ Indonesian=\u053b\u0576\u0564\u0578\u0576\u0565\u0566\u0565\u0580\u0565\u0576
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:78
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:91
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:303
|
||||
!Install=
|
||||
Install=\u054f\u0565\u0572\u0561\u0564\u0580\u0565\u056c
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:170
|
||||
!Installation\ completed\!=
|
||||
Installation\ completed\!=\u054f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574\u0568 \u0561\u057e\u0561\u0580\u057f\u057e\u0565\u0581\!
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownInstalledLibraryItem.java:50
|
||||
!Installed=
|
||||
Installed=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:154
|
||||
!Installing\ boards...=
|
||||
Installing\ boards...=\u0540\u0561\u0580\u057f\u0561\u056f\u0576\u0565\u0580\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0565\u0576...
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:126
|
||||
#, java-format
|
||||
!Installing\ library\:\ {0}=
|
||||
Installing\ library\:\ {0}=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568\: {0}
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:134
|
||||
#, java-format
|
||||
!Installing\ tools\ ({0}/{1})...=
|
||||
Installing\ tools\ ({0}/{1})...=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0565\u0576 \u0563\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580\u0568 ({0}/{1})...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:239
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:172
|
||||
!Installing...=
|
||||
Installing...=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0578\u0582\u0574 \u0567...
|
||||
|
||||
#: ../../../processing/app/Base.java:1204
|
||||
#, java-format
|
||||
!Invalid\ library\ found\ in\ {0}\:\ {1}=
|
||||
Invalid\ library\ found\ in\ {0}\:\ {1}=\u054d\u056d\u0561\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0567 \u0570\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c {0}-\u0578\u0582\u0574\: {1}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:66
|
||||
#, java-format
|
||||
!Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=
|
||||
Invalid\ quoting\:\ no\ closing\ [{0}]\ char\ found.=\u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u0574\u0565\u057b\u0562\u0565\u0580\u0578\u0582\u0574\: \u0553\u0561\u056f\u0574\u0561\u0576 [{0}] \u0576\u0577\u0561\u0576\u0568 \u0579\u056b \u0570\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c\:
|
||||
|
||||
#: Preferences.java:102
|
||||
Italian=\u053b\u057f\u0561\u056c\u0565\u0580\u0565\u0576
|
||||
@ -849,189 +855,189 @@ Korean=\u053f\u0578\u0580\u0565\u0565\u0580\u0565\u0576
|
||||
Latvian=\u053c\u0561\u057f\u057e\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:93
|
||||
!Library\ Manager=
|
||||
Library\ Manager=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u056f\u0561\u057c\u0561\u057e\u0561\u0580\u056b\u0579
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2349
|
||||
!Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=
|
||||
Library\ added\ to\ your\ libraries.\ Check\ "Include\ library"\ menu=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u0581 \u0571\u0565\u0580 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0576. \u054d\u057f\u0578\u0582\u0563\u0565\u0584 "\u0546\u0565\u0580\u0561\u057c\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576" \u0574\u0565\u0576\u0575\u0578\u0582\u0576
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:71
|
||||
!Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=
|
||||
Library\ can't\ use\ both\ 'src'\ and\ 'utility'\ folders.=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c 'src' \u0587 'utility' \u057a\u0561\u0576\u0561\u056f\u0576\u0565\u0580\u0568\:
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:107
|
||||
#, java-format
|
||||
!Library\ is\ already\ installed\:\ {0}\ version\ {1}=
|
||||
Library\ is\ already\ installed\:\ {0}\ version\ {1}=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u0580\u0564\u0565\u0576 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0567\: {0} \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f {1}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/GoToLineNumber.java:70
|
||||
!Line\ number\:=
|
||||
Line\ number\:=\u054f\u0578\u0572 \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: Preferences.java:106
|
||||
Lithuaninan=\u053c\u056b\u057f\u057e\u0561\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:132
|
||||
!Loading\ configuration...=
|
||||
Loading\ configuration...=\u053f\u0578\u0576\u0586\u056b\u0563\u0578\u0582\u0580\u0561\u0581\u056b\u0561\u0575\u056b \u0562\u0565\u057c\u0576\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:73
|
||||
#, java-format
|
||||
!Looking\ for\ recipes\ like\ {0}*{1}=
|
||||
Looking\ for\ recipes\ like\ {0}*{1}=\u0553\u0576\u057f\u0580\u057e\u0578\u0582\u0574 \u0565\u0576 {0}*{1}-\u056b\u0576 \u0576\u0574\u0561\u0576 \u0562\u0561\u0572\u0561\u0564\u0580\u0561\u0574\u0561\u057d\u0565\u0580
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1684
|
||||
!Low\ memory\ available,\ stability\ problems\ may\ occur.=
|
||||
Low\ memory\ available,\ stability\ problems\ may\ occur.=\u0554\u056b\u0579 \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0567 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b, \u057d\u057f\u0561\u0562\u056b\u056c\u0578\u0582\u0569\u0575\u0561\u0576 \u056d\u0576\u0564\u056b\u0580\u0576\u0565\u0580 \u056f\u0561\u0580\u0578\u0572 \u0565\u0576 \u057f\u0565\u0572\u056b \u0578\u0582\u0576\u0565\u0576\u0561\u056c\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1168
|
||||
!Manage\ Libraries...=
|
||||
Manage\ Libraries...=\u053f\u0561\u057c\u0561\u057e\u0561\u0580\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u0568...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:466
|
||||
!Manual\ proxy\ configuration=
|
||||
Manual\ proxy\ configuration=\u0531\u0576\u0570\u0561\u057f\u0561\u056f\u0561\u0576 \u057a\u0580\u0578\u0584\u057d\u056b\u056b \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574
|
||||
|
||||
#: Preferences.java:107
|
||||
!Marathi=
|
||||
Marathi=\u0544\u0561\u0580\u0561\u0569\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Base.java:2112
|
||||
Message=\u0540\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:81
|
||||
#, java-format
|
||||
!Missing\ '{0}'\ from\ library\ in\ {1}=
|
||||
Missing\ '{0}'\ from\ library\ in\ {1}=\u054a\u0561\u056f\u0561\u057d\u0578\u0572 '{0}' \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581 {1}-\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
!Mode\ not\ supported=
|
||||
Mode\ not\ supported=\u054c\u0565\u056a\u056b\u0574\u0568 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:186
|
||||
!More=
|
||||
More=\u0531\u057e\u0565\u056c\u056b\u0576
|
||||
|
||||
#: Preferences.java:449
|
||||
!More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u0531\u057e\u0565\u056c \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580 \u056f\u0561\u0580\u0578\u0572 \u0565\u0576 \u056d\u0574\u0562\u0561\u0563\u0580\u057e\u0565\u056c \u0561\u0576\u0574\u056b\u057b\u0561\u057a\u0565\u057d \u0586\u0561\u0575\u056c\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:2156
|
||||
Moving=\u054f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
!Multiple\ files\ not\ supported=
|
||||
Multiple\ files\ not\ supported=\u0532\u0561\u0566\u0574\u0561\u056f\u056b \u0586\u0561\u0575\u056c\u0565\u0580\u0568 \u0579\u0565\u0576 \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:520
|
||||
#, java-format
|
||||
!Multiple\ libraries\ were\ found\ for\ "{0}"=
|
||||
Multiple\ libraries\ were\ found\ for\ "{0}"=\u0532\u0561\u0566\u0574\u0561\u056f\u056b \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580 \u0565\u0576 \u0570\u0561\u0575\u057f\u0576\u0561\u0562\u0565\u0580\u057e\u0565\u056c "{0}"-\u056b \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: ../../../processing/app/Base.java:395
|
||||
!Must\ specify\ exactly\ one\ sketch\ file=
|
||||
Must\ specify\ exactly\ one\ sketch\ file=\u054a\u0565\u057f\u0584 \u0567 \u0576\u0577\u0565\u056c \u0574\u056b\u0561\u0575\u0576 \u0574\u0565\u056f \u0563\u056e\u0561\u0563\u0580\u056b \u0586\u0561\u0575\u056c
|
||||
|
||||
#: Sketch.java:282
|
||||
!Name\ for\ new\ file\:=
|
||||
Name\ for\ new\ file\:=\u0546\u0578\u0580 \u0561\u0576\u057e\u0561\u0576\u0578\u0582\u0574 \u0586\u0561\u0575\u056c\u056b \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:149
|
||||
!Nepali=
|
||||
Nepali=\u0546\u0565\u057a\u0561\u056c\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:601
|
||||
!Network=
|
||||
Network=\u0551\u0561\u0576\u0581
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
!Network\ ports=
|
||||
Network\ ports=\u0551\u0561\u0576\u0581\u0561\u0575\u056b\u0576 \u057a\u0578\u0580\u057f\u0565\u0580
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:51
|
||||
!Network\ upload\ using\ programmer\ not\ supported=
|
||||
Network\ upload\ using\ programmer\ not\ supported=\u0551\u0561\u0576\u0581\u0561\u0575\u056b\u0576 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e \u056e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572\u0568 \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:493
|
||||
New=\u0546\u0578\u0580
|
||||
|
||||
#: EditorHeader.java:292
|
||||
!New\ Tab=
|
||||
New\ Tab=\u0546\u0578\u0580 \u057f\u0561\u0562
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!Newline=
|
||||
Newline=\u0576\u0578\u0580 \u057f\u0578\u0572
|
||||
|
||||
#: EditorHeader.java:340
|
||||
!Next\ Tab=
|
||||
Next\ Tab=\u0540\u0561\u057b\u0578\u0580\u0564 \u057f\u0561\u0562
|
||||
|
||||
#: Preferences.java:78 UpdateCheck.java:108
|
||||
No=\u0548\u0579
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:158
|
||||
!No\ authorization\ data\ found=
|
||||
No\ authorization\ data\ found=\u053c\u056b\u0561\u0566\u0578\u0580\u0574\u0561\u0576 \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580 \u0579\u0565\u0576 \u0563\u057f\u0576\u057e\u0565\u056c
|
||||
|
||||
#: tools/format/src/AutoFormat.java:54 tools/AutoFormat.java:916
|
||||
!No\ changes\ necessary\ for\ Auto\ Format.=
|
||||
No\ changes\ necessary\ for\ Auto\ Format.=\u0531\u057e\u057f\u0578\u0574\u0561\u057f \u0586\u0578\u0580\u0574\u0561\u057f\u0561\u057e\u0578\u0580\u0574\u0561\u0576 \u0570\u0561\u0574\u0561\u057c \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580 \u0570\u0561\u0580\u056f\u0561\u057e\u0578\u0580 \u0579\u0565\u0576\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
!No\ command\ line\ parameters\ found=
|
||||
No\ command\ line\ parameters\ found=\u0540\u0580\u0561\u0574\u0561\u0576\u056b \u057f\u0578\u0572\u056b \u057a\u0561\u0580\u0561\u0574\u0565\u057f\u0580\u0565\u0580\u0568 \u0579\u0565\u0576 \u0563\u057f\u0576\u057e\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:200
|
||||
!No\ compiled\ sketch\ found=
|
||||
No\ compiled\ sketch\ found=\u053f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u057e\u0561\u056e \u0563\u056e\u0561\u0563\u056b\u0580 \u0579\u056b \u0563\u057f\u0576\u057e\u0565\u056c
|
||||
|
||||
#: Editor.java:373
|
||||
!No\ files\ were\ added\ to\ the\ sketch.=
|
||||
No\ files\ were\ added\ to\ the\ sketch.=\u0533\u056e\u0561\u0563\u0580\u056b\u0576 \u0586\u0561\u0575\u056c \u0579\u056b \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u056c\:
|
||||
|
||||
#: Platform.java:167
|
||||
!No\ launcher\ available=
|
||||
No\ launcher\ available=\u0533\u0578\u0580\u056e\u0561\u0580\u056f\u056b\u0579\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
!No\ line\ ending=
|
||||
No\ line\ ending=\u0549\u056f\u0561 \u057f\u0578\u0572\u056b \u057e\u0565\u0580\u057b\u0561\u057e\u0578\u0580\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:665
|
||||
!No\ parameters=
|
||||
No\ parameters=\u054a\u0561\u0580\u0561\u0574\u0565\u057f\u0580\u0565\u0580\u0568 \u0579\u056f\u0561\u0576
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:453
|
||||
!No\ proxy=
|
||||
No\ proxy=\u054a\u0580\u0578\u0584\u057d\u056b \u0579\u056f\u0561
|
||||
|
||||
#: Base.java:541
|
||||
!No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=
|
||||
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=\u0548\u0579 \u056b\u0580\u0578\u0584, \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 \u0585\u0564\u0561\u0583\u0578\u056d\u057e\u0565\u056c\u0578\u0582
|
||||
|
||||
#: Editor.java:1872
|
||||
#, java-format
|
||||
!No\ reference\ available\ for\ "{0}"=
|
||||
No\ reference\ available\ for\ "{0}"="{0}"-\u056b \u0570\u0561\u0574\u0561\u0580 \u0570\u0572\u0578\u0582\u0574 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:504
|
||||
#: ../../../processing/app/BaseNoGui.java:549
|
||||
!No\ sketch=
|
||||
No\ sketch=\u0563\u056e\u0561\u0563\u056b\u0580 \u0579\u056f\u0561
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
!No\ sketchbook=
|
||||
No\ sketchbook=\u0533\u056e\u0561\u0563\u0580\u056b \u0563\u056b\u0580\u0584 \u0579\u056f\u0561
|
||||
|
||||
#: ../../../processing/app/Sketch.java:204
|
||||
!No\ valid\ code\ files\ found=
|
||||
No\ valid\ code\ files\ found=\u054e\u0561\u057e\u0565\u0580 \u056f\u0578\u0564\u056b \u0586\u0561\u0575\u056c\u0565\u0580 \u0579\u056f\u0561\u0576
|
||||
|
||||
#: ../../../processing/app/debug/TargetPackage.java:63
|
||||
#, java-format
|
||||
!No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=
|
||||
No\ valid\ hardware\ definitions\ found\ in\ folder\ {0}.=\u054e\u0561\u057e\u0565\u0580 \u057d\u0561\u0580\u0584\u0561\u0575\u056b\u0576 \u057d\u0561\u0570\u0574\u0561\u0576\u0578\u0582\u0574\u0576\u0565\u0580 {0} \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574 \u0579\u056f\u0561\u0576\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:184
|
||||
!None=
|
||||
None=\u0548\u0579 \u0574\u0565\u056f\u0568
|
||||
|
||||
#: ../../../processing/app/Preferences.java:108
|
||||
!Norwegian\ Bokm\u00e5l=
|
||||
Norwegian\ Bokm\u00e5l=\u0546\u0578\u0580\u057e\u0565\u0563\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1656
|
||||
!Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=
|
||||
Not\ enough\ memory;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ your\ footprint.=\u0548\u0579 \u0562\u0561\u057e\u0561\u0580\u0561\u0580 \u0570\u056b\u0577\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576; \u057f\u0565\u057d http\://www.arduino.cc/en/Guide/Troubleshooting\#size
|
||||
|
||||
#: Preferences.java:80 Sketch.java:585 Sketch.java:737 Sketch.java:1042
|
||||
#: Editor.java:2145 Editor.java:2465
|
||||
OK=\u053c\u0561\u057e
|
||||
|
||||
#: Sketch.java:992 Editor.java:376
|
||||
!One\ file\ added\ to\ the\ sketch.=
|
||||
One\ file\ added\ to\ the\ sketch.=\u0544\u0565\u056f \u0586\u0561\u0575\u056c \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u0581 \u0563\u056e\u0561\u0563\u0580\u056b\u0576\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:455
|
||||
!Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=
|
||||
Only\ --verify,\ --upload\ or\ --get-pref\ are\ supported=\u0544\u056b\u0561\u0575\u0576 --verify, --upload \u056f\u0561\u0574 --get-pref \u0565\u0576 \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574
|
||||
|
||||
#: EditorToolbar.java:41
|
||||
Open=\u0532\u0561\u0581\u0565\u056c
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:625
|
||||
!Open\ Recent=
|
||||
Open\ Recent=\u0532\u0561\u0581\u0565\u056c \u057e\u0565\u0580\u057b\u056b\u0576\u0576\u0565\u0580\u056b\u0581
|
||||
|
||||
#: Editor.java:2688
|
||||
!Open\ URL=
|
||||
Open\ URL=\u0532\u0561\u0581\u0565\u056c URL
|
||||
|
||||
#: Base.java:636
|
||||
!Open\ an\ Arduino\ sketch...=
|
||||
Open\ an\ Arduino\ sketch...=\u0532\u0561\u0581\u0565\u056c \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0563\u056e\u0561\u0563\u056b\u0580...
|
||||
|
||||
#: Base.java:903 Editor.java:501
|
||||
Open...=\u0532\u0561\u0581\u0565\u056c\u2024\u2024\u2024
|
||||
|
||||
#: Editor.java:563
|
||||
!Page\ Setup=
|
||||
Page\ Setup=\u0537\u057b\u056b \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/forms/PasswordAuthorizationDialog.java:44
|
||||
!Password\:=
|
||||
Password\:=\u0533\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c\:
|
||||
|
||||
#: Editor.java:1189 Editor.java:2731
|
||||
Paste=\u0553\u0561\u056f\u0581\u0576\u0565\u056c
|
||||
@ -1040,126 +1046,126 @@ Paste=\u0553\u0561\u056f\u0581\u0576\u0565\u056c
|
||||
Persian=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:161
|
||||
!Persian\ (Iran)=
|
||||
Persian\ (Iran)=\u054a\u0561\u0580\u057d\u056f\u0565\u0580\u0565\u0576 (\u053b\u0580\u0561\u0576)
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:79
|
||||
#, java-format
|
||||
!Platform\ {0}\ (package\ {1})\ is\ unknown=
|
||||
Platform\ {0}\ (package\ {1})\ is\ unknown=\u0531\u0576\u0570\u0561\u0575\u057f \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574 {0} ({1} \u0583\u0561\u0569\u0565\u0569)
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:195
|
||||
!Please\ confirm\ boards\ deletion=
|
||||
Please\ confirm\ boards\ deletion=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0574 \u0570\u0561\u057d\u057f\u0561\u057f\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u057b\u0576\u057b\u0578\u0582\u0574\u0568
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
!Please\ confirm\ library\ deletion=
|
||||
Please\ confirm\ library\ deletion=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0574 \u0570\u0561\u057d\u057f\u0561\u057f\u0565\u0584 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u057b\u0576\u057b\u0578\u0582\u0574\u0568
|
||||
|
||||
#: debug/Compiler.java:408
|
||||
!Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
|
||||
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0576\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u0584 SPI \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0533\u056e\u0561\u0563\u056b\u0580 > \u0546\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581\:
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:529
|
||||
!Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=
|
||||
Please\ import\ the\ Wire\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0576\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u0584 Wire \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0533\u056e\u0561\u0563\u056b\u0580 > \u0546\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581\:
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:217
|
||||
#: ../../../cc/arduino/packages/uploaders/SerialUploader.java:262
|
||||
!Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=
|
||||
Please\ select\ a\ programmer\ from\ Tools->Programmer\ menu=\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0576\u0577\u0565\u056c \u056e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572\u0568 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580->\u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572 \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581
|
||||
|
||||
#: Preferences.java:110
|
||||
Polish=\u053c\u0565\u0570\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Editor.java:718
|
||||
!Port=
|
||||
Port=\u054a\u0578\u0580\u057f
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:491
|
||||
!Port\ number\:=
|
||||
Port\ number\:=\u054a\u0578\u0580\u057f\u056b \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: ../../../processing/app/Preferences.java:151
|
||||
!Portugese=
|
||||
Portugese=\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:127
|
||||
!Portuguese\ (Brazil)=
|
||||
Portuguese\ (Brazil)=\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u0565\u0580\u0565\u0576 (\u0532\u0580\u0561\u0566\u056b\u056c\u056b\u0561)
|
||||
|
||||
#: ../../../processing/app/Preferences.java:128
|
||||
!Portuguese\ (Portugal)=
|
||||
Portuguese\ (Portugal)=\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u0565\u0580\u0565\u0576 (\u054a\u0578\u0580\u057f\u0578\u0582\u0563\u0561\u056c\u056b\u0561)
|
||||
|
||||
#: Preferences.java:295 Editor.java:583
|
||||
!Preferences=
|
||||
Preferences=\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:297
|
||||
!Preparing\ boards...=
|
||||
Preparing\ boards...=\u0540\u0561\u0580\u0569\u0561\u056f\u0576\u0565\u0580\u0568 \u0576\u0561\u056d\u0561\u057a\u0561\u057f\u0580\u0561\u057d\u057f\u057e\u0578\u0582\u0574 \u0565\u0576
|
||||
|
||||
#: FindReplace.java:123 FindReplace.java:128
|
||||
Previous=\u0546\u0561\u056d\u056f\u056b\u0576
|
||||
|
||||
#: EditorHeader.java:326
|
||||
!Previous\ Tab=
|
||||
Previous\ Tab=\u0546\u0561\u056d\u0578\u0580\u0564 \u057f\u0561\u0562
|
||||
|
||||
#: Editor.java:571
|
||||
!Print=
|
||||
Print=\u054f\u057a\u0565\u056c
|
||||
|
||||
#: Editor.java:2571
|
||||
!Printing\ canceled.=
|
||||
Printing\ canceled.=\u054f\u057a\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0561\u056e \u0567
|
||||
|
||||
#: Editor.java:2547
|
||||
!Printing...=
|
||||
Printing...=\u054f\u057a\u057e\u0578\u0582\u0574 \u0567
|
||||
|
||||
#: Base.java:1957
|
||||
!Problem\ Opening\ Folder=
|
||||
Problem\ Opening\ Folder=\u053d\u0576\u0564\u056b\u0580 \u054a\u0561\u0576\u0561\u056f\u0568 \u0532\u0561\u0581\u0565\u056c\u056b\u057d
|
||||
|
||||
#: Base.java:1933
|
||||
!Problem\ Opening\ URL=
|
||||
Problem\ Opening\ URL=\u053d\u0576\u0564\u056b\u0580 URL-\u0568 \u0562\u0561\u0581\u0565\u056c\u056b\u057d
|
||||
|
||||
#: Base.java:227
|
||||
!Problem\ Setting\ the\ Platform=
|
||||
Problem\ Setting\ the\ Platform=\u053d\u0576\u0564\u056b\u0580 \u054a\u056c\u0561\u057f\u0586\u0578\u0580\u0574\u0568 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0565\u056c\u056b\u057d
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:136
|
||||
!Problem\ accessing\ board\ folder\ /www/sd=
|
||||
Problem\ accessing\ board\ folder\ /www/sd=\u053d\u0576\u0564\u056b\u0580 \u0570\u0561\u0580\u0569\u0561\u056f\u056b /www/sd \u057a\u0561\u0576\u0561\u056f\u0568 \u0574\u0578\u0582\u057f\u0584 \u0563\u0578\u0580\u056e\u0565\u056c\u056b\u057d
|
||||
|
||||
#: ../../../cc/arduino/packages/uploaders/SSHUploader.java:132
|
||||
!Problem\ accessing\ files\ in\ folder\ =
|
||||
Problem\ accessing\ files\ in\ folder\ =\u053d\u0576\u0564\u056b\u0580 \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574 \u0586\u0561\u0575\u056c\u0565\u0580 \u0574\u0578\u0582\u057f\u0584 \u0563\u0578\u0580\u056e\u0565\u056c\u056b\u057d
|
||||
|
||||
#: Base.java:1673
|
||||
!Problem\ getting\ data\ folder=
|
||||
Problem\ getting\ data\ folder=\u053d\u0576\u0564\u056b\u0580 \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u056f\u0561\u0580\u0564\u0561\u056c\u056b\u057d
|
||||
|
||||
#: debug/Uploader.java:209
|
||||
!Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=
|
||||
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=\u053d\u0576\u0564\u056b\u0580 \u0570\u0561\u0580\u0569\u0561\u056f \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c\u056b\u057d\: \u0531\u057c\u0561\u057b\u0561\u0580\u056f\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580 \u057f\u0565\u057d http\://www.arduino.cc/en/Guide/Troubleshooting\#upload
|
||||
|
||||
#: Sketch.java:355 Sketch.java:362 Sketch.java:373
|
||||
!Problem\ with\ rename=
|
||||
Problem\ with\ rename=\u053d\u0576\u0564\u056b\u0580 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0574\u0561\u0576 \u0570\u0565\u057f
|
||||
|
||||
#: ../../../processing/app/I18n.java:86
|
||||
!Processor=
|
||||
Processor=\u054a\u0580\u0578\u0581\u0565\u057d\u0578\u0580
|
||||
|
||||
#: Editor.java:704
|
||||
Programmer=\u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:80
|
||||
#, java-format
|
||||
!Progress\ {0}=
|
||||
Progress\ {0}=\u054a\u0580\u0578\u0563\u0580\u0565\u057d {0}
|
||||
|
||||
#: Base.java:783 Editor.java:593
|
||||
Quit=\u053c\u0584\u0565\u056c
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1233
|
||||
!RETIRED=
|
||||
RETIRED=RETIRED
|
||||
|
||||
#: Editor.java:1138 Editor.java:1140 Editor.java:1390
|
||||
!Redo=
|
||||
Redo=\u054e\u0565\u0580\u0561\u0564\u0561\u0580\u0571\u0576\u0565\u056c
|
||||
|
||||
#: Editor.java:1078
|
||||
!Reference=
|
||||
Reference=\u0540\u0572\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:85
|
||||
!Remove=
|
||||
Remove=\u054b\u0576\u057b\u0565\u056c
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:157
|
||||
#, java-format
|
||||
!Removing\ library\:\ {0}=
|
||||
Removing\ library\:\ {0}=\u054b\u0576\u057b\u057e\u0578\u0582\u0574 \u0567 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568\: {0}
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:266
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:203
|
||||
!Removing...=
|
||||
Removing...=\u054b\u0576\u057b\u057e\u0578\u0582\u0574 \u0565\u0576...
|
||||
|
||||
#: EditorHeader.java:300
|
||||
!Rename=
|
||||
Rename=\u054e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c
|
||||
|
||||
#: FindReplace.java:121 FindReplace.java:130 Sketch.java:1046
|
||||
Replace=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c
|
||||
@ -1172,24 +1178,24 @@ Replace\ All=\u0532\u0578\u056c\u0578\u0580\u0568 \u0583\u0578\u056d\u0561\u0580
|
||||
|
||||
#: Sketch.java:1043
|
||||
#, java-format
|
||||
!Replace\ the\ existing\ version\ of\ {0}?=
|
||||
Replace\ the\ existing\ version\ of\ {0}?=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c {0}-\u056b \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0581\u0578\u0572 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568?
|
||||
|
||||
#: FindReplace.java:81
|
||||
!Replace\ with\:=
|
||||
Replace\ with\:=\u0553\u0578\u056d\u0561\u0580\u056b\u0576\u0565\u056c\:
|
||||
|
||||
#: Preferences.java:113
|
||||
!Romanian=
|
||||
Romanian=\u054c\u0578\u0582\u0574\u056b\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:83
|
||||
#, java-format
|
||||
!Running\ recipe\:\ {0}=
|
||||
Running\ recipe\:\ {0}=\u0531\u0577\u056d\u0561\u057f\u0578\u0572 \u0562\u0561\u0572\u0561\u0564\u0580\u0561\u057f\u0578\u0574\u057d\: {0}
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:82
|
||||
#, java-format
|
||||
!Running\:\ {0}=
|
||||
Running\:\ {0}=\u0531\u0577\u056d\u0561\u057f\u0578\u0572\: {0}
|
||||
|
||||
#: Preferences.java:114
|
||||
!Russian=
|
||||
Russian=\u054c\u0578\u0582\u057d\u0565\u0580\u0565\u0576
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:529
|
||||
#: Editor.java:2064 Editor.java:2468
|
||||
@ -1199,631 +1205,631 @@ Save=\u0540\u056b\u0577\u0565\u056c
|
||||
Save\ As...=\u0540\u056b\u0577\u0565\u056c \u0578\u0580\u057a\u0565\u057d\u2024\u2024\u2024
|
||||
|
||||
#: Editor.java:2317
|
||||
!Save\ Canceled.=
|
||||
Save\ Canceled.=\u0540\u056b\u0577\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0581\:
|
||||
|
||||
#: Editor.java:2020
|
||||
#, java-format
|
||||
!Save\ changes\ to\ "{0}"?\ \ =
|
||||
Save\ changes\ to\ "{0}"?\ \ =\u0540\u056b\u0577\u0565\u056c "{0}"-\u056b \u0583\u0578\u0583\u0578\u056d\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0576\u0565\u0580\u0568?
|
||||
|
||||
#: Sketch.java:825
|
||||
!Save\ sketch\ folder\ as...=
|
||||
Save\ sketch\ folder\ as...=\u054a\u0561\u0570\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u0578\u0580\u057a\u0565\u057d...
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:425
|
||||
!Save\ when\ verifying\ or\ uploading=
|
||||
Save\ when\ verifying\ or\ uploading=\u054a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0565\u0580\u0562 \u057d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0567 \u056f\u0561\u0574 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574
|
||||
|
||||
#: Editor.java:2270 Editor.java:2308
|
||||
Saving...=\u0540\u056b\u0577\u0578\u0582\u0574\u2024\u2024\u2024
|
||||
|
||||
#: ../../../processing/app/FindReplace.java:131
|
||||
!Search\ all\ Sketch\ Tabs=
|
||||
Search\ all\ Sketch\ Tabs=\u0553\u0576\u057f\u0580\u0565\u056c \u0562\u0578\u056c\u0578\u0580 \u0533\u056e\u0561\u0563\u0580\u056b \u054f\u0561\u0562\u0565\u0580\u0568
|
||||
|
||||
#: Base.java:1909
|
||||
!Select\ (or\ create\ new)\ folder\ for\ sketches...=
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=\u0546\u0577\u0565\u056c (\u056f\u0561\u0574 \u057d\u057f\u0565\u0572\u056e\u0565\u056c \u0576\u0578\u0580) \u057a\u0561\u0576\u0561\u056f \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580...
|
||||
|
||||
#: Editor.java:1198 Editor.java:2739
|
||||
Select\ All=\u0538\u0576\u057f\u0580\u0565\u056c \u0562\u0578\u056c\u0578\u0580\u0568
|
||||
|
||||
#: Base.java:2636
|
||||
!Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=
|
||||
Select\ a\ zip\ file\ or\ a\ folder\ containing\ the\ library\ you'd\ like\ to\ add=\u0546\u0577\u0565\u056c zip \u0586\u0561\u0575\u056c \u056f\u0561\u0574 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0572 \u057a\u0561\u0576\u0561\u056f, \u0578\u0580\u0568 \u0581\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c
|
||||
|
||||
#: Sketch.java:975
|
||||
!Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=
|
||||
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=\u0546\u0577\u0565\u056c \u0576\u056f\u0561\u0580 \u056f\u0561\u0574 \u0561\u0575\u056c \u057f\u057e\u0575\u0561\u056c\u0576\u0565\u0580\u056b \u0586\u0561\u0575\u056c \u0563\u056e\u0561\u0563\u0580\u0578\u0582\u0574 \u057a\u0561\u057f\u0573\u0565\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: Preferences.java:330
|
||||
!Select\ new\ sketchbook\ location=
|
||||
Select\ new\ sketchbook\ location=\u0546\u0577\u0565\u056c \u0576\u0578\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057f\u0565\u0572
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:237
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:249
|
||||
!Select\ version=
|
||||
Select\ version=\u0546\u0577\u0565\u056c \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:146
|
||||
!Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=
|
||||
Selected\ board\ depends\ on\ '{0}'\ core\ (not\ installed).=\u0546\u0577\u057e\u0561\u056e \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u056f\u0561\u056d\u057e\u0561\u056e \u0567 '{0}'-\u056b \u0574\u056b\u057b\u0578\u0582\u056f\u056b\u0581 (\u0579\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e)
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:374
|
||||
!Selected\ board\ is\ not\ available=
|
||||
Selected\ board\ is\ not\ available=\u0546\u0577\u057e\u0561\u056e \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:423
|
||||
!Selected\ library\ is\ not\ available=
|
||||
Selected\ library\ is\ not\ available=\u0546\u0577\u057e\u0561\u056e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567
|
||||
|
||||
#: SerialMonitor.java:93
|
||||
Send=\u0548\u0582\u0572\u0561\u0580\u056f\u0565\u056c
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46 Editor.java:669
|
||||
!Serial\ Monitor=
|
||||
Serial\ Monitor=\u054d\u0565\u0580\u056b\u0561\u056c \u0544\u0578\u0576\u056b\u057f\u0578\u0580
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:804
|
||||
!Serial\ Plotter=
|
||||
Serial\ Plotter=\u054d\u0565\u0580\u056b\u0561\u056c \u0531\u0580\u057f\u0561\u057a\u0561\u057f\u056f\u0565\u0580\u056b\u0579
|
||||
|
||||
#: Serial.java:194
|
||||
#, java-format
|
||||
!Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=
|
||||
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=''{0}'' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0561\u056e\: \u0534\u0578\u0582\u0584 \u0568\u0576\u057f\u0580\u0565\u056c \u0565\u0584 \u0573\u056b\u0577\u057f \u0585\u0580\u056b\u0576\u0561\u056f\u0568 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 > \u054d\u0565\u0580\u056b\u0561\u056c \u054a\u0578\u0580\u057f \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581?
|
||||
|
||||
#: Editor.java:2343
|
||||
#, java-format
|
||||
!Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=''{0}'' \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0579\u056b \u0563\u057f\u0576\u057e\u0561\u056e\:\n\u053f\u0580\u056f\u056b\u0576 \u0583\u0578\u0580\u0571\u0565\u056c \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0561\u0575\u056c \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0578\u057e?
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:65
|
||||
!Serial\ ports=
|
||||
Serial\ ports=\u054d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0565\u0580
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:84
|
||||
#, java-format
|
||||
!Setting\ build\ path\ to\ {0}=
|
||||
Setting\ build\ path\ to\ {0}=\u053f\u0561\u057c\u0578\u0582\u0581\u0574\u0561\u0576 \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u056b \u057f\u0565\u0572\u0561\u0564\u0580\u0578\u0582\u0574 {0}-\u056b
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:450
|
||||
!Settings=
|
||||
Settings=\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580
|
||||
|
||||
#: Base.java:1681
|
||||
!Settings\ issues=
|
||||
Settings\ issues=\u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u056d\u0576\u0564\u056b\u0580\u0576\u0565\u0580
|
||||
|
||||
#: Editor.java:641
|
||||
!Show\ Sketch\ Folder=
|
||||
Show\ Sketch\ Folder=\u0551\u0578\u0582\u0581\u0561\u0564\u0580\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:468
|
||||
!Show\ verbose\ output\ during\ compilation=
|
||||
Show\ verbose\ output\ during\ compilation=\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0562\u0561\u0566\u0574\u0561\u056f\u056b \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574\u0568 \u056f\u0578\u0574\u057a\u056b\u056c\u056b\u0561\u0581\u056b\u0561\u0575\u056b \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574
|
||||
|
||||
#: Preferences.java:387
|
||||
!Show\ verbose\ output\ during\:\ =
|
||||
Show\ verbose\ output\ during\:\ =\u0551\u0578\u0582\u0575\u0581 \u057f\u0561\u056c \u0562\u0561\u0566\u0574\u0561\u056f\u056b \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574\u0568 \u0568\u0576\u0569\u0561\u0581\u0584\u0578\u0582\u0574\:
|
||||
|
||||
#: Editor.java:607
|
||||
!Sketch=
|
||||
Sketch=\u0533\u056e\u0561\u0563\u056b\u0580
|
||||
|
||||
#: Sketch.java:1754
|
||||
!Sketch\ Disappeared=
|
||||
Sketch\ Disappeared=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0561\u0576\u0570\u0565\u057f\u0561\u0581\u0561\u057e
|
||||
|
||||
#: Base.java:1411
|
||||
!Sketch\ Does\ Not\ Exist=
|
||||
Sketch\ Does\ Not\ Exist=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b
|
||||
|
||||
#: Sketch.java:274 Sketch.java:303 Sketch.java:577 Sketch.java:966
|
||||
!Sketch\ is\ Read-Only=
|
||||
Sketch\ is\ Read-Only=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582 \u0567
|
||||
|
||||
#: Sketch.java:294
|
||||
!Sketch\ is\ Untitled=
|
||||
Sketch\ is\ Untitled=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0561\u0576\u057e\u0565\u0580\u0576\u0561\u0563\u056b\u0580 \u0567
|
||||
|
||||
#: Sketch.java:720
|
||||
!Sketch\ is\ read-only=
|
||||
Sketch\ is\ read-only=\u0533\u056e\u0561\u0563\u056b\u0580\u0576 \u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582 \u0567
|
||||
|
||||
#: Sketch.java:1653
|
||||
!Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=
|
||||
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=\u0533\u056e\u0561\u0563\u056b\u0580\u0568 \u0577\u0561\u057f \u0574\u0565\u056e \u0567; \u0579\u0561\u0583\u0568 \u0583\u0578\u0584\u0580\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0561\u057c\u0561\u057b\u0561\u0580\u056f\u0576\u0565\u0580\u056b \u0570\u0561\u0574\u0561\u0580 \u057f\u0565\u057d http\://www.arduino.cc/en/Guide/Troubleshooting\#size
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1639
|
||||
#, java-format
|
||||
!Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=
|
||||
Sketch\ uses\ {0}\ bytes\ ({2}%%)\ of\ program\ storage\ space.\ Maximum\ is\ {1}\ bytes.=\u0533\u056e\u0561\u0563\u056b\u0580\u0568 \u056e\u0580\u0561\u0563\u0580\u056b \u057a\u0561\u0570\u0565\u057d\u057f\u0561\u0575\u056b\u0576 \u057f\u0561\u0580\u0561\u056e\u0584\u056b\u0581 \u0585\u0563\u0580\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0567 {0} \u0562\u0561\u0575\u0569 ({2}%%)\: \u0544\u0561\u0584\u057d\u056b\u0574\u0578\u0582\u0574\u0568 {1} \u0562\u0561\u0575\u0569 \u0567\:
|
||||
|
||||
#: Editor.java:510
|
||||
!Sketchbook=
|
||||
Sketchbook=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584
|
||||
|
||||
#: Base.java:258
|
||||
!Sketchbook\ folder\ disappeared=
|
||||
Sketchbook\ folder\ disappeared=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584 \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0576\u0570\u0565\u057f\u0561\u0581\u0561\u057e
|
||||
|
||||
#: Preferences.java:315
|
||||
!Sketchbook\ location\:=
|
||||
Sketchbook\ location\:=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057f\u0565\u0572\u0568
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:428
|
||||
!Sketchbook\ path\ not\ defined=
|
||||
Sketchbook\ path\ not\ defined=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u0576 \u057d\u0561\u0570\u0574\u0561\u0576\u057e\u0561\u056e \u0579\u0567
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:185
|
||||
!Slovak=
|
||||
Slovak=\u054d\u056c\u0578\u057e\u0561\u056f\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Preferences.java:152
|
||||
!Slovenian=
|
||||
Slovenian=\u054d\u056c\u0578\u057e\u0565\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Sketch.java:275 Sketch.java:304 Sketch.java:578 Sketch.java:967
|
||||
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=\u0548\u0580\u0578\u0577 \u0586\u0561\u0575\u056c\u0565\u0580 \u0576\u0577\u057e\u0561\u056e \u0565\u0576 \u0578\u0580\u057a\u0565\u057d "\u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582",\n\u0564\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u0584 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0578\u0582\u0580\u056b\u0577 \u057f\u0565\u0572\u0578\u0582\u0574,\n\u0565\u0582 \u0576\u0578\u0580\u056b\u0581 \u056f\u0580\u056f\u0576\u0565\u0584\:
|
||||
|
||||
#: Sketch.java:721
|
||||
!Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=\u0548\u0580\u0578\u0577 \u0586\u0561\u0575\u056c\u0565\u0580 \u0576\u0577\u057e\u0561\u056e \u0565\u0576 \u0578\u0580\u057a\u0565\u057d "\u0574\u056b\u0561\u0575\u0576 \u056f\u0561\u0580\u0564\u0561\u056c\u0578\u0582",\n\u0564\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u0584 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0578\u0582\u0580\u056b\u0577 \u057f\u0565\u0572\u0578\u0582\u0574\:
|
||||
|
||||
#: Sketch.java:457
|
||||
#, java-format
|
||||
!Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=
|
||||
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u0546\u0565\u0580\u0578\u0572\u0578\u0582\u0569\u0575\u0578\u0582\u0576, "{0}" \u0561\u0576\u0578\u0582\u0576\u0578\u057e \u0563\u056e\u0561\u0563\u056b\u0580\u0568 (\u056f\u0561\u0574 \u057a\u0561\u0576\u0561\u056f\u0568) \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u056b\:
|
||||
|
||||
#: Preferences.java:115
|
||||
!Spanish=
|
||||
Spanish=\u053b\u057d\u057a\u0561\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2333
|
||||
!Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=
|
||||
Specified\ folder/zip\ file\ does\ not\ contain\ a\ valid\ library=\u0546\u0577\u057e\u0561\u056e \u057a\u0561\u0576\u0561\u056f\u0568/zip \u0586\u0561\u0575\u056c\u0568 \u057e\u0561\u057e\u0565\u0580 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0579\u056b \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:466
|
||||
!Starting...=
|
||||
Starting...=\u0544\u056b\u0561\u0576\u0578\u0582\u0574 \u0567...
|
||||
|
||||
#: Base.java:540
|
||||
!Sunshine=
|
||||
Sunshine=\u0531\u0580\u0565\u0582\u056b \u056c\u0578\u0582\u0575\u057d
|
||||
|
||||
#: ../../../processing/app/Preferences.java:153
|
||||
!Swedish=
|
||||
Swedish=\u0547\u057e\u0565\u0564\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Preferences.java:84
|
||||
System\ Default=\u0540\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:188
|
||||
!Talossan=
|
||||
Talossan=\u0539\u0561\u056c\u0578\u057d\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Preferences.java:116
|
||||
!Tamil=
|
||||
Tamil=\u0539\u0561\u0574\u056b\u056c
|
||||
|
||||
#: debug/Compiler.java:414
|
||||
!The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=
|
||||
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.='BYTE' \u0570\u056b\u0574\u0561\u0576\u0562\u0561\u057c\u0568 \u0561\u0575\u056c\u0587\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:484
|
||||
!The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=
|
||||
The\ --upload\ option\ supports\ only\ one\ file\ at\ a\ time=--upload \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 \u0561\u057b\u0561\u056f\u0581\u0578\u0582\u0574 \u0567 \u0574\u056b\u0561\u0575\u0576 \u0574\u0565\u056f \u0586\u0561\u0575\u056c
|
||||
|
||||
#: debug/Compiler.java:426
|
||||
!The\ Client\ class\ has\ been\ renamed\ EthernetClient.=
|
||||
The\ Client\ class\ has\ been\ renamed\ EthernetClient.=Client \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u0581 EthernetClient-\u056b\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/BuiltInCoreIsNewerCheck.java:96
|
||||
#, java-format
|
||||
!The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=
|
||||
The\ IDE\ includes\ an\ updated\ {0}\ package,\ but\ you're\ using\ an\ older\ one.\nDo\ you\ want\ to\ upgrade\ {0}?=\ IDE-\u0576 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 {0} \u0583\u0561\u0569\u0565\u0569\u056b \u0569\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574, \u057d\u0561\u056f\u0561\u0575\u0576 \u0564\u0578\u0582\u0584 \u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0576 \u0565\u0584 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574\n\u0551\u0561\u0576\u056f\u0561\u0576\u0578\u0582\u0574 \u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c {0}-\u0568?
|
||||
|
||||
#: debug/Compiler.java:420
|
||||
!The\ Server\ class\ has\ been\ renamed\ EthernetServer.=
|
||||
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Server \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u0581 EthernetServer-\u056b\:
|
||||
|
||||
#: debug/Compiler.java:432
|
||||
!The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=
|
||||
The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Udp \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u0581 EthernetUdp-\u056b\:
|
||||
|
||||
#: Editor.java:2147
|
||||
#, java-format
|
||||
!The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=
|
||||
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?="{0}" \u0586\u0561\u0575\u056c\u0568 \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b\n"{1}" \u0561\u0576\u057e\u0561\u0574\u0562 \u057a\u0561\u0576\u0561\u056f\u056b \u0574\u0565\u057b\:\n\u054d\u057f\u0565\u0572\u056e\u0565\u056c \u0561\u0575\u0564 \u057a\u0561\u0576\u0561\u056f\u0568, \u057f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c \u0586\u0561\u0575\u056c\u0568, \u0565\u0582 \u0577\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0565\u056c?
|
||||
|
||||
#: Base.java:1054 Base.java:2674
|
||||
#, java-format
|
||||
!The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=
|
||||
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)="{0}" \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0565\u056c\:\n\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0565\u0576 \u0570\u056b\u0574\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580 \u0565\u0582 \u0569\u057e\u0565\u0580\:\n(\u0544\u056b\u0561\u0575\u0576 ASCII \u0565\u0582 \u0561\u057c\u0561\u0576\u0581 \u0562\u0561\u0581\u0561\u056f\u0576\u0565\u0580\u056b, \u0565\u0582 \u0561\u0575\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0569\u057e\u0578\u057e)
|
||||
|
||||
#: Sketch.java:374
|
||||
!The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u0540\u056b\u0574\u0576\u0561\u056f\u0561\u0576 \u0586\u0561\u0575\u056c\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\:\n(\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u0561\u0580\u0564\u0565\u0576 \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567 \u0561\u0576\u0581\u0576\u0565\u056c "\u056b\u0580\u0561\u056f\u0561\u0576" \u056e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0574\u0561\u0576 \u0574\u056b\u057b\u0561\u057e\u0561\u0575\u0580\u056b)
|
||||
|
||||
#: Sketch.java:356
|
||||
!The\ name\ cannot\ start\ with\ a\ period.=
|
||||
The\ name\ cannot\ start\ with\ a\ period.=\u0531\u0576\u0578\u0582\u0576\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0562\u0561\u0581\u0561\u056f\u0578\u057e\:
|
||||
|
||||
#: Base.java:1412
|
||||
!The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=
|
||||
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=\u0546\u0577\u057e\u0561\u056e \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b\:\n\u0534\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u057a\u0565\u057f\u0584 \u0567 \u057e\u0565\u0580\u0561\u0563\u0578\u0580\u056e\u0561\u0580\u056f\u0565\u056c \n\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0574\u0565\u0576\u0575\u0578\u0582\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: Base.java:1430
|
||||
#, java-format
|
||||
!The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=
|
||||
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}="{0}" \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0565\u056c\:\n\u0533\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0576\u0565\u0580\u0568 \u057a\u0565\u057f\u0584 \u0567 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0565\u0576 \u0570\u056b\u0574\u0576\u0561\u056f\u0561\u0576 \u057f\u0561\u057c\u0565\u0580 \u0565\u0582 \u0569\u057e\u0565\u0580\:\n(\u0544\u056b\u0561\u0575\u0576 ASCII \u0565\u0582 \u0561\u057c\u0561\u0576\u0581 \u0562\u0561\u0581\u0561\u056f\u0576\u0565\u0580\u056b, \u0565\u0582 \u0561\u0575\u0576 \u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0569\u057e\u0578\u057e)\n\u0531\u0575\u057d \u0570\u0561\u0572\u0578\u0580\u0564\u0561\u0563\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u056b\u0581 \u0561\u0566\u0561\u057f\u057e\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580, \u057b\u0576\u057b\u0565\u0584 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 {1}-\u056b\u0581
|
||||
|
||||
#: Sketch.java:1755
|
||||
!The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=
|
||||
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=\u0533\u056e\u0561\u0563\u0580\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0576\u0570\u0565\u057f\u0561\u0581\u0565\u056c \u0567\:\n\u0544\u0565\u0576\u0584 \u056f\u0583\u0578\u0580\u0571\u0565\u0576\u0584 \u057e\u0565\u0580\u0561\u057a\u0561\u0570\u0565\u056c \u0576\u0578\u0582\u0575\u0576 \u057f\u0565\u0572\u0578\u0582\u0574,\n\u057d\u0561\u056f\u0561\u0575\u0576 \u056f\u0578\u0564\u056b\u0581 \u0562\u0561\u0581\u056b \u0561\u0574\u0565\u0576 \u056b\u0576\u0579 \u056f\u056f\u0578\u0580\u056b\:
|
||||
|
||||
#: ../../../processing/app/Sketch.java:2028
|
||||
!The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=
|
||||
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ than\ 64\ characters\ long.=\u0533\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0568 \u057a\u0565\u057f\u0584 \u0567 \u0583\u0578\u0583\u0578\u056d\u057e\u056b\: \u0533\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0568 \u056f\u0561\u0580\u0578\u0572 \u0567 \u0562\u0561\u0572\u056f\u0561\u0581\u0561\u056e \u056c\u056b\u0576\u0565\u056c \u0574\u056b\u0561\u0575\u0576 ASCII \u057f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f\u0576\u0565\u0580\u056b\u0581 \u0565\u0582 \u0569\u057e\u0565\u0580\u056b\u0581 (\u0579\u056b \u056f\u0561\u0580\u0578\u0572 \u057d\u056f\u057d\u057e\u0565\u056c \u0569\u057e\u0578\u057e)\:\n\u0531\u0575\u0576 \u057a\u0565\u057f\u0584 \u0567 \u0576\u0561\u0565\u0582 64 \u057d\u056b\u0574\u057e\u0578\u056c\u056b\u0581 \u057a\u0561\u056f\u0561\u057d \u056c\u056b\u0576\u056b\:
|
||||
|
||||
#: Base.java:259
|
||||
!The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=\u0533\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b\:\n\u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u056f\u0561\u0576\u0581\u0576\u056b \u056c\u057c\u0565\u056c\u0575\u0561\u0576 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057f\u0565\u0572\u0561\u0576\u0584\u056b\u0576\n\u0565\u0582 \u056f\u057d\u057f\u0565\u0572\u056e\u056b \u0576\u0578\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057a\u0561\u0576\u0561\u056f \u0565\u0569\u0565 \n\u0561\u0576\u0570\u0580\u0561\u056a\u0565\u0577\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u056f\u0561\: \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u0576 \u056f\u0564\u0561\u0564\u0561\u0580\u056b \u056b\u0580 \u0574\u0561\u057d\u056b\u0576\n\u0565\u0580\u0580\u0578\u0580\u0564 \u0564\u0565\u0574\u0584\u0578\u057e \u056d\u0578\u057d\u0561\u056c\u0578\u0582\u0581\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:514
|
||||
!The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=
|
||||
The\ specified\ sketchbook\ folder\ contains\ your\ copy\ of\ the\ IDE.\nPlease\ choose\ a\ different\ folder\ for\ your\ sketchbook.=\u0546\u0577\u057e\u0561\u056e \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0576\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u057a\u0561\u0576\u0561\u056f\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0571\u0565\u0580 IDE-\u056b \u057a\u0561\u057f\u0573\u0565\u0576\u0568\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0568\u0576\u057f\u0580\u0565\u056c \u0574\u0565\u056f \u0561\u0575\u056c \u057a\u0561\u0576\u0561\u056f \u0571\u0565\u0580 \u0563\u056e\u0561\u0576\u056f\u0561\u0580\u0576\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: Sketch.java:1075
|
||||
!This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u0531\u0575\u057d \u0586\u0561\u0575\u056c\u0568 \u0561\u0580\u0564\u0565\u0576 \u057a\u0561\u057f\u0573\u0565\u0576\u057e\u0565\u056c \u0567\n\u0561\u0575\u0576\u057f\u0565\u0572 \u0578\u0580\u057f\u0565\u0572\u056b\u0581 \u0578\u0564\u0578\u0582\u0584 \u0583\u0578\u0580\u0571\u0578\u0582\u0574 \u0565\u0584 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u0576\:\n\u0535\u057d \u0578\u0579 \u0574\u056b \u0562\u0561\u0576 \u0579\u0565\u0574 \u0561\u0576\u0578\u0582\u0574\:
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:257
|
||||
!This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=
|
||||
This\ library\ is\ not\ listed\ on\ Library\ Manager.\ You\ won't\ be\ able\ to\ reinstall\ it\ from\ here.\nAre\ you\ sure\ you\ want\ to\ delete\ it?=\u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0576\u0577\u057e\u0561\u056e \u0579\u0567 \u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b \u053f\u0561\u057c\u0561\u057e\u0561\u0580\u0579\u056b \u0581\u0578\u0582\u0581\u0561\u056f\u0578\u0582\u0574\: \u0534\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0565\u0584 \u0578\u0582\u0576\u0565\u0576\u0561 \u0561\u0575\u056c\u0565\u0582\u057d \u0561\u0575\u057d\u057f\u0565\u0572\u056b\u0581 \u057e\u0565\u0580\u0561\u057f\u0565\u0572\u0561\u0564\u0580\u0565\u056c\u0578\u0582\:\n\u054e\u057d\u057f\u0561\u0570 \u0565\u0584, \u0578\u0580 \u0578\u0582\u0566\u0578\u0582\u0574 \u0565\u0584 \u057b\u0576\u057b\u0565\u056c \u0564\u0561?
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:467
|
||||
!This\ report\ would\ have\ more\ information\ with=
|
||||
This\ report\ would\ have\ more\ information\ with=\u0531\u0575\u057d \u0566\u0565\u056f\u0578\u0582\u0575\u0581\u0568 \u057a\u0565\u057f\u0584 \u0567 \u0561\u057e\u0565\u056c\u056b \u0577\u0561\u057f \u057f\u0565\u0572\u0565\u056f\u0561\u057f\u057e\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0578\u0582\u0576\u0565\u0576\u0561
|
||||
|
||||
#: Base.java:535
|
||||
!Time\ for\ a\ Break=
|
||||
Time\ for\ a\ Break=\u0534\u0561\u0564\u0561\u0580\u056b \u056a\u0561\u0574\u0561\u0576\u0561\u056f\u0576 \u0567
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:94
|
||||
#, java-format
|
||||
!Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.=
|
||||
Tool\ {0}\ is\ not\ available\ for\ your\ operating\ system.={0} \u0563\u0578\u0580\u056e\u056b\u0584\u0568 \u0571\u0565\u0580 \u0585\u057a\u0565\u0580\u0561\u0581\u056b\u0578\u0576 \u0570\u0561\u0574\u0561\u056f\u0561\u0580\u0563\u056b \u0570\u0561\u0574\u0561\u0580 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567\:
|
||||
|
||||
#: Editor.java:663
|
||||
Tools=\u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:97
|
||||
!Topic=
|
||||
Topic=\u054e\u0565\u0580\u0576\u0561\u0563\u056b\u0580
|
||||
|
||||
#: Editor.java:1070
|
||||
!Troubleshooting=
|
||||
Troubleshooting=\u053d\u0576\u0564\u056b\u0580\u0576\u0565\u0580\u056b \u056c\u0578\u0582\u056e\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Preferences.java:117
|
||||
!Turkish=
|
||||
Turkish=\u0539\u0578\u0582\u0580\u0584\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/ui/InstallerJDialog.java:109
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:105
|
||||
!Type=
|
||||
Type=\u0540\u0561\u057e\u0561\u0584\u0565\u056c
|
||||
|
||||
#: ../../../processing/app/Editor.java:2507
|
||||
!Type\ board\ password\ to\ access\ its\ console=
|
||||
Type\ board\ password\ to\ access\ its\ console=\u0540\u0561\u057e\u0561\u0584\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0563\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c\u0568 \u057e\u0561\u0570\u0561\u0576\u0561\u056f \u0574\u0578\u0582\u057f\u0584 \u0563\u0578\u0580\u056e\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1673
|
||||
!Type\ board\ password\ to\ upload\ a\ new\ sketch=
|
||||
Type\ board\ password\ to\ upload\ a\ new\ sketch=\u0540\u0561\u057e\u0561\u0584\u0565\u0584 \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0563\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c\u0568 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: ../../../processing/app/Preferences.java:118
|
||||
!Ukrainian=
|
||||
Ukrainian=\u0548\u0582\u056f\u0580\u0561\u056b\u0576\u0565\u0580\u0565\u0576
|
||||
|
||||
#: ../../../processing/app/Editor.java:2524
|
||||
#: ../../../processing/app/NetworkMonitor.java:145
|
||||
!Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=
|
||||
Unable\ to\ connect\:\ is\ the\ sketch\ using\ the\ bridge?=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0565\u0580 \u056f\u0561\u057a\u0576\u057e\u0565\u056c\: \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0567 \u056f\u0561\u0574\u0578\u0582\u0580\u057b?
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:130
|
||||
!Unable\ to\ connect\:\ retrying=
|
||||
Unable\ to\ connect\:\ retrying=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u056f\u0561\u057a\u0576\u057e\u0565\u056c\: \u0576\u0578\u0580\u056b\u0581 \u0565\u0576\u0584 \u0583\u0578\u0580\u0571\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Editor.java:2526
|
||||
!Unable\ to\ connect\:\ wrong\ password?=
|
||||
Unable\ to\ connect\:\ wrong\ password?=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u056f\u0561\u057a\u0576\u057e\u0565\u056c\: \u057d\u056d\u0561\u056c \u0563\u0561\u0572\u057f\u0576\u0561\u0562\u0561\u057c?
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:65
|
||||
#, java-format
|
||||
!Unable\ to\ find\ {0}\ in\ {1}=
|
||||
Unable\ to\ find\ {0}\ in\ {1}=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0563\u057f\u0576\u0565\u056c {0}-\u0568 {1}-\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/Editor.java:2512
|
||||
!Unable\ to\ open\ serial\ monitor=
|
||||
Unable\ to\ open\ serial\ monitor=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0562\u0561\u0581\u0565\u056c \u0574\u0578\u0576\u056b\u057f\u0578\u0580\u0568
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2709
|
||||
!Unable\ to\ open\ serial\ plotter=
|
||||
Unable\ to\ open\ serial\ plotter=\u0540\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0579\u0567 \u0562\u0561\u0581\u0565\u056c \u057d\u0565\u0580\u056b\u0561\u056c \u0561\u0580\u057f\u0561\u057a\u0561\u057f\u056f\u0565\u0580\u056b\u0579\u0568
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/LibraryManagerUI.java:94
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributionManagerUI.java:89
|
||||
!Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=
|
||||
Unable\ to\ reach\ Arduino.cc\ due\ to\ possible\ network\ issues.=Arduino.cc-\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567, \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0581\u0561\u0576\u0581\u0561\u0575\u056b\u0576 \u056d\u0576\u0564\u056b\u0580\u0576\u0565\u0580\u056b \u057a\u0561\u057f\u0573\u0561\u057c\u0578\u057e\:
|
||||
|
||||
#: Editor.java:1133 Editor.java:1355
|
||||
Undo=\u0540\u0565\u057f \u0577\u0580\u057b\u0565\u056c
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:85
|
||||
#, java-format
|
||||
!Unhandled\ type\ {0}\ in\ context\ key\ {1}=
|
||||
Unhandled\ type\ {0}\ in\ context\ key\ {1}={0} \u0579\u0573\u0561\u0576\u0561\u0573\u057e\u0561\u056e \u057f\u056b\u057a {1} \u0562\u0561\u0576\u0561\u056c\u0578\u0582 \u056f\u0578\u0576\u057f\u0565\u0584\u057d\u057f\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:86
|
||||
#, java-format
|
||||
!Unknown\ sketch\ file\ extension\:\ {0}=
|
||||
Unknown\ sketch\ file\ extension\:\ {0}=\u0531\u0576\u0570\u0561\u0575\u057f \u0563\u056e\u0561\u0563\u0580\u056b \u0586\u0561\u0575\u056c\u056b \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574\: {0}
|
||||
|
||||
#: Platform.java:168
|
||||
!Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=
|
||||
Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=\u0549\u0576\u0577\u057e\u0561\u056e \u057a\u056c\u0561\u057f\u0586\u0578\u0580\u0574, \u0563\u0578\u0580\u056e\u0561\u0580\u056f\u056b\u0579\u0568 \u0570\u0561\u057d\u0561\u0576\u0565\u056c\u056b \u0579\u0567\:\nURL-\u0576\u0565\u0580\u056b \u056f\u0561\u0574 \u057a\u0561\u0576\u0561\u056f\u0576\u0565\u0580 \u0562\u0561\u0581\u0578\u0582\u0574\u0568 \u0561\u057e\u0565\u056c\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580,\n\u0561\u057e\u0565\u056c\u0561\u0581\u0580\u0565\u0584 "launcher\=/path/to/app" \u057f\u0578\u0572\u0568 preferences.txt \u0586\u0561\u0575\u056c\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/DropdownUpdatableLibrariesItem.java:27
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/DropdownUpdatableCoresItem.java:27
|
||||
!Updatable=
|
||||
Updatable=\u0539\u0561\u0580\u0561\u0574\u0561\u0581\u0574\u0561\u0576 \u0565\u0576\u0569\u0561\u056f\u0561
|
||||
|
||||
#: UpdateCheck.java:111
|
||||
Update=\u0539\u0561\u0580\u0574\u0561\u0581\u0578\u0582\u0574
|
||||
|
||||
#: Preferences.java:428
|
||||
!Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u054a\u0561\u0575\u0574\u0561\u0576 \u056a\u0561\u0574\u0561\u056f\u0561\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0586\u0561\u0575\u056c\u0565\u0580\u0568 \u0576\u0578\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0574\u0561\u0574\u0562 (.pde -> .ino)
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/LibraryInstaller.java:167
|
||||
!Updating\ list\ of\ installed\ libraries=
|
||||
Updating\ list\ of\ installed\ libraries=\u054f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580 \u0581\u0578\u0582\u0581\u0561\u056f\u0568 \u0569\u0561\u0580\u0574\u0561\u0581\u057e\u0578\u0582\u0574 \u0567
|
||||
|
||||
#: EditorToolbar.java:41 Editor.java:545
|
||||
Upload=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c
|
||||
|
||||
#: EditorToolbar.java:46 Editor.java:553
|
||||
!Upload\ Using\ Programmer=
|
||||
Upload\ Using\ Programmer=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e \u053e\u0580\u0561\u0563\u0580\u0561\u057e\u0578\u0580\u0578\u0572\u0568
|
||||
|
||||
#: Editor.java:2403 Editor.java:2439
|
||||
!Upload\ canceled.=
|
||||
Upload\ canceled.=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0565\u0581\:
|
||||
|
||||
#: ../../../processing/app/Sketch.java:1678
|
||||
!Upload\ cancelled=
|
||||
Upload\ cancelled=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u0568 \u0579\u0565\u0572\u0561\u0580\u056f\u057e\u0561\u056e \u0567
|
||||
|
||||
#: Editor.java:2378
|
||||
!Uploading\ to\ I/O\ Board...=
|
||||
Uploading\ to\ I/O\ Board...=\u054e\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567 I/O \u0570\u0561\u0580\u0569\u0561\u056f...
|
||||
|
||||
#: Sketch.java:1622
|
||||
Uploading...=\u0546\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u2024\u2024\u2024
|
||||
|
||||
#: Editor.java:1269
|
||||
!Use\ Selection\ For\ Find=
|
||||
Use\ Selection\ For\ Find=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0546\u0577\u0578\u0582\u0574\u0568 \u0553\u0576\u057f\u0580\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: Preferences.java:409
|
||||
!Use\ external\ editor=
|
||||
Use\ external\ editor=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c \u0561\u0580\u057f\u0561\u0584\u056b\u0576 \u056d\u0574\u0562\u0561\u0563\u0580\u056b\u0579
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:493
|
||||
#: ../../../../../app/src/cc/arduino/view/preferences/Preferences.java:499
|
||||
!Username\:=
|
||||
Username\:=\u0555\u0563\u057f\u0561\u0576\u0578\u0582\u0576
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:410
|
||||
#, java-format
|
||||
!Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=
|
||||
Using\ library\ {0}\ at\ version\ {1}\ in\ folder\:\ {2}\ {3}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e {1} \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u056b {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\: {2} {3}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:94
|
||||
#, java-format
|
||||
!Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=
|
||||
Using\ library\ {0}\ in\ folder\:\ {1}\ {2}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\: {1} {2}
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:320
|
||||
#, java-format
|
||||
!Using\ previously\ compiled\ file\:\ {0}=
|
||||
Using\ previously\ compiled\ file\:\ {0}=\u0555\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c\u0578\u057e \u0576\u0561\u056d\u056f\u056b\u0576\u0578\u0582\u0574 \u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u057e\u0561\u056e \u0586\u0561\u0575\u056c\u0568\: {0}
|
||||
|
||||
#: EditorToolbar.java:41 EditorToolbar.java:46
|
||||
Verify=\u054d\u057f\u0578\u0582\u0563\u0565\u056c
|
||||
|
||||
#: Preferences.java:400
|
||||
!Verify\ code\ after\ upload=
|
||||
Verify\ code\ after\ upload=\u054d\u057f\u0578\u0582\u0563\u0565\u056c \u056f\u0578\u0564\u0568 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574\u056b\u0581 \u0570\u0565\u057f\u0578
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:725
|
||||
!Verify/Compile=
|
||||
Verify/Compile=\u054d\u057f\u0578\u0582\u0563\u0565\u056c/\u053f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u0576\u0565\u056c
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:451
|
||||
!Verifying\ and\ uploading...=
|
||||
Verifying\ and\ uploading...=\u054d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0587 \u057e\u0565\u0580\u0562\u0565\u057c\u0576\u057e\u0578\u0582\u0574 \u0567...
|
||||
|
||||
#: ../../../cc/arduino/contributions/DownloadableContributionsDownloader.java:71
|
||||
!Verifying\ archive\ integrity...=
|
||||
Verifying\ archive\ integrity...=\u054d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0567 \u0561\u0580\u056d\u056b\u057e\u056b \u0561\u0574\u0562\u0578\u0572\u057b\u0561\u056f\u0561\u0576\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:454
|
||||
!Verifying...=
|
||||
Verifying...=\u054d\u057f\u0578\u0582\u0563\u057e\u0578\u0582\u0574 \u0567...
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:328
|
||||
#, java-format
|
||||
!Version\ <b>{0}</b>=
|
||||
Version\ <b>{0}</b>=\u054f\u0561\u0580\u0562\u0565\u0580\u0561\u056f <b>{0}</b>
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/libraries/ui/ContributedLibraryTableCell.java:326
|
||||
!Version\ unknown=
|
||||
Version\ unknown=\u054f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0568 \u0573\u0561\u0576\u0561\u0579\u057e\u0561\u056e \u0579\u0567
|
||||
|
||||
#: ../../../cc/arduino/contributions/libraries/ContributedLibrary.java:97
|
||||
#, java-format
|
||||
!Version\ {0}=
|
||||
Version\ {0}=\u054f\u0561\u0580\u0562\u0565\u0580\u0561\u056f {0}
|
||||
|
||||
#: ../../../processing/app/Preferences.java:154
|
||||
!Vietnamese=
|
||||
Vietnamese=\u054e\u056b\u0565\u057f\u0576\u0561\u0574\u0565\u0580\u0565\u0576
|
||||
|
||||
#: Editor.java:1105
|
||||
!Visit\ Arduino.cc=
|
||||
Visit\ Arduino.cc=\u0531\u0575\u0581\u0565\u056c\u0565\u0584 Arduino.cc
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:90
|
||||
#, java-format
|
||||
!WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=
|
||||
WARNING\:\ Category\ '{0}'\ in\ library\ {1}\ is\ not\ valid.\ Setting\ to\ '{2}'=\u0536\u0533\u0548\u0552\u0547\u0531\u0551\u0548\u0552\u0544\: {1} \u0533\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0578\u0582\u0574 '{0}' \u056f\u0561\u057f\u0565\u0563\u0578\u0580\u056b\u0561\u0576 \u057e\u0561\u057e\u0565\u0580 \u0579\u0567\: \u0534\u0580\u057e\u0578\u0582\u0574 \u0567 '{2}'-\u056b\u0576
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:93
|
||||
#, java-format
|
||||
!WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=
|
||||
WARNING\:\ Spurious\ {0}\ folder\ in\ '{1}'\ library=\u0536\u0533\u0548\u0552\u0547\u0531\u0551\u0548\u0552\u0544\: '{1}' \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0578\u0582\u0574 \u056f\u0565\u0572\u056e\u057e\u0561\u056e {0} \u0569\u0572\u0569\u0561\u057a\u0561\u0576\u0561\u056f
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:115
|
||||
#, java-format
|
||||
!WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=
|
||||
WARNING\:\ library\ {0}\ claims\ to\ run\ on\ {1}\ architecture(s)\ and\ may\ be\ incompatible\ with\ your\ current\ board\ which\ runs\ on\ {2}\ architecture(s).=\u0536\u0533\u0548\u0552\u0547\u0531\u0551\u0548\u0552\u0544\: {0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u0561\u0577\u056d\u0561\u057f\u0578\u0582\u0574 \u0567 {1} \u0573\u0561\u0580\u057f\u0561\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0561\u0574\u0562() \u0565\u0582 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u0570\u0561\u0574\u0561\u057f\u0565\u0572\u0565\u056c\u056b \u0579\u056c\u056b\u0576\u056b \u0571\u0565\u0580 \u0568\u0576\u0569\u0561\u0581\u056b\u056f \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0570\u0565\u057f \u0578\u0580\u0568 \u0578\u0582\u0576\u056b {2} \u0573\u0561\u0580\u057f\u0561\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576()
|
||||
|
||||
#: Base.java:2128
|
||||
Warning=\u0548\u0582\u0577\u0561\u0564\u0580\u0578\u0582\u0569\u0575\u0578\u0582\u0576
|
||||
Warning=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574
|
||||
|
||||
#: ../../../processing/app/debug/Compiler.java:1295
|
||||
!Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=
|
||||
Warning\:\ This\ core\ does\ not\ support\ exporting\ sketches.\ Please\ consider\ upgrading\ it\ or\ contacting\ its\ author=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u0531\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0561\u0580\u057f\u0561\u0570\u0561\u0576\u0578\u0582\u0574 \u0579\u056b \u0561\u057a\u0561\u0570\u0578\u057e\u057e\u0578\u0582\u0574. \u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0561\u0575\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u056f\u0561\u0574 \u0570\u0565\u0572\u056b\u0576\u0561\u056f\u056b \u0570\u0565\u057f \u056f\u0561\u057a\u0576\u057e\u0565\u056c
|
||||
|
||||
#: ../../../cc/arduino/utils/ArchiveExtractor.java:197
|
||||
#, java-format
|
||||
!Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=
|
||||
Warning\:\ file\ {0}\ links\ to\ an\ absolute\ path\ {1}=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: {0} \u0586\u0561\u0575\u056c\u0568 \u0574\u056b\u0561\u0576\u0578\u0582\u0574 \u0567 {1} \u0562\u0561\u0581\u0561\u0580\u0571\u0561\u056f \u0573\u0561\u0576\u0561\u057a\u0561\u0580\u0570\u056b\u0576
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionsIndexer.java:133
|
||||
!Warning\:\ forced\ trusting\ untrusted\ contributions=
|
||||
Warning\:\ forced\ trusting\ untrusted\ contributions=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u057d\u057f\u056b\u057a\u0578\u0572\u0561\u056f\u0561\u0576 \u057e\u057f\u0561\u0570\u0578\u0582\u0574 \u0579\u057e\u057d\u057f\u0561\u0570\u057e\u0561\u056e \u0576\u0565\u0580\u0564\u0580\u0578\u0572\u0576\u0565\u0580\u056b\u0576
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:217
|
||||
#, java-format
|
||||
!Warning\:\ forced\ untrusted\ script\ execution\ ({0})=
|
||||
Warning\:\ forced\ untrusted\ script\ execution\ ({0})=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u057d\u057f\u056b\u057a\u0578\u0572\u0561\u056f\u0561\u0576 ({0}) \u057d\u056f\u0580\u056b\u057a\u057f\u056b \u0561\u0577\u056d\u0561\u057f\u0565\u0581\u0578\u0582\u0574
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:212
|
||||
#, java-format
|
||||
!Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=
|
||||
Warning\:\ non\ trusted\ contribution,\ skipping\ script\ execution\ ({0})=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: \u0579\u057e\u057d\u057f\u0561\u0570\u057e\u0561\u056e \u0576\u0565\u0580\u0564\u0580\u0578\u0572, \u0577\u0580\u057b\u0561\u0576\u0581\u057e\u0578\u0582\u0574 \u0567 ({0}) \u057d\u056f\u0580\u056b\u057a\u057f\u056b \u056f\u0561\u057f\u0561\u0580\u0578\u0582\u0574\u0568
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:158
|
||||
#, java-format
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ contains\ deprecated\ {1},\ automatically\ converted\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: platform.txt-\u056b '{0}' \u0574\u056b\u057b\u0578\u0582\u056f\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0570\u0576\u0561\u0581\u0561\u056e {1}, \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u0571\u0565\u0582\u0561\u0583\u0578\u056d\u0565\u056c \u0567 {2}-\u056b\:\n\u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568\:
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:91
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ '{1}',\ using\ default\ value\ '{2}'.\ Consider\ upgrading\ this\ core.=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: platform.txt-\u056b '{0}' \u0574\u056b\u057b\u0578\u0582\u056f\u056b\u0581 \u0562\u0561\u0581\u0561\u056f\u0561\u0575\u0578\u0582\u0574 \u0567 {1} \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568, \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u057e\u0578\u0582\u0574 \u0567 {2} \u056c\u057c\u0565\u056c\u0575\u0561\u0575\u0576 \u0561\u0580\u056a\u0565\u0584\u0568\:\n\u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568\:
|
||||
|
||||
#: ../../../processing/app/debug/LegacyTargetPlatform.java:170
|
||||
#, java-format
|
||||
!Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=
|
||||
Warning\:\ platform.txt\ from\ core\ '{0}'\ misses\ property\ {1},\ automatically\ set\ to\ {2}.\ Consider\ upgrading\ this\ core.=\u0536\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\: platform.txt-\u056b '{0}' \u0574\u056b\u057b\u0578\u0582\u056f\u056b\u0581 \u0562\u0561\u0581\u0561\u056f\u0561\u0575\u0578\u0582\u0574 \u0567 {1} \u0570\u0561\u057f\u056f\u0578\u0582\u0569\u0575\u0578\u0582\u0576\u0568, \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u057e\u0565\u0580\u0561\u0563\u0580\u057e\u0578\u0582\u0574 \u0567 {2}\:\n\u053b\u0576\u056b\u056f\u0561\u057f\u056b \u0578\u0582\u0576\u0565\u0581\u0565\u0584 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c \u0561\u0575\u057d \u0574\u056b\u057b\u0578\u0582\u056f\u0568\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Preferences.java:190
|
||||
!Western\ Frisian=
|
||||
Western\ Frisian=\u0531\u0580\u0565\u0582\u0574\u057f\u0575\u0561\u0576 \u0556\u0580\u056b\u0566\u0565\u0580\u0565\u0576
|
||||
|
||||
#: debug/Compiler.java:444
|
||||
!Wire.receive()\ has\ been\ renamed\ Wire.read().=
|
||||
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive()-\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.read()-\u056b\:
|
||||
|
||||
#: debug/Compiler.java:438
|
||||
!Wire.send()\ has\ been\ renamed\ Wire.write().=
|
||||
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send()-\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.write()-\u056b\:
|
||||
|
||||
#: FindReplace.java:105
|
||||
!Wrap\ Around=
|
||||
Wrap\ Around=\u054a\u0561\u057f\u0565\u056c \u0547\u0578\u0582\u0580\u057b\u0568
|
||||
|
||||
#: debug/Uploader.java:213
|
||||
!Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=
|
||||
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=\u054d\u056d\u0561\u056c \u0574\u056b\u056f\u0580\u0578\u056f\u0578\u0576\u057f\u0580\u0578\u056c\u056c\u0565\u0580 \u0567 \u0563\u057f\u0576\u057e\u0565\u056c\: \u0534\u0578\u0582\u0584 \u0576\u0577\u0565\u056c \u0565\u0584 \u0573\u056b\u0577\u057f \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 > \u0540\u0561\u0580\u0569\u0561\u056f \u0574\u0565\u0576\u0575\u0578\u0582\u056b\u0581?
|
||||
|
||||
#: Preferences.java:77 UpdateCheck.java:108
|
||||
Yes=\u0531\u0575\u0578
|
||||
|
||||
#: Sketch.java:1074
|
||||
!You\ can't\ fool\ me=
|
||||
You\ can't\ fool\ me=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u056d\u0561\u0562\u0565\u056c \u056b\u0576\u0571
|
||||
|
||||
#: Sketch.java:411
|
||||
!You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=
|
||||
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u0578\u0582\u0576\u0565\u0576\u0561\u056c .cpp \u0576\u0578\u0582\u0575\u0576 \u0561\u0576\u057e\u0561\u0562\u0574 \u056b\u0576\u0579 \u0563\u056e\u0561\u0563\u0580\u056b \u0561\u0576\u0578\u0582\u0576\u0576 \u0567\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:2312
|
||||
!You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=
|
||||
You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u0576\u0565\u0580\u0574\u0578\u0582\u056e\u0565\u056c \u057a\u0561\u0576\u0561\u056f, \u0578\u0580\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0571\u0565\u0580 \u0563\u056e\u0561\u0563\u0580\u056b \u0563\u056b\u0580\u0584\u0568
|
||||
|
||||
#: Sketch.java:421
|
||||
!You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 "{0}"-\u056b,\n\u0584\u0561\u0576\u056b \u0578\u0580 \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u0561\u0580\u0564\u0565\u0576 \u0578\u0582\u0576\u056b \u0576\u0578\u0582\u0575\u0576 \u0561\u0576\u0578\u0582\u0576\u0578\u057e .cpp \u0586\u0561\u0575\u056c\:
|
||||
|
||||
#: Sketch.java:861
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
!You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u0534\u0578\u0582\u0584 \u0579\u0565\u0584 \u056f\u0561\u0580\u0578\u0572 \u057a\u0561\u0570\u057a\u0561\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 \u056b\u0580 \u0574\u0565\u057b \u0563\u057f\u0576\u057e\u0578\u0572 \u057a\u0561\u0576\u0561\u056f\u056b \u0574\u0565\u057b\:\n\u0531\u0575\u0576 \u056f\u057f\u0565\u0582\u056b \u0561\u0576\u057e\u0565\u0580\u057b\:
|
||||
|
||||
#: Base.java:1888
|
||||
!You\ forgot\ your\ sketchbook=
|
||||
You\ forgot\ your\ sketchbook=\u0534\u0578\u0582\u0584 \u0574\u0578\u057c\u0561\u0581\u0565\u056c \u0565\u0584 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u056b\u0580\u0584\u0568
|
||||
|
||||
#: ../../../processing/app/AbstractMonitor.java:92
|
||||
!You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=
|
||||
You've\ pressed\ {0}\ but\ nothing\ was\ sent.\ Should\ you\ select\ a\ line\ ending?=\u0534\u0578\u0582\u0584 \u0583\u0578\u056d\u0561\u0576\u0581\u0565\u056c \u0565\u0584 {0} \u0562\u0561\u0575\u0581 \u0578\u0579\u056b\u0576\u0579 \u0579\u056b \u057e\u0565\u0580\u0561\u0563\u0580\u057e\u0565\u056c\: \u0534\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u0576\u0577\u0565\u0584 \u057f\u0578\u0572\u056b \u056d\u0574\u0562\u0561\u0563\u0580\u0578\u0582\u0574?
|
||||
|
||||
#: Base.java:536
|
||||
!You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=
|
||||
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=\u0534\u0578\u0582\u0584 \u0570\u0561\u057d\u0565\u056c \u0565\u0584 \u0585\u0580\u057e\u0561 \u0570\u0561\u0574\u0561\u0580 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0561\u057e\u057f\u0578\u0574\u0561\u057f \u0561\u0576\u057e\u0561\u0576\u0574\u0561\u0576 \u057d\u0561\u0570\u0574\u0561\u0576\u056b\u0576\: \u0544\u056b\u0563\u0578\u0582\u0581\u0565 \u0563\u0576\u0561\u0584 \u0566\u0562\u0578\u057d\u0576\u0565\u056c\u0578\u0582?
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:768
|
||||
!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=
|
||||
Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ settings\ folder.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u0541\u0565\u0580 IDE-\u056b \u057a\u0561\u057f\u0573\u0565\u0576\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0567 \u056f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580\u056b \u0565\u0576\u0569\u0561\u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u057f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c IDE-\u0576 \u0561\u0575\u056c \u057a\u0561\u0576\u0561\u056f\:
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:771
|
||||
!Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=
|
||||
Your\ copy\ of\ the\ IDE\ is\ installed\ in\ a\ subfolder\ of\ your\ sketchbook.\nPlease\ move\ the\ IDE\ to\ another\ folder.=\u0541\u0565\u0580 IDE-\u056b \u057a\u0561\u057f\u0573\u0565\u0576\u0568 \u057f\u0565\u0572\u0561\u0564\u0580\u057e\u0561\u056e \u0567 \u0563\u056e\u0561\u0563\u0580\u0565\u0580\u056b \u0563\u0580\u0584\u056b \u0565\u0576\u0569\u0561\u057a\u0561\u0576\u0561\u056f\u0578\u0582\u0574\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u057f\u0565\u0572\u0561\u0583\u0578\u056d\u0565\u056c IDE-\u0576 \u0561\u0575\u056c \u057a\u0561\u0576\u0561\u056f\:
|
||||
|
||||
#: Base.java:2638
|
||||
!ZIP\ files\ or\ folders=
|
||||
ZIP\ files\ or\ folders=\u0556\u0561\u0575\u056c\u0565\u0580\u0568 \u056f\u0561\u0574 \u057a\u0561\u0576\u0561\u056f\u0576\u0565\u0580\u0568 ZIP \u0561\u0576\u0565\u056c
|
||||
|
||||
#: Base.java:2661
|
||||
!Zip\ doesn't\ contain\ a\ library=
|
||||
Zip\ doesn't\ contain\ a\ library=Zip-\u0568 \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576 \u0579\u056b \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574
|
||||
|
||||
#: Sketch.java:364
|
||||
#, java-format
|
||||
!".{0}"\ is\ not\ a\ valid\ extension.=
|
||||
".{0}"\ is\ not\ a\ valid\ extension.=".{0}"-\u0568 \u057e\u0561\u057e\u0565\u0580 \u0568\u0576\u0564\u056c\u0561\u0575\u0576\u0578\u0582\u0574 \u0579\u0567\:
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
!"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.=
|
||||
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Arduino,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}"-\u0568 \u057a\u0561\u0580\u0578\u0582\u0576\u0561\u056f\u0578\u0582\u0574 \u0567 \u0579\u0573\u0561\u0576\u0561\u0579\u057e\u0561\u056e \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\: \u0535\u0569\u0565 \u0561\u0575\u057d \u056f\u0578\u0564\u0568 \u057d\u057f\u0565\u0572\u056e\u057e\u0565\u056c \u0567 \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578\u056b \u0570\u056b\u0576 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\u0578\u057e, \u0564\u0578\u0582\u0584 \u0570\u0576\u0561\u0580\u0561\u057e\u0578\u0580 \u0567 \u057a\u0565\u057f\u0584 \u0567 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u0584 \u0533\u0578\u0580\u056e\u056b\u0584\u0576\u0565\u0580 -> \u0548\u0582\u0572\u0572\u0565\u056c \u053f\u0578\u0564\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0568 & \u054e\u0565\u0580\u0562\u0565\u057c\u0576\u0565\u056c \u0563\u056e\u0561\u0563\u056b\u0580\u0568 UTF-8 \u056f\u0578\u0564\u0561\u057e\u0578\u0580\u0574\u0561\u0576 \u0569\u0561\u0580\u0574\u0561\u0581\u0576\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\: \u0535\u0569\u0565 \u0578\u0579, \u0561\u057a\u0561 \u0564\u0578\u0582\u0584 \u057a\u0565\u057f\u0584 \u0567 \u057b\u0576\u057b\u0565\u0584 \u057e\u0561\u057f \u057d\u056b\u0574\u057e\u0578\u056c\u0576\u0565\u0580\u0568 \u0566\u0563\u0578\u0582\u0577\u0561\u0581\u0578\u0582\u0574\u056b\u0581 \u0561\u0566\u0561\u057f\u057e\u0565\u056c\u0578\u0582 \u0570\u0561\u0574\u0561\u0580\:
|
||||
|
||||
#: debug/Compiler.java:409
|
||||
!\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=
|
||||
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\nArduino 0019-\u0578\u0582\u0574 Ethernet \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0568 \u056f\u0561\u056d\u057e\u0561\u056e \u0567 SPI \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581\:\n\u0534\u0578\u0582\u0584 \u0561\u0574\u0565\u0576\u0561\u0575\u0576 \u0570\u0561\u057e\u0561\u0576\u0561\u056f\u0561\u0576\u0578\u0582\u0569\u0575\u0561\u0574\u0562 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0578\u0582\u0574 \u0565\u0584 \u0561\u0575\u0576 \u056f\u0561\u0574 \u0561\u0575\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576, \u0578\u0580\u0568 \u056f\u0561\u056d\u057e\u0561\u056e \u0567 SPI \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u056b\u0581\:\n
|
||||
|
||||
#: debug/Compiler.java:415
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\nArduino 1.0-\u0578\u0582\u0574 'BYTE' \u0570\u056b\u0574\u0576\u0561\u0562\u0561\u057c\u0568 \u0561\u0575\u056c\u0565\u0582\u057d \u0579\u056b \u0561\u057b\u0561\u056f\u0581\u057e\u0578\u0582\u0574\:\n\u053d\u0576\u0564\u0580\u0578\u0582\u0574 \u0565\u0576\u0584 \u0583\u0578\u056d\u0561\u0580\u0565\u0576\u0568 \u0585\u0563\u057f\u0561\u0563\u0578\u0580\u056e\u0565\u056c Serial.write() \:\n
|
||||
|
||||
#: debug/Compiler.java:427
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Client\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetClient.\n\n=\nArduino 1.0-\u0578\u0582\u0574 Client \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 EthernetClient-\u056b\:\n\n
|
||||
|
||||
#: debug/Compiler.java:421
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Server\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetServer.\n\n=\nArduino 1.0-\u0578\u0582\u0574 Server \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 EthernetServer-\u056b\:\n\n
|
||||
|
||||
#: debug/Compiler.java:433
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Udp\ class\ in\ the\ Ethernet\ library\ has\ been\ renamed\ to\ EthernetUdp.\n\n=\nArduino 1.0-\u0578\u0582\u0574 Udp \u0564\u0561\u057d\u0568 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 EthernetUdp-\u056b\:\n\n
|
||||
|
||||
#: debug/Compiler.java:445
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduino 1.0-\u0578\u0582\u0574 Wire.receive() \u0586\u0578\u0582\u0576\u056f\u0581\u056b\u0561\u0576 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.read()-\u056b \u0561\u0575\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0565\u057f \u056f\u0561\u0575\u0578\u0582\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580\:\n\n
|
||||
|
||||
#: debug/Compiler.java:439
|
||||
!\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\nArduino 1.0-\u0578\u0582\u0574 Wire.send() \u0586\u0578\u0582\u0576\u056f\u0581\u056b\u0561\u0576 \u057e\u0565\u0580\u0561\u0576\u057e\u0561\u0576\u057e\u0565\u056c \u0567 Wire.write()-\u056b \u0561\u0575\u056c \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580\u056b \u0570\u0565\u057f \u056f\u0561\u0575\u0578\u0582\u0576\u0578\u0582\u0569\u0575\u0561\u0576 \u0570\u0561\u0574\u0561\u0580\:\n\n
|
||||
|
||||
#: SerialMonitor.java:130 SerialMonitor.java:133
|
||||
!baud=
|
||||
baud=\u0562\u0578\u0564
|
||||
|
||||
#: Preferences.java:389
|
||||
!compilation\ =
|
||||
compilation\ =\u056f\u0578\u0574\u057a\u056b\u056c\u0561\u0581\u056b\u0561
|
||||
|
||||
#: ../../../processing/app/NetworkMonitor.java:111
|
||||
!connected\!=
|
||||
connected\!=\u056f\u0561\u057a\u0576\u057e\u0565\u0581\!
|
||||
|
||||
#: Sketch.java:540
|
||||
!createNewFile()\ returned\ false=
|
||||
createNewFile()\ returned\ false=createNewFile()-\u0576 \u057e\u0565\u0580\u0561\u0564\u0561\u0580\u0571\u0580\u0565\u0581 false
|
||||
|
||||
#: ../../../processing/app/EditorStatus.java:469
|
||||
!enabled\ in\ File\ >\ Preferences.=
|
||||
enabled\ in\ File\ >\ Preferences.=\u0574\u056b\u0561\u0581\u0576\u0565\u056c \u0556\u0561\u0575\u056c > \u053f\u0561\u0580\u0563\u0561\u057e\u0578\u0580\u0578\u0582\u0574\u0576\u0565\u0580 -\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:1352
|
||||
!http\://www.arduino.cc/=
|
||||
http\://www.arduino.cc/=http\://www.arduino.cc/
|
||||
|
||||
#: UpdateCheck.java:118
|
||||
!http\://www.arduino.cc/en/Main/Software=
|
||||
http\://www.arduino.cc/en/Main/Software=http\://www.arduino.cc/en/Main/Software
|
||||
|
||||
#: UpdateCheck.java:53
|
||||
!http\://www.arduino.cc/latest.txt=
|
||||
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
|
||||
|
||||
#: Preferences.java:625
|
||||
#, java-format
|
||||
!ignoring\ invalid\ font\ size\ {0}=
|
||||
ignoring\ invalid\ font\ size\ {0}=\u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u057c\u0561\u057f\u0565\u057d\u0561\u056f\u056b \u0579\u0561\u0583\u0568 {0} \u0561\u0576\u057f\u0565\u057d\u057e\u0578\u0582\u0574 \u0567
|
||||
|
||||
#: Editor.java:936 Editor.java:943
|
||||
!name\ is\ null=
|
||||
name\ is\ null=\u0561\u0576\u0578\u0582\u0576\u0568 null \u0567
|
||||
|
||||
#: Editor.java:932
|
||||
!serialMenu\ is\ null=
|
||||
serialMenu\ is\ null=serialMenu-\u0576 null \u0567
|
||||
|
||||
#: debug/Uploader.java:195
|
||||
#, java-format
|
||||
!the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=
|
||||
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected={0} \u057d\u0565\u0580\u056b\u0561\u056c \u057a\u0578\u0580\u057f\u0568 \u0563\u0578\u0575\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0579\u0578\u0582\u0576\u056b \u056f\u0561\u0574 \u0570\u0561\u0580\u0569\u0561\u056f\u0568 \u056f\u0561\u057a\u0576\u057e\u0561\u056e \u0579\u0567
|
||||
|
||||
#: ../../../processing/app/Base.java:389
|
||||
#, java-format
|
||||
!unknown\ option\:\ {0}=
|
||||
unknown\ option\:\ {0}=\u0561\u0576\u0570\u0561\u0575\u057f \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f\: {0}
|
||||
|
||||
#: Preferences.java:391
|
||||
!upload=
|
||||
upload=\u057e\u0565\u0580\u0562\u0565\u057c\u0576\u0578\u0582\u0574
|
||||
|
||||
#: ../../../../../app/src/cc/arduino/contributions/packages/ui/ContributedPlatformTableCell.java:324
|
||||
#, java-format
|
||||
!version\ <b>{0}</b>=
|
||||
version\ <b>{0}</b>=\u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f <b>{0}</b>
|
||||
|
||||
#: ../../../../../app/src/processing/app/Editor.java:2243
|
||||
#, java-format
|
||||
!{0}\ -\ {1}\ |\ Arduino\ {2}=
|
||||
{0}\ -\ {1}\ |\ Arduino\ {2}={0} - {1} | \u0531\u0580\u0564\u0578\u0582\u056b\u0576\u0578 {2}
|
||||
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:39
|
||||
#: ../../../cc/arduino/contributions/SignatureVerificationFailedException.java:43
|
||||
#, java-format
|
||||
!{0}\ file\ signature\ verification\ failed=
|
||||
{0}\ file\ signature\ verification\ failed={0} \u0586\u0561\u0575\u056c\u056b \u057d\u057f\u0578\u0580\u0561\u0563\u0580\u0574\u0561\u0576 \u057d\u057f\u0578\u0582\u0563\u0578\u0582\u0574\u0568 \u0571\u0561\u056d\u0578\u0572\u057e\u0565\u0581
|
||||
|
||||
#: ../../../cc/arduino/contributions/packages/ContributionInstaller.java:310
|
||||
#, java-format
|
||||
!{0}\ file\ signature\ verification\ failed.\ File\ ignored.=
|
||||
{0}\ file\ signature\ verification\ failed.\ File\ ignored.={0} \u0586\u0561\u0575\u056c\u056b \u057d\u057f\u0578\u0580\u0561\u0563\u0580\u0574\u0561\u0576 \u057d\u057f\u0578\u0582\u0563\u0578\u0582\u0574\u0568 \u0571\u0561\u056d\u0578\u0572\u057e\u0565\u0581\: \u0556\u0561\u0575\u056c\u0568 \u0561\u0576\u057f\u0565\u057d\u057e\u0565\u0581\:
|
||||
|
||||
#: Editor.java:380
|
||||
#, java-format
|
||||
!{0}\ files\ added\ to\ the\ sketch.=
|
||||
{0}\ files\ added\ to\ the\ sketch.={0} \u0586\u0561\u0575\u056c\u0565\u0580 \u0561\u057e\u0565\u056c\u0561\u0581\u057e\u0565\u0581\u056b\u0576 \u0563\u056e\u0561\u0563\u0580\u056b\u0576\:
|
||||
|
||||
#: ../../../../../app/src/processing/app/Base.java:1201
|
||||
#, java-format
|
||||
!{0}\ libraries=
|
||||
{0}\ libraries={0} \u0563\u0580\u0561\u0564\u0561\u0580\u0561\u0576\u0576\u0565\u0580
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:76
|
||||
#, java-format
|
||||
!{0}\ must\ be\ a\ folder=
|
||||
{0}\ must\ be\ a\ folder={0}-\u0568 \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b \u057a\u0561\u0576\u0561\u056f
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:78
|
||||
#, java-format
|
||||
!{0}\ pattern\ is\ missing=
|
||||
{0}\ pattern\ is\ missing={0} \u0585\u0580\u056b\u0576\u0561\u0579\u0561\u0583\u0578\u0582\u0569\u0575\u0578\u0582\u0576 \u0562\u0561\u0581\u0561\u056f\u0561\u0575\u0578\u0582\u0574 \u0567
|
||||
|
||||
#: debug/Compiler.java:365
|
||||
#, java-format
|
||||
!{0}\ returned\ {1}=
|
||||
{0}\ returned\ {1}={0}-\u0568 \u057e\u0565\u0580\u0561\u0564\u0561\u0580\u0571\u0580\u0565\u0581 {1}
|
||||
|
||||
#: Editor.java:2213
|
||||
#, java-format
|
||||
!{0}\ |\ Arduino\ {1}=
|
||||
{0}\ |\ Arduino\ {1}={0} | \u0531\u0580\u0564\u0578\u0582\u0576\u0578{1}
|
||||
|
||||
#: ../../../processing/app/Base.java:519
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"=
|
||||
{0}\:\ Invalid\ argument\ to\ --pref,\ should\ be\ of\ the\ form\ "pref\=value"={0}\: --pref -\u056b \u057d\u056d\u0561\u056c \u0561\u0580\u0563\u0578\u0582\u0574\u0565\u0576\u057f, \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b "pref\=value" \u0586\u0578\u0580\u0574\u0561\u057f\u0578\u057e
|
||||
|
||||
#: ../../../processing/app/Base.java:476
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"=
|
||||
{0}\:\ Invalid\ board\ name,\ it\ should\ be\ of\ the\ form\ "package\:arch\:board"\ or\ "package\:arch\:board\:options"={0}\: \u054d\u056d\u0561\u056c \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0561\u0576\u0578\u0582\u0576, \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b "package\:arch\:board" \u056f\u0561\u0574 "package\:arch\:board\:options" \u0586\u0578\u0580\u0574\u0561\u057f\u0578\u057e
|
||||
|
||||
#: ../../../processing/app/Base.java:509
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"=
|
||||
{0}\:\ Invalid\ option\ for\ "{1}"\ option\ for\ board\ "{2}"={0}\: \u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f "{1}", "{2}" \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: ../../../processing/app/Base.java:507
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ option\ for\ board\ "{1}"=
|
||||
{0}\:\ Invalid\ option\ for\ board\ "{1}"={0}\: \u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f "{1}" \u0570\u0561\u0580\u0569\u0561\u056f\u056b \u0570\u0561\u0574\u0561\u0580
|
||||
|
||||
#: ../../../processing/app/Base.java:502
|
||||
#, java-format
|
||||
!{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"=
|
||||
{0}\:\ Invalid\ option,\ should\ be\ of\ the\ form\ "name\=value"={0}\: \u0531\u0576\u057e\u0561\u057e\u0565\u0580 \u057f\u0561\u0580\u0562\u0565\u0580\u0561\u056f, \u057a\u0565\u057f\u0584 \u0567 \u056c\u056b\u0576\u056b \u0570\u0565\u057f\u0565\u0582\u0575\u0561\u056c \u0571\u0565\u0582\u0578\u057e "name\=value"
|
||||
|
||||
#: ../../../processing/app/Base.java:486
|
||||
#, java-format
|
||||
!{0}\:\ Unknown\ architecture=
|
||||
{0}\:\ Unknown\ architecture={0}\: \u0531\u0576\u0570\u0561\u0575\u057f \u0573\u0561\u0580\u057f\u0561\u0580\u0561\u057a\u0565\u057f\u0578\u0582\u0569\u0575\u0578\u0582\u0576
|
||||
|
||||
#: ../../../processing/app/Base.java:491
|
||||
#, java-format
|
||||
!{0}\:\ Unknown\ board=
|
||||
{0}\:\ Unknown\ board={0}\: \u0531\u0576\u0570\u0561\u0575\u057f \u0570\u0561\u0580\u0569\u0561\u056f
|
||||
|
||||
#: ../../../processing/app/Base.java:481
|
||||
#, java-format
|
||||
!{0}\:\ Unknown\ package=
|
||||
{0}\:\ Unknown\ package={0}\: \u0531\u0576\u0570\u0561\u0575\u057f \u0583\u0561\u0569\u0565\u0569
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Ade Malsasa Akbar <teknoloid@gmail.com>, 2013
|
||||
# Johannes Sutiktio <mitratrikarya@gmail.com>, 2015
|
||||
# Joshua Adiel Wijaya <ultima_aw@msn.com>, 2015
|
||||
@ -17,7 +18,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Indonesian (http://www.transifex.com/mbanzi/arduino-ide-15/language/id/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -40,13 +41,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' hanya didukung pada Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' hanya didukung pada Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -877,6 +881,11 @@ msgstr "Galat ketika memuat kode {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Galat ketika mencetak."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Galat ketika mengunggah"
|
||||
@ -2306,11 +2315,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Anda tidak dapat mengubah nama sketsa ke \"{0}\"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Anda tidak dapat menyimpan sketsa sebagai \"{0}\"\nkarena sketsa telah memiliki sebuah berkas .cpp dengan nama itu."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Cristian Maglie <c.maglie@arduino.cc>, 2013-2015
|
||||
# Davide Velluto <davide.network@gmail.com>, 2012
|
||||
# Federico Fissore <f.fissore@arduino.cc>, 2015
|
||||
@ -19,7 +20,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:39+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:07+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Italian (Italy) (http://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -42,13 +43,16 @@ msgstr "Non usata: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr "Usata: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard' supportata solo su Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr "'Keyboard' non trovata. Il tuo sketch ha la riga '#include <Keyboard.h>'?"
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse' supportata solo su Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr "'Mouse' non trovata. Il tuo sketch ha la riga '#include <Mouse.h>'?"
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -879,6 +883,11 @@ msgstr "Errore durante il caricamento del codice {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "Errore durante la stampa"
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr "Errore durante l'impostazione dei parametri seriali: {0} {1} {2} {3}"
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "Errore durante il caricamento"
|
||||
@ -2308,11 +2317,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Non puoi rinominare lo sketch in {0}\nin quanto lo sketch ha già un file .cpp con quel nome."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "Non puoi rinominare lo sketch in \"{0}\"\nin quanto lo sketch ha già un file .cpp con quel nome"
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr "Lo sketch non può chiamarsi \"{0}\"\nperchè ha già un file con lo stesso nome."
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Cristian Maglie <c.maglie@arduino.cc>, 2013-2015
|
||||
# Davide Velluto <davide.network@gmail.com>, 2012
|
||||
# Federico Fissore <f.fissore@arduino.cc>, 2015
|
||||
# Giovanni Spadaro <giovannispd@gmail.com>, 2012
|
||||
# Michele Michielin <michele.michielin@gmail.com>, 2012
|
||||
# Michele Michielin <michele.michielin@gmail.com>, 2013-2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:39+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:07+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Italian (Italy) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/it_IT/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: it_IT\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(richiede il riavvio di Arduino)
|
||||
@ -27,11 +28,11 @@
|
||||
#, java-format
|
||||
\ Used\:\ {0}=Usata\: {0}
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard' supportata solo su Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?='Keyboard' non trovata. Il tuo sketch ha la riga '\#include <Keyboard.h>'?
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse' supportata solo su Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?='Mouse' non trovata. Il tuo sketch ha la riga '\#include <Mouse.h>'?
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=La cartella 'arch' non \u00e8 pi\u00f9 supportata\! Guarda http\://goo.gl/gfFJzU per maggiori informazioni
|
||||
@ -633,6 +634,10 @@ Error\ while\ loading\ code\ {0}=Errore durante il caricamento del codice {0}
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=Errore durante la stampa
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=Errore durante l'impostazione dei parametri seriali\: {0} {1} {2} {3}
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=Errore durante il caricamento
|
||||
|
||||
@ -1659,8 +1664,8 @@ You\ can't\ import\ a\ folder\ that\ contains\ your\ sketchbook=Non puoi importa
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non puoi rinominare lo sketch in {0}\nin quanto lo sketch ha gi\u00e0 un file .cpp con quel nome.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Non puoi rinominare lo sketch in "{0}"\nin quanto lo sketch ha gi\u00e0 un file .cpp con quel nome
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=Lo sketch non pu\u00f2 chiamarsi "{0}"\nperch\u00e8 ha gi\u00e0 un file con lo stesso nome.
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Non puoi salvare lo sketch in una cartella\nall'interno di s\u00e9 stessa. Questo procederebbe all'infinito
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Amit BC <amitbc123@walla.com>, 2014
|
||||
# eli.ganem <eli.ganem@gmail.com>, 2012
|
||||
# Eyal Halfon <logme3@gmail.com>, 2013
|
||||
@ -20,7 +21,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Hebrew (http://www.transifex.com/mbanzi/arduino-ide-15/language/he/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -43,13 +44,16 @@ msgstr "לא בשימוש: {0}"
|
||||
msgid " Used: {0}"
|
||||
msgstr "בשימוש: {0}"
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'מקלדת' נתמכת ב Arduino Leonardo בלבד."
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'עכבר' נתמך ב Arduino Leonardo בלבד."
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -880,6 +884,11 @@ msgstr "שגיאה בזמן טעינת הקוד {0}"
|
||||
msgid "Error while printing."
|
||||
msgstr "שגיאה בתהליך ההדפסה."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "שגיאה במהלך העלאת תוכנית"
|
||||
@ -2309,11 +2318,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "אינך יכול לשנות את שם הסקיצה ל \"{0}\" משום שיש כבר קובץ cpp. עם השם הזה."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "לא ניתן לשמור את הסקיצה בשם \"{0}\"\nמפני שלסקיצה כבר קיים קובץ עם סיומת cpp עם אותו שם."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Masanori Ohgita <mp@ohgita.info>, 2013,2015
|
||||
# Shigeru Kanemoto <sgk@switch-science.com>, 2015
|
||||
# Shinichi Ohki <auxin.one@gmail.com>, 2015
|
||||
@ -16,7 +17,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Japanese (Japan) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -39,13 +40,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "「Keyboard」はArduino Leonardoだけで使えます。"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "「Mouse」はArduino Leonardoだけで使えます。"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -876,6 +880,11 @@ msgstr "「{0}」からコードを読み込む際にエラーが発生しまし
|
||||
msgid "Error while printing."
|
||||
msgstr "印刷中にエラーが発生しました。"
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr "書き込み中にエラーが発生しました。"
|
||||
@ -2305,11 +2314,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "このスケッチには、すでにその名前の.cppファイルが存在するため、スケッチの名前を「{0}」に変更する事ができません。"
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "このスケッチには、すでにその名前の.cppファイルが存在するため、スケッチを「{0}」として保存することができません。"
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,10 +8,11 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Masanori Ohgita <mp@ohgita.info>, 2013,2015
|
||||
# Shigeru Kanemoto <sgk@switch-science.com>, 2015
|
||||
# Shinichi Ohki <auxin.one@gmail.com>, 2015
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Japanese (Japan) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ja_JP/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ja_JP\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981
|
||||
@ -24,11 +25,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u300cKeyboard\u300d\u306fArduino Leonardo\u3060\u3051\u3067\u4f7f\u3048\u307e\u3059\u3002
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo=\u300cMouse\u300d\u306fArduino Leonardo\u3060\u3051\u3067\u4f7f\u3048\u307e\u3059\u3002
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -630,6 +631,10 @@ Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u30b3\u30fc\u30c9\u
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u5370\u5237\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
Error\ while\ uploading=\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
@ -1656,8 +1661,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u30b9\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u3059\u3067\u306b\u305d\u306e\u540d\u524d\u306e.cpp\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u300c{0}\u300d\u306b\u5909\u66f4\u3059\u308b\u4e8b\u304c\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u3059\u3067\u306b\u305d\u306e\u540d\u524d\u306e.cpp\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u3092\u300c{0}\u300d\u3068\u3057\u3066\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u81ea\u3089\u306e\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4e2d\u306b\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u306a\u3093\u3066\u3067\u304d\u307e\u305b\u3093\u3002\u7121\u9650\u30eb\u30fc\u30d7\u306b\u306a\u3063\u3061\u3083\u3044\u307e\u3059\u3002
|
||||
|
@ -8,6 +8,7 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2013
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2012
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2012-2013
|
||||
@ -19,7 +20,7 @@ msgstr ""
|
||||
"Project-Id-Version: Arduino IDE 1.5\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2015-09-30 07:37+0000\n"
|
||||
"PO-Revision-Date: 2015-11-02 12:05+0000\n"
|
||||
"Last-Translator: Federico Fissore <f.fissore@arduino.cc>\n"
|
||||
"Language-Team: Georgian (Georgia) (http://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -42,13 +43,16 @@ msgstr ""
|
||||
msgid " Used: {0}"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
msgid "'Keyboard' only supported on the Arduino Leonardo"
|
||||
msgstr "'Keyboard'-ის მხარდაჭერა აქვს მხოლოდ დაფას Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
msgid ""
|
||||
"'Keyboard' not found. Does your sketch include the line '#include "
|
||||
"<Keyboard.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
msgid "'Mouse' only supported on the Arduino Leonardo"
|
||||
msgstr "'Mouse'-ის მხარდაჭერა აქვს მხოლოდ დაფას Arduino Leonardo"
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
msgid ""
|
||||
"'Mouse' not found. Does your sketch include the line '#include <Mouse.h>'?"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
msgid ""
|
||||
@ -879,6 +883,11 @@ msgstr "შეცდომა შემდეგი კოდის ჩატვ
|
||||
msgid "Error while printing."
|
||||
msgstr "შეცდომა ბეჭდვისას."
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
msgid "Error while setting serial port parameters: {0} {1} {2} {3}"
|
||||
msgstr ""
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
msgid "Error while uploading"
|
||||
msgstr ""
|
||||
@ -2308,11 +2317,11 @@ msgid ""
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "შეუძლებელია დაარქვათ ჩანახატს \"{0}\"\nრადგან ასეთი სახელის .cpp ფაილი უკვე არსებობს."
|
||||
|
||||
#: Sketch.java:861
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
msgid ""
|
||||
"You can't save the sketch as \"{0}\"\n"
|
||||
"because the sketch already has a .cpp file with that name."
|
||||
msgstr "შეუძლებელია ჩანახატის შენახვა სახელით \"{0}\"\nრადგან უკვე არსებობს ასეთი სახელის მქონე .cpp ფაილი."
|
||||
"because the sketch already has a file with that name."
|
||||
msgstr ""
|
||||
|
||||
#: Sketch.java:883
|
||||
msgid ""
|
||||
|
@ -8,13 +8,14 @@
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Translators:
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2013
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2012
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2012-2013
|
||||
# George Machitidze <giomac@gmail.com>, 2013
|
||||
# Giorgi Maghlakelidze <acidlabz@gmail.com>, 2013-2014
|
||||
# Zurab Japaridze <zjaparidze@gmail.com>, 2014
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-09-30 07\:37+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ka_GE\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
!=Project-Id-Version\: Arduino IDE 1.5\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2015-11-02 12\:05+0000\nLast-Translator\: Federico Fissore <f.fissore@arduino.cc>\nLanguage-Team\: Georgian (Georgia) (http\://www.transifex.com/mbanzi/arduino-ide-15/language/ka_GE/)\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nLanguage\: ka_GE\nPlural-Forms\: nplurals\=1; plural\=0;\n
|
||||
|
||||
#: Preferences.java:358 Preferences.java:374
|
||||
\ \ (requires\ restart\ of\ Arduino)=(\u10db\u10dd\u10d8\u10d7\u10ee\u10dd\u10d5\u10e1 \u10d2\u10d0\u10e0\u10d4\u10db\u10dd\u10e1 \u10ee\u10d4\u10da\u10d0\u10ee\u10da\u10d0 \u10d2\u10d0\u10e8\u10d5\u10d4\u10d1\u10d0\u10e1)
|
||||
@ -27,11 +28,11 @@
|
||||
#, java-format
|
||||
!\ Used\:\ {0}=
|
||||
|
||||
#: debug/Compiler.java:455
|
||||
'Keyboard'\ only\ supported\ on\ the\ Arduino\ Leonardo='Keyboard'-\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0 \u10d0\u10e5\u10d5\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d3\u10d0\u10e4\u10d0\u10e1 Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:558
|
||||
!'Keyboard'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Keyboard.h>'?=
|
||||
|
||||
#: debug/Compiler.java:450
|
||||
'Mouse'\ only\ supported\ on\ the\ Arduino\ Leonardo='Mouse'-\u10d8\u10e1 \u10db\u10ee\u10d0\u10e0\u10d3\u10d0\u10ed\u10d4\u10e0\u10d0 \u10d0\u10e5\u10d5\u10e1 \u10db\u10ee\u10dd\u10da\u10dd\u10d3 \u10d3\u10d0\u10e4\u10d0\u10e1 Arduino Leonardo
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:553
|
||||
!'Mouse'\ not\ found.\ Does\ your\ sketch\ include\ the\ line\ '\#include\ <Mouse.h>'?=
|
||||
|
||||
#: ../../../../../arduino-core/src/cc/arduino/Compiler.java:61
|
||||
!'arch'\ folder\ is\ no\ longer\ supported\!\ See\ http\://goo.gl/gfFJzU\ for\ more\ information=
|
||||
@ -633,6 +634,10 @@ Error\ while\ loading\ code\ {0}=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10
|
||||
#: Editor.java:2567
|
||||
Error\ while\ printing.=\u10e8\u10d4\u10ea\u10d3\u10dd\u10db\u10d0 \u10d1\u10d4\u10ed\u10d3\u10d5\u10d8\u10e1\u10d0\u10e1.
|
||||
|
||||
#: ../../../../../arduino-core/src/processing/app/Serial.java:117
|
||||
#, java-format
|
||||
!Error\ while\ setting\ serial\ port\ parameters\:\ {0}\ {1}\ {2}\ {3}=
|
||||
|
||||
#: ../../../processing/app/BaseNoGui.java:528
|
||||
!Error\ while\ uploading=
|
||||
|
||||
@ -1659,8 +1664,8 @@ You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=\u10d0\
|
||||
#: Sketch.java:421
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10d3\u10d0\u10d0\u10e0\u10e5\u10d5\u10d0\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10e1 "{0}"\n\u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10d0\u10e1\u10d4\u10d7\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10e1 .cpp \u10e4\u10d0\u10d8\u10da\u10d8 \u10e3\u10d9\u10d5\u10d4 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1.
|
||||
|
||||
#: Sketch.java:861
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8\u10e1 \u10e8\u10d4\u10dc\u10d0\u10ee\u10d5\u10d0 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10d7 "{0}"\n\u10e0\u10d0\u10d3\u10d2\u10d0\u10dc \u10e3\u10d9\u10d5\u10d4 \u10d0\u10e0\u10e1\u10d4\u10d1\u10dd\u10d1\u10e1 \u10d0\u10e1\u10d4\u10d7\u10d8 \u10e1\u10d0\u10ee\u10d4\u10da\u10d8\u10e1 \u10db\u10e5\u10dd\u10dc\u10d4 .cpp \u10e4\u10d0\u10d8\u10da\u10d8.
|
||||
#: ../../../../../app/src/processing/app/Sketch.java:659
|
||||
!You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ file\ with\ that\ name.=
|
||||
|
||||
#: Sketch.java:883
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u10e8\u10d4\u10e3\u10eb\u10da\u10d4\u10d1\u10d4\u10da\u10d8\u10d0 \u10e8\u10d4\u10d8\u10dc\u10d0\u10ee\u10dd\u10d7 \u10e9\u10d0\u10dc\u10d0\u10ee\u10d0\u10e2\u10d8 \u10d7\u10d0\u10d5\u10d8\u10e1\u10d8 \u10e1\u10d0\u10e5\u10d0\u10e6\u10d0\u10da\u10d3\u10d8\u10e1\n\u10e8\u10d8\u10d2\u10dc\u10d8\u10d7. \u10d4\u10e1 \u10ee\u10dd\u10db \u10e3\u10e1\u10d0\u10e1\u10e0\u10e3\u10da\u10dd\u10d3 \u10d2\u10d0\u10d2\u10e0\u10eb\u10d4\u10da\u10d3\u10d4\u10d1\u10d0\!
|
||||
|
Some files were not shown because too many files have changed in this diff Show More
Loading…
x
Reference in New Issue
Block a user