mirror of
https://github.com/esp8266/Arduino.git
synced 2025-06-16 11:21:18 +03:00
added a couple of languags
This commit is contained in:
1517
app/src/processing/app/11418.po
Normal file
1517
app/src/processing/app/11418.po
Normal file
File diff suppressed because it is too large
Load Diff
0
app/src/processing/app/11418.properties
Normal file
0
app/src/processing/app/11418.properties
Normal file
@ -86,15 +86,17 @@ public class Preferences {
|
||||
"Català" + " (" + _("Catalan") + ")",
|
||||
"简体中文" + " (" + _("Chinese Simplified") + ")",
|
||||
"繁體中文" + " (" + _("Chinese Traditional") + ")",
|
||||
"Hrvatski Jezik" + " (" + _("Croatian") + ")",
|
||||
"Dansk" + " (" + _("Danish") + ")",
|
||||
"Nederlands" + " (" + _("Dutch") + ")",
|
||||
"English" + " (" + _("English") + ")",
|
||||
"Eesti" + " (" + _("Estonian") + ")",
|
||||
"Français" + " (" + _("French") + ")",
|
||||
"Pilipino" + " (" + _("Filipino") + ")",
|
||||
"Français" + " (" + _("French") + ")",
|
||||
"Galego" + " (" + _("Galician") + ")",
|
||||
"Deutsch" + " (" + _("German") + ")",
|
||||
"ελληνικά" + " (" + _("Greek") + ")",
|
||||
"Magyar" + " (" + _("Hindi") + ")",
|
||||
"Magyar" + " (" + _("Hungarian") + ")",
|
||||
"Bahasa Indonesia" + " (" + _("Indonesian") + ")",
|
||||
"Italiano" + " (" + _("Italian") + ")",
|
||||
@ -102,13 +104,16 @@ public class Preferences {
|
||||
"한국어" + " (" + _("Korean") + ")",
|
||||
"Latviešu" + " (" + _("Latvian") + ")",
|
||||
"Lietuvių Kalba" + " (" + _("Lithuaninan") + ")",
|
||||
"मराठी" + " (" + _("Marathi") + ")",
|
||||
"Norsk" + " (" + _("Norwegian") + ")",
|
||||
"فارسی" + " (" + _("Persian") + ")",
|
||||
"Język Polski" + " (" + _("Polish") + ")",
|
||||
"Português" + " (" + _("Portuguese") + " - Brazil)",
|
||||
"Português" + " (" + _("Portuguese") + " - Portugal)",
|
||||
"Română" + " (" + _("Romanian") + ")",
|
||||
"Русский" + " (" + _("Russian") + ")",
|
||||
"Español" + " (" + _("Spanish") + ")"};
|
||||
"Español" + " (" + _("Spanish") + ")",
|
||||
"தமிழ்" + " (" + _("Tamil") + ")"};
|
||||
String[] languagesISO = {
|
||||
"",
|
||||
"ar",
|
||||
@ -116,15 +121,17 @@ public class Preferences {
|
||||
"ca",
|
||||
"zh_cn",
|
||||
"zh_tw",
|
||||
"hr",
|
||||
"da",
|
||||
"nl",
|
||||
"en",
|
||||
"et",
|
||||
"fr",
|
||||
"tl",
|
||||
"fr",
|
||||
"gl",
|
||||
"de",
|
||||
"el",
|
||||
"hi",
|
||||
"hu",
|
||||
"id",
|
||||
"it",
|
||||
@ -132,13 +139,16 @@ public class Preferences {
|
||||
"ko",
|
||||
"lv",
|
||||
"lt",
|
||||
"mr",
|
||||
"no",
|
||||
"fa",
|
||||
"pl",
|
||||
"pt_br",
|
||||
"pt_pt",
|
||||
"ro",
|
||||
"ru",
|
||||
"es"};
|
||||
"es",
|
||||
"ta"};
|
||||
|
||||
/**
|
||||
* Standardized width for buttons. Mac OS X 10.3 wants 70 as its default,
|
||||
|
886
app/src/processing/app/Preferences.java~
Normal file
886
app/src/processing/app/Preferences.java~
Normal file
@ -0,0 +1,886 @@
|
||||
/* -*- mode: java; c-basic-offset: 2; indent-tabs-mode: nil -*- */
|
||||
|
||||
/*
|
||||
Part of the Processing project - http://processing.org
|
||||
|
||||
Copyright (c) 2004-09 Ben Fry and Casey Reas
|
||||
Copyright (c) 2001-04 Massachusetts Institute of Technology
|
||||
|
||||
This program is free software; you can redistribute it and/or modify
|
||||
it under the terms of the GNU General Public License as published by
|
||||
the Free Software Foundation; either version 2 of the License, or
|
||||
(at your option) any later version.
|
||||
|
||||
This program is distributed in the hope that it will be useful,
|
||||
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||||
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
||||
GNU General Public License for more details.
|
||||
|
||||
You should have received a copy of the GNU General Public License
|
||||
along with this program; if not, write to the Free Software Foundation,
|
||||
Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
||||
*/
|
||||
|
||||
package processing.app;
|
||||
|
||||
import java.awt.*;
|
||||
import java.awt.event.*;
|
||||
import java.io.*;
|
||||
import java.util.*;
|
||||
|
||||
import javax.swing.*;
|
||||
|
||||
import processing.app.syntax.*;
|
||||
import processing.core.*;
|
||||
import static processing.app.I18n._;
|
||||
|
||||
|
||||
|
||||
|
||||
/**
|
||||
* Storage class for user preferences and environment settings.
|
||||
* <P>
|
||||
* This class no longer uses the Properties class, since
|
||||
* properties files are iso8859-1, which is highly likely to
|
||||
* be a problem when trying to save sketch folders and locations.
|
||||
* <p>
|
||||
* The GUI portion in here is really ugly, as it uses exact layout. This was
|
||||
* done in frustration one evening (and pre-Swing), but that's long since past,
|
||||
* and it should all be moved to a proper swing layout like BoxLayout.
|
||||
* <p>
|
||||
* This is very poorly put together, that the preferences panel and the actual
|
||||
* preferences i/o is part of the same code. But there hasn't yet been a
|
||||
* compelling reason to bother with the separation aside from concern about
|
||||
* being lectured by strangers who feel that it doesn't look like what they
|
||||
* learned in CS class.
|
||||
* <p>
|
||||
* Would also be possible to change this to use the Java Preferences API.
|
||||
* Some useful articles
|
||||
* <a href="http://www.onjava.com/pub/a/onjava/synd/2001/10/17/j2se.html">here</a> and
|
||||
* <a href="http://www.particle.kth.se/~lindsey/JavaCourse/Book/Part1/Java/Chapter10/Preferences.html">here</a>.
|
||||
* However, haven't implemented this yet for lack of time, but more
|
||||
* importantly, because it would entail writing to the registry (on Windows),
|
||||
* or an obscure file location (on Mac OS X) and make it far more difficult to
|
||||
* find the preferences to tweak them by hand (no! stay out of regedit!)
|
||||
* or to reset the preferences by simply deleting the preferences.txt file.
|
||||
*/
|
||||
public class Preferences {
|
||||
|
||||
// what to call the feller
|
||||
|
||||
static final String PREFS_FILE = "preferences.txt";
|
||||
|
||||
|
||||
// prompt text stuff
|
||||
|
||||
static final String PROMPT_YES = _("Yes");
|
||||
static final String PROMPT_NO = _("No");
|
||||
static final String PROMPT_CANCEL = _("Cancel");
|
||||
static final String PROMPT_OK = _("OK");
|
||||
static final String PROMPT_BROWSE = _("Browse");
|
||||
|
||||
String[] languages = {
|
||||
_("System Default"),
|
||||
"العربية" + " (" + _("Arabic") + ")",
|
||||
"Aragonés" + " (" + _("Aragonese") + ")",
|
||||
"Català" + " (" + _("Catalan") + ")",
|
||||
"简体中文" + " (" + _("Chinese Simplified") + ")",
|
||||
"繁體中文" + " (" + _("Chinese Traditional") + ")",
|
||||
"Hrvatski Jezik" + " (" + _("Croatian") + ")",
|
||||
"Dansk" + " (" + _("Danish") + ")",
|
||||
"Nederlands" + " (" + _("Dutch") + ")",
|
||||
"English" + " (" + _("English") + ")",
|
||||
"Eesti" + " (" + _("Estonian") + ")",
|
||||
"Pilipino" + " (" + _("Filipino") + ")",
|
||||
"Français" + " (" + _("French") + ")",
|
||||
"Galego" + " (" + _("Galician") + ")",
|
||||
"Deutsch" + " (" + _("German") + ")",
|
||||
"ελληνικά" + " (" + _("Greek") + ")",
|
||||
"Magyar" + " (" + _("Hindi") + ")",
|
||||
"Magyar" + " (" + _("Hungarian") + ")",
|
||||
"Bahasa Indonesia" + " (" + _("Indonesian") + ")",
|
||||
"Italiano" + " (" + _("Italian") + ")",
|
||||
"日本語" + " (" + _("Japanese") + ")",
|
||||
"한국어" + " (" + _("Korean") + ")",
|
||||
"Latviešu" + " (" + _("Latvian") + ")",
|
||||
"Lietuvių Kalba" + " (" + _("Lithuaninan") + ")",
|
||||
"मराठी" + " (" + _("Marathi") + ")",
|
||||
"Norsk" + " (" + _("Norwegian") + ")",
|
||||
"فارسی" + " (" + _("Persian") + ")",
|
||||
"Język Polski" + " (" + _("Polish") + ")",
|
||||
"Português" + " (" + _("Portuguese") + " - Brazil)",
|
||||
"Português" + " (" + _("Portuguese") + " - Portugal)",
|
||||
"Română" + " (" + _("Romanian") + ")",
|
||||
"Русский" + " (" + _("Russian") + ")",
|
||||
"Español" + " (" + _("Spanish") + ")",
|
||||
"தமிழ்" + " (" + _("Tamil") + ")"};
|
||||
String[] languagesISO = {
|
||||
"",
|
||||
"ar",
|
||||
"an",
|
||||
"ca",
|
||||
"zh_cn",
|
||||
"zh_tw",
|
||||
"hr",
|
||||
"da",
|
||||
"nl",
|
||||
"en",
|
||||
"et",
|
||||
"tl",
|
||||
"fr",
|
||||
"gl",
|
||||
"de",
|
||||
"el",
|
||||
"hi",
|
||||
"hu",
|
||||
"id",
|
||||
"it",
|
||||
"ja",
|
||||
"ko",
|
||||
"lv",
|
||||
"lt",
|
||||
"mr",
|
||||
"no",
|
||||
"fa",
|
||||
"pl",
|
||||
"pt_br",
|
||||
"pt_pt",
|
||||
"ro",
|
||||
"ru",
|
||||
"es",
|
||||
"ta"};
|
||||
|
||||
/**
|
||||
* Standardized width for buttons. Mac OS X 10.3 wants 70 as its default,
|
||||
* Windows XP needs 66, and my Ubuntu machine needs 80+, so 80 seems proper.
|
||||
*/
|
||||
static public int BUTTON_WIDTH = 80;
|
||||
|
||||
/**
|
||||
* Standardized button height. Mac OS X 10.3 (Java 1.4) wants 29,
|
||||
* presumably because it now includes the blue border, where it didn't
|
||||
* in Java 1.3. Windows XP only wants 23 (not sure what default Linux
|
||||
* would be). Because of the disparity, on Mac OS X, it will be set
|
||||
* inside a static block.
|
||||
*/
|
||||
static public int BUTTON_HEIGHT = 24;
|
||||
|
||||
// value for the size bars, buttons, etc
|
||||
|
||||
static final int GRID_SIZE = 33;
|
||||
|
||||
|
||||
// indents and spacing standards. these probably need to be modified
|
||||
// per platform as well, since macosx is so huge, windows is smaller,
|
||||
// and linux is all over the map
|
||||
|
||||
static final int GUI_BIG = 13;
|
||||
static final int GUI_BETWEEN = 10;
|
||||
static final int GUI_SMALL = 6;
|
||||
|
||||
// gui elements
|
||||
|
||||
JFrame dialog;
|
||||
int wide, high;
|
||||
|
||||
JTextField sketchbookLocationField;
|
||||
JCheckBox exportSeparateBox;
|
||||
JCheckBox verboseCompilationBox;
|
||||
JCheckBox verboseUploadBox;
|
||||
JCheckBox verifyUploadBox;
|
||||
JCheckBox externalEditorBox;
|
||||
JCheckBox memoryOverrideBox;
|
||||
JTextField memoryField;
|
||||
JCheckBox checkUpdatesBox;
|
||||
JTextField fontSizeField;
|
||||
JCheckBox updateExtensionBox;
|
||||
JCheckBox autoAssociateBox;
|
||||
JComboBox comboLanguage;
|
||||
|
||||
|
||||
// the calling editor, so updates can be applied
|
||||
|
||||
Editor editor;
|
||||
|
||||
|
||||
// data model
|
||||
|
||||
static Hashtable defaults;
|
||||
static Hashtable table = new Hashtable();;
|
||||
static File preferencesFile;
|
||||
|
||||
|
||||
static protected void init(String commandLinePrefs) {
|
||||
|
||||
// start by loading the defaults, in case something
|
||||
// important was deleted from the user prefs
|
||||
try {
|
||||
load(Base.getLibStream("preferences.txt"));
|
||||
} catch (Exception e) {
|
||||
Base.showError(null, _("Could not read default settings.\n" +
|
||||
"You'll need to reinstall Arduino."), e);
|
||||
}
|
||||
|
||||
// check for platform-specific properties in the defaults
|
||||
String platformExt = "." + PConstants.platformNames[PApplet.platform];
|
||||
int platformExtLength = platformExt.length();
|
||||
Enumeration e = table.keys();
|
||||
while (e.hasMoreElements()) {
|
||||
String key = (String) e.nextElement();
|
||||
if (key.endsWith(platformExt)) {
|
||||
// this is a key specific to a particular platform
|
||||
String actualKey = key.substring(0, key.length() - platformExtLength);
|
||||
String value = get(key);
|
||||
table.put(actualKey, value);
|
||||
}
|
||||
}
|
||||
|
||||
// clone the hash table
|
||||
defaults = (Hashtable) table.clone();
|
||||
|
||||
// other things that have to be set explicitly for the defaults
|
||||
setColor("run.window.bgcolor", SystemColor.control);
|
||||
|
||||
// Load a prefs file if specified on the command line
|
||||
if (commandLinePrefs != null) {
|
||||
try {
|
||||
load(new FileInputStream(commandLinePrefs));
|
||||
|
||||
} catch (Exception poe) {
|
||||
Base.showError(_("Error"),
|
||||
I18n.format(
|
||||
_("Could not read preferences from {0}"),
|
||||
commandLinePrefs
|
||||
), poe);
|
||||
}
|
||||
} else if (!Base.isCommandLine()) {
|
||||
// next load user preferences file
|
||||
preferencesFile = Base.getSettingsFile(PREFS_FILE);
|
||||
if (!preferencesFile.exists()) {
|
||||
// create a new preferences file if none exists
|
||||
// saves the defaults out to the file
|
||||
save();
|
||||
|
||||
} else {
|
||||
// load the previous preferences file
|
||||
|
||||
try {
|
||||
load(new FileInputStream(preferencesFile));
|
||||
|
||||
} catch (Exception ex) {
|
||||
Base.showError(_("Error reading preferences"),
|
||||
I18n.format(
|
||||
_("Error reading the preferences file. " +
|
||||
"Please delete (or move)\n" +
|
||||
"{0} and restart Arduino."),
|
||||
preferencesFile.getAbsolutePath()
|
||||
), ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
public Preferences() {
|
||||
|
||||
// setup dialog for the prefs
|
||||
|
||||
//dialog = new JDialog(editor, "Preferences", true);
|
||||
dialog = new JFrame(_("Preferences"));
|
||||
dialog.setResizable(false);
|
||||
|
||||
Container pain = dialog.getContentPane();
|
||||
pain.setLayout(null);
|
||||
|
||||
int top = GUI_BIG;
|
||||
int left = GUI_BIG;
|
||||
int right = 0;
|
||||
|
||||
JLabel label;
|
||||
JButton button; //, button2;
|
||||
//JComboBox combo;
|
||||
Dimension d, d2; //, d3;
|
||||
int h, vmax;
|
||||
|
||||
|
||||
// Sketchbook location:
|
||||
// [...............................] [ Browse ]
|
||||
|
||||
label = new JLabel(_("Sketchbook location:"));
|
||||
pain.add(label);
|
||||
d = label.getPreferredSize();
|
||||
label.setBounds(left, top, d.width, d.height);
|
||||
top += d.height; // + GUI_SMALL;
|
||||
|
||||
sketchbookLocationField = new JTextField(40);
|
||||
pain.add(sketchbookLocationField);
|
||||
d = sketchbookLocationField.getPreferredSize();
|
||||
|
||||
button = new JButton(PROMPT_BROWSE);
|
||||
button.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
File dflt = new File(sketchbookLocationField.getText());
|
||||
File file =
|
||||
Base.selectFolder(_("Select new sketchbook location"), dflt, dialog);
|
||||
if (file != null) {
|
||||
sketchbookLocationField.setText(file.getAbsolutePath());
|
||||
}
|
||||
}
|
||||
});
|
||||
pain.add(button);
|
||||
d2 = button.getPreferredSize();
|
||||
|
||||
// take max height of all components to vertically align em
|
||||
vmax = Math.max(d.height, d2.height);
|
||||
sketchbookLocationField.setBounds(left, top + (vmax-d.height)/2,
|
||||
d.width, d.height);
|
||||
h = left + d.width + GUI_SMALL;
|
||||
button.setBounds(h, top + (vmax-d2.height)/2,
|
||||
d2.width, d2.height);
|
||||
|
||||
right = Math.max(right, h + d2.width + GUI_BIG);
|
||||
top += vmax + GUI_BETWEEN;
|
||||
|
||||
|
||||
// Preferred language: [ ] (requires restart of Arduino)
|
||||
Container box = Box.createHorizontalBox();
|
||||
label = new JLabel(_("Editor language: "));
|
||||
box.add(label);
|
||||
comboLanguage = new JComboBox(languages);
|
||||
comboLanguage.setSelectedIndex((Arrays.asList(languagesISO)).indexOf(Preferences.get("editor.languages.current")));
|
||||
box.add(comboLanguage);
|
||||
label = new JLabel(_(" (requires restart of Arduino)"));
|
||||
box.add(label);
|
||||
pain.add(box);
|
||||
d = box.getPreferredSize();
|
||||
box.setForeground(Color.gray);
|
||||
box.setBounds(left, top, d.width, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
// Editor font size [ ]
|
||||
|
||||
box = Box.createHorizontalBox();
|
||||
label = new JLabel(_("Editor font size: "));
|
||||
box.add(label);
|
||||
fontSizeField = new JTextField(4);
|
||||
box.add(fontSizeField);
|
||||
label = new JLabel(_(" (requires restart of Arduino)"));
|
||||
box.add(label);
|
||||
pain.add(box);
|
||||
d = box.getPreferredSize();
|
||||
box.setBounds(left, top, d.width, d.height);
|
||||
Font editorFont = Preferences.getFont("editor.font");
|
||||
fontSizeField.setText(String.valueOf(editorFont.getSize()));
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
|
||||
// Show verbose output during: [ ] compilation [ ] upload
|
||||
|
||||
box = Box.createHorizontalBox();
|
||||
label = new JLabel(_("Show verbose output during: "));
|
||||
box.add(label);
|
||||
verboseCompilationBox = new JCheckBox(_("compilation "));
|
||||
box.add(verboseCompilationBox);
|
||||
verboseUploadBox = new JCheckBox(_("upload"));
|
||||
box.add(verboseUploadBox);
|
||||
pain.add(box);
|
||||
d = box.getPreferredSize();
|
||||
box.setBounds(left, top, d.width, d.height);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
// [ ] Verify code after upload
|
||||
|
||||
verifyUploadBox = new JCheckBox(_("Verify code after upload"));
|
||||
pain.add(verifyUploadBox);
|
||||
d = verifyUploadBox.getPreferredSize();
|
||||
verifyUploadBox.setBounds(left, top, d.width + 10, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
// [ ] Use external editor
|
||||
|
||||
externalEditorBox = new JCheckBox(_("Use external editor"));
|
||||
pain.add(externalEditorBox);
|
||||
d = externalEditorBox.getPreferredSize();
|
||||
externalEditorBox.setBounds(left, top, d.width + 10, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
|
||||
// [ ] Check for updates on startup
|
||||
|
||||
checkUpdatesBox = new JCheckBox(_("Check for updates on startup"));
|
||||
pain.add(checkUpdatesBox);
|
||||
d = checkUpdatesBox.getPreferredSize();
|
||||
checkUpdatesBox.setBounds(left, top, d.width + 10, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
// [ ] Update sketch files to new extension on save (.pde -> .ino)
|
||||
|
||||
updateExtensionBox = new JCheckBox(_("Update sketch files to new extension on save (.pde -> .ino)"));
|
||||
pain.add(updateExtensionBox);
|
||||
d = updateExtensionBox.getPreferredSize();
|
||||
updateExtensionBox.setBounds(left, top, d.width + 10, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
|
||||
// [ ] Automatically associate .pde files with Processing
|
||||
|
||||
if (Base.isWindows()) {
|
||||
autoAssociateBox =
|
||||
new JCheckBox(_("Automatically associate .ino files with Arduino"));
|
||||
pain.add(autoAssociateBox);
|
||||
d = autoAssociateBox.getPreferredSize();
|
||||
autoAssociateBox.setBounds(left, top, d.width + 10, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height + GUI_BETWEEN;
|
||||
}
|
||||
|
||||
// More preferences are in the ...
|
||||
|
||||
label = new JLabel(_("More preferences can be edited directly in the file"));
|
||||
pain.add(label);
|
||||
d = label.getPreferredSize();
|
||||
label.setForeground(Color.gray);
|
||||
label.setBounds(left, top, d.width, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height; // + GUI_SMALL;
|
||||
|
||||
label = new JLabel(preferencesFile.getAbsolutePath());
|
||||
final JLabel clickable = label;
|
||||
label.addMouseListener(new MouseAdapter() {
|
||||
public void mousePressed(MouseEvent e) {
|
||||
Base.openFolder(Base.getSettingsFolder());
|
||||
}
|
||||
|
||||
public void mouseEntered(MouseEvent e) {
|
||||
clickable.setForeground(new Color(0, 0, 140));
|
||||
}
|
||||
|
||||
public void mouseExited(MouseEvent e) {
|
||||
clickable.setForeground(Color.BLACK);
|
||||
}
|
||||
});
|
||||
pain.add(label);
|
||||
d = label.getPreferredSize();
|
||||
label.setBounds(left, top, d.width, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height;
|
||||
|
||||
label = new JLabel(_("(edit only when Arduino is not running)"));
|
||||
pain.add(label);
|
||||
d = label.getPreferredSize();
|
||||
label.setForeground(Color.gray);
|
||||
label.setBounds(left, top, d.width, d.height);
|
||||
right = Math.max(right, left + d.width);
|
||||
top += d.height; // + GUI_SMALL;
|
||||
|
||||
|
||||
// [ OK ] [ Cancel ] maybe these should be next to the message?
|
||||
|
||||
button = new JButton(PROMPT_OK);
|
||||
button.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
applyFrame();
|
||||
disposeFrame();
|
||||
}
|
||||
});
|
||||
pain.add(button);
|
||||
d2 = button.getPreferredSize();
|
||||
BUTTON_HEIGHT = d2.height;
|
||||
|
||||
h = right - (BUTTON_WIDTH + GUI_SMALL + BUTTON_WIDTH);
|
||||
button.setBounds(h, top, BUTTON_WIDTH, BUTTON_HEIGHT);
|
||||
h += BUTTON_WIDTH + GUI_SMALL;
|
||||
|
||||
button = new JButton(PROMPT_CANCEL);
|
||||
button.addActionListener(new ActionListener() {
|
||||
public void actionPerformed(ActionEvent e) {
|
||||
disposeFrame();
|
||||
}
|
||||
});
|
||||
pain.add(button);
|
||||
button.setBounds(h, top, BUTTON_WIDTH, BUTTON_HEIGHT);
|
||||
|
||||
top += BUTTON_HEIGHT + GUI_BETWEEN;
|
||||
|
||||
|
||||
// finish up
|
||||
|
||||
wide = right + GUI_BIG;
|
||||
high = top + GUI_SMALL;
|
||||
|
||||
|
||||
// closing the window is same as hitting cancel button
|
||||
|
||||
dialog.addWindowListener(new WindowAdapter() {
|
||||
public void windowClosing(WindowEvent e) {
|
||||
disposeFrame();
|
||||
}
|
||||
});
|
||||
|
||||
ActionListener disposer = new ActionListener() {
|
||||
public void actionPerformed(ActionEvent actionEvent) {
|
||||
disposeFrame();
|
||||
}
|
||||
};
|
||||
Base.registerWindowCloseKeys(dialog.getRootPane(), disposer);
|
||||
Base.setIcon(dialog);
|
||||
|
||||
Dimension screen = Toolkit.getDefaultToolkit().getScreenSize();
|
||||
dialog.setLocation((screen.width - wide) / 2,
|
||||
(screen.height - high) / 2);
|
||||
|
||||
dialog.pack(); // get insets
|
||||
Insets insets = dialog.getInsets();
|
||||
dialog.setSize(wide + insets.left + insets.right,
|
||||
high + insets.top + insets.bottom);
|
||||
|
||||
|
||||
// handle window closing commands for ctrl/cmd-W or hitting ESC.
|
||||
|
||||
pain.addKeyListener(new KeyAdapter() {
|
||||
public void keyPressed(KeyEvent e) {
|
||||
//System.out.println(e);
|
||||
KeyStroke wc = Editor.WINDOW_CLOSE_KEYSTROKE;
|
||||
if ((e.getKeyCode() == KeyEvent.VK_ESCAPE) ||
|
||||
(KeyStroke.getKeyStrokeForEvent(e).equals(wc))) {
|
||||
disposeFrame();
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
||||
|
||||
public Dimension getPreferredSize() {
|
||||
return new Dimension(wide, high);
|
||||
}
|
||||
|
||||
|
||||
// .................................................................
|
||||
|
||||
|
||||
/**
|
||||
* Close the window after an OK or Cancel.
|
||||
*/
|
||||
protected void disposeFrame() {
|
||||
dialog.dispose();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Change internal settings based on what was chosen in the prefs,
|
||||
* then send a message to the editor saying that it's time to do the same.
|
||||
*/
|
||||
protected void applyFrame() {
|
||||
// put each of the settings into the table
|
||||
setBoolean("build.verbose", verboseCompilationBox.isSelected());
|
||||
setBoolean("upload.verbose", verboseUploadBox.isSelected());
|
||||
setBoolean("upload.verify", verifyUploadBox.isSelected());
|
||||
|
||||
// setBoolean("sketchbook.closing_last_window_quits",
|
||||
// closingLastQuitsBox.isSelected());
|
||||
//setBoolean("sketchbook.prompt", sketchPromptBox.isSelected());
|
||||
//setBoolean("sketchbook.auto_clean", sketchCleanBox.isSelected());
|
||||
|
||||
// if the sketchbook path has changed, rebuild the menus
|
||||
String oldPath = get("sketchbook.path");
|
||||
String newPath = sketchbookLocationField.getText();
|
||||
if (!newPath.equals(oldPath)) {
|
||||
editor.base.rebuildSketchbookMenus();
|
||||
set("sketchbook.path", newPath);
|
||||
}
|
||||
|
||||
setBoolean("editor.external", externalEditorBox.isSelected());
|
||||
setBoolean("update.check", checkUpdatesBox.isSelected());
|
||||
|
||||
/*
|
||||
// was gonna use this to check memory settings,
|
||||
// but it quickly gets much too messy
|
||||
if (getBoolean("run.options.memory")) {
|
||||
Process process = Runtime.getRuntime().exec(new String[] {
|
||||
"java", "-Xms" + memoryMin + "m", "-Xmx" + memoryMax + "m"
|
||||
});
|
||||
processInput = new SystemOutSiphon(process.getInputStream());
|
||||
processError = new MessageSiphon(process.getErrorStream(), this);
|
||||
}
|
||||
*/
|
||||
|
||||
String newSizeText = fontSizeField.getText();
|
||||
try {
|
||||
int newSize = Integer.parseInt(newSizeText.trim());
|
||||
String pieces[] = PApplet.split(get("editor.font"), ',');
|
||||
pieces[2] = String.valueOf(newSize);
|
||||
set("editor.font", PApplet.join(pieces, ','));
|
||||
|
||||
} catch (Exception e) {
|
||||
System.err.println(I18n.format(_("ignoring invalid font size {0}"), newSizeText));
|
||||
}
|
||||
|
||||
if (autoAssociateBox != null) {
|
||||
setBoolean("platform.auto_file_type_associations",
|
||||
autoAssociateBox.isSelected());
|
||||
}
|
||||
|
||||
setBoolean("editor.update_extension", updateExtensionBox.isSelected());
|
||||
|
||||
// adds the selected language to the preferences file
|
||||
Object newItem = comboLanguage.getSelectedItem();
|
||||
int pos = (Arrays.asList(languages)).indexOf(newItem.toString()); // position in the languages array
|
||||
set("editor.languages.current",(Arrays.asList(languagesISO)).get(pos));
|
||||
|
||||
editor.applyPreferences();
|
||||
}
|
||||
|
||||
|
||||
protected void showFrame(Editor editor) {
|
||||
this.editor = editor;
|
||||
|
||||
// set all settings entry boxes to their actual status
|
||||
verboseCompilationBox.setSelected(getBoolean("build.verbose"));
|
||||
verboseUploadBox.setSelected(getBoolean("upload.verbose"));
|
||||
verifyUploadBox.setSelected(getBoolean("upload.verify"));
|
||||
|
||||
//closingLastQuitsBox.
|
||||
// setSelected(getBoolean("sketchbook.closing_last_window_quits"));
|
||||
//sketchPromptBox.
|
||||
// setSelected(getBoolean("sketchbook.prompt"));
|
||||
//sketchCleanBox.
|
||||
// setSelected(getBoolean("sketchbook.auto_clean"));
|
||||
|
||||
sketchbookLocationField.
|
||||
setText(get("sketchbook.path"));
|
||||
externalEditorBox.
|
||||
setSelected(getBoolean("editor.external"));
|
||||
checkUpdatesBox.
|
||||
setSelected(getBoolean("update.check"));
|
||||
|
||||
if (autoAssociateBox != null) {
|
||||
autoAssociateBox.
|
||||
setSelected(getBoolean("platform.auto_file_type_associations"));
|
||||
}
|
||||
|
||||
updateExtensionBox.setSelected(get("editor.update_extension") == null ||
|
||||
getBoolean("editor.update_extension"));
|
||||
|
||||
dialog.setVisible(true);
|
||||
}
|
||||
|
||||
|
||||
// .................................................................
|
||||
|
||||
|
||||
static protected void load(InputStream input) throws IOException {
|
||||
load(input, table);
|
||||
}
|
||||
|
||||
static public void load(InputStream input, Map table) throws IOException {
|
||||
String[] lines = PApplet.loadStrings(input); // Reads as UTF-8
|
||||
for (String line : lines) {
|
||||
if ((line.length() == 0) ||
|
||||
(line.charAt(0) == '#')) continue;
|
||||
|
||||
// this won't properly handle = signs being in the text
|
||||
int equals = line.indexOf('=');
|
||||
if (equals != -1) {
|
||||
String key = line.substring(0, equals).trim();
|
||||
String value = line.substring(equals + 1).trim();
|
||||
table.put(key, value);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
// .................................................................
|
||||
|
||||
|
||||
static protected void save() {
|
||||
// try {
|
||||
// on startup, don't worry about it
|
||||
// this is trying to update the prefs for who is open
|
||||
// before Preferences.init() has been called.
|
||||
if (preferencesFile == null) return;
|
||||
|
||||
// Fix for 0163 to properly use Unicode when writing preferences.txt
|
||||
PrintWriter writer = PApplet.createWriter(preferencesFile);
|
||||
|
||||
Enumeration e = table.keys(); //properties.propertyNames();
|
||||
while (e.hasMoreElements()) {
|
||||
String key = (String) e.nextElement();
|
||||
writer.println(key + "=" + ((String) table.get(key)));
|
||||
}
|
||||
|
||||
writer.flush();
|
||||
writer.close();
|
||||
|
||||
// } catch (Exception ex) {
|
||||
// Base.showWarning(null, "Error while saving the settings file", ex);
|
||||
// }
|
||||
}
|
||||
|
||||
|
||||
// .................................................................
|
||||
|
||||
|
||||
// all the information from preferences.txt
|
||||
|
||||
//static public String get(String attribute) {
|
||||
//return get(attribute, null);
|
||||
//}
|
||||
|
||||
static public String get(String attribute /*, String defaultValue */) {
|
||||
return (String) table.get(attribute);
|
||||
/*
|
||||
//String value = (properties != null) ?
|
||||
//properties.getProperty(attribute) : applet.getParameter(attribute);
|
||||
String value = properties.getProperty(attribute);
|
||||
|
||||
return (value == null) ?
|
||||
defaultValue : value;
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
static public String getDefault(String attribute) {
|
||||
return (String) defaults.get(attribute);
|
||||
}
|
||||
|
||||
|
||||
static public void set(String attribute, String value) {
|
||||
table.put(attribute, value);
|
||||
}
|
||||
|
||||
|
||||
static public void unset(String attribute) {
|
||||
table.remove(attribute);
|
||||
}
|
||||
|
||||
|
||||
static public boolean getBoolean(String attribute) {
|
||||
String value = get(attribute); //, null);
|
||||
return (new Boolean(value)).booleanValue();
|
||||
|
||||
/*
|
||||
supposedly not needed, because anything besides 'true'
|
||||
(ignoring case) will just be false.. so if malformed -> false
|
||||
if (value == null) return defaultValue;
|
||||
|
||||
try {
|
||||
return (new Boolean(value)).booleanValue();
|
||||
} catch (NumberFormatException e) {
|
||||
System.err.println("expecting an integer: " + attribute + " = " + value);
|
||||
}
|
||||
return defaultValue;
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
static public void setBoolean(String attribute, boolean value) {
|
||||
set(attribute, value ? "true" : "false");
|
||||
}
|
||||
|
||||
|
||||
static public int getInteger(String attribute /*, int defaultValue*/) {
|
||||
return Integer.parseInt(get(attribute));
|
||||
|
||||
/*
|
||||
String value = get(attribute, null);
|
||||
if (value == null) return defaultValue;
|
||||
|
||||
try {
|
||||
return Integer.parseInt(value);
|
||||
} catch (NumberFormatException e) {
|
||||
// ignored will just fall through to returning the default
|
||||
System.err.println("expecting an integer: " + attribute + " = " + value);
|
||||
}
|
||||
return defaultValue;
|
||||
//if (value == null) return defaultValue;
|
||||
//return (value == null) ? defaultValue :
|
||||
//Integer.parseInt(value);
|
||||
*/
|
||||
}
|
||||
|
||||
|
||||
static public void setInteger(String key, int value) {
|
||||
set(key, String.valueOf(value));
|
||||
}
|
||||
|
||||
|
||||
static public Color getColor(String name) {
|
||||
Color parsed = Color.GRAY; // set a default
|
||||
String s = get(name);
|
||||
if ((s != null) && (s.indexOf("#") == 0)) {
|
||||
try {
|
||||
parsed = new Color(Integer.parseInt(s.substring(1), 16));
|
||||
} catch (Exception e) { }
|
||||
}
|
||||
return parsed;
|
||||
}
|
||||
|
||||
|
||||
static public void setColor(String attr, Color what) {
|
||||
set(attr, "#" + PApplet.hex(what.getRGB() & 0xffffff, 6));
|
||||
}
|
||||
|
||||
|
||||
static public Font getFont(String attr) {
|
||||
boolean replace = false;
|
||||
String value = get(attr);
|
||||
if (value == null) {
|
||||
//System.out.println("reset 1");
|
||||
value = getDefault(attr);
|
||||
replace = true;
|
||||
}
|
||||
|
||||
String[] pieces = PApplet.split(value, ',');
|
||||
if (pieces.length != 3) {
|
||||
value = getDefault(attr);
|
||||
//System.out.println("reset 2 for " + attr);
|
||||
pieces = PApplet.split(value, ',');
|
||||
//PApplet.println(pieces);
|
||||
replace = true;
|
||||
}
|
||||
|
||||
String name = pieces[0];
|
||||
int style = Font.PLAIN; // equals zero
|
||||
if (pieces[1].indexOf("bold") != -1) {
|
||||
style |= Font.BOLD;
|
||||
}
|
||||
if (pieces[1].indexOf("italic") != -1) {
|
||||
style |= Font.ITALIC;
|
||||
}
|
||||
int size = PApplet.parseInt(pieces[2], 12);
|
||||
Font font = new Font(name, style, size);
|
||||
|
||||
// replace bad font with the default
|
||||
if (replace) {
|
||||
set(attr, value);
|
||||
}
|
||||
|
||||
return font;
|
||||
}
|
||||
|
||||
|
||||
static public SyntaxStyle getStyle(String what /*, String dflt*/) {
|
||||
String str = get("editor." + what + ".style"); //, dflt);
|
||||
|
||||
StringTokenizer st = new StringTokenizer(str, ",");
|
||||
|
||||
String s = st.nextToken();
|
||||
if (s.indexOf("#") == 0) s = s.substring(1);
|
||||
Color color = Color.DARK_GRAY;
|
||||
try {
|
||||
color = new Color(Integer.parseInt(s, 16));
|
||||
} catch (Exception e) { }
|
||||
|
||||
s = st.nextToken();
|
||||
boolean bold = (s.indexOf("bold") != -1);
|
||||
boolean italic = (s.indexOf("italic") != -1);
|
||||
boolean underlined = (s.indexOf("underlined") != -1);
|
||||
//System.out.println(what + " = " + str + " " + bold + " " + italic);
|
||||
|
||||
return new SyntaxStyle(color, italic, bold, underlined);
|
||||
}
|
||||
}
|
@ -73,7 +73,7 @@ msgstr "Upload Med Programmer"
|
||||
|
||||
#: Editor.java:556
|
||||
msgid "Page Setup"
|
||||
msgstr "Side Opsætning"
|
||||
msgstr "Sideopsætning"
|
||||
|
||||
#: Editor.java:564
|
||||
msgid "Print"
|
||||
@ -85,7 +85,7 @@ msgstr "Indstillinger"
|
||||
|
||||
#: Editor.java:586 Base.java:782
|
||||
msgid "Quit"
|
||||
msgstr "Slut"
|
||||
msgstr "Afslut"
|
||||
|
||||
#: Editor.java:600
|
||||
msgid "Sketch"
|
||||
@ -185,7 +185,7 @@ msgstr "Om Arduino"
|
||||
|
||||
#: Editor.java:1116
|
||||
msgid "Edit"
|
||||
msgstr "Editer"
|
||||
msgstr "Rediger"
|
||||
|
||||
#: Editor.java:1119 Editor.java:1341
|
||||
msgid "Undo"
|
||||
@ -193,7 +193,7 @@ msgstr "Fortryd"
|
||||
|
||||
#: Editor.java:1124 Editor.java:1126 Editor.java:1376
|
||||
msgid "Redo"
|
||||
msgstr "Gør Det Igen"
|
||||
msgstr "Omgør"
|
||||
|
||||
#: Editor.java:1135 Editor.java:2652
|
||||
msgid "Cut"
|
||||
@ -321,11 +321,11 @@ msgid ""
|
||||
msgstr ""
|
||||
"Denne fil \"{0}\" skal være i en\n"
|
||||
"sketch mappe med navnet \"{1}\".\n"
|
||||
"Skal denne mappe oprettes, filen flyttes, og gå videre?"
|
||||
"Opret mappe, flyt filen, og gå videre?"
|
||||
|
||||
#: Editor.java:2109
|
||||
msgid "Moving"
|
||||
msgstr "Flytter."
|
||||
msgstr "Flytter"
|
||||
|
||||
#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
|
||||
#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
|
||||
@ -398,7 +398,7 @@ msgstr "Eksport afbrudt, ændringer skal gemmes først."
|
||||
|
||||
#: Editor.java:2457
|
||||
msgid "Burning bootloader to I/O Board (this may take a minute)..."
|
||||
msgstr "Brænder bootloader til I/O Kort (dette kan godt tage et minut)..."
|
||||
msgstr "Brænder bootloader til I/O Kort (dette kan godt tage et minuts tid)..."
|
||||
|
||||
#: Editor.java:2463
|
||||
msgid "Done burning bootloader."
|
||||
|
@ -47,7 +47,7 @@ Upload=Upload
|
||||
Upload\ Using\ Programmer=Upload Med Programmer
|
||||
|
||||
#: Editor.java:556
|
||||
Page\ Setup=Side Ops\u00e6tning
|
||||
Page\ Setup=Sideops\u00e6tning
|
||||
|
||||
#: Editor.java:564
|
||||
Print=Print
|
||||
@ -56,7 +56,7 @@ Print=Print
|
||||
Preferences=Indstillinger
|
||||
|
||||
#: Editor.java:586 Base.java:782
|
||||
Quit=Slut
|
||||
Quit=Afslut
|
||||
|
||||
#: Editor.java:600
|
||||
Sketch=Sketch
|
||||
@ -131,13 +131,13 @@ http\://arduino.cc/=http\://arduino.cc/
|
||||
About\ Arduino=Om Arduino
|
||||
|
||||
#: Editor.java:1116
|
||||
Edit=Editer
|
||||
Edit=Rediger
|
||||
|
||||
#: Editor.java:1119 Editor.java:1341
|
||||
Undo=Fortryd
|
||||
|
||||
#: Editor.java:1124 Editor.java:1126 Editor.java:1376
|
||||
Redo=G\u00f8r Det Igen
|
||||
Redo=Omg\u00f8r
|
||||
|
||||
#: Editor.java:1135 Editor.java:2652
|
||||
Cut=Klip
|
||||
@ -221,10 +221,10 @@ OK=OK
|
||||
|
||||
#: Editor.java:2100
|
||||
#, java-format
|
||||
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Denne fil "{0}" skal v\u00e6re i en\nsketch mappe med navnet "{1}".\nSkal denne mappe oprettes, filen flyttes, og g\u00e5 videre?
|
||||
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Denne fil "{0}" skal v\u00e6re i en\nsketch mappe med navnet "{1}".\nOpret mappe, flyt filen, og g\u00e5 videre?
|
||||
|
||||
#: Editor.java:2109
|
||||
Moving=Flytter.
|
||||
Moving=Flytter
|
||||
|
||||
#: Editor.java:2120 Editor.java:2131 Editor.java:2141 Editor.java:2159
|
||||
#: Sketch.java:479 Sketch.java:485 Sketch.java:500 Sketch.java:507
|
||||
@ -277,7 +277,7 @@ Save\ changes\ before\ export?=Gem \u00e6ndringer f\u00f8r eksport?
|
||||
Export\ canceled,\ changes\ must\ first\ be\ saved.=Eksport afbrudt, \u00e6ndringer skal gemmes f\u00f8rst.
|
||||
|
||||
#: Editor.java:2457
|
||||
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Br\u00e6nder bootloader til I/O Kort (dette kan godt tage et minut)...
|
||||
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=Br\u00e6nder bootloader til I/O Kort (dette kan godt tage et minuts tid)...
|
||||
|
||||
#: Editor.java:2463
|
||||
Done\ burning\ bootloader.=F\u00e6rdig med at br\u00e6nde til bootloader.
|
||||
|
@ -1332,11 +1332,11 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:86
|
||||
msgid "Catalan"
|
||||
msgstr "Katalanisch"
|
||||
msgstr "Català"
|
||||
|
||||
#: Preferences.java:87
|
||||
msgid "Chinese Simplified"
|
||||
msgstr "Vereinfachtes Chinesisch"
|
||||
msgstr "大陆简体"
|
||||
|
||||
#: Preferences.java:88
|
||||
msgid "Chinese Traditional"
|
||||
@ -1344,15 +1344,15 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:89
|
||||
msgid "Danish"
|
||||
msgstr "Dänisch"
|
||||
msgstr "Dansk"
|
||||
|
||||
#: Preferences.java:90
|
||||
msgid "Dutch"
|
||||
msgstr "Niederländisch"
|
||||
msgstr "Nederlands"
|
||||
|
||||
#: Preferences.java:91
|
||||
msgid "English"
|
||||
msgstr "Englisch"
|
||||
msgstr "English"
|
||||
|
||||
#: Preferences.java:92
|
||||
msgid "Estonian"
|
||||
@ -1360,15 +1360,15 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "French"
|
||||
msgstr "Französisch"
|
||||
msgstr "Français"
|
||||
|
||||
#: Preferences.java:94
|
||||
msgid "Filipino"
|
||||
msgstr "Philippinisch"
|
||||
msgstr "Pilipino"
|
||||
|
||||
#: Preferences.java:95
|
||||
msgid "Galician"
|
||||
msgstr "Galizisch"
|
||||
msgstr "Galego"
|
||||
|
||||
#: Preferences.java:96
|
||||
msgid "German"
|
||||
@ -1376,11 +1376,11 @@ msgstr "Deutsch"
|
||||
|
||||
#: Preferences.java:97
|
||||
msgid "Greek"
|
||||
msgstr "Griechisch"
|
||||
msgstr "ελληνικά"
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Hungarian"
|
||||
msgstr "Ungarisch"
|
||||
msgstr "Magyar"
|
||||
|
||||
#: Preferences.java:99
|
||||
msgid "Indonesian"
|
||||
@ -1388,11 +1388,11 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:100
|
||||
msgid "Italian"
|
||||
msgstr "Italiensich"
|
||||
msgstr "Italiano"
|
||||
|
||||
#: Preferences.java:101
|
||||
msgid "Japanese"
|
||||
msgstr "Japanisch"
|
||||
msgstr "日本語"
|
||||
|
||||
#: Preferences.java:102
|
||||
msgid "Korean"
|
||||
@ -1400,7 +1400,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:103
|
||||
msgid "Latvian"
|
||||
msgstr "Lettisch"
|
||||
msgstr "Latviešu Valoda"
|
||||
|
||||
#: Preferences.java:104
|
||||
msgid "Lithuaninan"
|
||||
@ -1408,7 +1408,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:105
|
||||
msgid "Persian"
|
||||
msgstr "Persisch"
|
||||
msgstr "فارسی"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Polish"
|
||||
@ -1420,7 +1420,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:109
|
||||
msgid "Romanian"
|
||||
msgstr "Rumänisch"
|
||||
msgstr "Limba Română"
|
||||
|
||||
#: Preferences.java:110
|
||||
msgid "Russian"
|
||||
@ -1428,7 +1428,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:111
|
||||
msgid "Spanish"
|
||||
msgstr "Spanisch"
|
||||
msgstr "Español"
|
||||
|
||||
#: Preferences.java:210
|
||||
msgid ""
|
||||
|
@ -896,64 +896,64 @@ Browse=Durchsuchen
|
||||
!Aragonese=
|
||||
|
||||
#: Preferences.java:86
|
||||
Catalan=Katalanisch
|
||||
Catalan=Catal\u00e0
|
||||
|
||||
#: Preferences.java:87
|
||||
Chinese\ Simplified=Vereinfachtes Chinesisch
|
||||
Chinese\ Simplified=\u5927\u9646\u7b80\u4f53
|
||||
|
||||
#: Preferences.java:88
|
||||
!Chinese\ Traditional=
|
||||
|
||||
#: Preferences.java:89
|
||||
Danish=D\u00e4nisch
|
||||
Danish=Dansk
|
||||
|
||||
#: Preferences.java:90
|
||||
Dutch=Niederl\u00e4ndisch
|
||||
Dutch=Nederlands
|
||||
|
||||
#: Preferences.java:91
|
||||
English=Englisch
|
||||
English=English
|
||||
|
||||
#: Preferences.java:92
|
||||
!Estonian=
|
||||
|
||||
#: Preferences.java:93
|
||||
French=Franz\u00f6sisch
|
||||
French=Fran\u00e7ais
|
||||
|
||||
#: Preferences.java:94
|
||||
Filipino=Philippinisch
|
||||
Filipino=Pilipino
|
||||
|
||||
#: Preferences.java:95
|
||||
Galician=Galizisch
|
||||
Galician=Galego
|
||||
|
||||
#: Preferences.java:96
|
||||
German=Deutsch
|
||||
|
||||
#: Preferences.java:97
|
||||
Greek=Griechisch
|
||||
Greek=\u03b5\u03bb\u03bb\u03b7\u03bd\u03b9\u03ba\u03ac
|
||||
|
||||
#: Preferences.java:98
|
||||
Hungarian=Ungarisch
|
||||
Hungarian=Magyar
|
||||
|
||||
#: Preferences.java:99
|
||||
!Indonesian=
|
||||
|
||||
#: Preferences.java:100
|
||||
Italian=Italiensich
|
||||
Italian=Italiano
|
||||
|
||||
#: Preferences.java:101
|
||||
Japanese=Japanisch
|
||||
Japanese=\u65e5\u672c\u8a9e
|
||||
|
||||
#: Preferences.java:102
|
||||
!Korean=
|
||||
|
||||
#: Preferences.java:103
|
||||
Latvian=Lettisch
|
||||
Latvian=Latvie\u0161u Valoda
|
||||
|
||||
#: Preferences.java:104
|
||||
!Lithuaninan=
|
||||
|
||||
#: Preferences.java:105
|
||||
Persian=Persisch
|
||||
Persian=\u0641\u0627\u0631\u0633\u06cc
|
||||
|
||||
#: Preferences.java:106
|
||||
!Polish=
|
||||
@ -962,13 +962,13 @@ Persian=Persisch
|
||||
!Portuguese=
|
||||
|
||||
#: Preferences.java:109
|
||||
Romanian=Rum\u00e4nisch
|
||||
Romanian=Limba Rom\u00e2n\u0103
|
||||
|
||||
#: Preferences.java:110
|
||||
!Russian=
|
||||
|
||||
#: Preferences.java:111
|
||||
Spanish=Spanisch
|
||||
Spanish=Espa\u00f1ol
|
||||
|
||||
#: Preferences.java:210
|
||||
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Standardeinstellungen konnten nicht gelesen werden.\nSie m\u00fcssen Arduino neu installieren.
|
||||
|
@ -1,4 +1,4 @@
|
||||
# German translations for PACKAGE package.
|
||||
# Greek translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
# German translations for PACKAGE package.
|
||||
# Greek translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
# German translations for PACKAGE package.
|
||||
# English translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# David A. Mellis <>, 2012.
|
||||
|
@ -1,4 +1,4 @@
|
||||
# German translations for PACKAGE package.
|
||||
# English translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# David A. Mellis <>, 2012.
|
||||
|
@ -1,10 +1,10 @@
|
||||
# Spanish translations for the Arduino IDE.
|
||||
# Copyright (C) 2012
|
||||
# This file is distributed under the same license as the Arduino IDE package.
|
||||
# Juan Gomez <16652b12e6f13f1c6f12fa12898a21e50f973323>, 2012.
|
||||
# Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>, 2012.
|
||||
# David Cuartielles <c7afdd1968c6506100ac15ecaad67a8305c50cc5>, 2012
|
||||
# Jesús Sánchez <da4122b3b83899758123e02c0feee62783987d2b>, 2012.
|
||||
# Eduardo Sacristan <da4122b3b83899758123e02c0feee62783987d2b>, 2012.
|
||||
# Eduardo Sacristan <3f615b5b28bd435629faa36ded272d837cda2805>, 2012.
|
||||
# Jose Manuel Escuder <dbda52959cefcb044bda126ee4b0dddb92fb2f0d, 2012
|
||||
# Merche Blasco <5066f2c416c20aa131abd52f58bba0aed8c9d5b6>, 2012
|
||||
#
|
||||
@ -13,8 +13,8 @@ msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 18:10 +0600\n"
|
||||
"PO-Revision-Date: 2012-04-04 21:00 +0600\n"
|
||||
"Last-Translator: Juan Gomez <16652b12e6f13f1c6f12fa12898a21e50f973323>\n"
|
||||
"PO-Revision-Date: 2012-04-08 23:20 +0600\n"
|
||||
"Last-Translator: Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>\n"
|
||||
"Language-Team: Spanish\n"
|
||||
"Language: es\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -122,7 +122,7 @@ msgstr "Monitor Serial"
|
||||
|
||||
#: Editor.java:682
|
||||
msgid "Board"
|
||||
msgstr "tarjeta"
|
||||
msgstr "Tarjeta"
|
||||
|
||||
#: Editor.java:690
|
||||
msgid "Serial Port"
|
||||
@ -250,7 +250,7 @@ msgstr "Buscar Anterior"
|
||||
|
||||
#: Editor.java:1255
|
||||
msgid "Use Selection For Find"
|
||||
msgstr "Utilizar selección para buscar"
|
||||
msgstr "Utilizar Selección para Buscar"
|
||||
|
||||
#: Editor.java:1816
|
||||
msgid "First select a word to find in the reference."
|
||||
@ -277,7 +277,7 @@ msgstr "Compilación terminada"
|
||||
#: Editor.java:1973
|
||||
#, java-format
|
||||
msgid "Save changes to \"{0}\"? "
|
||||
msgstr "¿Guardar los cambios a \"{0}\"? "
|
||||
msgstr "¿Guardar los cambios en \"{0}\"? "
|
||||
|
||||
#: Editor.java:2006
|
||||
msgid ""
|
||||
@ -287,9 +287,9 @@ msgid ""
|
||||
"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>¿Desea "
|
||||
"{ font: 11pt \"Lucida Grande\"; margin-top: 8px }</style> </head><b>¿Deseas "
|
||||
"guardar los cambios a este Sketch<BR> antes de cerrar?</b><p>Si no los "
|
||||
"guarda, los cambios se perderán."
|
||||
"guardas, los cambios se perderán."
|
||||
|
||||
#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
|
||||
#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
|
||||
@ -449,7 +449,7 @@ msgid ""
|
||||
"would you like to visit the Arduino download page?"
|
||||
msgstr ""
|
||||
"Una nueva versión de Arduino Está disponible,\n"
|
||||
"¿Desea visitar la pagina de descargas de Arduino?"
|
||||
"¿Deseas visitar la página de descargas de Arduino?"
|
||||
|
||||
#: UpdateCheck.java:108 Preferences.java:76
|
||||
msgid "Yes"
|
||||
@ -574,23 +574,23 @@ msgstr "Formato Automático"
|
||||
|
||||
#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
|
||||
msgid "No changes necessary for Auto Format."
|
||||
msgstr "No hay cambios necesarios para el Formato Automático"
|
||||
msgstr "No hay cambios necesarios para el Formato Automático."
|
||||
|
||||
#: tools/AutoFormat.java:919
|
||||
msgid "Auto Format Canceled: Too many right parentheses."
|
||||
msgstr "Formato automático cancelado: demasiados paréntesis derechos"
|
||||
msgstr "Formato automático cancelado: demasiados paréntesis derechos."
|
||||
|
||||
#: tools/AutoFormat.java:922
|
||||
msgid "Auto Format Canceled: Too many left parentheses."
|
||||
msgstr "Formato automático cancelado: demasiados paréntesis izquierdos"
|
||||
msgstr "Formato automático cancelado: demasiados paréntesis izquierdos."
|
||||
|
||||
#: tools/AutoFormat.java:928
|
||||
msgid "Auto Format Canceled: Too many right curly braces."
|
||||
msgstr "Formato automático cancelado: demasiados corchetes derechos"
|
||||
msgstr "Formato automático cancelado: demasiados corchetes derechos."
|
||||
|
||||
#: tools/AutoFormat.java:931
|
||||
msgid "Auto Format Canceled: Too many left curly braces."
|
||||
msgstr "Formato automático cancelado: demasiados corchetes izquierdos"
|
||||
msgstr "Formato automático cancelado: demasiados corchetes izquierdos."
|
||||
|
||||
#: tools/AutoFormat.java:941
|
||||
msgid "Auto Format finished."
|
||||
@ -633,7 +633,7 @@ msgid ""
|
||||
"the sketch couldn't save properly."
|
||||
msgstr ""
|
||||
"El archivado del Sketch ha sido cancelado porque\n"
|
||||
"el Sketch no se pudo guardar debidamente"
|
||||
"el Sketch no se pudo guardar debidamente."
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
msgid "Archive sketch as:"
|
||||
@ -664,7 +664,7 @@ msgstr ""
|
||||
|
||||
#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
|
||||
msgid "Sketch is Read-Only"
|
||||
msgstr "El Skecth es de sólo lectura"
|
||||
msgstr "El Skecth es de sólo lectura"
|
||||
|
||||
#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
|
||||
msgid ""
|
||||
@ -678,7 +678,7 @@ msgstr ""
|
||||
|
||||
#: Sketch.java:286
|
||||
msgid "Name for new file:"
|
||||
msgstr "Nombre para el nuevo archivo"
|
||||
msgstr "Nombre para el nuevo archivo:"
|
||||
|
||||
#: Sketch.java:298
|
||||
msgid "Sketch is Untitled"
|
||||
@ -698,7 +698,7 @@ msgstr "Problema al renombrar"
|
||||
|
||||
#: Sketch.java:360
|
||||
msgid "The name cannot start with a period."
|
||||
msgstr "El nombre no puede empezar con un punto"
|
||||
msgstr "El nombre no puede empezar con un punto."
|
||||
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
@ -712,7 +712,7 @@ msgid ""
|
||||
"\"real\" programming environment)"
|
||||
msgstr ""
|
||||
"El archivo principal no puede usar una extensión.\n"
|
||||
"(Puede Qué ya sea hora de Qué te gradúes a un\n"
|
||||
"(Puede qué ya sea hora de qué te gradúes a un\n"
|
||||
"entorno de desarrollo \"real\")"
|
||||
|
||||
#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
|
||||
@ -794,7 +794,7 @@ msgstr "removeCode: error interno... No se pudo encontrar el código"
|
||||
|
||||
#: Sketch.java:724
|
||||
msgid "Sketch is read-only"
|
||||
msgstr "El Skecth es de sólo lectura"
|
||||
msgstr "El Skecth es de sólo lectura"
|
||||
|
||||
#: Sketch.java:725
|
||||
msgid ""
|
||||
@ -802,7 +802,7 @@ msgid ""
|
||||
"need to re-save this sketch to another location."
|
||||
msgstr ""
|
||||
"Algunos archivos están marcados como \"sólo lectura\",\n"
|
||||
"así que necesitara volver a guardar este Sketch en otra ubicación."
|
||||
"así que necesitarás volver a guardar este Sketch en otra ubicación."
|
||||
|
||||
#: Sketch.java:743
|
||||
msgid ""
|
||||
@ -840,7 +840,7 @@ msgstr ""
|
||||
|
||||
#: Sketch.java:886
|
||||
msgid "How very Borges of you"
|
||||
msgstr "Qué tan Borges de tu parte"
|
||||
msgstr "Qué tan Borges de tu parte"
|
||||
|
||||
#: Sketch.java:887
|
||||
msgid ""
|
||||
@ -881,7 +881,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Este archivo ya ha sido copiado al lugar\n"
|
||||
"desde el que está intentando agregarlo.\n"
|
||||
"Simplemente voy a ignorarte"
|
||||
"Simplemente voy a ignorarte."
|
||||
|
||||
#: Sketch.java:1093
|
||||
#, java-format
|
||||
@ -1153,12 +1153,12 @@ msgstr ""
|
||||
|
||||
#: Base.java:184
|
||||
msgid "Non-fatal error while setting the Look & Feel."
|
||||
msgstr "Error no fatal mientras se configuraba la Apariencia"
|
||||
msgstr "Error no fatal mientras se configuraba la Apariencia."
|
||||
|
||||
#: Base.java:185
|
||||
msgid "The error message follows, however Arduino should run fine."
|
||||
msgstr "El que sigue es el mensaje de error, pero Arduino debería continuar\n"
|
||||
"funcionando bien"
|
||||
"funcionando bien."
|
||||
|
||||
#: Base.java:220
|
||||
msgid "Problem Setting the Platform"
|
||||
@ -1169,7 +1169,7 @@ msgid ""
|
||||
"An unknown error occurred while trying to load\n"
|
||||
"platform-specific code for your machine."
|
||||
msgstr "Un error desconocido ha ocurrido mientras\n"
|
||||
"se cargaba el código especifico para tu plataforma"
|
||||
"se cargaba el código especifico para tu plataforma."
|
||||
|
||||
#: Base.java:232
|
||||
msgid "Please install JDK 1.5 or later"
|
||||
@ -1201,7 +1201,7 @@ msgstr ""
|
||||
"Arduino cambiará a la ubicación predeterminada\n"
|
||||
"del Sketchbook y creará una nueva carpeta Sketchbook\n"
|
||||
"si es necesario. Arduino dejará después de hablar de sí mismo\n"
|
||||
"en tercera persona"
|
||||
"en tercera persona."
|
||||
|
||||
#: Base.java:532
|
||||
msgid "Time for a Break"
|
||||
@ -1483,11 +1483,11 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:86
|
||||
msgid "Catalan"
|
||||
msgstr ""
|
||||
msgstr "Catalán"
|
||||
|
||||
#: Preferences.java:87
|
||||
msgid "Chinese Simplified"
|
||||
msgstr ""
|
||||
msgstr "Chino Simplificado"
|
||||
|
||||
#: Preferences.java:88
|
||||
msgid "Chinese Traditional"
|
||||
@ -1495,15 +1495,15 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:89
|
||||
msgid "Danish"
|
||||
msgstr ""
|
||||
msgstr "Danés"
|
||||
|
||||
#: Preferences.java:90
|
||||
msgid "Dutch"
|
||||
msgstr ""
|
||||
msgstr "Holandés"
|
||||
|
||||
#: Preferences.java:91
|
||||
msgid "English"
|
||||
msgstr ""
|
||||
msgstr "Ingles"
|
||||
|
||||
#: Preferences.java:92
|
||||
msgid "Estonian"
|
||||
@ -1511,27 +1511,27 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "French"
|
||||
msgstr ""
|
||||
msgstr "Francés"
|
||||
|
||||
#: Preferences.java:94
|
||||
msgid "Filipino"
|
||||
msgstr ""
|
||||
msgstr "Filipino"
|
||||
|
||||
#: Preferences.java:95
|
||||
msgid "Galician"
|
||||
msgstr ""
|
||||
msgstr "Gallego"
|
||||
|
||||
#: Preferences.java:96
|
||||
msgid "German"
|
||||
msgstr ""
|
||||
msgstr "Alemán"
|
||||
|
||||
#: Preferences.java:97
|
||||
msgid "Greek"
|
||||
msgstr ""
|
||||
msgstr "Griego"
|
||||
|
||||
#: Preferences.java:98
|
||||
msgid "Hungarian"
|
||||
msgstr ""
|
||||
msgstr "Húngaro"
|
||||
|
||||
#: Preferences.java:99
|
||||
msgid "Indonesian"
|
||||
@ -1539,11 +1539,11 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:100
|
||||
msgid "Italian"
|
||||
msgstr ""
|
||||
msgstr "Italiano"
|
||||
|
||||
#: Preferences.java:101
|
||||
msgid "Japanese"
|
||||
msgstr ""
|
||||
msgstr "Japonés"
|
||||
|
||||
#: Preferences.java:102
|
||||
msgid "Korean"
|
||||
@ -1551,7 +1551,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:103
|
||||
msgid "Latvian"
|
||||
msgstr ""
|
||||
msgstr "Letón"
|
||||
|
||||
#: Preferences.java:104
|
||||
msgid "Lithuaninan"
|
||||
@ -1559,7 +1559,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:105
|
||||
msgid "Persian"
|
||||
msgstr ""
|
||||
msgstr "Persa"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Polish"
|
||||
@ -1571,7 +1571,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:109
|
||||
msgid "Romanian"
|
||||
msgstr ""
|
||||
msgstr "Rumano"
|
||||
|
||||
#: Preferences.java:110
|
||||
msgid "Russian"
|
||||
@ -1579,7 +1579,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:111
|
||||
msgid "Spanish"
|
||||
msgstr ""
|
||||
msgstr "Español"
|
||||
|
||||
#: Preferences.java:210
|
||||
msgid ""
|
||||
@ -1666,9 +1666,9 @@ msgstr "Más preferencias pueden ser editadas directamente en el archivo"
|
||||
|
||||
#: Preferences.java:462
|
||||
msgid "(edit only when Arduino is not running)"
|
||||
msgstr "(editar sólo cuando Arduino no esté ejecutando)"
|
||||
msgstr "(editar sólo cuando Arduino no se esté ejecutando)"
|
||||
|
||||
#: Preferences.java:609
|
||||
#, java-format
|
||||
msgid "ignoring invalid font size {0}"
|
||||
msgstr "ignorando tamaño inválido de tipo de letra {0}"
|
||||
msgstr "ignorando tamaño inválido del tipo de letra {0}"
|
||||
|
@ -1,14 +1,14 @@
|
||||
# Spanish translations for the Arduino IDE.
|
||||
# Copyright (C) 2012
|
||||
# This file is distributed under the same license as the Arduino IDE package.
|
||||
# Juan Gomez <16652b12e6f13f1c6f12fa12898a21e50f973323>, 2012.
|
||||
# Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>, 2012.
|
||||
# David Cuartielles <c7afdd1968c6506100ac15ecaad67a8305c50cc5>, 2012
|
||||
# Jes\u00fas S\u00e1nchez <da4122b3b83899758123e02c0feee62783987d2b>, 2012.
|
||||
# Eduardo Sacristan <da4122b3b83899758123e02c0feee62783987d2b>, 2012.
|
||||
# Eduardo Sacristan <3f615b5b28bd435629faa36ded272d837cda2805>, 2012.
|
||||
# Jose Manuel Escuder <dbda52959cefcb044bda126ee4b0dddb92fb2f0d, 2012
|
||||
# Merche Blasco <5066f2c416c20aa131abd52f58bba0aed8c9d5b6>, 2012
|
||||
#
|
||||
!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 18\:10 +0600\nPO-Revision-Date\: 2012-04-04 21\:00 +0600\nLast-Translator\: Juan Gomez <16652b12e6f13f1c6f12fa12898a21e50f973323>\nLanguage-Team\: Spanish\nLanguage\: es\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 18\:10 +0600\nPO-Revision-Date\: 2012-04-08 23\:20 +0600\nLast-Translator\: Juan Gomez <3f615b5b28bd435629faa36ded272d837cda2805>\nLanguage-Team\: Spanish\nLanguage\: es\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Editor.java:366
|
||||
No\ files\ were\ added\ to\ the\ sketch.=Ning\u00fan archivo fue agregado al Sketch.
|
||||
@ -85,7 +85,7 @@ Tools=Herramientas
|
||||
Serial\ Monitor=Monitor Serial
|
||||
|
||||
#: Editor.java:682
|
||||
Board=tarjeta
|
||||
Board=Tarjeta
|
||||
|
||||
#: Editor.java:690
|
||||
Serial\ Port=Puerto Serial
|
||||
@ -181,7 +181,7 @@ Find\ Next=Buscar Siguiente
|
||||
Find\ Previous=Buscar Anterior
|
||||
|
||||
#: Editor.java:1255
|
||||
Use\ Selection\ For\ Find=Utilizar selecci\u00f3n para buscar
|
||||
Use\ Selection\ For\ Find=Utilizar Selecci\u00f3n para Buscar
|
||||
|
||||
#: Editor.java:1816
|
||||
First\ select\ a\ word\ to\ find\ in\ the\ reference.=Primero selecciona una palabra para buscar en la referencia.
|
||||
@ -202,10 +202,10 @@ Done\ compiling.=Compilaci\u00f3n terminada
|
||||
|
||||
#: Editor.java:1973
|
||||
#, java-format
|
||||
Save\ changes\ to\ "{0}"?\ \ =\u00bfGuardar los cambios a "{0}"?
|
||||
Save\ changes\ to\ "{0}"?\ \ =\u00bfGuardar los cambios en "{0}"?
|
||||
|
||||
#: Editor.java:2006
|
||||
<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>\u00bfDesea guardar los cambios a este Sketch<BR> antes de cerrar?</b><p>Si no los guarda, los cambios se perder\u00e1n.
|
||||
<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>\u00bfDeseas guardar los cambios a este Sketch<BR> antes de cerrar?</b><p>Si no los guardas, los cambios se perder\u00e1n.
|
||||
|
||||
#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
|
||||
#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
|
||||
@ -313,7 +313,7 @@ Open\ URL=Abrir URL
|
||||
!http\://www.arduino.cc/latest.txt=
|
||||
|
||||
#: UpdateCheck.java:103
|
||||
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nueva versi\u00f3n de Arduino Est\u00e1 disponible,\n\u00bfDesea visitar la pagina de descargas de Arduino?
|
||||
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=Una nueva versi\u00f3n de Arduino Est\u00e1 disponible,\n\u00bfDeseas visitar la p\u00e1gina de descargas de Arduino?
|
||||
|
||||
#: UpdateCheck.java:108 Preferences.java:76
|
||||
Yes=S\u00ed
|
||||
@ -399,19 +399,19 @@ Error\ inside\ Serial.{0}()=Error dentro de Serial.{0}()
|
||||
Auto\ Format=Formato Autom\u00e1tico
|
||||
|
||||
#: tools/AutoFormat.java:913 tools/format/src/AutoFormat.java:54
|
||||
No\ changes\ necessary\ for\ Auto\ Format.=No hay cambios necesarios para el Formato Autom\u00e1tico
|
||||
No\ changes\ necessary\ for\ Auto\ Format.=No hay cambios necesarios para el Formato Autom\u00e1tico.
|
||||
|
||||
#: tools/AutoFormat.java:919
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formato autom\u00e1tico cancelado\: demasiados par\u00e9ntesis derechos
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=Formato autom\u00e1tico cancelado\: demasiados par\u00e9ntesis derechos.
|
||||
|
||||
#: tools/AutoFormat.java:922
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formato autom\u00e1tico cancelado\: demasiados par\u00e9ntesis izquierdos
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=Formato autom\u00e1tico cancelado\: demasiados par\u00e9ntesis izquierdos.
|
||||
|
||||
#: tools/AutoFormat.java:928
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formato autom\u00e1tico cancelado\: demasiados corchetes derechos
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=Formato autom\u00e1tico cancelado\: demasiados corchetes derechos.
|
||||
|
||||
#: tools/AutoFormat.java:931
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formato autom\u00e1tico cancelado\: demasiados corchetes izquierdos
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=Formato autom\u00e1tico cancelado\: demasiados corchetes izquierdos.
|
||||
|
||||
#: tools/AutoFormat.java:941
|
||||
Auto\ Format\ finished.=Formato autom\u00e1tico terminado.
|
||||
@ -436,7 +436,7 @@ yyMMdd=yyMMdd
|
||||
Couldn't\ archive\ sketch=No se ha podido archivar el Sketch
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=El archivado del Sketch ha sido cancelado porque\nel Sketch no se pudo guardar debidamente
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=El archivado del Sketch ha sido cancelado porque\nel Sketch no se pudo guardar debidamente.
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
Archive\ sketch\ as\:=Archivar el Sketch como\:
|
||||
@ -453,13 +453,13 @@ Error\ while\ loading\ code\ {0}=Error mientras se cargaba el c\u00f3digo {0}
|
||||
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" contiene caracteres incorrectos. Si este c\u00f3digo fue creado con una versi\u00f3n anterior de Processing, puede que necesites usar Herramientas -> Corregir Codificaci\u00f3n y Recargar para actualizar el Sketch a codificaci\u00f3n UTF-8. Si no, es posible que necesites borrar los caracteres incorrectos para deshacerte de esta advertencia.
|
||||
|
||||
#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
|
||||
Sketch\ is\ Read-Only=El Skecth es de s\u00f3lo lectura
|
||||
Sketch\ is\ Read-Only=El Skecth es de s\u00f3lo lectura
|
||||
|
||||
#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Algunos archivos est\u00e1n marcados como "s\u00f3lo lectura",\nas\u00ed que necesitar\u00e1s volver a guardar este Sketch en otra ubicaci\u00f3n, e \nintentarlo de nuevo.
|
||||
|
||||
#: Sketch.java:286
|
||||
Name\ for\ new\ file\:=Nombre para el nuevo archivo
|
||||
Name\ for\ new\ file\:=Nombre para el nuevo archivo\:
|
||||
|
||||
#: Sketch.java:298
|
||||
Sketch\ is\ Untitled=El Sketch no tiene nombre
|
||||
@ -471,14 +471,14 @@ How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u00bf
|
||||
Problem\ with\ rename=Problema al renombrar
|
||||
|
||||
#: Sketch.java:360
|
||||
The\ name\ cannot\ start\ with\ a\ period.=El nombre no puede empezar con un punto
|
||||
The\ name\ cannot\ start\ with\ a\ period.=El nombre no puede empezar con un punto.
|
||||
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" no es una extensi\u00f3n v\u00e1lida.
|
||||
|
||||
#: Sketch.java:378
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=El archivo principal no puede usar una extensi\u00f3n.\n(Puede Qu\u00e9 ya sea hora de Qu\u00e9 te grad\u00faes a un\nentorno de desarrollo "real")
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=El archivo principal no puede usar una extensi\u00f3n.\n(Puede qu\u00e9 ya sea hora de qu\u00e9 te grad\u00faes a un\nentorno de desarrollo "real")
|
||||
|
||||
#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
|
||||
Nope=Negativo
|
||||
@ -537,10 +537,10 @@ Could\ not\ delete\ "{0}".=No se pudo borrar "{0}".
|
||||
removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: error interno... No se pudo encontrar el c\u00f3digo
|
||||
|
||||
#: Sketch.java:724
|
||||
Sketch\ is\ read-only=El Skecth es de s\u00f3lo lectura
|
||||
Sketch\ is\ read-only=El Skecth es de s\u00f3lo lectura
|
||||
|
||||
#: Sketch.java:725
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Algunos archivos est\u00e1n marcados como "s\u00f3lo lectura",\nas\u00ed que necesitara volver a guardar este Sketch en otra ubicaci\u00f3n.
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Algunos archivos est\u00e1n marcados como "s\u00f3lo lectura",\nas\u00ed que necesitar\u00e1s volver a guardar este Sketch en otra ubicaci\u00f3n.
|
||||
|
||||
#: Sketch.java:743
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=En Arduino 1.0, la extensi\u00f3n por defecto ha sido cambiada\nde .pde a .ino. Los nuevos Sketches (incluyendo los creados con\n"Guardar como" usar\u00e1n la nueva extensi\u00f3n. La extensi\u00f3n\nde los Sketches ya existentes ser\u00e1 actualizada al guardar, pero esto\npuede ser deshabilitado en el di\u00e1logo de Preferencias\n\n\u00bfGuardar el sketch y actualizar la extensi\u00f3n?
|
||||
@ -555,7 +555,7 @@ Save\ sketch\ folder\ as...=Guardar la carpeta de Sketch como...
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=No puedes guardar el Sketch como "{0}"\nporque el Sketch ya tiene un archivo .cpp con ese nombre.
|
||||
|
||||
#: Sketch.java:886
|
||||
How\ very\ Borges\ of\ you=Qu\u00e9 tan Borges de tu parte
|
||||
How\ very\ Borges\ of\ you=Qu\u00e9 tan Borges de tu parte
|
||||
|
||||
#: Sketch.java:887
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=No puedes guardar el Sketch en una carpeta\ndentro de s\u00ed mismo. Esto podr\u00eda seguir por siempre.
|
||||
@ -578,7 +578,7 @@ Could\ not\ delete\ the\ existing\ ''{0}''\ file.=No se pudo borrar el archivo e
|
||||
You\ can't\ fool\ me=No me puedes enga\u00f1ar
|
||||
|
||||
#: Sketch.java:1079
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este archivo ya ha sido copiado al lugar\ndesde el que est\u00e1 intentando agregarlo.\nSimplemente voy a ignorarte
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Este archivo ya ha sido copiado al lugar\ndesde el que est\u00e1 intentando agregarlo.\nSimplemente voy a ignorarte.
|
||||
|
||||
#: Sketch.java:1093
|
||||
#, java-format
|
||||
@ -711,16 +711,16 @@ Console\ Error=Error de consola
|
||||
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=Ha ocurrido un problema mientras se trataba de abrir el\narchivo utilizado para guardar el resultado de la consola.
|
||||
|
||||
#: Base.java:184
|
||||
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mientras se configuraba la Apariencia
|
||||
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Error no fatal mientras se configuraba la Apariencia.
|
||||
|
||||
#: Base.java:185
|
||||
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El que sigue es el mensaje de error, pero Arduino deber\u00eda continuar\nfuncionando bien
|
||||
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=El que sigue es el mensaje de error, pero Arduino deber\u00eda continuar\nfuncionando bien.
|
||||
|
||||
#: Base.java:220
|
||||
Problem\ Setting\ the\ Platform=Problema configurando la Plataforma
|
||||
|
||||
#: Base.java:221
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconocido ha ocurrido mientras\nse cargaba el c\u00f3digo especifico para tu plataforma
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=Un error desconocido ha ocurrido mientras\nse cargaba el c\u00f3digo especifico para tu plataforma.
|
||||
|
||||
#: Base.java:232
|
||||
Please\ install\ JDK\ 1.5\ or\ later=Por favor instala el JDK 1.5 o posterior
|
||||
@ -732,7 +732,7 @@ Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\
|
||||
Sketchbook\ folder\ disappeared=La carpeta Sketchbook ha desaparecido
|
||||
|
||||
#: Base.java:258
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta Sketchbook ya no existe.\nArduino cambiar\u00e1 a la ubicaci\u00f3n predeterminada\ndel Sketchbook y crear\u00e1 una nueva carpeta Sketchbook\nsi es necesario. Arduino dejar\u00e1 despu\u00e9s de hablar de s\u00ed mismo\nen tercera persona
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=La carpeta Sketchbook ya no existe.\nArduino cambiar\u00e1 a la ubicaci\u00f3n predeterminada\ndel Sketchbook y crear\u00e1 una nueva carpeta Sketchbook\nsi es necesario. Arduino dejar\u00e1 despu\u00e9s de hablar de s\u00ed mismo\nen tercera persona.
|
||||
|
||||
#: Base.java:532
|
||||
Time\ for\ a\ Break=Hora de un descanso
|
||||
@ -901,64 +901,64 @@ Browse=Navegar
|
||||
!Aragonese=
|
||||
|
||||
#: Preferences.java:86
|
||||
!Catalan=
|
||||
Catalan=Catal\u00e1n
|
||||
|
||||
#: Preferences.java:87
|
||||
!Chinese\ Simplified=
|
||||
Chinese\ Simplified=Chino Simplificado
|
||||
|
||||
#: Preferences.java:88
|
||||
!Chinese\ Traditional=
|
||||
|
||||
#: Preferences.java:89
|
||||
!Danish=
|
||||
Danish=Dan\u00e9s
|
||||
|
||||
#: Preferences.java:90
|
||||
!Dutch=
|
||||
Dutch=Holand\u00e9s
|
||||
|
||||
#: Preferences.java:91
|
||||
!English=
|
||||
English=Ingles
|
||||
|
||||
#: Preferences.java:92
|
||||
!Estonian=
|
||||
|
||||
#: Preferences.java:93
|
||||
!French=
|
||||
French=Franc\u00e9s
|
||||
|
||||
#: Preferences.java:94
|
||||
!Filipino=
|
||||
Filipino=Filipino
|
||||
|
||||
#: Preferences.java:95
|
||||
!Galician=
|
||||
Galician=Gallego
|
||||
|
||||
#: Preferences.java:96
|
||||
!German=
|
||||
German=Alem\u00e1n
|
||||
|
||||
#: Preferences.java:97
|
||||
!Greek=
|
||||
Greek=Griego
|
||||
|
||||
#: Preferences.java:98
|
||||
!Hungarian=
|
||||
Hungarian=H\u00fangaro
|
||||
|
||||
#: Preferences.java:99
|
||||
!Indonesian=
|
||||
|
||||
#: Preferences.java:100
|
||||
!Italian=
|
||||
Italian=Italiano
|
||||
|
||||
#: Preferences.java:101
|
||||
!Japanese=
|
||||
Japanese=Japon\u00e9s
|
||||
|
||||
#: Preferences.java:102
|
||||
!Korean=
|
||||
|
||||
#: Preferences.java:103
|
||||
!Latvian=
|
||||
Latvian=Let\u00f3n
|
||||
|
||||
#: Preferences.java:104
|
||||
!Lithuaninan=
|
||||
|
||||
#: Preferences.java:105
|
||||
!Persian=
|
||||
Persian=Persa
|
||||
|
||||
#: Preferences.java:106
|
||||
!Polish=
|
||||
@ -967,13 +967,13 @@ Browse=Navegar
|
||||
!Portuguese=
|
||||
|
||||
#: Preferences.java:109
|
||||
!Romanian=
|
||||
Romanian=Rumano
|
||||
|
||||
#: Preferences.java:110
|
||||
!Russian=
|
||||
|
||||
#: Preferences.java:111
|
||||
!Spanish=
|
||||
Spanish=Espa\u00f1ol
|
||||
|
||||
#: Preferences.java:210
|
||||
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=No se pudo leer la configuraci\u00f3n predeterminada.\nNecesitar\u00e1s volver a instalar Arduino.
|
||||
@ -1032,8 +1032,8 @@ Automatically\ associate\ .ino\ files\ with\ Arduino=Asociar autom\u00e1ticament
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=M\u00e1s preferencias pueden ser editadas directamente en el archivo
|
||||
|
||||
#: Preferences.java:462
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3lo cuando Arduino no est\u00e9 ejecutando)
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(editar s\u00f3lo cuando Arduino no se est\u00e9 ejecutando)
|
||||
|
||||
#: Preferences.java:609
|
||||
#, java-format
|
||||
ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o inv\u00e1lido de tipo de letra {0}
|
||||
ignoring\ invalid\ font\ size\ {0}=ignorando tama\u00f1o inv\u00e1lido del tipo de letra {0}
|
||||
|
@ -6,7 +6,7 @@
|
||||
# Philippe Rivet <philipe.rivet at gmail.com>, 2012
|
||||
#
|
||||
# Lexique des termes utilisés dans cette traduction :
|
||||
# - board : carte
|
||||
# - board : type de carte/carte
|
||||
# - burn bootloader : graver la séquence d'initialisation
|
||||
# - library : bibliothèque
|
||||
# - look & feel : apparence
|
||||
@ -23,7 +23,7 @@ msgstr ""
|
||||
"Project-Id-Version: IDE_translations 1.01\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-04-03 07:48+0200\n"
|
||||
"PO-Revision-Date: 2012-04-17 09:07+0200\n"
|
||||
"PO-Revision-Date: 2012-04-17 15:31+0200\n"
|
||||
"Last-Translator: Denis Barbier <bouzim@gmail.com>\n"
|
||||
"Language-Team: French\n"
|
||||
"Language: fr\n"
|
||||
@ -132,7 +132,7 @@ msgstr "Moniteur série"
|
||||
|
||||
#: Editor.java:682
|
||||
msgid "Board"
|
||||
msgstr "Carte"
|
||||
msgstr "Type de carte"
|
||||
|
||||
#: Editor.java:690
|
||||
msgid "Serial Port"
|
||||
@ -351,7 +351,7 @@ msgstr "Erreur"
|
||||
#: Editor.java:2122
|
||||
#, java-format
|
||||
msgid "A folder named \"{0}\" already exists. Can't open sketch."
|
||||
msgstr "Un dossier nommé « {0} » existe déjà. Impossible d'ouvrir le croquis."
|
||||
msgstr "Un dossier nommé « {0} » existe déjà. Impossible d''ouvrir le croquis."
|
||||
|
||||
#: Editor.java:2132
|
||||
msgid "Could not create the sketch folder."
|
||||
@ -389,7 +389,7 @@ msgid ""
|
||||
"Retry the upload with another serial port?"
|
||||
msgstr ""
|
||||
"Port série {0} introuvable.\n"
|
||||
"Réessayer le téléversement à partir d'un autre port série ?"
|
||||
"Réessayer le téléversement à partir d''un autre port série ?"
|
||||
|
||||
#: Editor.java:2331
|
||||
msgid "Uploading to I/O Board..."
|
||||
@ -549,7 +549,7 @@ msgid ""
|
||||
"using it."
|
||||
msgstr ""
|
||||
"Port série « {0} » déjà utilisé. Essayez de quitter tout logiciel qui "
|
||||
"pourrait s'en servir."
|
||||
"pourrait s''en servir."
|
||||
|
||||
#: Serial.java:154
|
||||
#, java-format
|
||||
@ -562,7 +562,7 @@ msgid ""
|
||||
"Serial port ''{0}'' not found. Did you select the right one from the Tools > "
|
||||
"Serial Port menu?"
|
||||
msgstr ""
|
||||
"Port série « {0} » non trouvé. L'avez-vous bien sélectionné dans le menu "
|
||||
"Port série « {0} » non trouvé. L''avez-vous bien sélectionné dans le menu "
|
||||
"Outils > Port série ?"
|
||||
|
||||
#: Serial.java:424
|
||||
@ -713,7 +713,7 @@ msgstr "Le nom ne peut commencer par un point."
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
msgid "\".{0}\" is not a valid extension."
|
||||
msgstr "« .{0} » n'est pas une extension valide."
|
||||
msgstr "« .{0} » n''est pas une extension valide."
|
||||
|
||||
#: Sketch.java:378
|
||||
msgid ""
|
||||
@ -826,7 +826,7 @@ msgid ""
|
||||
msgstr ""
|
||||
"Dans Arduino 1.0, l'extension par défaut a changé\n"
|
||||
"de .pde à .ino. Les nouveaux croquis (incluant ceux créés\n"
|
||||
"par « Enregistrer Sous » utiliseront la nouvelle extension. L'extension\n"
|
||||
"par « Enregistrer sous » utiliseront la nouvelle extension. L'extension\n"
|
||||
"des croquis existants sera mise à jour à la sauvegarde, mais vous pouvez\n"
|
||||
"désactiver ceci dans les Préférences.\n"
|
||||
"\n"
|
||||
@ -901,7 +901,7 @@ msgstr "Impossible d''ajouter « {0} » au croquis."
|
||||
|
||||
#: Sketch.java:1393 Sketch.java:1424
|
||||
msgid "Build folder disappeared or could not be written"
|
||||
msgstr "Dossier de construction disparu ou n'a pas pu être créé"
|
||||
msgstr "Dossier de compilation disparu ou n'a pas pu être créé"
|
||||
|
||||
#: Sketch.java:1408
|
||||
msgid "Could not find main class"
|
||||
@ -915,7 +915,7 @@ msgstr "Exception non capturée de type : {0}"
|
||||
#: Sketch.java:1465
|
||||
#, java-format
|
||||
msgid "Problem moving {0} to the build folder"
|
||||
msgstr "Problème de déplacement de {0} vers le dossier de construction"
|
||||
msgstr "Problème de déplacement de {0} vers le dossier de compilation"
|
||||
|
||||
#: Sketch.java:1661
|
||||
msgid "Uploading..."
|
||||
@ -953,7 +953,7 @@ msgid ""
|
||||
"but anything besides the code will be lost."
|
||||
msgstr ""
|
||||
"Le dossier croquis a disparu.\n"
|
||||
" Nous allons essayer de réenregistrer au même emplacement,\n"
|
||||
"Nous allons essayer de réenregistrer au même emplacement,\n"
|
||||
"mais seul le code sera conservé."
|
||||
|
||||
#: Sketch.java:1810
|
||||
@ -993,7 +993,7 @@ msgstr "Erreur de compilation, veuillez soumettre ce code à {0}"
|
||||
msgid ""
|
||||
"the selected serial port {0} does not exist or your board is not connected"
|
||||
msgstr ""
|
||||
"le port série sélectionné {0} n'existe pas ou votre Arduino n'est pas connectée"
|
||||
"le port série sélectionné {0} n''existe pas ou votre Arduino n''est pas connectée"
|
||||
|
||||
#: debug/Uploader.java:203
|
||||
msgid ""
|
||||
@ -1017,7 +1017,7 @@ msgid ""
|
||||
"> Board menu?"
|
||||
msgstr ""
|
||||
"Mauvais microcontrôleur trouvé. Avez-vous sélectionné la bonne carte dans "
|
||||
"le menu Outils > Carte ?"
|
||||
"le menu Outils > Type de carte ?"
|
||||
|
||||
#: debug/Compiler.java:41
|
||||
msgid "http://code.google.com/p/arduino/issues/list"
|
||||
@ -1027,7 +1027,7 @@ msgstr "http://code.google.com/p/arduino/issues/list"
|
||||
msgid "No board selected; please choose a board from the Tools > Board menu."
|
||||
msgstr ""
|
||||
"Aucune carte sélectionnée, veuillez choisir une carte dans le menu Outil > "
|
||||
"Carte"
|
||||
"Type de carte."
|
||||
|
||||
#: debug/Compiler.java:422
|
||||
#, java-format
|
||||
@ -1353,7 +1353,7 @@ msgid ""
|
||||
"Could not open the URL\n"
|
||||
"{0}"
|
||||
msgstr ""
|
||||
"Impossible d'ouvrir l'URL\n"
|
||||
"Impossible d''ouvrir l''URL\n"
|
||||
"{0}"
|
||||
|
||||
#: Base.java:1671
|
||||
@ -1488,15 +1488,15 @@ msgstr "Parcourir"
|
||||
|
||||
#: Preferences.java:83
|
||||
msgid "System Default"
|
||||
msgstr ""
|
||||
msgstr "Langue du système"
|
||||
|
||||
#: Preferences.java:84
|
||||
msgid "Arabic"
|
||||
msgstr ""
|
||||
msgstr "arabe"
|
||||
|
||||
#: Preferences.java:85
|
||||
msgid "Aragonese"
|
||||
msgstr ""
|
||||
msgstr "aragonais"
|
||||
|
||||
#: Preferences.java:86
|
||||
msgid "Catalan"
|
||||
@ -1504,11 +1504,11 @@ msgstr "catalan"
|
||||
|
||||
#: Preferences.java:87
|
||||
msgid "Chinese Simplified"
|
||||
msgstr "chinois (simplifié)"
|
||||
msgstr "chinois - simplifié"
|
||||
|
||||
#: Preferences.java:88
|
||||
msgid "Chinese Traditional"
|
||||
msgstr ""
|
||||
msgstr "chinois - traditionnel"
|
||||
|
||||
#: Preferences.java:89
|
||||
msgid "Danish"
|
||||
@ -1524,7 +1524,7 @@ msgstr "anglais"
|
||||
|
||||
#: Preferences.java:92
|
||||
msgid "Estonian"
|
||||
msgstr ""
|
||||
msgstr "estonien"
|
||||
|
||||
#: Preferences.java:93
|
||||
msgid "French"
|
||||
@ -1552,7 +1552,7 @@ msgstr "hongrois"
|
||||
|
||||
#: Preferences.java:99
|
||||
msgid "Indonesian"
|
||||
msgstr ""
|
||||
msgstr "indonésien"
|
||||
|
||||
#: Preferences.java:100
|
||||
msgid "Italian"
|
||||
@ -1564,7 +1564,7 @@ msgstr "japonais"
|
||||
|
||||
#: Preferences.java:102
|
||||
msgid "Korean"
|
||||
msgstr ""
|
||||
msgstr "coréen"
|
||||
|
||||
#: Preferences.java:103
|
||||
msgid "Latvian"
|
||||
@ -1572,7 +1572,7 @@ msgstr "letton"
|
||||
|
||||
#: Preferences.java:104
|
||||
msgid "Lithuaninan"
|
||||
msgstr ""
|
||||
msgstr "lituanien"
|
||||
|
||||
#: Preferences.java:105
|
||||
msgid "Persian"
|
||||
@ -1580,11 +1580,11 @@ msgstr "persan"
|
||||
|
||||
#: Preferences.java:106
|
||||
msgid "Polish"
|
||||
msgstr ""
|
||||
msgstr "polonais"
|
||||
|
||||
#: Preferences.java:107 Preferences.java:108
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
msgstr "portugais"
|
||||
|
||||
#: Preferences.java:109
|
||||
msgid "Romanian"
|
||||
@ -1592,11 +1592,11 @@ msgstr "roumain"
|
||||
|
||||
#: Preferences.java:110
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
msgstr "russe"
|
||||
|
||||
#: Preferences.java:111
|
||||
msgid "Spanish"
|
||||
msgstr "castillan"
|
||||
msgstr "espagnol"
|
||||
|
||||
#: Preferences.java:210
|
||||
msgid ""
|
||||
@ -1635,7 +1635,7 @@ msgstr "Sélectionner un nouvel emplacement pour le carnet de croquis"
|
||||
|
||||
#: Preferences.java:337
|
||||
msgid "Editor language: "
|
||||
msgstr ""
|
||||
msgstr "Choix de la langue : "
|
||||
|
||||
#: Preferences.java:342 Preferences.java:358
|
||||
msgid " (requires restart of Arduino)"
|
||||
@ -1643,7 +1643,7 @@ msgstr " (nécessite un redémarrage d'Arduino)"
|
||||
|
||||
#: Preferences.java:354
|
||||
msgid "Editor font size: "
|
||||
msgstr "Taille de police de l'éditeur"
|
||||
msgstr "Taille de police de l'éditeur : "
|
||||
|
||||
#: Preferences.java:371
|
||||
msgid "Show verbose output during: "
|
||||
@ -1667,7 +1667,7 @@ msgstr "Utiliser un éditeur externe"
|
||||
|
||||
#: Preferences.java:403
|
||||
msgid "Check for updates on startup"
|
||||
msgstr "Vérifier les mises à jour au démmarrage."
|
||||
msgstr "Vérifier les mises à jour au démarrage"
|
||||
|
||||
#: Preferences.java:412
|
||||
msgid "Update sketch files to new extension on save (.pde -> .ino)"
|
||||
|
@ -6,7 +6,7 @@
|
||||
# Philippe Rivet <philipe.rivet at gmail.com>, 2012
|
||||
#
|
||||
# Lexique des termes utilis\u00e9s dans cette traduction :
|
||||
# - board : carte
|
||||
# - board : type de carte/carte
|
||||
# - burn bootloader : graver la s\u00e9quence d'initialisation
|
||||
# - library : biblioth\u00e8que
|
||||
# - look & feel : apparence
|
||||
@ -18,7 +18,7 @@
|
||||
# La traduction des langues provient de
|
||||
# http://anonscm.debian.org/gitweb/?p=iso-codes/iso-codes.git;a=blob;f=iso_639/fr.po
|
||||
#
|
||||
!=Project-Id-Version\: IDE_translations 1.01\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-03 07\:48+0200\nPO-Revision-Date\: 2012-04-17 09\:07+0200\nLast-Translator\: Denis Barbier <bouzim@gmail.com>\nLanguage-Team\: French\nLanguage\: fr\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=n>1;\n
|
||||
!=Project-Id-Version\: IDE_translations 1.01\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-04-03 07\:48+0200\nPO-Revision-Date\: 2012-04-17 15\:31+0200\nLast-Translator\: Denis Barbier <bouzim@gmail.com>\nLanguage-Team\: French\nLanguage\: fr\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=n>1;\n
|
||||
|
||||
#: Editor.java:366
|
||||
No\ files\ were\ added\ to\ the\ sketch.=Aucun fichier n'a \u00e9t\u00e9 ajout\u00e9 au croquis.
|
||||
@ -95,7 +95,7 @@ Tools=Outils
|
||||
Serial\ Monitor=Moniteur s\u00e9rie
|
||||
|
||||
#: Editor.java:682
|
||||
Board=Carte
|
||||
Board=Type de carte
|
||||
|
||||
#: Editor.java:690
|
||||
Serial\ Port=Port s\u00e9rie
|
||||
@ -248,7 +248,7 @@ Error=Erreur
|
||||
|
||||
#: Editor.java:2122
|
||||
#, java-format
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Un dossier nomm\u00e9 \u00ab\u00a0{0}\u00a0\u00bb existe d\u00e9j\u00e0. Impossible d'ouvrir le croquis.
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Un dossier nomm\u00e9 \u00ab\u00a0{0}\u00a0\u00bb existe d\u00e9j\u00e0. Impossible d''ouvrir le croquis.
|
||||
|
||||
#: Editor.java:2132
|
||||
Could\ not\ create\ the\ sketch\ folder.=Impossible de cr\u00e9er le dossier de croquis.
|
||||
@ -274,7 +274,7 @@ Save\ Canceled.=Sauvegarde annul\u00e9e.
|
||||
|
||||
#: Editor.java:2296
|
||||
#, java-format
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e9rie {0} introuvable.\nR\u00e9essayer le t\u00e9l\u00e9versement \u00e0 partir d'un autre port s\u00e9rie\u00a0?
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Port s\u00e9rie {0} introuvable.\nR\u00e9essayer le t\u00e9l\u00e9versement \u00e0 partir d''un autre port s\u00e9rie\u00a0?
|
||||
|
||||
#: Editor.java:2331
|
||||
Uploading\ to\ I/O\ Board...=T\u00e9l\u00e9versement vers la carte E/S...
|
||||
@ -387,7 +387,7 @@ Both\ NL\ &\ CR=NL & CR
|
||||
|
||||
#: Serial.java:147
|
||||
#, java-format
|
||||
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui pourrait s'en servir.
|
||||
Serial\ port\ ''{0}''\ already\ in\ use.\ Try\ quiting\ any\ programs\ that\ may\ be\ using\ it.=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb d\u00e9j\u00e0 utilis\u00e9. Essayez de quitter tout logiciel qui pourrait s''en servir.
|
||||
|
||||
#: Serial.java:154
|
||||
#, java-format
|
||||
@ -395,7 +395,7 @@ Error\ opening\ serial\ port\ ''{0}''.=Erreur d''ouverture du port s\u00e9rie \u
|
||||
|
||||
#: Serial.java:167
|
||||
#, java-format
|
||||
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb non trouv\u00e9. L'avez-vous bien s\u00e9lectionn\u00e9 dans le menu Outils > Port s\u00e9rie\u00a0?
|
||||
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Port s\u00e9rie \u00ab\u00a0{0}\u00a0\u00bb non trouv\u00e9. L''avez-vous bien s\u00e9lectionn\u00e9 dans le menu Outils > Port s\u00e9rie\u00a0?
|
||||
|
||||
#: Serial.java:424
|
||||
#, java-format
|
||||
@ -485,7 +485,7 @@ The\ name\ cannot\ start\ with\ a\ period.=Le nom ne peut commencer par un point
|
||||
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
".{0}"\ is\ not\ a\ valid\ extension.=\u00ab\u00a0.{0}\u00a0\u00bb n'est pas une extension valide.
|
||||
".{0}"\ is\ not\ a\ valid\ extension.=\u00ab\u00a0.{0}\u00a0\u00bb n''est pas une extension valide.
|
||||
|
||||
#: Sketch.java:378
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Le fichier principal ne peut utiliser d'extension.\n(Il est peut-\u00eatre temps de migrer vers un\n\u00ab\u00a0vrai\u00a0\u00bb environnement de programmation)
|
||||
@ -553,7 +553,7 @@ Sketch\ is\ read-only=Le croquis est en lecture-seule
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Certain fichiers sont marqu\u00e9s "lecture-seule", vous devrez\nr\u00e9enregistrer ce croquis \u00e0 un autre emplacement.
|
||||
|
||||
#: Sketch.java:743
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Dans Arduino 1.0, l'extension par d\u00e9faut a chang\u00e9\nde .pde \u00e0 .ino. Les nouveaux croquis (incluant ceux cr\u00e9\u00e9s\npar \u00ab\u00a0Enregistrer Sous\u00a0\u00bb utiliseront la nouvelle extension. L'extension\ndes croquis existants sera mise \u00e0 jour \u00e0 la sauvegarde, mais vous pouvez\nd\u00e9sactiver ceci dans les Pr\u00e9f\u00e9rences.\n\nSauvegarder le croquis et mettre \u00e0 jour son extension\u00a0?
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=Dans Arduino 1.0, l'extension par d\u00e9faut a chang\u00e9\nde .pde \u00e0 .ino. Les nouveaux croquis (incluant ceux cr\u00e9\u00e9s\npar \u00ab\u00a0Enregistrer sous\u00a0\u00bb utiliseront la nouvelle extension. L'extension\ndes croquis existants sera mise \u00e0 jour \u00e0 la sauvegarde, mais vous pouvez\nd\u00e9sactiver ceci dans les Pr\u00e9f\u00e9rences.\n\nSauvegarder le croquis et mettre \u00e0 jour son extension\u00a0?
|
||||
|
||||
#: Sketch.java:750
|
||||
.pde\ ->\ .ino=.pde -> .ino
|
||||
@ -595,7 +595,7 @@ This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ y
|
||||
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Impossible d''ajouter \u00ab\u00a0{0}\u00a0\u00bb au croquis.
|
||||
|
||||
#: Sketch.java:1393 Sketch.java:1424
|
||||
Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de construction disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9
|
||||
Build\ folder\ disappeared\ or\ could\ not\ be\ written=Dossier de compilation disparu ou n'a pas pu \u00eatre cr\u00e9\u00e9
|
||||
|
||||
#: Sketch.java:1408
|
||||
Could\ not\ find\ main\ class=Impossible de trouver la classe principale
|
||||
@ -606,7 +606,7 @@ Uncaught\ exception\ type\:\ {0}=Exception non captur\u00e9e de type\u00a0\: {0}
|
||||
|
||||
#: Sketch.java:1465
|
||||
#, java-format
|
||||
Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e8me de d\u00e9placement de {0} vers le dossier de construction
|
||||
Problem\ moving\ {0}\ to\ the\ build\ folder=Probl\u00e8me de d\u00e9placement de {0} vers le dossier de compilation
|
||||
|
||||
#: Sketch.java:1661
|
||||
Uploading...=T\u00e9l\u00e9versement...
|
||||
@ -628,7 +628,7 @@ Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Il manque le */ sur la
|
||||
Sketch\ Disappeared=Croquis disparu
|
||||
|
||||
#: Sketch.java:1797
|
||||
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Le dossier croquis a disparu.\n Nous allons essayer de r\u00e9enregistrer au m\u00eame emplacement,\nmais seul le code sera conserv\u00e9.
|
||||
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Le dossier croquis a disparu.\nNous allons essayer de r\u00e9enregistrer au m\u00eame emplacement,\nmais seul le code sera conserv\u00e9.
|
||||
|
||||
#: Sketch.java:1810
|
||||
Could\ not\ re-save\ sketch=Impossible de r\u00e9enregistrer le croquis
|
||||
@ -648,7 +648,7 @@ Compiler\ error,\ please\ submit\ this\ code\ to\ {0}=Erreur de compilation, veu
|
||||
|
||||
#: debug/Uploader.java:199
|
||||
#, java-format
|
||||
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=le port s\u00e9rie s\u00e9lectionn\u00e9 {0} n'existe pas ou votre Arduino n'est pas connect\u00e9e
|
||||
the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ connected=le port s\u00e9rie s\u00e9lectionn\u00e9 {0} n''existe pas ou votre Arduino n''est pas connect\u00e9e
|
||||
|
||||
#: debug/Uploader.java:203
|
||||
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=L'appareil ne r\u00e9pond pas, v\u00e9rifiez que le bon port s\u00e9rie est s\u00e9lectionn\u00e9 ou r\u00e9initialisez (RESET) l'Arduino avant d'exporter
|
||||
@ -657,13 +657,13 @@ Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\
|
||||
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probl\u00e8me de t\u00e9l\u00e9versement vers la carte. Voir http\://www.arduino.cc/en/Guide/Troubleshooting\#upload pour suggestions.
|
||||
|
||||
#: debug/Uploader.java:213
|
||||
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mauvais microcontr\u00f4leur trouv\u00e9. Avez-vous s\u00e9lectionn\u00e9 la bonne carte dans le menu Outils > Carte\u00a0?
|
||||
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Mauvais microcontr\u00f4leur trouv\u00e9. Avez-vous s\u00e9lectionn\u00e9 la bonne carte dans le menu Outils > Type de carte\u00a0?
|
||||
|
||||
#: debug/Compiler.java:41
|
||||
http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list
|
||||
|
||||
#: debug/Compiler.java:79
|
||||
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > Carte
|
||||
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Aucune carte s\u00e9lectionn\u00e9e, veuillez choisir une carte dans le menu Outil > Type de carte.
|
||||
|
||||
#: debug/Compiler.java:422
|
||||
#, java-format
|
||||
@ -811,7 +811,7 @@ Problem\ Opening\ URL=Probl\u00e8me de chargement d'URL
|
||||
|
||||
#: Base.java:1648
|
||||
#, java-format
|
||||
Could\ not\ open\ the\ URL\n{0}=Impossible d'ouvrir l'URL\n{0}
|
||||
Could\ not\ open\ the\ URL\n{0}=Impossible d''ouvrir l''URL\n{0}
|
||||
|
||||
#: Base.java:1671
|
||||
Problem\ Opening\ Folder=Probl\u00e8me d'ouverture de dossier
|
||||
@ -902,22 +902,22 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processi
|
||||
Browse=Parcourir
|
||||
|
||||
#: Preferences.java:83
|
||||
!System\ Default=
|
||||
System\ Default=Langue du syst\u00e8me
|
||||
|
||||
#: Preferences.java:84
|
||||
!Arabic=
|
||||
Arabic=arabe
|
||||
|
||||
#: Preferences.java:85
|
||||
!Aragonese=
|
||||
Aragonese=aragonais
|
||||
|
||||
#: Preferences.java:86
|
||||
Catalan=catalan
|
||||
|
||||
#: Preferences.java:87
|
||||
Chinese\ Simplified=chinois (simplifi\u00e9)
|
||||
Chinese\ Simplified=chinois - simplifi\u00e9
|
||||
|
||||
#: Preferences.java:88
|
||||
!Chinese\ Traditional=
|
||||
Chinese\ Traditional=chinois - traditionnel
|
||||
|
||||
#: Preferences.java:89
|
||||
Danish=danois
|
||||
@ -929,7 +929,7 @@ Dutch=n\u00e9erlandais
|
||||
English=anglais
|
||||
|
||||
#: Preferences.java:92
|
||||
!Estonian=
|
||||
Estonian=estonien
|
||||
|
||||
#: Preferences.java:93
|
||||
French=fran\u00e7ais
|
||||
@ -950,7 +950,7 @@ Greek=grec
|
||||
Hungarian=hongrois
|
||||
|
||||
#: Preferences.java:99
|
||||
!Indonesian=
|
||||
Indonesian=indon\u00e9sien
|
||||
|
||||
#: Preferences.java:100
|
||||
Italian=italien
|
||||
@ -959,31 +959,31 @@ Italian=italien
|
||||
Japanese=japonais
|
||||
|
||||
#: Preferences.java:102
|
||||
!Korean=
|
||||
Korean=cor\u00e9en
|
||||
|
||||
#: Preferences.java:103
|
||||
Latvian=letton
|
||||
|
||||
#: Preferences.java:104
|
||||
!Lithuaninan=
|
||||
Lithuaninan=lituanien
|
||||
|
||||
#: Preferences.java:105
|
||||
Persian=persan
|
||||
|
||||
#: Preferences.java:106
|
||||
!Polish=
|
||||
Polish=polonais
|
||||
|
||||
#: Preferences.java:107 Preferences.java:108
|
||||
!Portuguese=
|
||||
Portuguese=portugais
|
||||
|
||||
#: Preferences.java:109
|
||||
Romanian=roumain
|
||||
|
||||
#: Preferences.java:110
|
||||
!Russian=
|
||||
Russian=russe
|
||||
|
||||
#: Preferences.java:111
|
||||
Spanish=castillan
|
||||
Spanish=espagnol
|
||||
|
||||
#: Preferences.java:210
|
||||
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Impossible de lire les param\u00e8tres par d\u00e9faut.\nVous devrez r\u00e9installer l'environnement Arduino.
|
||||
@ -1006,13 +1006,13 @@ Sketchbook\ location\:=Emplacement du carnet de croquis
|
||||
Select\ new\ sketchbook\ location=S\u00e9lectionner un nouvel emplacement pour le carnet de croquis
|
||||
|
||||
#: Preferences.java:337
|
||||
!Editor\ language\:\ =
|
||||
Editor\ language\:\ =Choix de la langue \:
|
||||
|
||||
#: Preferences.java:342 Preferences.java:358
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (n\u00e9cessite un red\u00e9marrage d'Arduino)
|
||||
|
||||
#: Preferences.java:354
|
||||
Editor\ font\ size\:\ =Taille de police de l'\u00e9diteur
|
||||
Editor\ font\ size\:\ =Taille de police de l'\u00e9diteur\u00a0\:
|
||||
|
||||
#: Preferences.java:371
|
||||
Show\ verbose\ output\ during\:\ =Afficher les r\u00e9sultats d\u00e9taill\u00e9s pendant\u00a0\:
|
||||
@ -1030,7 +1030,7 @@ Verify\ code\ after\ upload=V\u00e9rifier le code apr\u00e8s t\u00e9l\u00e9verse
|
||||
Use\ external\ editor=Utiliser un \u00e9diteur externe
|
||||
|
||||
#: Preferences.java:403
|
||||
Check\ for\ updates\ on\ startup=V\u00e9rifier les mises \u00e0 jour au d\u00e9mmarrage.
|
||||
Check\ for\ updates\ on\ startup=V\u00e9rifier les mises \u00e0 jour au d\u00e9marrage
|
||||
|
||||
#: Preferences.java:412
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Mettre \u00e0 jour vers la nouvelle extension lors de la sauvegarde (.pde -> .ino)
|
||||
|
1604
app/src/processing/app/Resources_hi.po
Normal file
1604
app/src/processing/app/Resources_hi.po
Normal file
File diff suppressed because it is too large
Load Diff
1604
app/src/processing/app/Resources_hi.po~
Normal file
1604
app/src/processing/app/Resources_hi.po~
Normal file
File diff suppressed because it is too large
Load Diff
1035
app/src/processing/app/Resources_hi.properties
Normal file
1035
app/src/processing/app/Resources_hi.properties
Normal file
File diff suppressed because it is too large
Load Diff
@ -9,7 +9,7 @@ msgstr ""
|
||||
"Project-Id-Version: PACKAGE VERSION\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2012-03-29 10:24-0400\n"
|
||||
"PO-Revision-Date: 2012-04-11 13:41+0900\n"
|
||||
"PO-Revision-Date: 2012-04-22 01:32+0900\n"
|
||||
"Last-Translator: Shigeru KANEMOTO <c2drQHN3aXRjaC1zY2llbmNlLmNvbQ==>\n"
|
||||
"Language-Team: \n"
|
||||
"MIME-Version: 1.0\n"
|
||||
@ -47,7 +47,7 @@ msgstr "スケッチブック"
|
||||
|
||||
#: Editor.java:509
|
||||
msgid "Examples"
|
||||
msgstr "スケッチ例"
|
||||
msgstr "スケッチの例"
|
||||
|
||||
#: Editor.java:514 Editor.java:1977
|
||||
msgid "Close"
|
||||
@ -132,11 +132,11 @@ msgstr "ブートローダを書き込む"
|
||||
|
||||
#: Editor.java:923
|
||||
msgid "serialMenu is null"
|
||||
msgstr "serialMenuがカラです"
|
||||
msgstr "serialMenuがnullです"
|
||||
|
||||
#: Editor.java:927 Editor.java:934
|
||||
msgid "name is null"
|
||||
msgstr "名前がカラです"
|
||||
msgstr "nameがnullです"
|
||||
|
||||
#: Editor.java:986
|
||||
msgid "error retrieving port list"
|
||||
@ -176,7 +176,7 @@ msgstr "Arduino.ccウェブサイトを開く"
|
||||
|
||||
#: Editor.java:1094
|
||||
msgid "http://arduino.cc/"
|
||||
msgstr ""
|
||||
msgstr "http://arduino.cc/"
|
||||
|
||||
#: Editor.java:1102
|
||||
msgid "About Arduino"
|
||||
@ -262,7 +262,7 @@ msgstr "{0}.html"
|
||||
|
||||
#: Editor.java:1843 Sketch.java:1647
|
||||
msgid "Compiling sketch..."
|
||||
msgstr "スケッチをコンパイルしています…"
|
||||
msgstr "スケッチをコンパイルしています..."
|
||||
|
||||
#: Editor.java:1864 Editor.java:1881
|
||||
msgid "Done compiling."
|
||||
@ -376,7 +376,7 @@ msgstr ""
|
||||
|
||||
#: Editor.java:2331
|
||||
msgid "Uploading to I/O Board..."
|
||||
msgstr "マイコンボードに書き込んでいます…"
|
||||
msgstr "マイコンボードに書き込んでいます..."
|
||||
|
||||
#: Editor.java:2348 Editor.java:2384
|
||||
msgid "Done uploading."
|
||||
@ -384,7 +384,7 @@ msgstr "マイコンボードへの書き込みが完了しました。"
|
||||
|
||||
#: Editor.java:2356 Editor.java:2392
|
||||
msgid "Upload canceled."
|
||||
msgstr "書き込みを取りやめました。"
|
||||
msgstr "書き込みを中止しました。"
|
||||
|
||||
#: Editor.java:2420
|
||||
msgid "Save changes before export?"
|
||||
@ -393,12 +393,12 @@ msgstr "エクスポートを行う前に保存しますか?"
|
||||
#: Editor.java:2435
|
||||
msgid "Export canceled, changes must first be saved."
|
||||
msgstr ""
|
||||
"エクスポートを取りやめました。"
|
||||
"エクスポートを中止しました。"
|
||||
"エクスポートを行う前に保存する必要があります。"
|
||||
|
||||
#: Editor.java:2457
|
||||
msgid "Burning bootloader to I/O Board (this may take a minute)..."
|
||||
msgstr "マイコンボードにブートローダを書き込んでいます…"
|
||||
msgstr "マイコンボードにブートローダを書き込んでいます..."
|
||||
|
||||
#: Editor.java:2463
|
||||
msgid "Done burning bootloader."
|
||||
@ -406,7 +406,7 @@ msgstr "ブートローダの書き込みが完了しました。"
|
||||
|
||||
#: Editor.java:2465 Editor.java:2469 Editor.java:2473
|
||||
msgid "Error while burning bootloader."
|
||||
msgstr "ブートローダを書き込もうとしましたが、エラーが発生しました。"
|
||||
msgstr "ブートローダの書き込み中にエラーが発生しました。"
|
||||
|
||||
#: Editor.java:2500
|
||||
msgid "Printing..."
|
||||
@ -422,7 +422,7 @@ msgstr "印刷中にエラーが発生しました。"
|
||||
|
||||
#: Editor.java:2524
|
||||
msgid "Printing canceled."
|
||||
msgstr "印刷を取りやめました。"
|
||||
msgstr "印刷を中止しました。"
|
||||
|
||||
#: Editor.java:2572
|
||||
#, java-format
|
||||
@ -572,19 +572,19 @@ msgstr "整形の必要はありませんでした。"
|
||||
|
||||
#: tools/AutoFormat.java:919
|
||||
msgid "Auto Format Canceled: Too many right parentheses."
|
||||
msgstr "「)」が多すぎるため、自動整形を取りやめました。"
|
||||
msgstr "「)」が多すぎるため、自動整形を中止しました。"
|
||||
|
||||
#: tools/AutoFormat.java:922
|
||||
msgid "Auto Format Canceled: Too many left parentheses."
|
||||
msgstr "「(」が多すぎるため、自動整形を取りやめました。"
|
||||
msgstr "「(」が多すぎるため、自動整形を中止しました。"
|
||||
|
||||
#: tools/AutoFormat.java:928
|
||||
msgid "Auto Format Canceled: Too many right curly braces."
|
||||
msgstr "「}」が多すぎるため、自動整形を取りやめました。"
|
||||
msgstr "「}」が多すぎるため、自動整形を中止しました。"
|
||||
|
||||
#: tools/AutoFormat.java:931
|
||||
msgid "Auto Format Canceled: Too many left curly braces."
|
||||
msgstr "「{」が多すぎるため、自動整形を取りやめました。"
|
||||
msgstr "「{」が多すぎるため、自動整形を中止しました。"
|
||||
|
||||
#: tools/AutoFormat.java:941
|
||||
msgid "Auto Format finished."
|
||||
@ -612,7 +612,7 @@ msgstr ""
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
msgid "Archive Sketch"
|
||||
msgstr "スケッチをアーカイブする。"
|
||||
msgstr "スケッチをアーカイブする"
|
||||
|
||||
#: tools/Archiver.java:59
|
||||
msgid "yyMMdd"
|
||||
@ -627,7 +627,7 @@ msgid ""
|
||||
"Archiving the sketch has been canceled because\n"
|
||||
"the sketch couldn't save properly."
|
||||
msgstr ""
|
||||
"スケッチを保存できなかったため、スケッチのアーカイブは取りやめました。"
|
||||
"スケッチを保存できなかったため、スケッチのアーカイブを中止しました。"
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
msgid "Archive sketch as:"
|
||||
@ -635,12 +635,12 @@ msgstr "スケッチをアーカイブする名前:"
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
msgid "Archive sketch canceled."
|
||||
msgstr "スケッチのアーカイブを取りやめました"
|
||||
msgstr "スケッチのアーカイブを中止しました"
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
msgid "Error while loading code {0}"
|
||||
msgstr "「{0}」からのコード読み込みの際にエラーが発生しました。"
|
||||
msgstr "「{0}」からコードを読み込む際にエラーが発生しました。"
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
@ -650,7 +650,11 @@ msgid ""
|
||||
"Reload to updatethe sketch to use UTF-8 encoding. If not, you may need "
|
||||
"todelete the bad characters to get rid of this warning."
|
||||
msgstr ""
|
||||
"「{0}」には、認識できない文字が含まれています。もしも、古いバージョンのIDEでこのスケッチを作成していた場合には、「ツール」メニューの「エンコーディングの修正」を実行する事によって、ファイルのエンコーディングをUTF-8に変更してください。そうでない場合には、これらの認識できない文字を手作業で削除していただく必要があります。"
|
||||
"「{0}」には、認識できない文字が含まれています。もしも、古いバージョンのIDE"
|
||||
"でこのスケッチを作成していた場合には、「ツール」メニューの「エンコーディン"
|
||||
"グの修正」を実行する事によって、ファイルのエンコーディングをUTF-8に変更し"
|
||||
"てください。そうでない場合には、これらの認識できない文字を手作業で削除して"
|
||||
"いただく必要があります。"
|
||||
|
||||
#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
|
||||
msgid "Sketch is Read-Only"
|
||||
@ -682,11 +686,11 @@ msgstr ""
|
||||
|
||||
#: Sketch.java:359 Sketch.java:366 Sketch.java:377
|
||||
msgid "Problem with rename"
|
||||
msgstr "名前を変更できませんでした。"
|
||||
msgstr "スケッチの名前を変更できませんでした。"
|
||||
|
||||
#: Sketch.java:360
|
||||
msgid "The name cannot start with a period."
|
||||
msgstr "この名前の先頭はピリオド「.」にしてはいけません。"
|
||||
msgstr "スケッチの名前の先頭はピリオド「.」にしてはいけません。"
|
||||
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
@ -703,7 +707,7 @@ msgstr ""
|
||||
|
||||
#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
|
||||
msgid "Nope"
|
||||
msgstr "ダメ。"
|
||||
msgstr "エラー"
|
||||
|
||||
#: Sketch.java:402
|
||||
#, java-format
|
||||
@ -826,7 +830,7 @@ msgstr ""
|
||||
|
||||
#: Sketch.java:886
|
||||
msgid "How very Borges of you"
|
||||
msgstr "それはムリ。"
|
||||
msgstr "それはムリです"
|
||||
|
||||
#: Sketch.java:887
|
||||
msgid ""
|
||||
@ -859,7 +863,7 @@ msgstr "既存の「{0}」というファイルを削除できませんでした
|
||||
|
||||
#: Sketch.java:1078
|
||||
msgid "You can't fool me"
|
||||
msgstr "ヘンなことしちゃだめ。"
|
||||
msgstr "ヘンなことしちゃだめです"
|
||||
|
||||
#: Sketch.java:1079
|
||||
msgid ""
|
||||
@ -895,7 +899,7 @@ msgstr "「{0}」をビルドフォルダに移動できませんでした。"
|
||||
|
||||
#: Sketch.java:1661
|
||||
msgid "Uploading..."
|
||||
msgstr "マイコンボードに書き込んでいます…"
|
||||
msgstr "マイコンボードに書き込んでいます..."
|
||||
|
||||
#: Sketch.java:1684
|
||||
#, java-format
|
||||
@ -1129,12 +1133,12 @@ msgid ""
|
||||
"A problem occurred while trying to open the\n"
|
||||
"files used to store the console output."
|
||||
msgstr ""
|
||||
"コンソール出力を保存するファイルを開こうとしたら、\n"
|
||||
"コンソール出力を保存するファイルを開く際に、\n"
|
||||
"問題が発生しました。"
|
||||
|
||||
#: Base.java:184
|
||||
msgid "Non-fatal error while setting the Look & Feel."
|
||||
msgstr "GUIの挙動を設定する際にエラーが発生しましたが、重大ではありません。"
|
||||
msgstr "GUIの挙動の設定中にエラーが発生しましたが、重大ではありません。"
|
||||
|
||||
#: Base.java:185
|
||||
msgid "The error message follows, however Arduino should run fine."
|
||||
@ -1289,13 +1293,15 @@ msgstr ""
|
||||
|
||||
#: Base.java:1602
|
||||
msgid "You forgot your sketchbook"
|
||||
msgstr "スケッチブックをどこかにやっちゃいましたね。"
|
||||
msgstr "スケッチブック行方不明"
|
||||
|
||||
#: Base.java:1603
|
||||
msgid ""
|
||||
"Arduino cannot run because it could not\n"
|
||||
"create a folder to store your sketchbook."
|
||||
msgstr "スケッチブックを保存するフォルダを作成できないため、動作を停止します。"
|
||||
msgstr ""
|
||||
"スケッチブックを保存するフォルダを作成できないので、\n"
|
||||
"Arduino IDEは動作できません。"
|
||||
|
||||
#: Base.java:1623
|
||||
msgid "Select (or create new) folder for sketches..."
|
||||
@ -1444,7 +1450,7 @@ msgstr "参照"
|
||||
|
||||
#: Preferences.java:83
|
||||
msgid "System Default"
|
||||
msgstr ""
|
||||
msgstr "パソコンの設定に従う"
|
||||
|
||||
#: Preferences.java:84
|
||||
msgid "Arabic"
|
||||
@ -1464,7 +1470,7 @@ msgstr "中国語(簡体字)"
|
||||
|
||||
#: Preferences.java:88
|
||||
msgid "Chinese Traditional"
|
||||
msgstr ""
|
||||
msgstr "中国語(繁体字)"
|
||||
|
||||
#: Preferences.java:89
|
||||
msgid "Danish"
|
||||
@ -1540,7 +1546,7 @@ msgstr ""
|
||||
|
||||
#: Preferences.java:107 Preferences.java:108
|
||||
msgid "Portuguese"
|
||||
msgstr ""
|
||||
msgstr "ポルトガル語"
|
||||
|
||||
#: Preferences.java:109
|
||||
msgid "Romanian"
|
||||
@ -1548,7 +1554,7 @@ msgstr "ルーマニア語"
|
||||
|
||||
#: Preferences.java:110
|
||||
msgid "Russian"
|
||||
msgstr ""
|
||||
msgstr "ロシア語"
|
||||
|
||||
#: Preferences.java:111
|
||||
msgid "Spanish"
|
||||
@ -1590,11 +1596,11 @@ msgstr "スケッチブックの保存場所を決める"
|
||||
|
||||
#: Preferences.java:337
|
||||
msgid "Editor language: "
|
||||
msgstr ""
|
||||
msgstr "言語設定:"
|
||||
|
||||
#: Preferences.java:342 Preferences.java:358
|
||||
msgid " (requires restart of Arduino)"
|
||||
msgstr " 変更の反映にはArduino IDEの再起動が必要。"
|
||||
msgstr " 変更の反映にはArduino IDEの再起動が必要"
|
||||
|
||||
#: Preferences.java:354
|
||||
msgid "Editor font size: "
|
||||
@ -1618,19 +1624,19 @@ msgstr "書き込みを検証する"
|
||||
|
||||
#: Preferences.java:393
|
||||
msgid "Use external editor"
|
||||
msgstr "外部のエディタを使用する。"
|
||||
msgstr "外部のエディタを使用する"
|
||||
|
||||
#: Preferences.java:403
|
||||
msgid "Check for updates on startup"
|
||||
msgstr "起動時に最新バージョンの有無をチェックする。"
|
||||
msgstr "起動時に最新バージョンの有無をチェックする"
|
||||
|
||||
#: Preferences.java:412
|
||||
msgid "Update sketch files to new extension on save (.pde -> .ino)"
|
||||
msgstr "スケッチを保存する際に、拡張子を.pdeから.inoに変更する。"
|
||||
msgstr "スケッチを保存する際に、拡張子を.pdeから.inoに変更する"
|
||||
|
||||
#: Preferences.java:423
|
||||
msgid "Automatically associate .ino files with Arduino"
|
||||
msgstr ".inoファイルをArduino IDEに関連づける。"
|
||||
msgstr ".inoファイルをArduino IDEに関連づける"
|
||||
|
||||
#: Preferences.java:433
|
||||
msgid "More preferences can be edited directly in the file"
|
||||
|
@ -4,7 +4,7 @@
|
||||
# Shigeru KANEMOTO <c2drQHN3aXRjaC1zY2llbmNlLmNvbQ==>.
|
||||
#
|
||||
#, fuzzy
|
||||
!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-11 13\:41+0900\nLast-Translator\: Shigeru KANEMOTO <c2drQHN3aXRjaC1zY2llbmNlLmNvbQ\=\=>\nLanguage-Team\: \nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\n
|
||||
!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-04-22 01\:32+0900\nLast-Translator\: Shigeru KANEMOTO <c2drQHN3aXRjaC1zY2llbmNlLmNvbQ\=\=>\nLanguage-Team\: \nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\n
|
||||
|
||||
#: Editor.java:366
|
||||
No\ files\ were\ added\ to\ the\ sketch.=\u30b9\u30b1\u30c3\u30c1\u306b\u30d5\u30a1\u30a4\u30eb\u306f\u8ffd\u52a0\u3055\u308c\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
@ -29,7 +29,7 @@ Open...=\u958b\u304f...
|
||||
Sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af
|
||||
|
||||
#: Editor.java:509
|
||||
Examples=\u30b9\u30b1\u30c3\u30c1\u4f8b
|
||||
Examples=\u30b9\u30b1\u30c3\u30c1\u306e\u4f8b
|
||||
|
||||
#: Editor.java:514 Editor.java:1977
|
||||
Close=\u9589\u3058\u308b
|
||||
@ -93,10 +93,10 @@ Programmer=\u66f8\u8fbc\u88c5\u7f6e
|
||||
Burn\ Bootloader=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3080
|
||||
|
||||
#: Editor.java:923
|
||||
serialMenu\ is\ null=serialMenu\u304c\u30ab\u30e9\u3067\u3059
|
||||
serialMenu\ is\ null=serialMenu\u304cnull\u3067\u3059
|
||||
|
||||
#: Editor.java:927 Editor.java:934
|
||||
name\ is\ null=\u540d\u524d\u304c\u30ab\u30e9\u3067\u3059
|
||||
name\ is\ null=name\u304cnull\u3067\u3059
|
||||
|
||||
#: Editor.java:986
|
||||
error\ retrieving\ port\ list=\u30dd\u30fc\u30c8\u540d\u306e\u4e00\u89a7\u3092\u53d6\u5f97\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
@ -126,7 +126,7 @@ Frequently\ Asked\ Questions=\u3088\u304f\u3042\u308b\u8cea\u554f
|
||||
Visit\ Arduino.cc=Arduino.cc\u30a6\u30a7\u30d6\u30b5\u30a4\u30c8\u3092\u958b\u304f
|
||||
|
||||
#: Editor.java:1094
|
||||
!http\://arduino.cc/=
|
||||
http\://arduino.cc/=http\://arduino.cc/
|
||||
|
||||
#: Editor.java:1102
|
||||
About\ Arduino=Arduino\u306b\u3064\u3044\u3066...
|
||||
@ -191,7 +191,7 @@ No\ reference\ available\ for\ "{0}"=\u30ea\u30d5\u30a1\u30ec\u30f3\u30b9\u30de\
|
||||
{0}.html={0}.html
|
||||
|
||||
#: Editor.java:1843 Sketch.java:1647
|
||||
Compiling\ sketch...=\u30b9\u30b1\u30c3\u30c1\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3066\u3044\u307e\u3059\u2026
|
||||
Compiling\ sketch...=\u30b9\u30b1\u30c3\u30c1\u3092\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3066\u3044\u307e\u3059...
|
||||
|
||||
#: Editor.java:1864 Editor.java:1881
|
||||
Done\ compiling.=\u30b3\u30f3\u30d1\u30a4\u30eb\u7d42\u4e86\u3002
|
||||
@ -263,28 +263,28 @@ Save\ Canceled.=\u4fdd\u5b58\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u300c{0}\u300d\u304c\u5b58\u5728\u3057\u307e\u305b\u3093\u3002\n\u30b7\u30ea\u30a2\u30eb\u30dd\u30fc\u30c8\u3092\u5909\u66f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u66f8\u304d\u8fbc\u307f\u307e\u3059\u304b\uff1f
|
||||
|
||||
#: Editor.java:2331
|
||||
Uploading\ to\ I/O\ Board...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026
|
||||
Uploading\ to\ I/O\ Board...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059...
|
||||
|
||||
#: Editor.java:2348 Editor.java:2384
|
||||
Done\ uploading.=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u3078\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Editor.java:2356 Editor.java:2392
|
||||
Upload\ canceled.=\u66f8\u304d\u8fbc\u307f\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Upload\ canceled.=\u66f8\u304d\u8fbc\u307f\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Editor.java:2420
|
||||
Save\ changes\ before\ export?=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f
|
||||
|
||||
#: Editor.java:2435
|
||||
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
|
||||
Export\ canceled,\ changes\ must\ first\ be\ saved.=\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002\u30a8\u30af\u30b9\u30dd\u30fc\u30c8\u3092\u884c\u3046\u524d\u306b\u4fdd\u5b58\u3059\u308b\u5fc5\u8981\u304c\u3042\u308a\u307e\u3059\u3002
|
||||
|
||||
#: Editor.java:2457
|
||||
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026
|
||||
Burning\ bootloader\ to\ I/O\ Board\ (this\ may\ take\ a\ minute)...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059...
|
||||
|
||||
#: Editor.java:2463
|
||||
Done\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Editor.java:2465 Editor.java:2469 Editor.java:2473
|
||||
Error\ while\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u3092\u66f8\u304d\u8fbc\u3082\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
Error\ while\ burning\ bootloader.=\u30d6\u30fc\u30c8\u30ed\u30fc\u30c0\u306e\u66f8\u304d\u8fbc\u307f\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Editor.java:2500
|
||||
Printing...=\u5370\u5237\u3057\u3066\u3044\u307e\u3059...
|
||||
@ -296,7 +296,7 @@ Done\ printing.=\u5370\u5237\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
|
||||
Error\ while\ printing.=\u5370\u5237\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Editor.java:2524
|
||||
Printing\ canceled.=\u5370\u5237\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Printing\ canceled.=\u5370\u5237\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Editor.java:2572
|
||||
#, java-format
|
||||
@ -398,16 +398,16 @@ Auto\ Format=\u81ea\u52d5\u6574\u5f62
|
||||
No\ changes\ necessary\ for\ Auto\ Format.=\u6574\u5f62\u306e\u5fc5\u8981\u306f\u3042\u308a\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
|
||||
#: tools/AutoFormat.java:919
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u300c)\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ parentheses.=\u300c)\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: tools/AutoFormat.java:922
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u300c(\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ parentheses.=\u300c(\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: tools/AutoFormat.java:928
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u300c}\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ right\ curly\ braces.=\u300c}\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: tools/AutoFormat.java:931
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u300c{\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Auto\ Format\ Canceled\:\ Too\ many\ left\ curly\ braces.=\u300c{\u300d\u304c\u591a\u3059\u304e\u308b\u305f\u3081\u3001\u81ea\u52d5\u6574\u5f62\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: tools/AutoFormat.java:941
|
||||
Auto\ Format\ finished.=\u81ea\u52d5\u6574\u5f62\u304c\u5b8c\u4e86\u3057\u307e\u3057\u305f\u3002
|
||||
@ -423,7 +423,7 @@ Discard\ all\ changes\ and\ reload\ sketch?=\u672a\u4fdd\u5b58\u306e\u5909\u66f4
|
||||
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u3092\u4fee\u6b63\u3057\u3088\u3046\u3068\u3057\u307e\u3057\u305f\u304c\u3001\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002\n\u4eca\u3053\u3053\u3067\u4fdd\u5b58\u3059\u308b\u3068\u3001\u4fee\u6b63\u524d\u306e\u30b9\u30b1\u30c3\u30c1\u3092\u304a\u304b\u3057\u306a\u5185\u5bb9\u3067\u4e0a\u66f8\u304d\u3057\u3066\u3057\u307e\u3046\n\u53ef\u80fd\u6027\u304c\u3042\u308a\u307e\u3059\u3002\u30b9\u30b1\u30c3\u30c1\u3092\u958b\u304d\u76f4\u3057\u3066\u3001\u3082\u3046\u4e00\u5ea6\u30a8\u30f3\u30b3\u30fc\u30c7\u30a3\u30f3\u30b0\u306e\n\u4fee\u6b63\u3092\u3057\u3066\u307f\u3066\u304f\u3060\u3055\u3044\u3002
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
Archive\ Sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b\u3002
|
||||
Archive\ Sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b
|
||||
|
||||
#: tools/Archiver.java:59
|
||||
yyMMdd=yyyyMMdd
|
||||
@ -432,17 +432,17 @@ yyMMdd=yyyyMMdd
|
||||
Couldn't\ archive\ sketch=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3067\u304d\u306a\u304b\u3063\u305f\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u306f\u53d6\u308a\u3084\u3081\u307e\u3057\u305f\u3002
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3067\u304d\u306a\u304b\u3063\u305f\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
Archive\ sketch\ as\:=\u30b9\u30b1\u30c3\u30c1\u3092\u30a2\u30fc\u30ab\u30a4\u30d6\u3059\u308b\u540d\u524d\uff1a
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
Archive\ sketch\ canceled.=\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u53d6\u308a\u3084\u3081\u307e\u3057\u305f
|
||||
Archive\ sketch\ canceled.=\u30b9\u30b1\u30c3\u30c1\u306e\u30a2\u30fc\u30ab\u30a4\u30d6\u3092\u4e2d\u6b62\u3057\u307e\u3057\u305f
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u306e\u30b3\u30fc\u30c9\u8aad\u307f\u8fbc\u307f\u306e\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
Error\ while\ loading\ code\ {0}=\u300c{0}\u300d\u304b\u3089\u30b3\u30fc\u30c9\u3092\u8aad\u307f\u8fbc\u3080\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
@ -464,10 +464,10 @@ Sketch\ is\ Untitled=\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u307e\u3060\u540
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3059\u308b\u524d\u306b\u3001\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3057\u307e\u3059\u304b\uff1f
|
||||
|
||||
#: Sketch.java:359 Sketch.java:366 Sketch.java:377
|
||||
Problem\ with\ rename=\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
Problem\ with\ rename=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u3092\u5909\u66f4\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
|
||||
#: Sketch.java:360
|
||||
The\ name\ cannot\ start\ with\ a\ period.=\u3053\u306e\u540d\u524d\u306e\u5148\u982d\u306f\u30d4\u30ea\u30aa\u30c9\u300c.\u300d\u306b\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002
|
||||
The\ name\ cannot\ start\ with\ a\ period.=\u30b9\u30b1\u30c3\u30c1\u306e\u540d\u524d\u306e\u5148\u982d\u306f\u30d4\u30ea\u30aa\u30c9\u300c.\u300d\u306b\u3057\u3066\u306f\u3044\u3051\u307e\u305b\u3093\u3002
|
||||
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
@ -477,7 +477,7 @@ The\ name\ cannot\ start\ with\ a\ period.=\u3053\u306e\u540d\u524d\u306e\u5148\
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=\u30b9\u30b1\u30c3\u30c1\u306e\u30e1\u30a4\u30f3\u306e\u30d5\u30a1\u30a4\u30eb\u306b\u306f\u3001\u62e1\u5f35\u5b50\u3092\u6307\u5b9a\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
|
||||
#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
|
||||
Nope=\u30c0\u30e1\u3002
|
||||
Nope=\u30a8\u30e9\u30fc
|
||||
|
||||
#: Sketch.java:402
|
||||
#, java-format
|
||||
@ -551,7 +551,7 @@ Save\ sketch\ folder\ as...=\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=\u3053\u306e\u30b9\u30b1\u30c3\u30c1\u306b\u306f\u3001\u3059\u3067\u306b\u305d\u306e\u540d\u524d\u306e.cpp\u30d5\u30a1\u30a4\u30eb\u304c\u5b58\u5728\u3059\u308b\u305f\u3081\u3001\u30b9\u30b1\u30c3\u30c1\u3092\u300c{0}\u300d\u3068\u3057\u3066\u4fdd\u5b58\u3059\u308b\u3053\u3068\u304c\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
|
||||
#: Sketch.java:886
|
||||
How\ very\ Borges\ of\ you=\u305d\u308c\u306f\u30e0\u30ea\u3002
|
||||
How\ very\ Borges\ of\ you=\u305d\u308c\u306f\u30e0\u30ea\u3067\u3059
|
||||
|
||||
#: Sketch.java:887
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=\u81ea\u3089\u306e\u30b9\u30b1\u30c3\u30c1\u306e\u30d5\u30a9\u30eb\u30c0\u306e\u4e2d\u306b\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u3053\u3068\u306a\u3093\u3066\u3067\u304d\u307e\u305b\u3093\u3002\u7121\u9650\u30eb\u30fc\u30d7\u306b\u306a\u3063\u3061\u3083\u3044\u307e\u3059\u3002
|
||||
@ -571,7 +571,7 @@ Error\ adding\ file=\u30d5\u30a1\u30a4\u30eb\u3092\u8ffd\u52a0\u3059\u308b\u969b
|
||||
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=\u65e2\u5b58\u306e\u300c{0}\u300d\u3068\u3044\u3046\u30d5\u30a1\u30a4\u30eb\u3092\u524a\u9664\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
|
||||
#: Sketch.java:1078
|
||||
You\ can't\ fool\ me=\u30d8\u30f3\u306a\u3053\u3068\u3057\u3061\u3083\u3060\u3081\u3002
|
||||
You\ can't\ fool\ me=\u30d8\u30f3\u306a\u3053\u3068\u3057\u3061\u3083\u3060\u3081\u3067\u3059
|
||||
|
||||
#: Sketch.java:1079
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=\u3053\u306e\u30d5\u30a1\u30a4\u30eb\u306f\u3059\u3067\u306b\u30b3\u30d4\u30fc\u3055\u308c\u3066\u30b9\u30b1\u30c3\u30c1\u306e\u4e2d\u306b\u3042\u308a\u307e\u3059\u3002\u307e\u3060\u3001\u4f55\u3082\u3057\u3066\u307e\u305b\u3093\u3088\uff01
|
||||
@ -595,7 +595,7 @@ Uncaught\ exception\ type\:\ {0}=\u60f3\u5b9a\u5916\u306e\u4f8b\u5916\u300c{0}\u
|
||||
Problem\ moving\ {0}\ to\ the\ build\ folder=\u300c{0}\u300d\u3092\u30d3\u30eb\u30c9\u30d5\u30a9\u30eb\u30c0\u306b\u79fb\u52d5\u3067\u304d\u307e\u305b\u3093\u3067\u3057\u305f\u3002
|
||||
|
||||
#: Sketch.java:1661
|
||||
Uploading...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059\u2026
|
||||
Uploading...=\u30de\u30a4\u30b3\u30f3\u30dc\u30fc\u30c9\u306b\u66f8\u304d\u8fbc\u3093\u3067\u3044\u307e\u3059...
|
||||
|
||||
#: Sketch.java:1684
|
||||
#, java-format
|
||||
@ -704,10 +704,10 @@ Wire.receive()\ has\ been\ renamed\ Wire.read().=\u300cWire.receive()\u300d\u306
|
||||
Console\ Error=\u30b3\u30f3\u30bd\u30fc\u30eb\u306e\u7570\u5e38
|
||||
|
||||
#: EditorConsole.java:153
|
||||
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u3053\u3046\u3068\u3057\u305f\u3089\u3001\n\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=\u30b3\u30f3\u30bd\u30fc\u30eb\u51fa\u529b\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a1\u30a4\u30eb\u3092\u958b\u304f\u969b\u306b\u3001\n\u554f\u984c\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u3002
|
||||
|
||||
#: Base.java:184
|
||||
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI\u306e\u6319\u52d5\u3092\u8a2d\u5b9a\u3059\u308b\u969b\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u304c\u3001\u91cd\u5927\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
|
||||
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=GUI\u306e\u6319\u52d5\u306e\u8a2d\u5b9a\u4e2d\u306b\u30a8\u30e9\u30fc\u304c\u767a\u751f\u3057\u307e\u3057\u305f\u304c\u3001\u91cd\u5927\u3067\u306f\u3042\u308a\u307e\u305b\u3093\u3002
|
||||
|
||||
#: Base.java:185
|
||||
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=\u30a8\u30e9\u30fc\u30e1\u30c3\u30bb\u30fc\u30b8\u306f\u4ee5\u4e0b\u306e\u901a\u308a\u3067\u3059\u3002Arduino IDE\u306e\u52d5\u4f5c\u306b\u554f\u984c\u306f\u3042\u308a\u307e\u305b\u3093\u3002
|
||||
@ -784,10 +784,10 @@ Settings\ issues=\u8a2d\u5b9a\u306b\u95a2\u3059\u308b\u554f\u984c
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=\u8a2d\u5b9a\u3092\u4fdd\u5b58\u3059\u308b\u305f\u3081\u306e\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002
|
||||
|
||||
#: Base.java:1602
|
||||
You\ forgot\ your\ sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u3092\u3069\u3053\u304b\u306b\u3084\u3063\u3061\u3083\u3044\u307e\u3057\u305f\u306d\u3002
|
||||
You\ forgot\ your\ sketchbook=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u884c\u65b9\u4e0d\u660e
|
||||
|
||||
#: Base.java:1603
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u305f\u3081\u3001\u52d5\u4f5c\u3092\u505c\u6b62\u3057\u307e\u3059\u3002
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u4f5c\u6210\u3067\u304d\u306a\u3044\u306e\u3067\u3001\nArduino IDE\u306f\u52d5\u4f5c\u3067\u304d\u307e\u305b\u3093\u3002
|
||||
|
||||
#: Base.java:1623
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u30d5\u30a9\u30eb\u30c0\u3092\u9078\u629e\u3059\u308b\u304b\u4f5c\u6210\u3057\u3066\u304f\u3060\u3055\u3044\u3002
|
||||
@ -888,7 +888,7 @@ Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processi
|
||||
Browse=\u53c2\u7167
|
||||
|
||||
#: Preferences.java:83
|
||||
!System\ Default=
|
||||
System\ Default=\u30d1\u30bd\u30b3\u30f3\u306e\u8a2d\u5b9a\u306b\u5f93\u3046
|
||||
|
||||
#: Preferences.java:84
|
||||
!Arabic=
|
||||
@ -903,7 +903,7 @@ Catalan=\u30ab\u30bf\u30eb\u30fc\u30cb\u30e3\u8a9e
|
||||
Chinese\ Simplified=\u4e2d\u56fd\u8a9e\uff08\u7c21\u4f53\u5b57\uff09
|
||||
|
||||
#: Preferences.java:88
|
||||
!Chinese\ Traditional=
|
||||
Chinese\ Traditional=\u4e2d\u56fd\u8a9e\uff08\u7e41\u4f53\u5b57\uff09
|
||||
|
||||
#: Preferences.java:89
|
||||
Danish=\u30c7\u30f3\u30de\u30fc\u30af\u8a9e
|
||||
@ -960,13 +960,13 @@ Persian=\u30da\u30eb\u30b7\u30e3\u8a9e
|
||||
!Polish=
|
||||
|
||||
#: Preferences.java:107 Preferences.java:108
|
||||
!Portuguese=
|
||||
Portuguese=\u30dd\u30eb\u30c8\u30ac\u30eb\u8a9e
|
||||
|
||||
#: Preferences.java:109
|
||||
Romanian=\u30eb\u30fc\u30de\u30cb\u30a2\u8a9e
|
||||
|
||||
#: Preferences.java:110
|
||||
!Russian=
|
||||
Russian=\u30ed\u30b7\u30a2\u8a9e
|
||||
|
||||
#: Preferences.java:111
|
||||
Spanish=\u30b9\u30da\u30a4\u30f3\u8a9e
|
||||
@ -992,10 +992,10 @@ Sketchbook\ location\:=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5
|
||||
Select\ new\ sketchbook\ location=\u30b9\u30b1\u30c3\u30c1\u30d6\u30c3\u30af\u306e\u4fdd\u5b58\u5834\u6240\u3092\u6c7a\u3081\u308b
|
||||
|
||||
#: Preferences.java:337
|
||||
!Editor\ language\:\ =
|
||||
Editor\ language\:\ =\u8a00\u8a9e\u8a2d\u5b9a\uff1a
|
||||
|
||||
#: Preferences.java:342 Preferences.java:358
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981\u3002
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ \u5909\u66f4\u306e\u53cd\u6620\u306b\u306fArduino IDE\u306e\u518d\u8d77\u52d5\u304c\u5fc5\u8981
|
||||
|
||||
#: Preferences.java:354
|
||||
Editor\ font\ size\:\ =\u30a8\u30c7\u30a3\u30bf\u306e\u6587\u5b57\u306e\u5927\u304d\u3055\uff1a
|
||||
@ -1013,16 +1013,16 @@ upload=\u66f8\u304d\u8fbc\u307f
|
||||
Verify\ code\ after\ upload=\u66f8\u304d\u8fbc\u307f\u3092\u691c\u8a3c\u3059\u308b
|
||||
|
||||
#: Preferences.java:393
|
||||
Use\ external\ editor=\u5916\u90e8\u306e\u30a8\u30c7\u30a3\u30bf\u3092\u4f7f\u7528\u3059\u308b\u3002
|
||||
Use\ external\ editor=\u5916\u90e8\u306e\u30a8\u30c7\u30a3\u30bf\u3092\u4f7f\u7528\u3059\u308b
|
||||
|
||||
#: Preferences.java:403
|
||||
Check\ for\ updates\ on\ startup=\u8d77\u52d5\u6642\u306b\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6709\u7121\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b\u3002
|
||||
Check\ for\ updates\ on\ startup=\u8d77\u52d5\u6642\u306b\u6700\u65b0\u30d0\u30fc\u30b8\u30e7\u30f3\u306e\u6709\u7121\u3092\u30c1\u30a7\u30c3\u30af\u3059\u308b
|
||||
|
||||
#: Preferences.java:412
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u969b\u306b\u3001\u62e1\u5f35\u5b50\u3092.pde\u304b\u3089.ino\u306b\u5909\u66f4\u3059\u308b\u3002
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=\u30b9\u30b1\u30c3\u30c1\u3092\u4fdd\u5b58\u3059\u308b\u969b\u306b\u3001\u62e1\u5f35\u5b50\u3092.pde\u304b\u3089.ino\u306b\u5909\u66f4\u3059\u308b
|
||||
|
||||
#: Preferences.java:423
|
||||
Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\u30d5\u30a1\u30a4\u30eb\u3092Arduino IDE\u306b\u95a2\u9023\u3065\u3051\u308b\u3002
|
||||
Automatically\ associate\ .ino\ files\ with\ Arduino=.ino\u30d5\u30a1\u30a4\u30eb\u3092Arduino IDE\u306b\u95a2\u9023\u3065\u3051\u308b
|
||||
|
||||
#: Preferences.java:433
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=\u4ee5\u4e0b\u306e\u30d5\u30a1\u30a4\u30eb\u3092\u76f4\u63a5\u7de8\u96c6\u3059\u308c\u3070\u3001\u3088\u308a\u591a\u304f\u306e\u8a2d\u5b9a\u3092\u884c\u3046\u3053\u3068\u304c\u3067\u304d\u307e\u3059\u3002
|
||||
|
@ -1,4 +1,4 @@
|
||||
# German translations for PACKAGE package.
|
||||
# Portuguese (Brazil) translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
|
@ -1,4 +1,4 @@
|
||||
# German translations for PACKAGE package.
|
||||
# Portuguese (Brazil) translations for PACKAGE package.
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
#
|
||||
|
File diff suppressed because it is too large
Load Diff
@ -2,23 +2,23 @@
|
||||
# Copyright (C) 2012 THE PACKAGE'S COPYRIGHT HOLDER
|
||||
# This file is distributed under the same license as the PACKAGE package.
|
||||
# Pop Gheorghe <office@roroid.ro>, 2012.
|
||||
#
|
||||
# Razvan Daniel Ionescu <iardsoft@gmail.com>, 2012.
|
||||
#
|
||||
#
|
||||
!=Project-Id-Version\: PACKAGE VERSION\nReport-Msgid-Bugs-To\: \nPOT-Creation-Date\: 2012-03-29 10\:24-0400\nPO-Revision-Date\: 2012-03-29 10\:24-0400\nLast-Translator\: Pop Gheorghe <>\nLanguage-Team\: Romanian\nLanguage\: de\nMIME-Version\: 1.0\nContent-Type\: text/plain; charset\=UTF-8\nContent-Transfer-Encoding\: 8bit\nPlural-Forms\: nplurals\=2; plural\=(n \!\= 1);\n
|
||||
|
||||
#: Editor.java:366
|
||||
No\ files\ were\ added\ to\ the\ sketch.=Nici un fi\u0219ier nu a fost ad\u0103ugat schi\u021bei.
|
||||
No\ files\ were\ added\ to\ the\ sketch.=Nici un fi\u015fier nu a fost ad\u0103ugat schi\u0163ei.
|
||||
|
||||
#: Editor.java:369 Sketch.java:996
|
||||
One\ file\ added\ to\ the\ sketch.=Un fi\u0219ier a fost ad\u0103ugat schi\u021bei.
|
||||
One\ file\ added\ to\ the\ sketch.=Un fi\u015fier a fost ad\u0103ugat schi\u0163ei.
|
||||
|
||||
#: Editor.java:373
|
||||
#, java-format
|
||||
{0}\ files\ added\ to\ the\ sketch.={0} fi\u0219iere au fost ad\u0103ugate schi\u021bei.
|
||||
{0}\ files\ added\ to\ the\ sketch.={0} fi\u015fiere au fost ad\u0103ugate schi\u0163ei.
|
||||
|
||||
#: Editor.java:484
|
||||
File=Fi\u0219ier
|
||||
File=Fi\u015fier
|
||||
|
||||
#: Editor.java:486 EditorToolbar.java:41
|
||||
New=Nou
|
||||
@ -27,7 +27,7 @@ New=Nou
|
||||
Open...=Deschide...
|
||||
|
||||
#: Editor.java:503
|
||||
Sketchbook=Dosar cu schi\u021be
|
||||
Sketchbook=Dosar cu schi\u0163e
|
||||
|
||||
#: Editor.java:509
|
||||
Examples=Exemple
|
||||
@ -55,34 +55,34 @@ Page\ Setup=Ini\u0163ializare pagin\u0103
|
||||
Print=Tip\u0103rire
|
||||
|
||||
#: Editor.java:576 Preferences.java:279
|
||||
Preferences=Preferin\u021be
|
||||
Preferences=Preferin\u0163e
|
||||
|
||||
#: Editor.java:586 Base.java:782
|
||||
Quit=Ie\u0219ire
|
||||
Quit=Ie\u015fire
|
||||
|
||||
#: Editor.java:600
|
||||
Sketch=Schi\u021b\u0103
|
||||
Sketch=Schi\u0163\u0103
|
||||
|
||||
#: Editor.java:602
|
||||
Verify\ /\ Compile=Verifica / Compileaz\u0103
|
||||
Verify\ /\ Compile=Verific\u0103 / Compileaz\u0103
|
||||
|
||||
#: Editor.java:629
|
||||
Import\ Library...=Import\u0103 bibliotec\u0103
|
||||
|
||||
#: Editor.java:634
|
||||
Show\ Sketch\ Folder=Arata directorul schi\u021bei
|
||||
Show\ Sketch\ Folder=Arat\u0103 directorul schi\u0163ei
|
||||
|
||||
#: Editor.java:643
|
||||
Add\ File...=Adaug\u0103 fi\u0219ier...
|
||||
Add\ File...=Adaug\u0103 fi\u015fier...
|
||||
|
||||
#: Editor.java:656
|
||||
Tools=Instrumente
|
||||
|
||||
#: Editor.java:662 EditorToolbar.java:41 EditorToolbar.java:46
|
||||
Serial\ Monitor=Monitorizare seriala
|
||||
Serial\ Monitor=Monitorizare serial\u0103
|
||||
|
||||
#: Editor.java:682
|
||||
Board=Placa de dezvoltare
|
||||
Board=Plac\u0103 de dezvoltare
|
||||
|
||||
#: Editor.java:690
|
||||
Serial\ Port=Port serial
|
||||
@ -106,7 +106,7 @@ error\ retrieving\ port\ list=eroare la \u00eenc\u0103rcarea listei cu porturile
|
||||
Help=Ajutor
|
||||
|
||||
#: Editor.java:1041
|
||||
Getting\ Started=Primi pa\u0219i
|
||||
Getting\ Started=Primii pa\u015fi
|
||||
|
||||
#: Editor.java:1049
|
||||
Environment=Mediul de dezvoltare
|
||||
@ -115,16 +115,16 @@ Environment=Mediul de dezvoltare
|
||||
Troubleshooting=Depanare
|
||||
|
||||
#: Editor.java:1065
|
||||
Reference=Instruc\u021biuni
|
||||
Reference=Instruc\u0163iuni
|
||||
|
||||
#: Editor.java:1073 Editor.java:2728
|
||||
Find\ in\ Reference=Cauta \u00een instruc\u021biuni
|
||||
Find\ in\ Reference=Caut\u0103 \u00een instruc\u0163iuni
|
||||
|
||||
#: Editor.java:1083
|
||||
Frequently\ Asked\ Questions=\u00centreb\u0103ri \u0219i r\u0103spunsuri
|
||||
Frequently\ Asked\ Questions=\u00centreb\u0103ri \u015fi r\u0103spunsuri
|
||||
|
||||
#: Editor.java:1091
|
||||
Visit\ Arduino.cc=Vizita\u021bi Arduino.cc
|
||||
Visit\ Arduino.cc=Vizita\u0163i Arduino.cc
|
||||
|
||||
#: Editor.java:1094
|
||||
http\://arduino.cc/=http\://arduino.cc/
|
||||
@ -151,34 +151,34 @@ Copy=Copiaz\u0103
|
||||
Copy\ for\ Forum=Copiaz\u0103 pentru forum
|
||||
|
||||
#: Editor.java:1163 Editor.java:2676
|
||||
Copy\ as\ HTML=Copiaz\u0103 ca \u0219i HTML
|
||||
Copy\ as\ HTML=Copiaz\u0103 ca \u015fi HTML
|
||||
|
||||
#: Editor.java:1175 Editor.java:2684
|
||||
Paste=Lipire
|
||||
|
||||
#: Editor.java:1184 Editor.java:2692
|
||||
Select\ All=Selecteaz\u0103 total\u0103
|
||||
Select\ All=Selectare total\u0103
|
||||
|
||||
#: Editor.java:1194 Editor.java:2702
|
||||
Comment/Uncomment=Comentariu/Elimina comentariu
|
||||
Comment/Uncomment=Pune comentariu/Elimin\u0103 comentariu
|
||||
|
||||
#: Editor.java:1202 Editor.java:2710
|
||||
Increase\ Indent=Cre\u015fte spa\u021biere
|
||||
Increase\ Indent=Cre\u015fte spa\u0163iere
|
||||
|
||||
#: Editor.java:1210 Editor.java:2718
|
||||
Decrease\ Indent=Redu spa\u021biere
|
||||
Decrease\ Indent=Redu spa\u0163iere
|
||||
|
||||
#: Editor.java:1220
|
||||
Find...=C\u0103utare...
|
||||
Find...=Caut\u0103...
|
||||
|
||||
#: Editor.java:1235
|
||||
Find\ Next=Urm\u0103torul g\u0103sit
|
||||
Find\ Next=Caut\u0103 urmatorul...
|
||||
|
||||
#: Editor.java:1245
|
||||
Find\ Previous=Precedentul g\u0103sit
|
||||
Find\ Previous=Caut\u0103 precedentul...
|
||||
|
||||
#: Editor.java:1255
|
||||
Use\ Selection\ For\ Find=Folose\u0219te selec\u021bia pentru c\u0103utare
|
||||
Use\ Selection\ For\ Find=Folose\u015fte selec\u0163ia pentru c\u0103utare
|
||||
|
||||
#: Editor.java:1816
|
||||
First\ select\ a\ word\ to\ find\ in\ the\ reference.=Mai \u00eent\u00e2i selecteaz\u0103 un cuv\u00e2nt pentru a fi c\u0103utat.
|
||||
@ -192,30 +192,30 @@ No\ reference\ available\ for\ "{0}"=Nici un rezultat disponibil pentru "{0}"
|
||||
{0}.html={0}.html
|
||||
|
||||
#: Editor.java:1843 Sketch.java:1647
|
||||
Compiling\ sketch...=Compilez schi\u021ba...
|
||||
Compiling\ sketch...=Compilez schi\u0163a...
|
||||
|
||||
#: Editor.java:1864 Editor.java:1881
|
||||
Done\ compiling.=Compilare terminata.
|
||||
Done\ compiling.=Compilare terminat\u0103.
|
||||
|
||||
#: Editor.java:1973
|
||||
#, java-format
|
||||
Save\ changes\ to\ "{0}"?\ \ =Salva\u021bi modific\u0103rile pentru "{0}"?
|
||||
Save\ changes\ to\ "{0}"?\ \ =Salva\u0163i modific\u0103rile pentru "{0}"?
|
||||
|
||||
#: Editor.java:2006
|
||||
<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>Dore\u0219ti s\u0103 salvezi modific\u0103rile aduse acestei schi\u021be<BR> \u00eenainte de a \u00eenchide?</b><p>Dac\u0103 nu salvezi , modific\u0103rile vor fi pierdute.
|
||||
<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>Dore\u015fti s\u0103 salvezi modific\u0103rile aduse acestei schi\u0163e<BR> \u00eenainte de a \u00eenchide?</b><p>Dac\u0103 nu salvezi , modific\u0103rile vor fi pierdute.
|
||||
|
||||
#: Editor.java:2017 Editor.java:2098 Editor.java:2418 Sketch.java:589
|
||||
#: Sketch.java:741 Sketch.java:1046 Preferences.java:78
|
||||
Cancel=Renun\u021b\u0103
|
||||
Cancel=Renun\u0163\u0103
|
||||
|
||||
#: Editor.java:2017
|
||||
Don't\ Save=Nu salva
|
||||
|
||||
#: Editor.java:2089
|
||||
Bad\ file\ selected=Fi\u0219ierul selectat este invalid
|
||||
Bad\ file\ selected=Fi\u015fierul selectat este invalid
|
||||
|
||||
#: Editor.java:2090
|
||||
Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Se pot deschide doar propriile schi\u021be\nsau alte fi\u0219iere cu extensia .ino sau .pde
|
||||
Processing\ can\ only\ open\ its\ own\ sketches\nand\ other\ files\ ending\ in\ .ino\ or\ .pde=Se pot deschide doar propriile schi\u0163e\nsau alte fi\u015fiere cu extensia .ino sau .pde
|
||||
|
||||
#: Editor.java:2098 Editor.java:2418 Sketch.java:589 Sketch.java:741
|
||||
#: Sketch.java:1046 Preferences.java:79
|
||||
@ -223,7 +223,7 @@ OK=OK
|
||||
|
||||
#: Editor.java:2100
|
||||
#, java-format
|
||||
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Fi\u0219ierul "{0}" trebuie sa fie \u00een interiorul\nunui director de schi\u021be numit "{1}".\nCreez directorul, mut fi\u0219ierul \u0219i continui?
|
||||
The\ file\ "{0}"\ needs\ to\ be\ inside\na\ sketch\ folder\ named\ "{1}".\nCreate\ this\ folder,\ move\ the\ file,\ and\ continue?=Fi\u015fierul "{0}" trebuie sa fie \u00een interiorul\nunui director de schi\u0163e numit "{1}".\nCreez directorul, mut fi\u015fierul \u015fi continui?
|
||||
|
||||
#: Editor.java:2109
|
||||
Moving=Deplaseaz\u0103
|
||||
@ -235,16 +235,16 @@ Error=Eroare
|
||||
|
||||
#: Editor.java:2122
|
||||
#, java-format
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Un director cu numele "{0}" exista deja. Nu pot deschide schi\u021ba.
|
||||
A\ folder\ named\ "{0}"\ already\ exists.\ Can't\ open\ sketch.=Un director cu numele "{0}" exist\u0103 deja. Nu pot deschide schi\u0163a.
|
||||
|
||||
#: Editor.java:2132
|
||||
Could\ not\ create\ the\ sketch\ folder.=Nu pot crea directorul pentru schi\u021be
|
||||
Could\ not\ create\ the\ sketch\ folder.=Nu pot crea directorul pentru schi\u0163e
|
||||
|
||||
#: Editor.java:2141
|
||||
Could\ not\ copy\ to\ a\ proper\ location.=Nu am putut copia c\u0103tre loca\u021bia adecvat\u0103.
|
||||
Could\ not\ copy\ to\ a\ proper\ location.=Nu am putut copia c\u0103tre loca\u0163ia adecvat\u0103.
|
||||
|
||||
#: Editor.java:2159
|
||||
Could\ not\ create\ the\ sketch.=Nu am putut crea schi\u021ba.
|
||||
Could\ not\ create\ the\ sketch.=Nu am putut crea schi\u0163a.
|
||||
|
||||
#: Editor.java:2166
|
||||
#, java-format
|
||||
@ -261,19 +261,19 @@ Save\ Canceled.=Salvare anulat\u0103.
|
||||
|
||||
#: Editor.java:2296
|
||||
#, java-format
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Portul serial {0} nu a fost g\u0103sit.\nDore\u0219ti sa utilizezi un alt port serial?
|
||||
Serial\ port\ {0}\ not\ found.\nRetry\ the\ upload\ with\ another\ serial\ port?=Portul serial {0} nu a fost g\u0103sit.\nDore\u015fti s\u0103 utilizezi un alt port serial?
|
||||
|
||||
#: Editor.java:2331
|
||||
Uploading\ to\ I/O\ Board...=Se \u00eencarc\u0103 \u00een placa de dezvoltare...
|
||||
|
||||
#: Editor.java:2348 Editor.java:2384
|
||||
Done\ uploading.=\u00cenc\u0103rcare finalizata.
|
||||
Done\ uploading.=\u00cenc\u0103rcare finalizat\u0103.
|
||||
|
||||
#: Editor.java:2356 Editor.java:2392
|
||||
Upload\ canceled.=\u00cenc\u0103rcare anulat\u0103.
|
||||
|
||||
#: Editor.java:2420
|
||||
Save\ changes\ before\ export?=Salva\u021bi modific\u0103rile \u00eenainte de a exporta?
|
||||
Save\ changes\ before\ export?=Salva\u0163i modific\u0103rile \u00eenainte de a exporta?
|
||||
|
||||
#: Editor.java:2435
|
||||
Export\ canceled,\ changes\ must\ first\ be\ saved.=Exportul a fost anulat, modific\u0103rile trebuiesc \u00eent\u00e2i salvate.
|
||||
@ -288,20 +288,20 @@ Done\ burning\ bootloader.=\u00cenc\u0103rcarea bootloader-ului a fost finalizat
|
||||
Error\ while\ burning\ bootloader.=Eroare \u00een timpul \u00eenc\u0103rc\u0103rii bootloader-ului.
|
||||
|
||||
#: Editor.java:2500
|
||||
Printing...=Tiparesc...
|
||||
Printing...=Tip\u0103resc...
|
||||
|
||||
#: Editor.java:2517
|
||||
Done\ printing.=Tiparire finalizat\u0103.
|
||||
Done\ printing.=Tip\u0103rire finalizat\u0103.
|
||||
|
||||
#: Editor.java:2520
|
||||
Error\ while\ printing.=Eroare \u00een timpul tip\u0103ririi.
|
||||
|
||||
#: Editor.java:2524
|
||||
Printing\ canceled.=Tiparire anulat\u0103.
|
||||
Printing\ canceled.=Tip\u0103rire anulat\u0103.
|
||||
|
||||
#: Editor.java:2572
|
||||
#, java-format
|
||||
Bad\ error\ line\:\ {0}=Linie eronata\: {0}
|
||||
Bad\ error\ line\:\ {0}=Linie eronat\u0103\: {0}
|
||||
|
||||
#: Editor.java:2641
|
||||
Open\ URL=Deschide URL
|
||||
@ -310,7 +310,7 @@ Open\ URL=Deschide URL
|
||||
http\://www.arduino.cc/latest.txt=http\://www.arduino.cc/latest.txt
|
||||
|
||||
#: UpdateCheck.java:103
|
||||
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=O nou\u0103 versiune este disponibil\u0103 pentru Arduino IDE,\ndore\u0219ti s\u0103 vizitezi pagina de desc\u0103rc\u0103ri Arduino?
|
||||
A\ new\ version\ of\ Arduino\ is\ available,\nwould\ you\ like\ to\ visit\ the\ Arduino\ download\ page?=O nou\u0103 versiune este disponibil\u0103 pentru Arduino IDE,\ndore\u015fti s\u0103 vizitezi pagina de desc\u0103rc\u0103ri Arduino?
|
||||
|
||||
#: UpdateCheck.java:108 Preferences.java:76
|
||||
Yes=Da
|
||||
@ -331,10 +331,10 @@ Find\:=Caut\u0103\:
|
||||
Replace\ with\:=\u00cenlocuire cu\:
|
||||
|
||||
#: FindReplace.java:96
|
||||
Ignore\ Case=Ignora majuscule
|
||||
Ignore\ Case=Ignor\u0103 majuscule
|
||||
|
||||
#: FindReplace.java:105
|
||||
Wrap\ Around=Marcheaz\u0103
|
||||
Wrap\ Around=Contiunu\u0103 de la \u00eenceput
|
||||
|
||||
#: FindReplace.java:120 FindReplace.java:131
|
||||
Replace\ All=\u00cenlocuire peste tot
|
||||
@ -343,7 +343,7 @@ Replace\ All=\u00cenlocuire peste tot
|
||||
Replace=\u00cenlocuire
|
||||
|
||||
#: FindReplace.java:122 FindReplace.java:129
|
||||
Replace\ &\ Find=C\u0103utare \u0219i \u00eenlocuire
|
||||
Replace\ &\ Find=C\u0103utare \u015fi \u00eenlocuire
|
||||
|
||||
#: FindReplace.java:123 FindReplace.java:128
|
||||
Previous=Anterior
|
||||
@ -355,10 +355,10 @@ Find=Caut\u0103
|
||||
Send=Trimite
|
||||
|
||||
#: SerialMonitor.java:110
|
||||
Autoscroll=Parcurgere automat\u0103
|
||||
Autoscroll=Derulare automat\u0103
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
No\ line\ ending=F\u0103r\u0103 editarea liniei
|
||||
No\ line\ ending=F\u0103r\u0103 sf\u00e2r\u015fit de linie
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
Newline=Linie nou\u0103
|
||||
@ -367,10 +367,10 @@ Newline=Linie nou\u0103
|
||||
Carriage\ return=Revenire cursor (ENTER)
|
||||
|
||||
#: SerialMonitor.java:112
|
||||
Both\ NL\ &\ CR=NL & CR (linie noua \u0219i enter)
|
||||
Both\ NL\ &\ CR=NL & CR (linie noua \u015fi enter)
|
||||
|
||||
#: SerialMonitor.java:130 SerialMonitor.java:133
|
||||
\ baud=\ vitez\u0103 de transmisie
|
||||
\ baud=\ baud
|
||||
|
||||
#: Serial.java:147
|
||||
#, java-format
|
||||
@ -382,11 +382,11 @@ Error\ opening\ serial\ port\ ''{0}''.=Eroare la deschiderea portului serial ''{
|
||||
|
||||
#: Serial.java:167
|
||||
#, java-format
|
||||
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Nu am g\u0103sit portul serial ''{0}''. Ai f\u0103cut corect selec\u021bia \u00een meniul \nInstrumente > Port serial?
|
||||
Serial\ port\ ''{0}''\ not\ found.\ Did\ you\ select\ the\ right\ one\ from\ the\ Tools\ >\ Serial\ Port\ menu?=Nu am g\u0103sit portul serial ''{0}''. Ai f\u0103cut corect selec\u0163ia \u00een meniul \nInstrumente > Port serial?
|
||||
|
||||
#: Serial.java:424
|
||||
#, java-format
|
||||
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Buferul este prea mic pentru cei {0} bytes specificati ca parametru pentru functia readBytesUntil() luand in considerare si caracterul mentionat la {1}
|
||||
readBytesUntil()\ byte\ buffer\ is\ too\ small\ for\ the\ {0}\ bytes\ up\ to\ and\ including\ char\ {1}=Buffer prea mic pentru cei {0} bytes specifica\u0163i ca parametru pentru func\u0163ia readBytesUntil() lu\u00e2nd \u00een considerare \u015fi caracterul men\u0163ionat la {1}
|
||||
|
||||
#: Serial.java:567
|
||||
#, java-format
|
||||
@ -415,31 +415,31 @@ Auto\ Format\ finished.=Auto formatare terminat\u0103
|
||||
|
||||
#: tools/FixEncoding.java:41 tools/FixEncoding.java:58
|
||||
#: tools/FixEncoding.java:79
|
||||
Fix\ Encoding\ &\ Reload=Corectare codare & reini\u021bializeaz\u0103
|
||||
Fix\ Encoding\ &\ Reload=Corectare codare & reini\u0163ializeaz\u0103
|
||||
|
||||
#: tools/FixEncoding.java:57
|
||||
Discard\ all\ changes\ and\ reload\ sketch?=Anuleaz\u0103 toate modific\u0103rile \u0219i reini\u021bializeaz\u0103 schi\u021ba
|
||||
Discard\ all\ changes\ and\ reload\ sketch?=Anuleaz\u0103 toate modific\u0103rile \u015fi reini\u0163ializeaz\u0103 schi\u0163a
|
||||
|
||||
#: tools/FixEncoding.java:77
|
||||
An\ error\ occurred\ while\ trying\ to\ fix\ the\ file\ encoding.\nDo\ not\ attempt\ to\ save\ this\ sketch\ as\ it\ may\ overwrite\nthe\ old\ version.\ Use\ Open\ to\ re-open\ the\ sketch\ and\ try\ again.\n=A ap\u0103rut o eroare \u00een timpul corect\u0103rii cod\u0103rii fi\u0219ierului.\nNu salva aceasta schi\u021ba deoarece se va suprascrie fi\u0219ierul vechi.\nRedeschide schi\u021ba \u0219i \u00eencearc\u0103 din nou.\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=A ap\u0103rut o eroare \u00een timpul corect\u0103rii cod\u0103rii fi\u015fierului.\nNu salva aceasta schi\u0163a deoarece se va suprascrie fi\u015fierul vechi.\nRedeschide schi\u0163a \u015fi \u00eencearc\u0103 din nou.\n
|
||||
|
||||
#: tools/Archiver.java:48
|
||||
Archive\ Sketch=Arhiveaz\u0103 schi\u021ba
|
||||
Archive\ Sketch=Arhiveaz\u0103 schi\u0163a
|
||||
|
||||
#: tools/Archiver.java:59
|
||||
yyMMdd=yyMMdd
|
||||
|
||||
#: tools/Archiver.java:74
|
||||
Couldn't\ archive\ sketch=Nu am putut arhiva schi\u021ba
|
||||
Couldn't\ archive\ sketch=Nu am putut arhiva schi\u0163a
|
||||
|
||||
#: tools/Archiver.java:75
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arhivarea schi\u021bei a fost anulata deoarece\nschi\u021ba nu a putut fi salvat\u0103.
|
||||
Archiving\ the\ sketch\ has\ been\ canceled\ because\nthe\ sketch\ couldn't\ save\ properly.=Arhivarea schi\u0163ei a fost anulata deoarece\nschi\u0163a nu a putut fi salvat\u0103.
|
||||
|
||||
#: tools/Archiver.java:109
|
||||
Archive\ sketch\ as\:=Arhivez schi\u021ba ca\:
|
||||
Archive\ sketch\ as\:=Arhivez schi\u0163a ca\:
|
||||
|
||||
#: tools/Archiver.java:139
|
||||
Archive\ sketch\ canceled.=Arhivarea schi\u021bei a fost anulat\u0103
|
||||
Archive\ sketch\ canceled.=Arhivarea schi\u0163ei a fost anulat\u0103
|
||||
|
||||
#: SketchCode.java:83
|
||||
#, java-format
|
||||
@ -447,139 +447,139 @@ Error\ while\ loading\ code\ {0}=Eroare la \u00eenc\u0103rcarea codului {0}
|
||||
|
||||
#: SketchCode.java:258
|
||||
#, java-format
|
||||
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" con\u021bine caractere necunoscute. Dac\u0103 acest cod a fost realizat \u00eentr-o versiune mai veche, \u00eencearc\u0103 sa folose\u0219ti Instrumente-> Corectare codare & reini\u021bializeaz\u0103 pentru a modifica schi\u021ba \u0219i a folosi codarea UTF-8. \u00cen caz contrar e nevoie s\u0103 \u0219tergi caracterele necunoscute pentru a \u00eenl\u0103tura acest avertisment.
|
||||
"{0}"\ contains\ unrecognized\ characters.If\ this\ code\ was\ created\ with\ an\ older\ version\ of\ Processing,you\ may\ need\ to\ use\ Tools\ ->\ Fix\ Encoding\ &\ Reload\ to\ updatethe\ sketch\ to\ use\ UTF-8\ encoding.\ If\ not,\ you\ may\ need\ todelete\ the\ bad\ characters\ to\ get\ rid\ of\ this\ warning.="{0}" con\u0163ine caractere necunoscute. Dac\u0103 acest cod a fost realizat \u00eentr-o versiune mai veche, \u00eencearc\u0103 sa folose\u015fti Instrumente-> Corectare codare & reini\u0163ializeaz\u0103 pentru a modifica schi\u0163a \u015fi a folosi codarea UTF-8. \u00cen caz contrar e nevoie s\u0103 \u015ftergi caracterele necunoscute pentru a \u00eenl\u0103tura acest avertisment.
|
||||
|
||||
#: Sketch.java:278 Sketch.java:307 Sketch.java:581 Sketch.java:970
|
||||
Sketch\ is\ Read-Only=Schi\u021ba este doar \u00een citire
|
||||
Sketch\ is\ Read-Only=Schi\u0163a este doar \u00een citire
|
||||
|
||||
#: Sketch.java:279 Sketch.java:308 Sketch.java:582 Sketch.java:971
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Unele fi\u0219iere sunt "doar \u00een citire", va trebui\ns\u0103 salva\u021bi schi\u021bele \u00eentr-o alta loca\u021bie \u0219i\ns\u0103 re\u00eencerca\u021bi.
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ the\ sketch\ in\ another\ location,\nand\ try\ again.=Unele fi\u015fiere sunt "doar \u00een citire", va trebui\ns\u0103 salva\u0163i schi\u0163ele \u00eentr-o alta loca\u0163ie \u015fi\ns\u0103 re\u00eencerca\u0163i.
|
||||
|
||||
#: Sketch.java:286
|
||||
Name\ for\ new\ file\:=Numele noului fi\u0219ier
|
||||
Name\ for\ new\ file\:=Numele noului fi\u015fier
|
||||
|
||||
#: Sketch.java:298
|
||||
Sketch\ is\ Untitled=Schi\u021ba nu are nume
|
||||
Sketch\ is\ Untitled=Schi\u0163a nu are nume
|
||||
|
||||
#: Sketch.java:299
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Ce zici dac\u0103 ai salva \u00eent\u00e2i schi\u021ba \n\u0219i pe urma s\u0103 \u00eencerci s\u0103 o redenume\u0219ti?
|
||||
How\ about\ saving\ the\ sketch\ first\ \nbefore\ trying\ to\ rename\ it?=Ce zici dac\u0103 ai salva \u00eent\u00e2i schi\u0163a \n\u015fi pe urma s\u0103 \u00eencerci s\u0103 o redenume\u015fti?
|
||||
|
||||
#: Sketch.java:359 Sketch.java:366 Sketch.java:377
|
||||
Problem\ with\ rename=Problem\u0103 la redenumire
|
||||
|
||||
#: Sketch.java:360
|
||||
The\ name\ cannot\ start\ with\ a\ period.=Numele nu poate \u00eencepe cu un spa\u021biu
|
||||
The\ name\ cannot\ start\ with\ a\ period.=Numele nu poate \u00eencepe cu un spa\u0163iu
|
||||
|
||||
#: Sketch.java:368
|
||||
#, java-format
|
||||
".{0}"\ is\ not\ a\ valid\ extension.=".{0}" nu este o extensie acceptata.
|
||||
|
||||
#: Sketch.java:378
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Fi\u0219ierul principal nu poate avea o extensie.\n(Ar fi timpul sa urmezi un curs de programare\n"adev\u0103rat")
|
||||
The\ main\ file\ can't\ use\ an\ extension.\n(It\ may\ be\ time\ for\ your\ to\ graduate\ to\ a\n"real"\ programming\ environment)=Fi\u015fierul principal nu poate avea o extensie.\n(Ar fi timpul sa urmezi un curs de programare\n"adev\u0103rat")
|
||||
|
||||
#: Sketch.java:400 Sketch.java:414 Sketch.java:423 Sketch.java:863
|
||||
Nope=Naaa
|
||||
|
||||
#: Sketch.java:402
|
||||
#, java-format
|
||||
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un fi\u0219ier numit "{0}" exista deja \u00een "{1}"
|
||||
A\ file\ named\ "{0}"\ already\ exists\ in\ "{1}"=Un fi\u015fier numit "{0}" exista deja \u00een "{1}"
|
||||
|
||||
#: Sketch.java:415
|
||||
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nu po\u021bi avea un fi\u0219ier .cpp cu acela\u0219i nume ca \u0219i schi\u021ba.
|
||||
You\ can't\ have\ a\ .cpp\ file\ with\ the\ same\ name\ as\ the\ sketch.=Nu po\u0163i avea un fi\u015fier .cpp cu acela\u015fi nume ca \u015fi schi\u0163a.
|
||||
|
||||
#: Sketch.java:425
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nu po\u021bi redenumi schi\u021ba \u00een "{0}"\ndeoarece aceasta schi\u021ba are deja un fi\u0219ier .cpp cu acela\u0219i nume.
|
||||
You\ can't\ rename\ the\ sketch\ to\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nu po\u0163i redenumi schi\u0163a \u00een "{0}"\ndeoarece aceasta schi\u0163a are deja un fi\u015fier .cpp cu acela\u015fi nume.
|
||||
|
||||
#: Sketch.java:459
|
||||
Cannot\ Rename=Nu pot redenumi
|
||||
|
||||
#: Sketch.java:461
|
||||
#, java-format
|
||||
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u00cemi pare r\u0103u, o schi\u021b\u0103 (sau director) cu numele de "{0}" exist\u0103 deja.
|
||||
Sorry,\ a\ sketch\ (or\ folder)\ named\ "{0}"\ already\ exists.=\u00cemi pare r\u0103u, o schi\u0163\u0103 (sau director) cu numele de "{0}" exist\u0103 deja.
|
||||
|
||||
#: Sketch.java:479
|
||||
Could\ not\ rename\ the\ sketch.\ (0)=Nu pot redenumi schi\u021ba. (0)
|
||||
Could\ not\ rename\ the\ sketch.\ (0)=Nu pot redenumi schi\u0163a. (0)
|
||||
|
||||
#: Sketch.java:487 Sketch.java:532
|
||||
#, java-format
|
||||
Could\ not\ rename\ "{0}"\ to\ "{1}"=Nu pot redenumi "{0}" \u00een "{1}"
|
||||
|
||||
#: Sketch.java:500
|
||||
Could\ not\ rename\ the\ sketch.\ (1)=Nu pot redenumi schi\u021ba. (1)
|
||||
Could\ not\ rename\ the\ sketch.\ (1)=Nu pot redenumi schi\u0163a. (1)
|
||||
|
||||
#: Sketch.java:507
|
||||
Could\ not\ rename\ the\ sketch.\ (2)=Nu pot redenumi schi\u021ba. (2)
|
||||
Could\ not\ rename\ the\ sketch.\ (2)=Nu pot redenumi schi\u0163a. (2)
|
||||
|
||||
#: Sketch.java:544
|
||||
createNewFile()\ returned\ false=createNewFile() a returnat fals
|
||||
|
||||
#: Sketch.java:591
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=E\u0219ti sigur c\u0103 dore\u0219ti s\u0103 \u0219tergi aceast\u0103 schi\u021ba?
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ this\ sketch?=E\u015fti sigur c\u0103 dore\u015fti s\u0103 \u015ftergi aceast\u0103 schi\u0163a?
|
||||
|
||||
#: Sketch.java:592
|
||||
#, java-format
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=E\u0219ti sigur ca vrei s\u0103 \u0219tergi "{0}"?
|
||||
Are\ you\ sure\ you\ want\ to\ delete\ "{0}"?=E\u015fti sigur ca vrei s\u0103 \u015ftergi "{0}"?
|
||||
|
||||
#: Sketch.java:595 EditorHeader.java:314
|
||||
Delete=\u0218tergere
|
||||
Delete=\u015etergere
|
||||
|
||||
#: Sketch.java:620
|
||||
Couldn't\ do\ it=Nu am putut s\u0103 o fac
|
||||
|
||||
#: Sketch.java:621
|
||||
#, java-format
|
||||
Could\ not\ delete\ "{0}".=Nu am putut \u0219terge "{0}".
|
||||
Could\ not\ delete\ "{0}".=Nu am putut \u015fterge "{0}".
|
||||
|
||||
#: Sketch.java:651
|
||||
removeCode\:\ internal\ error..\ could\ not\ find\ code=removeCode\: internal error.. Nu am putut g\u0103si codul
|
||||
|
||||
#: Sketch.java:724
|
||||
Sketch\ is\ read-only=Schi\u021ba este doar \u00een citire
|
||||
Sketch\ is\ read-only=Schi\u0163a este doar \u00een citire
|
||||
|
||||
#: Sketch.java:725
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Unele schi\u021be sunt "doar \u00een citire". Va trebui\ns\u0103 salva\u021bi aceste schi\u021be \u00eentr-o loca\u021bie diferit\u0103.
|
||||
Some\ files\ are\ marked\ "read-only",\ so\ you'll\nneed\ to\ re-save\ this\ sketch\ to\ another\ location.=Unele schi\u0163e sunt "doar \u00een citire". Va trebui\ns\u0103 salva\u0163i aceste schi\u0163e \u00eentr-o loca\u0163ie diferit\u0103.
|
||||
|
||||
#: Sketch.java:743
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u00cen Arduino 1.0, extensia implicita pentru fi\u0219iere a fost schimbata\ndin .pde \u00een .ino. Noile schi\u021be (incluz\u00e2nd cele create\ncu "Salveaz\u0103 ca") vor utiliza noua extensie. Extensia\nschi\u021belor existente va fi modificata odat\u0103 cu salvarea acestor fi\u0219iere, dar pute\u021bi\ndezactiva aceasta op\u021biune \u00een fila cu preferin\u021be.\n\nSalveaz\u0103 schi\u021ba \u0219i modific\u0103 extensia?
|
||||
In\ Arduino\ 1.0,\ the\ default\ file\ extension\ has\ changed\nfrom\ .pde\ to\ .ino.\ \ New\ sketches\ (including\ those\ created\nby\ "Save-As"\ will\ use\ the\ new\ extension.\ \ The\ extension\nof\ existing\ sketches\ will\ be\ updated\ on\ save,\ but\ you\ can\ndisable\ this\ in\ the\ Preferences\ dialog.\n\nSave\ sketch\ and\ update\ its\ extension?=\u00cen Arduino 1.0, extensia implicita pentru fi\u015fiere a fost schimbata\ndin .pde \u00een .ino. Noile schi\u0163e (incluz\u00e2nd cele create\ncu "Salveaz\u0103 ca") vor utiliza noua extensie. Extensia\nschi\u0163elor existente va fi modificat\u0103 odat\u0103 cu salvarea acestor fi\u015fiere, dar pute\u0163i\ndezactiva aceasta op\u0163iune din dialogul cu preferin\u0163e.\n\nSalveaz\u0103 schi\u0163a \u015fi modific\u0103 extensia?
|
||||
|
||||
#: Sketch.java:750
|
||||
.pde\ ->\ .ino=.pde -> .ino
|
||||
|
||||
#: Sketch.java:829
|
||||
Save\ sketch\ folder\ as...=Salveaz\u0103 directorul schi\u021bei ca...
|
||||
Save\ sketch\ folder\ as...=Salveaz\u0103 directorul schi\u0163ei ca...
|
||||
|
||||
#: Sketch.java:865
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nu po\u021bi salva schi\u021ba ca "{0}"\ndeoarece schi\u021ba con\u021bine deja un fi\u0219ier .cpp cu acest nume.
|
||||
You\ can't\ save\ the\ sketch\ as\ "{0}"\nbecause\ the\ sketch\ already\ has\ a\ .cpp\ file\ with\ that\ name.=Nu po\u0163i salva schi\u0163a ca "{0}"\ndeoarece schi\u0163a con\u0163ine deja un fi\u015fier .cpp cu acest nume.
|
||||
|
||||
#: Sketch.java:886
|
||||
How\ very\ Borges\ of\ you=Uau, i-ai tras un OZN aici
|
||||
|
||||
#: Sketch.java:887
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nu po\u021bi salva o schi\u0103 \u00eentr-o alt\u0103 schi\u0163\u0103.\nAcest lucru ar putea dura o ve\u015fnicie.
|
||||
You\ cannot\ save\ the\ sketch\ into\ a\ folder\ninside\ itself.\ This\ would\ go\ on\ forever.=Nu po\u0163i salva o schi\u0163\u0103 \u00eentr-o alt\u0103 schi\u0163\u0103.\nAcest lucru ar putea dura o ve\u015fnicie.
|
||||
|
||||
#: Sketch.java:979
|
||||
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecteaz\u0103 o imagine sau un alt fi\u0219ier pentru a-l copia \u00een schi\u021ba
|
||||
Select\ an\ image\ or\ other\ data\ file\ to\ copy\ to\ your\ sketch=Selecteaz\u0103 o imagine sau un alt fi\u015fier pentru a-l copia \u00een schi\u0163\u0103
|
||||
|
||||
#: Sketch.java:1047
|
||||
#, java-format
|
||||
Replace\ the\ existing\ version\ of\ {0}?=\u00cenlocuie\u0219te versiunea curenta pentru {0}?
|
||||
Replace\ the\ existing\ version\ of\ {0}?=\u00cenlocuie\u015fte versiunea curenta pentru {0}?
|
||||
|
||||
#: Sketch.java:1069 Sketch.java:1092
|
||||
Error\ adding\ file=Eroare la ad\u0103ugarea fi\u0219ierului
|
||||
Error\ adding\ file=Eroare la ad\u0103ugarea fi\u015fierului
|
||||
|
||||
#: Sketch.java:1070
|
||||
#, java-format
|
||||
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nu s-a putut \u0219terge fi\u0219ierul ''{0}''.
|
||||
Could\ not\ delete\ the\ existing\ ''{0}''\ file.=Nu s-a putut \u015fterge fi\u015fierul ''{0}''.
|
||||
|
||||
#: Sketch.java:1078
|
||||
You\ can't\ fool\ me=Nu m\u0103 po\u021bi p\u0103c\u0103li
|
||||
You\ can't\ fool\ me=Nu m\u0103 po\u0163i p\u0103c\u0103li
|
||||
|
||||
#: Sketch.java:1079
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Acest fi\u0219ier a fost deja copiat \u00een\nloca\u021bia \u00een care \u00eencerci s\u0103-l adaugi.\nM\u0103 opresc aici.
|
||||
This\ file\ has\ already\ been\ copied\ to\ the\nlocation\ from\ which\ where\ you're\ trying\ to\ add\ it.\nI\ ain't\ not\ doin\ nuthin'.=Acest fi\u015fier a fost deja copiat \u00een\nloca\u0163ia \u00een care \u00eencerci s\u0103-l adaugi.\nM\u0103 opresc aici.
|
||||
|
||||
#: Sketch.java:1093
|
||||
#, java-format
|
||||
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nu am putut sa adaug ''{0}'' la schi\u021b\u0103.
|
||||
Could\ not\ add\ ''{0}''\ to\ the\ sketch.=Nu am putut sa adaug ''{0}'' la schi\u0163\u0103.
|
||||
|
||||
#: Sketch.java:1393 Sketch.java:1424
|
||||
Build\ folder\ disappeared\ or\ could\ not\ be\ written=Directorul 'build' a disp\u0103rut sau nu poate fi scris
|
||||
@ -589,7 +589,7 @@ Could\ not\ find\ main\ class=Nu am g\u0103sit clasa 'main'
|
||||
|
||||
#: Sketch.java:1433
|
||||
#, java-format
|
||||
Uncaught\ exception\ type\:\ {0}=Excep\u021bie necunoscut\u0103\: {0}
|
||||
Uncaught\ exception\ type\:\ {0}=Excep\u0163ie necunoscut\u0103\: {0}
|
||||
|
||||
#: Sketch.java:1465
|
||||
#, java-format
|
||||
@ -600,31 +600,31 @@ Uploading...=\u00cenc\u0103rcare...
|
||||
|
||||
#: Sketch.java:1684
|
||||
#, java-format
|
||||
Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Dimensiunea schi\u021bei\: {0} bytes (din maxim {1} bytes)
|
||||
Binary\ sketch\ size\:\ {0}\ bytes\ (of\ a\ {1}\ byte\ maximum)=Dimensiunea schi\u0163ei\: {0} bytes (din maxim {1} bytes)
|
||||
|
||||
#: Sketch.java:1689
|
||||
Couldn't\ determine\ program\ size\:\ {0}=Nu am putut determina dimensiunea programului\: {0}
|
||||
|
||||
#: Sketch.java:1694
|
||||
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Schi\u021ba este prea mare; vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#size pentru ponturi \u00een reducerea acesteia.
|
||||
Sketch\ too\ big;\ see\ http\://www.arduino.cc/en/Guide/Troubleshooting\#size\ for\ tips\ on\ reducing\ it.=Schi\u0163a este prea mare; vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#size pentru ponturi \u00een reducerea acesteia.
|
||||
|
||||
#: Sketch.java:1754
|
||||
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Lipsa */ de la sf\u00e2r\u0219itul unui /* comentariu */
|
||||
Missing\ the\ */\ from\ the\ end\ of\ a\ /*\ comment\ */=Lipsa */ de la sf\u00e2r\u015fitul unui /* comentariu */
|
||||
|
||||
#: Sketch.java:1796
|
||||
Sketch\ Disappeared=Schi\u021ba a disp\u0103rut
|
||||
Sketch\ Disappeared=Schi\u0163a a disp\u0103rut
|
||||
|
||||
#: Sketch.java:1797
|
||||
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Directorul schi\u021bei a disp\u0103rut.\n Voi \u00eencerca s\u0103 salvez din nou \u00een aceia\u0219i loca\u021bie,\ndar se vor pierde orice alte informa\u021bii, mai pu\u021bin codul.
|
||||
The\ sketch\ folder\ has\ disappeared.\n\ Will\ attempt\ to\ re-save\ in\ the\ same\ location,\nbut\ anything\ besides\ the\ code\ will\ be\ lost.=Directorul schi\u0163ei a disp\u0103rut.\n Voi \u00eencerca s\u0103 salvez din nou \u00een aceia\u015fi loca\u0163ie,\ndar se vor pierde orice alte informa\u0163ii, mai pu\u0163in codul.
|
||||
|
||||
#: Sketch.java:1810
|
||||
Could\ not\ re-save\ sketch=Nu am putut re-salva schi\u021ba.
|
||||
Could\ not\ re-save\ sketch=Nu am putut re-salva schi\u0163a.
|
||||
|
||||
#: Sketch.java:1811
|
||||
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Nu am putut re-salva schi\u021ba. Pentru a evita problemele,\n\u00ee\u021bi recomand sa faci o copiere a codului \u00eentr-un alt editor de text.
|
||||
Could\ not\ properly\ re-save\ the\ sketch.\ You\ may\ be\ in\ trouble\ at\ this\ point,\nand\ it\ might\ be\ time\ to\ copy\ and\ paste\ your\ code\ to\ another\ text\ editor.=Nu am putut re-salva schi\u0163a. Pentru a evita problemele,\n\u00ee\u0163i recomand sa faci o copiere a codului \u00eentr-un alt editor de text.
|
||||
|
||||
#: Sketch.java:2060
|
||||
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=A fost necesar s\u0103 modific numele schi\u021bei. Numele unei schi\u021be poate con\u021bine\ndoar caractere ASCII \u0219i numere (dar nu poate \u00eencepe cu un num\u0103r).\nDe asemenea nu poate avea mai mult de 64 caractere.
|
||||
The\ sketch\ name\ had\ to\ be\ modified.\ Sketch\ names\ can\ only\ consist\nof\ ASCII\ characters\ and\ numbers\ (but\ cannot\ start\ with\ a\ number).\nThey\ should\ also\ be\ less\ less\ than\ 64\ characters\ long.=A fost necesar s\u0103 modific numele schi\u0163ei. Numele unei schi\u0163e poate con\u0163ine\ndoar caractere ASCII \u015fi numere (dar nu poate \u00eencepe cu un num\u0103r).\nDe asemenea nu poate avea mai mult de 64 caractere.
|
||||
|
||||
#: debug/Uploader.java:52
|
||||
https\://developer.berlios.de/bugs/?group_id\=3590=https\://developer.berlios.de/bugs/?group_id\=3590
|
||||
@ -641,7 +641,7 @@ the\ selected\ serial\ port\ {0}\ does\ not\ exist\ or\ your\ board\ is\ not\ co
|
||||
Device\ is\ not\ responding,\ check\ the\ right\ serial\ port\ is\ selected\ or\ RESET\ the\ board\ right\ before\ exporting=Dispozitivul nu r\u0103spunde, verific\u0103 dac\u0103 ai selectat portul serial corect sau apas\u0103 RESET\u00eenainte de a realiza exportul
|
||||
|
||||
#: debug/Uploader.java:209
|
||||
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleme la \u00eenc\u0103rcarea aplica\u021biei. Vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#upload pentru sugestii.
|
||||
Problem\ uploading\ to\ board.\ \ See\ http\://www.arduino.cc/en/Guide/Troubleshooting\#upload\ for\ suggestions.=Probleme la \u00eenc\u0103rcarea aplica\u0163iei. Vezi http\://www.arduino.cc/en/Guide/Troubleshooting\#upload pentru sugestii.
|
||||
|
||||
#: debug/Uploader.java:213
|
||||
Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the\ Tools\ >\ Board\ menu?=Microcontrolerul g\u0103sit nu este cel corect. Ai selectat placa de dezvoltare corect\u0103 din meniul Instrumente > Plac\u0103 de dezvoltare?
|
||||
@ -650,7 +650,7 @@ Wrong\ microcontroller\ found.\ \ Did\ you\ select\ the\ right\ board\ from\ the
|
||||
http\://code.google.com/p/arduino/issues/list=http\://code.google.com/p/arduino/issues/list
|
||||
|
||||
#: debug/Compiler.java:79
|
||||
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nu este selectat\u0103 nici o plac\u0103 de dezvoltare; te rog alege una din meniul Instrumente>Plac\u0103 de dezvoltare
|
||||
No\ board\ selected;\ please\ choose\ a\ board\ from\ the\ Tools\ >\ Board\ menu.=Nu este selectat\u0103 nici o plac\u0103 de dezvoltare; te rog alege una din meniul Instrumente > Plac\u0103 de dezvoltare
|
||||
|
||||
#: debug/Compiler.java:422
|
||||
#, java-format
|
||||
@ -663,13 +663,13 @@ Error\ compiling.=Eroare de compilare
|
||||
Please\ import\ the\ SPI\ library\ from\ the\ Sketch\ >\ Import\ Library\ menu.=Te rog importa biblioteca SPI din meniul Schi\u0163e > Import\u0103 bibliotec\u0103.
|
||||
|
||||
#: debug/Compiler.java:466
|
||||
\nAs\ of\ Arduino\ 0019,\ the\ Ethernet\ library\ depends\ on\ the\ SPI\ library.\nYou\ appear\ to\ be\ using\ it\ or\ another\ library\ that\ depends\ on\ the\ SPI\ library.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 0019, biblioteca Ethernet depinde de biblioteca SPI.\nSe pare ca mai folosi\u021bi o bibliotec\u0103 care depinde de biblioteca SPI.\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\u00cencep\u00e2nd cu versiunea Arduino 0019, biblioteca Ethernet depinde de biblioteca SPI.\nSe pare ca mai folosi\u0163i o bibliotec\u0103 care depinde de biblioteca SPI.\n\n
|
||||
|
||||
#: debug/Compiler.java:471
|
||||
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Nu mai pute\u021bi folosi cuv\u00e2ntul cheie 'BYTE'.
|
||||
The\ 'BYTE'\ keyword\ is\ no\ longer\ supported.=Nu mai pute\u0163i folosi cuv\u00e2ntul cheie 'BYTE'.
|
||||
|
||||
#: debug/Compiler.java:472
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0 cuv\u00e2ntul cheie 'BYTE' nu mai poate fi folosit.\nCa alternativ\u0103 pute\u021bi folosi Serial.write().\n\n
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ 'BYTE'\ keyword\ is\ no\ longer\ supported.\nPlease\ use\ Serial.write()\ instead.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0 cuv\u00e2ntul cheie 'BYTE' nu mai poate fi folosit.\nCa alternativ\u0103 pute\u0163i folosi Serial.write().\n\n
|
||||
|
||||
#: debug/Compiler.java:477
|
||||
The\ Server\ class\ has\ been\ renamed\ EthernetServer.=Clasa Server a fost redenumit\u0103 \u00een EthernetServer.
|
||||
@ -693,84 +693,84 @@ The\ Udp\ class\ has\ been\ renamed\ EthernetUdp.=Clasa Udp a fost redenumit\u01
|
||||
Wire.send()\ has\ been\ renamed\ Wire.write().=Wire.send() a fost redenumit \u00een Wire.write().
|
||||
|
||||
#: debug/Compiler.java:496
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, func\u021bia Wire.send() a fost redenumit\u0103 \u00een Wire.write() pentru a p\u0103stra compatibilitatea cu alte librarii.\n\n
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.send()\ function\ was\ renamed\ to\ Wire.write()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, func\u0163ia Wire.send() a fost redenumit\u0103 \u00een Wire.write() pentru a p\u0103stra compatibilitatea cu alte librarii.\n\n
|
||||
|
||||
#: debug/Compiler.java:501
|
||||
Wire.receive()\ has\ been\ renamed\ Wire.read().=Wire.receive() a fost redenumit in Wire.read().
|
||||
|
||||
#: debug/Compiler.java:502
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, func\u021bia Wire.receive() a fost redenumit\u0103 \u00een Wire.read() pentru a p\u0103stra compatibilitatea cu alte biblioteci.\n\n
|
||||
\nAs\ of\ Arduino\ 1.0,\ the\ Wire.receive()\ function\ was\ renamed\ to\ Wire.read()\ for\ consistency\ with\ other\ libraries.\n\n=\n\u00cencep\u00e2nd cu versiunea Arduino 1.0, func\u0163ia Wire.receive() a fost redenumit\u0103 \u00een Wire.read() pentru a p\u0103stra compatibilitatea cu alte biblioteci.\n\n
|
||||
|
||||
#: EditorConsole.java:152
|
||||
Console\ Error=Consola de erori
|
||||
|
||||
#: EditorConsole.java:153
|
||||
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=O problema a ap\u0103rut \u00een timp ce \u00eencercam sa deschid\nfi\u0219ierul folosit pentru stocarea datelor din consol\u0103.
|
||||
A\ problem\ occurred\ while\ trying\ to\ open\ the\nfiles\ used\ to\ store\ the\ console\ output.=O problema a ap\u0103rut \u00een timp ce \u00eencercam sa deschid\nfi\u015fierul folosit pentru stocarea datelor din consol\u0103.
|
||||
|
||||
#: Base.java:184
|
||||
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Eroare non-fatala \u00een timpul ini\u021bializ\u0103rii interfe\u021bei cu utilizatorul
|
||||
Non-fatal\ error\ while\ setting\ the\ Look\ &\ Feel.=Eroare non-fatala \u00een timpul ini\u0163ializ\u0103rii interfe\u0163ei cu utilizatorul
|
||||
|
||||
#: Base.java:185
|
||||
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Mesajul de eroare ar trebui s\u0103 apar\u0103, totu\u0219i Arduino ar trebuii s\u0103 func\u021bioneze f\u0103r\u0103 probleme
|
||||
The\ error\ message\ follows,\ however\ Arduino\ should\ run\ fine.=Mesajul de eroare ar trebui s\u0103 apar\u0103, totu\u015fi Arduino ar trebui s\u0103 func\u0163ioneze f\u0103r\u0103 probleme
|
||||
|
||||
#: Base.java:220
|
||||
Problem\ Setting\ the\ Platform=Probleme la ini\u021bializarea platformei de dezvoltare
|
||||
Problem\ Setting\ the\ Platform=Probleme la ini\u0163ializarea platformei de dezvoltare
|
||||
|
||||
#: Base.java:221
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=O eroare necunoscuta \u00een timp ce se \u00eencarca\ncodul specific pentru sistemul dumneavoastr\u0103 de operare.
|
||||
An\ unknown\ error\ occurred\ while\ trying\ to\ load\nplatform-specific\ code\ for\ your\ machine.=O eroare necunoscut\u0103 \u00een timp ce se \u00eencarca\ncodul specific pentru sistemul t\u0103u de operare.
|
||||
|
||||
#: Base.java:232
|
||||
Please\ install\ JDK\ 1.5\ or\ later=Te rog instaleaz\u0103 JDK 1.5 sau mai recent.
|
||||
|
||||
#: Base.java:233
|
||||
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Nu este suficient JRE (Java Runtime Enviroment)\npentru a rula Arduino IDE. Te rog instaleaz\u0103 JDK 1.5 sau mai recent.\nMai multe informa\u021bii se pot g\u0103si \u00een zona de referin\u021be.
|
||||
Arduino\ requires\ a\ full\ JDK\ (not\ just\ a\ JRE)\nto\ run.\ Please\ install\ JDK\ 1.5\ or\ later.\nMore\ information\ can\ be\ found\ in\ the\ reference.=Nu este suficient JRE (Java Runtime Enviroment)\npentru a rula Arduino IDE. Te rog instaleaz\u0103 JDK 1.5 sau mai recent.\nMai multe informa\u0163ii se pot g\u0103si \u00een zona de referin\u0163e.
|
||||
|
||||
#: Base.java:257
|
||||
Sketchbook\ folder\ disappeared=Dosarul cu schi\u021be a disp\u0103rut
|
||||
Sketchbook\ folder\ disappeared=Dosarul cu schi\u0163e a disp\u0103rut
|
||||
|
||||
#: Base.java:258
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Dosarul cu schi\u021be nu mai exista.\nArduino v-a comuta pe loca\u021bia implicita a directorului\nde schi\u021be, \u0219i dac\u0103 e necesar v-a crea un nou dosar cu schi\u021be.\n Arduino nu va mai vorbi despre el\nla persoana a trei-a.
|
||||
The\ sketchbook\ folder\ no\ longer\ exists.\nArduino\ will\ switch\ to\ the\ default\ sketchbook\nlocation,\ and\ create\ a\ new\ sketchbook\ folder\ if\nnecessary.\ Arduino\ will\ then\ stop\ talking\ about\nhimself\ in\ the\ third\ person.=Dosarul cu schi\u0163e nu mai exist\u0103.\nArduino va comuta pe loca\u0163ia implicit\u0103 a directorului\nde schi\u0163e, \u015fi dac\u0103 e necesar va crea un nou dosar cu schi\u0163e.\n Arduino nu va mai vorbi despre el\nla persoana a treia.
|
||||
|
||||
#: Base.java:532
|
||||
Time\ for\ a\ Break=E timpul pentru o pauz\u0103
|
||||
|
||||
#: Base.java:533
|
||||
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Ai atins limita la autodenumire a schi\u021belor noi\npentru ziua de azi. Nu crezi ca ar fi mai bine faci o plimbare dec\u00e2t s\u0103 continui?
|
||||
You've\ reached\ the\ limit\ for\ auto\ naming\ of\ new\ sketches\nfor\ the\ day.\ How\ about\ going\ for\ a\ walk\ instead?=Ai atins limita la autodenumire a schi\u0163elor noi\npentru ziua de azi. Nu crezi ca ar fi mai bine faci o plimbare dec\u00e2t s\u0103 continui?
|
||||
|
||||
#: Base.java:537
|
||||
Sunshine=R\u0103s\u0103ritul
|
||||
|
||||
#: Base.java:538
|
||||
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Pe bune, e timpul sa ie\u0219i la aer.
|
||||
No\ really,\ time\ for\ some\ fresh\ air\ for\ you.=Pe bune, e timpul sa ie\u015fi la aer.
|
||||
|
||||
#: Base.java:633
|
||||
Open\ an\ Arduino\ sketch...=Deschide o nou\u0103 schi\u021ba Arduino...
|
||||
Open\ an\ Arduino\ sketch...=Deschide o nou\u0103 schi\u0163a Arduino...
|
||||
|
||||
#: Base.java:772
|
||||
<html>\ <head>\ <style\ type\="text/css">b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }</style>\ </head><b>Are\ you\ sure\ you\ want\ to\ Quit?</b><p>Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=<html> <head> <style type\="text/css">b { font\: 13pt "Lucida Grande" }p { font\: 11pt "Lucida Grande"; margin-top\: 8px }</style> </head><b>Sunte\u021bi sigur c\u0103 dori\u021bi s\u0103 p\u0103r\u0103si\u021bi aplica\u021bia?</b><p>\u00cenchiz\u00e2nd ultima schi\u021ba se va \u00eenchide \u0219i Arduino IDE.
|
||||
<html>\ <head>\ <style\ type\="text/css">b\ {\ font\:\ 13pt\ "Lucida\ Grande"\ }p\ {\ font\:\ 11pt\ "Lucida\ Grande";\ margin-top\:\ 8px\ }</style>\ </head><b>Are\ you\ sure\ you\ want\ to\ Quit?</b><p>Closing\ the\ last\ open\ sketch\ will\ quit\ Arduino.=<html> <head> <style type\="text/css">b { font\: 13pt "Lucida Grande" }p { font\: 11pt "Lucida Grande"; margin-top\: 8px }</style> </head><b>Sunte\u0163i sigur c\u0103 dori\u0163i s\u0103 p\u0103r\u0103si\u0163i aplica\u0163ia?</b><p>\u00cenchiz\u00e2nd ultima schi\u0163a se va \u00eenchide \u015fi Arduino IDE.
|
||||
|
||||
#: Base.java:970
|
||||
Contributed=Contribu\u021bie
|
||||
Contributed=Contribu\u0163ie
|
||||
|
||||
#: Base.java:1095
|
||||
Sketch\ Does\ Not\ Exist=Schi\u021ba nu exist\u0103
|
||||
Sketch\ Does\ Not\ Exist=Schi\u0163a nu exist\u0103
|
||||
|
||||
#: Base.java:1096
|
||||
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Schi\u021ba selectata nu mai exist\u0103.\nS-ar putea s\u0103 fie nevoie sa reporne\u0219ti programul\npentru a actualiza meniul dosarului de schi\u021be.
|
||||
The\ selected\ sketch\ no\ longer\ exists.\nYou\ may\ need\ to\ restart\ Arduino\ to\ update\nthe\ sketchbook\ menu.=Schi\u0163a selectata nu mai exist\u0103.\nS-ar putea s\u0103 fie nevoie sa reporne\u015fti programul\npentru a actualiza meniul dosarului de schi\u0163e.
|
||||
|
||||
#: Base.java:1125
|
||||
#, java-format
|
||||
The\ sketch\ "{0}"\ cannot\ be\ used.\nSketch\ names\ must\ contain\ only\ basic\ letters\ and\ numbers\n(ASCII-only\ with\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number).\nTo\ get\ rid\ of\ this\ message,\ remove\ the\ sketch\ from\n{1}=Schita "{0}" nu poate fi folosita.\nNumele schi\u021bei trebuie s\u0103 con\u021bin\u0103 doar litere \u0219i numere\n(ASCII-f\u0103r\u0103 spa\u021bii, \u0219i numele nu poate \u00eencepe cu un num\u0103r).\nPentru a \u00eenl\u0103tura acest mesaj, elimina\u021bi schi\u021ba din\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}=Schita "{0}" nu poate fi folosita.\nNumele schi\u0163ei trebuie s\u0103 con\u0163in\u0103 doar litere \u015fi numere\n(ASCII-f\u0103r\u0103 spa\u0163ii, \u015fi numele nu poate \u00eencepe cu un num\u0103r).\nPentru a \u00eenl\u0103tura acest mesaj, elimina\u0163i schi\u0163a din\n{1}
|
||||
|
||||
#: Base.java:1132
|
||||
Ignoring\ sketch\ with\ bad\ name=Se ignora schi\u021ba cu nume gre\u0219it
|
||||
Ignoring\ sketch\ with\ bad\ name=Se ignor\u0103 schi\u0163a cu nume gre\u015fit
|
||||
|
||||
#: Base.java:1202
|
||||
#, java-format
|
||||
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Biblioteca "{0}" nu poate fi folosit\u0103.\nNumele bibliotecii trebuie s\u0103 con\u021bin\u0103 doar litere \u0219i numere.\n(ASCII-f\u0103r\u0103 spatii, \u0219i numele nu poate \u00eencepe cu un num\u0103r)
|
||||
The\ library\ "{0}"\ cannot\ be\ used.\nLibrary\ names\ must\ contain\ only\ basic\ letters\ and\ numbers.\n(ASCII\ only\ and\ no\ spaces,\ and\ it\ cannot\ start\ with\ a\ number)=Biblioteca "{0}" nu poate fi folosit\u0103.\nNumele bibliotecii trebuie s\u0103 con\u0163in\u0103 doar litere \u015fi numere.\n(ASCII-f\u0103r\u0103 spatii, \u015fi numele nu poate \u00eencepe cu un num\u0103r)
|
||||
|
||||
#: Base.java:1207
|
||||
Ignoring\ bad\ library\ name=Se ignora biblioteca cu numele gre\u0219it
|
||||
Ignoring\ bad\ library\ name=Se ignor\u0103 biblioteca cu numele gre\u015fit
|
||||
|
||||
#: Base.java:1432
|
||||
Problem\ getting\ data\ folder=Problema la preluarea directorului de date
|
||||
@ -782,16 +782,16 @@ Error\ getting\ the\ Arduino\ data\ folder.=Eroare la preluarea directorului cu
|
||||
Settings\ issues=Probleme la set\u0103ri
|
||||
|
||||
#: Base.java:1441
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care s\u0103-\u0219i salveze set\u0103rile.
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ settings.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care s\u0103-\u015fi salveze set\u0103rile.
|
||||
|
||||
#: Base.java:1602
|
||||
You\ forgot\ your\ sketchbook=Ai uitat dosarul cu schi\u021be
|
||||
You\ forgot\ your\ sketchbook=Ai uitat dosarul cu schi\u0163e
|
||||
|
||||
#: Base.java:1603
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care sa salveze dosarul cu schi\u021be.
|
||||
Arduino\ cannot\ run\ because\ it\ could\ not\ncreate\ a\ folder\ to\ store\ your\ sketchbook.=Arduino nu a putut porni deoarece\nnu poate crea un director \u00een care sa salveze dosarul cu schi\u0163e.
|
||||
|
||||
#: Base.java:1623
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecteaz\u0103 (sau creeaz\u0103 un nou) director pentru schi\u021be...
|
||||
Select\ (or\ create\ new)\ folder\ for\ sketches...=Selecteaz\u0103 (sau creeaz\u0103 un nou) director pentru schi\u0163e...
|
||||
|
||||
#: Base.java:1647
|
||||
Problem\ Opening\ URL=Problema in deschiderea URL
|
||||
@ -808,10 +808,10 @@ Problem\ Opening\ Folder=Problema la deschiderea directorului
|
||||
Could\ not\ open\ the\ folder\n{0}=Nu se poate deschide directorul\n{0}
|
||||
|
||||
#: Base.java:1785
|
||||
Guide_MacOSX.html=Ghid_MacOSX.html
|
||||
Guide_MacOSX.html=Guide_MacOSX.html
|
||||
|
||||
#: Base.java:1787
|
||||
Guide_Windows.html=Ghid_Windows.html
|
||||
Guide_Windows.html=Guide_Windows.html
|
||||
|
||||
#: Base.java:1789
|
||||
http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playground/Learning/Linux
|
||||
@ -820,16 +820,16 @@ http\://www.arduino.cc/playground/Learning/Linux=http\://www.arduino.cc/playgrou
|
||||
index.html=index.html
|
||||
|
||||
#: Base.java:1799
|
||||
Guide_Environment.html=Ghid_mediu_de_programare.html
|
||||
Guide_Environment.html=Guide_Environment.html
|
||||
|
||||
#: Base.java:1804
|
||||
environment=mediu de programare
|
||||
|
||||
#: Base.java:1804
|
||||
platforms.html=platforme.html
|
||||
platforms.html=platforms.html
|
||||
|
||||
#: Base.java:1809
|
||||
Guide_Troubleshooting.html=Ghid_depanare.html
|
||||
Guide_Troubleshooting.html=Guide_Troubleshooting.html
|
||||
|
||||
#: Base.java:1814
|
||||
FAQ.html=FAQ.html
|
||||
@ -850,7 +850,7 @@ Could\ not\ replace\ {0}=Nu se poate \u00eenlocui {0}
|
||||
|
||||
#: Base.java:2247 Base.java:2270
|
||||
#, java-format
|
||||
Could\ not\ delete\ {0}=Nu se poate \u0219terge {0}
|
||||
Could\ not\ delete\ {0}=Nu se poate \u015fterge {0}
|
||||
|
||||
#: EditorHeader.java:292
|
||||
New\ Tab=Fila nou\u0103
|
||||
@ -880,10 +880,10 @@ Open\ in\ Another\ Window=Deschide \u00eentr-o nou\u0103 fereastr\u0103
|
||||
No\ launcher\ available=Nu este disponibil nici un lansator
|
||||
|
||||
#: Platform.java:168
|
||||
Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platform\u0103 nespecificat\u0103, lansator indisponibil.\nPentru a permite deschiderea URL-urilor sau a directoarelor, adauga\u021bi urm\u0103toarea linie \n"launcher\=/path/to/app" \u00een fi\u0219ierul preferences.txt
|
||||
Unspecified\ platform,\ no\ launcher\ available.\nTo\ enable\ opening\ URLs\ or\ folders,\ add\ a\ \n"launcher\=/path/to/app"\ line\ to\ preferences.txt=Platform\u0103 nespecificat\u0103, lansator indisponibil.\nPentru a permite deschiderea URL-urilor sau a directoarelor, adauga\u0163i urm\u0103toarea linie \n"launcher\=/calea/c\u0103tre/aplica\u0163ie" \u00een fi\u015fierul preferences.txt
|
||||
|
||||
#: Theme.java:52
|
||||
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nu pot citi set\u0103rile culorilor pentru tema.\nEste necesara reinstalarea aplica\u021biei.
|
||||
Could\ not\ read\ color\ theme\ settings.\nYou'll\ need\ to\ reinstall\ Processing.=Nu pot citi set\u0103rile culorilor pentru tema.\nEste necesar\u0103 reinstalarea aplica\u0163iei.
|
||||
|
||||
#: Preferences.java:80
|
||||
Browse=R\u0103sfoire
|
||||
@ -898,64 +898,64 @@ Browse=R\u0103sfoire
|
||||
!Aragonese=
|
||||
|
||||
#: Preferences.java:86
|
||||
!Catalan=
|
||||
Catalan=Catalan\u0103
|
||||
|
||||
#: Preferences.java:87
|
||||
!Chinese\ Simplified=
|
||||
Chinese\ Simplified=Chinez\u0103 simplificat\u0103
|
||||
|
||||
#: Preferences.java:88
|
||||
!Chinese\ Traditional=
|
||||
|
||||
#: Preferences.java:89
|
||||
!Danish=
|
||||
Danish=Danez\u0103
|
||||
|
||||
#: Preferences.java:90
|
||||
!Dutch=
|
||||
Dutch=Olandez\u0103
|
||||
|
||||
#: Preferences.java:91
|
||||
!English=
|
||||
English=Englez\u0103
|
||||
|
||||
#: Preferences.java:92
|
||||
!Estonian=
|
||||
|
||||
#: Preferences.java:93
|
||||
!French=
|
||||
French=Francez\u0103
|
||||
|
||||
#: Preferences.java:94
|
||||
!Filipino=
|
||||
Filipino=Filipinez\u0103
|
||||
|
||||
#: Preferences.java:95
|
||||
!Galician=
|
||||
Galician=Galez\u0103
|
||||
|
||||
#: Preferences.java:96
|
||||
!German=
|
||||
German=German\u0103
|
||||
|
||||
#: Preferences.java:97
|
||||
!Greek=
|
||||
Greek=Greac\u0103
|
||||
|
||||
#: Preferences.java:98
|
||||
!Hungarian=
|
||||
Hungarian=Maghiar\u0103
|
||||
|
||||
#: Preferences.java:99
|
||||
!Indonesian=
|
||||
|
||||
#: Preferences.java:100
|
||||
!Italian=
|
||||
Italian=Italian\u0103
|
||||
|
||||
#: Preferences.java:101
|
||||
!Japanese=
|
||||
Japanese=Japonez\u0103
|
||||
|
||||
#: Preferences.java:102
|
||||
!Korean=
|
||||
|
||||
#: Preferences.java:103
|
||||
!Latvian=
|
||||
Latvian=Leton\u0103
|
||||
|
||||
#: Preferences.java:104
|
||||
!Lithuaninan=
|
||||
|
||||
#: Preferences.java:105
|
||||
!Persian=
|
||||
Persian=Persan\u0103
|
||||
|
||||
#: Preferences.java:106
|
||||
!Polish=
|
||||
@ -964,73 +964,73 @@ Browse=R\u0103sfoire
|
||||
!Portuguese=
|
||||
|
||||
#: Preferences.java:109
|
||||
!Romanian=
|
||||
Romanian=Rom\u00e2n\u0103
|
||||
|
||||
#: Preferences.java:110
|
||||
!Russian=
|
||||
|
||||
#: Preferences.java:111
|
||||
!Spanish=
|
||||
Spanish=Spaniol\u0103
|
||||
|
||||
#: Preferences.java:210
|
||||
Could\ not\ read\ default\ settings.\nYou'll\ need\ to\ reinstall\ Arduino.=Nu s-a putut citi set\u0103rile implicite.\nVa trebui s\u0103 reinstalezi Arduino IDE.
|
||||
|
||||
#: Preferences.java:242
|
||||
#, java-format
|
||||
Could\ not\ read\ preferences\ from\ {0}=Nu se pot citi preferin\u021bele din {0}
|
||||
Could\ not\ read\ preferences\ from\ {0}=Nu se pot citi preferin\u0163ele din {0}
|
||||
|
||||
#: Preferences.java:261
|
||||
Error\ reading\ preferences=Eroare la citirea preferin\u021belor
|
||||
Error\ reading\ preferences=Eroare la citirea preferin\u0163elor
|
||||
|
||||
#: Preferences.java:263
|
||||
#, java-format
|
||||
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Eroare la citirea fi\u0219ierului cu preferin\u021be. Te rog \u0219terge (sau mut\u0103) acest fi\u0219ier\n{0} \u0219i reporne\u0219te Arduino IDE.
|
||||
Error\ reading\ the\ preferences\ file.\ Please\ delete\ (or\ move)\n{0}\ and\ restart\ Arduino.=Eroare la citirea fi\u015fierului cu preferin\u0163e. Te rog \u015fterge (sau mut\u0103) acest fi\u015fier\n{0} \u015fi reporne\u015fte Arduino IDE.
|
||||
|
||||
#: Preferences.java:299
|
||||
Sketchbook\ location\:=Loca\u021bia dosarului cu schi\u021be\:
|
||||
Sketchbook\ location\:=Loca\u0163ia dosarului cu schi\u0163e\:
|
||||
|
||||
#: Preferences.java:314
|
||||
Select\ new\ sketchbook\ location=Selecteaz\u0103 noua loca\u021bie pentru dosarul cu schi\u021be
|
||||
Select\ new\ sketchbook\ location=Selecteaz\u0103 noua loca\u0163ie pentru dosarul cu schi\u0163e
|
||||
|
||||
#: Preferences.java:337
|
||||
!Editor\ language\:\ =
|
||||
|
||||
#: Preferences.java:342 Preferences.java:358
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (este necesar\u0103 repornirea editorului Arduino)
|
||||
\ \ (requires\ restart\ of\ Arduino)=\ (este necesar\u0103 repornirea editorului)
|
||||
|
||||
#: Preferences.java:354
|
||||
Editor\ font\ size\:\ =M\u0103rimea caracterelor pentru editor\:
|
||||
|
||||
#: Preferences.java:371
|
||||
Show\ verbose\ output\ during\:\ =Detaliaz\u0103 informa\u021biile de ie\u0219ire a compilatorului\:\:
|
||||
Show\ verbose\ output\ during\:\ =Detaliaz\u0103 informa\u0163iile de ie\u015fire \u00een timpul\:
|
||||
|
||||
#: Preferences.java:373
|
||||
compilation\ =compilare
|
||||
compilation\ =compil\u0103rii
|
||||
|
||||
#: Preferences.java:375
|
||||
upload=\u00eencarc\u0103
|
||||
upload=\u00eenc\u0103rc\u0103rii
|
||||
|
||||
#: Preferences.java:384
|
||||
Verify\ code\ after\ upload=Verific\u0103 codul dup\u0103 \u00eencarcare
|
||||
|
||||
#: Preferences.java:393
|
||||
Use\ external\ editor=Folose\u0219te un editor extern
|
||||
Use\ external\ editor=Folose\u015fte un editor extern
|
||||
|
||||
#: Preferences.java:403
|
||||
Check\ for\ updates\ on\ startup=Cauta actualiz\u0103ri la pornirea programului
|
||||
Check\ for\ updates\ on\ startup=Caut\u0103 actualiz\u0103ri la pornirea programului
|
||||
|
||||
#: Preferences.java:412
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Se schimba extensia fi\u0219ierelor schi\u021b\u0103 la salvare (.pde -> .ino)
|
||||
Update\ sketch\ files\ to\ new\ extension\ on\ save\ (.pde\ ->\ .ino)=Se schimba extensia fi\u015fierelor schi\u0163\u0103 la salvare (.pde -> .ino)
|
||||
|
||||
#: Preferences.java:423
|
||||
Automatically\ associate\ .ino\ files\ with\ Arduino=Asociaz\u0103 fi\u0219ierele .ino cu Arduino
|
||||
Automatically\ associate\ .ino\ files\ with\ Arduino=Asociaz\u0103 fi\u015fierele .ino cu Arduino
|
||||
|
||||
#: Preferences.java:433
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Alte preferin\u021be pot fi editate direct \u00een fi\u0219ier
|
||||
More\ preferences\ can\ be\ edited\ directly\ in\ the\ file=Alte preferin\u0163e pot fi editate direct \u00een fi\u015fier
|
||||
|
||||
#: Preferences.java:462
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(editeaz\u0103 doar atunci c\u00e2nd Arduino IDE nu func\u021bioneaz\u0103)
|
||||
(edit\ only\ when\ Arduino\ is\ not\ running)=(editeaz\u0103 doar atunci c\u00e2nd Arduino IDE nu func\u0163ioneaz\u0103)
|
||||
|
||||
#: Preferences.java:609
|
||||
#, java-format
|
||||
ignoring\ invalid\ font\ size\ {0}=ignor\u0103 dimensiunea incorecta pentru fontul {0}
|
||||
ignoring\ invalid\ font\ size\ {0}=ignor\u0103 dimensiunea incorect\u0103 pentru fontul {0}
|
||||
|
1656
app/src/processing/app/Resources_ta.po
Normal file
1656
app/src/processing/app/Resources_ta.po
Normal file
File diff suppressed because it is too large
Load Diff
1634
app/src/processing/app/Resources_ta.po~
Normal file
1634
app/src/processing/app/Resources_ta.po~
Normal file
File diff suppressed because it is too large
Load Diff
1034
app/src/processing/app/Resources_ta.properties
Normal file
1034
app/src/processing/app/Resources_ta.properties
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user