diff --git a/FritzingInfo.plist b/FritzingInfo.plist index 68a0c9ce6..0f93ad89a 100644 --- a/FritzingInfo.plist +++ b/FritzingInfo.plist @@ -27,9 +27,9 @@ You should have received a copy of the GNU General Public License CFBundleExecutable Fritzing CFBundleGetInfoString - Fritzing 0.9.6 + Fritzing 0.9.7 CFBundleShortVersionString - 0.9.6 + 0.9.7 CFBundleVersion bda4e CFBundleIconFile diff --git a/fritzing.rc b/fritzing.rc index f9ad33a6e..09bb4b5f2 100644 --- a/fritzing.rc +++ b/fritzing.rc @@ -2,11 +2,11 @@ IDI_ICON1 ICON DISCARDABLE "resources/system_icons/win/frit #include -#define VER_FILEVERSION 0,9,6,0 -#define VER_FILEVERSION_STR "0.9.6\0" +#define VER_FILEVERSION 0,9,7,0 +#define VER_FILEVERSION_STR "0.9.7\0" -#define VER_PRODUCTVERSION 0,9,6,0 -#define VER_PRODUCTVERSION_STR "0.9.6\0" +#define VER_PRODUCTVERSION 0,9,7,0 +#define VER_PRODUCTVERSION_STR "0.9.7\0" #define VER_COMPANYNAME_STR "Fritzing" #define VER_FILEDESCRIPTION_STR "Fritzing" diff --git a/org.fritzing.Fritzing.appdata.xml b/org.fritzing.Fritzing.appdata.xml index be6648812..88042276c 100644 --- a/org.fritzing.Fritzing.appdata.xml +++ b/org.fritzing.Fritzing.appdata.xml @@ -49,7 +49,7 @@ https://fritzing.org/support-us/language-translation/ - + Fritzing diff --git a/phoenix.pro b/phoenix.pro index a622e4206..dab1ba21f 100644 --- a/phoenix.pro +++ b/phoenix.pro @@ -29,9 +29,9 @@ lessThan(QT_MINOR_VERSION, 9) { CONFIG += debug_and_release CONFIG += c++17 -# TODO: Omit frame pointers for release builds -# TODO: Verify flags for clang and msvc builds -QMAKE_CXXFLAGS += -O3 -fno-omit-frame-pointer +unix { + QMAKE_CXXFLAGS += -O3 -fno-omit-frame-pointer +} unix:!macx { CONFIG += link_pkgconfig @@ -193,7 +193,7 @@ include(pri/utils.pri) include(pri/dock.pri) include(pri/items.pri) include(pri/autoroute.pri) -include(pri/dialogs.pri) +include(src/dialogs/dialogs.pri) include(pri/connectors.pri) include(pri/infoview.pri) include(pri/model.pri) diff --git a/phoenixresources.qrc b/phoenixresources.qrc index d6c82ec76..4abbaaeeb 100644 --- a/phoenixresources.qrc +++ b/phoenixresources.qrc @@ -296,8 +296,6 @@ resources/bins/icons/Search.png resources/bins/icons/Lilypad.png resources/bins/icons/Lilypad-mono.png - resources/bins/icons/Snootlab.png - resources/bins/icons/Snootlab-mono.png resources/bins/icons/SparkFun.png resources/bins/icons/SparkFun-mono.png resources/bins/icons/Contrib.png diff --git a/pri/libgit2detect.pri b/pri/libgit2detect.pri index f8dae3149..66b3e0d0c 100644 --- a/pri/libgit2detect.pri +++ b/pri/libgit2detect.pri @@ -48,7 +48,6 @@ win32 { } LIBS += -L$$LIBGIT2LIB -lgit2 - message($$PKGCONFIG) } unix { diff --git a/pri/sketch.pri b/pri/sketch.pri index 575ca8901..6d7ccaaa1 100644 --- a/pri/sketch.pri +++ b/pri/sketch.pri @@ -13,6 +13,7 @@ # along with Fritzing. If not, see . # ********************************************************************/ HEADERS += \ + $$PWD/../src/sketch/renderthing.h \ src/sketch/fgraphicsscene.h \ src/sketch/breadboardsketchwidget.h \ src/sketch/infographicsview.h \ @@ -24,6 +25,7 @@ HEADERS += \ SOURCES += \ + $$PWD/../src/sketch/renderthing.cpp \ src/sketch/fgraphicsscene.cpp \ src/sketch/breadboardsketchwidget.cpp \ src/sketch/infographicsview.cpp \ diff --git a/resources/bins/icons/Snootlab-mono.png b/resources/bins/icons/Snootlab-mono.png deleted file mode 100644 index bf0c1ef3e..000000000 Binary files a/resources/bins/icons/Snootlab-mono.png and /dev/null differ diff --git a/resources/bins/icons/Snootlab.png b/resources/bins/icons/Snootlab.png deleted file mode 100644 index 0e5cd05f3..000000000 Binary files a/resources/bins/icons/Snootlab.png and /dev/null differ diff --git a/resources/bins/order.xml b/resources/bins/order.xml index b05926a1a..64ab1dfa2 100644 --- a/resources/bins/order.xml +++ b/resources/bins/order.xml @@ -8,10 +8,10 @@ + - diff --git a/resources/parts/svg/core/schematic/schematiclogo.svg b/resources/parts/svg/core/schematic/schematiclogo.svg index 2c0df798d..22057e4de 100644 --- a/resources/parts/svg/core/schematic/schematiclogo.svg +++ b/resources/parts/svg/core/schematic/schematiclogo.svg @@ -1,5 +1,5 @@ - + logo diff --git a/resources/styles/programwindow.qss b/resources/styles/programwindow.qss index cd1ca0e1f..31e7dc93a 100644 --- a/resources/styles/programwindow.qss +++ b/resources/styles/programwindow.qss @@ -219,8 +219,7 @@ /* drop-down list of the combobox */ #toolBarComboBox QAbstractItemView { - color: #000; - background-color: #ececec; + background-color: #333333; } #toolBarComboBox QAbstractItemView::item { diff --git a/src/autoroute/panelizer.cpp b/src/autoroute/panelizer.cpp index 8929e293a..2febb2ab0 100644 --- a/src/autoroute/panelizer.cpp +++ b/src/autoroute/panelizer.cpp @@ -1414,14 +1414,12 @@ MainWindow * Panelizer::inscribeBoard(QDomElement & board, QHash boards = mainWindow->pcbView()->findBoard(); - bool wasOne = false; foreach (ItemBase * boardItem, boards) { mainWindow->pcbView()->selectAllItems(false, false); boardItem->setSelected(true); if (boardItem->prop("layers").compare("1") == 0) { mainWindow->swapLayers(boardItem, 2, "", 0); ProcessEventBlocker::processEvents(); - wasOne = true; } LayerList groundLayers; diff --git a/pri/dialogs.pri b/src/dialogs/dialogs.pri similarity index 53% rename from pri/dialogs.pri rename to src/dialogs/dialogs.pri index 13595023d..ca4a7bdd0 100644 --- a/pri/dialogs.pri +++ b/src/dialogs/dialogs.pri @@ -13,18 +13,28 @@ # along with Fritzing. If not, see . # ********************************************************************/ +INCLUDEPATH += $$PWD + HEADERS += src/dialogs/prefsdialog.h \ - src/dialogs/pinlabeldialog.h \ - src/dialogs/groundfillseeddialog.h \ - src/dialogs/quotedialog.h \ - src/dialogs/recoverydialog.h \ - src/dialogs/setcolordialog.h \ - src/dialogs/translatorlistmodel.h + src/dialogs/pinlabeldialog.h \ + src/dialogs/groundfillseeddialog.h \ + src/dialogs/quotedialog.h \ + src/dialogs/recoverydialog.h \ + src/dialogs/setcolordialog.h \ + src/dialogs/translatorlistmodel.h \ + src/dialogs/fabuploaddialog.h \ + src/dialogs/fabuploadprogress.h \ + src/dialogs/networkhelper.h SOURCES += src/dialogs/prefsdialog.cpp \ - src/dialogs/pinlabeldialog.cpp \ - src/dialogs/groundfillseeddialog.cpp \ - src/dialogs/quotedialog.cpp \ - src/dialogs/recoverydialog.cpp \ - src/dialogs/setcolordialog.cpp \ - src/dialogs/translatorlistmodel.cpp + src/dialogs/pinlabeldialog.cpp \ + src/dialogs/groundfillseeddialog.cpp \ + src/dialogs/quotedialog.cpp \ + src/dialogs/recoverydialog.cpp \ + src/dialogs/setcolordialog.cpp \ + src/dialogs/translatorlistmodel.cpp \ + src/dialogs/fabuploaddialog.cpp \ + src/dialogs/fabuploadprogress.cpp \ + src/dialogs/networkhelper.cpp + +FORMS += src/dialogs/fabuploaddialog.ui diff --git a/src/dialogs/fabuploaddialog.cpp b/src/dialogs/fabuploaddialog.cpp new file mode 100644 index 000000000..d82e0aeff --- /dev/null +++ b/src/dialogs/fabuploaddialog.cpp @@ -0,0 +1,34 @@ +#include "fabuploaddialog.h" +#include "ui_fabuploaddialog.h" + +#include + +FabUploadDialog::FabUploadDialog(QNetworkAccessManager *manager, + QString filename, + QWidget *parent) : + QDialog(parent), + ui(new Ui::FabUploadDialog) +{ + ui->setupUi(this); + setWindowFlags(Qt::Dialog | windowFlags()); + ui->stackedWidget->setCurrentIndex(0); + ui->upload->init(manager, filename); + ui->uploadButton_2->setEnabled(false); +} + + +FabUploadDialog::~FabUploadDialog() +{ + delete ui; +} + +void FabUploadDialog::onUploadStarted() +{ + ui->stackedWidget->setCurrentIndex(1); +} + +void FabUploadDialog::onUploadReady() +{ + ui->uploadButton_2->setEnabled(true); + ui->uploadButton_2->setText("Open in browser"); +} diff --git a/src/dialogs/fabuploaddialog.h b/src/dialogs/fabuploaddialog.h new file mode 100644 index 000000000..95deae874 --- /dev/null +++ b/src/dialogs/fabuploaddialog.h @@ -0,0 +1,32 @@ +#ifndef FABUPLOADDIALOG_H +#define FABUPLOADDIALOG_H + +#include +#include + +namespace Ui { +class FabUploadDialog; +} + +class FabUploadDialog : public QDialog +{ + Q_OBJECT + +public: + explicit FabUploadDialog(QNetworkAccessManager* manager, + QString filename, +// double area, +// double boardCount, + QWidget *parent = nullptr); + ~FabUploadDialog(); + +private slots: + void onUploadStarted(); + void onUploadReady(); + +private: + Ui::FabUploadDialog *ui; + +}; + +#endif // FABUPLOADDIALOG_H diff --git a/src/dialogs/fabuploaddialog.ui b/src/dialogs/fabuploaddialog.ui new file mode 100644 index 000000000..97eb18ae7 --- /dev/null +++ b/src/dialogs/fabuploaddialog.ui @@ -0,0 +1,580 @@ + + + FabUploadDialog + + + + 0 + 0 + 508 + 336 + + + + + Droid Sans + + + + Fritzing Fab Upload + + + + + 10 + 10 + 489 + 316 + + + + + + + Qt::Vertical + + + + 20 + 30 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + Droid Sans + 18 + 50 + false + + + + Get your board fabricated this week! + + + Qt::AlignCenter + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + 0 + + + + + + + Qt::Vertical + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + true + + + + + + + + Qt::Vertical + + + + 20 + 40 + + + + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + 60 + 0 + + + + + 100 + 35 + + + + + Droid Sans + 11 + + + + Cancel + + + + + + + + 150 + 35 + + + + + 150 + 35 + + + + + Droid Sans + 11 + 50 + false + false + true + + + + Upload to Fab + + + + + + + Qt::Horizontal + + + + 40 + 20 + + + + + + + + + + Qt::Vertical + + + + 20 + 70 + + + + + + + + + + + 10 + 10 + 521 + 321 + + + + + + 0 + 10 + 481 + 221 + + + + + + + + + Upload + + + + + + + 24 + + + + + + + Import + + + + + + + 24 + + + + + + + + + Qt::Vertical + + + + 20 + 13 + + + + + + + + + + Qt::Horizontal + + + + 40 + 28 + + + + + + + + + 60 + 0 + + + + + 100 + 35 + + + + + Droid Sans + 11 + + + + Cancel + + + + + + + + 150 + 35 + + + + + 150 + 35 + + + + + Droid Sans + 11 + 50 + false + false + true + + + + Uploading... + + + + + + + Qt::Horizontal + + + + 40 + 38 + + + + + + + + + + Qt::Vertical + + + + 20 + 13 + + + + + + + + + + + + + + + + FabUploadProgress + QWidget +
fabuploadprogress.h
+ 1 + + uploadProgressChanged(int) + processProgressChanged(int) + processingDone() + closeUploadError() + doUpload() + openInBrowser() + +
+
+ + + + upload + uploadProgressChanged(int) + progressBar_upload + setValue(int) + + + 212 + 255 + + + 171 + 287 + + + + + upload + processProgressChanged(int) + progressBar_import + setValue(int) + + + 340 + 339 + + + 249 + 400 + + + + + upload + processingDone() + FabUploadDialog + onUploadReady() + + + 300 + 390 + + + 331 + 289 + + + + + upload + closeUploadError() + FabUploadDialog + close() + + + 300 + 390 + + + 331 + 289 + + + + + uploadButton_2 + clicked() + FabUploadDialog + close() + + + 478 + 495 + + + 331 + 289 + + + + + uploadButton_2 + clicked() + upload + openInBrowser() + + + 478 + 495 + + + 300 + 390 + + + + + cancelButton_2 + clicked() + FabUploadDialog + close() + + + 350 + 495 + + + 331 + 289 + + + + + cancelButton + clicked() + FabUploadDialog + close() + + + 426 + 518 + + + 331 + 289 + + + + + uploadButton + clicked() + upload + doUpload() + + + 524 + 518 + + + 310 + 370 + + + + + uploadButton + clicked() + FabUploadDialog + onUploadStarted() + + + 297 + 221 + + + 253 + 167 + + + + + + onUploadReady() + onUploadStarted() + +
diff --git a/src/dialogs/fabuploadprogress.cpp b/src/dialogs/fabuploadprogress.cpp new file mode 100644 index 000000000..bfe9ecf45 --- /dev/null +++ b/src/dialogs/fabuploadprogress.cpp @@ -0,0 +1,226 @@ +#include "fabuploadprogress.h" +#include "networkhelper.h" + +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include + +#include + +#include + +//TODO: Fix dialog layout, add image +//TODO: Request upload url, logo + text at fritzing.org/fab/new +//TODO: If fab not reachable: Show hint to Aisler and gerber export +//TODO: remove qDebug + +// Happy flow +// 0. Save file +// 1. Request upload url +// 2. Check upload url response +// 3. start upload (call uploadMultipart) +// 4. show upload progress +// 5. after upload, start checking processing on fab +// 6. show processing progress +// 7. processing finished, ask "open in browser" + +// Error handling +// 0. Show information, abort +// > 1. File not saved -> Show error, abort +// + + +FabUploadProgress::FabUploadProgress(QWidget *parent) : QWidget(parent) +{ +} + +void FabUploadProgress::init(QNetworkAccessManager *manager, QString filename) +{ + mManager = manager; + mFilepath = filename; + mActivity = 0; +} + +void FabUploadProgress::doUpload() +{ + QUrl new_url("https://fritzing.org/fab/upload"); + QNetworkRequest request(new_url); + QNetworkReply *reply = mManager->get(request); + connect(reply, SIGNAL(finished()), this, SLOT(onRequestUploadFinished())); + // Note: When an error occures, finished() is signaled, and we can handle the + // error better in onRequestUploadFinished + //connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(onError(QNetworkReply::NetworkError))); +} + + +void FabUploadProgress::onRequestUploadFinished() +{ + QNetworkReply *reply = qobject_cast(sender()); + + //Check status code + if (reply->error() == QNetworkReply::NoError) { + int statusCode = reply->attribute(QNetworkRequest::HttpStatusCodeAttribute).toInt(); + if(statusCode == 301 || statusCode==302) { + QUrl redirectUrl = reply->attribute(QNetworkRequest::RedirectionTargetAttribute).toUrl(); + qDebug() << redirectUrl.toString(); + QNetworkRequest request(redirectUrl); + QNetworkReply *r = mManager->get(request); + connect(r, SIGNAL(finished()), this, SLOT(onRequestUploadFinished())); + connect(r, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(onError(QNetworkReply::NetworkError))); + } else { + qDebug() << statusCode << Qt::endl; + auto d = reply->readAll(); + qDebug() << d << Qt::endl << Qt::flush; + auto j = NetworkHelper::string_to_hash(d); + qDebug() << j["upload_url"].toString() << Qt::endl << Qt::flush; + QUrl upload_url(QUrl::fromUserInput(j["upload_url"].toString())); + QUrl project_url(j["project_url"].toString()); + uploadMultipart(upload_url, mFilepath); + } + } else { + httpError(reply); + } + reply->deleteLater(); +} + + +void FabUploadProgress::uploadMultipart(const QUrl &url, const QString &file_path) +{ + qDebug() << url.toString() << Qt::endl << Qt::flush; + + QHttpMultiPart *httpMultiPart = new QHttpMultiPart(QHttpMultiPart::FormDataType); + QFile *file = new QFile(file_path); + QHttpPart imagePart; + imagePart.setHeader(QNetworkRequest::ContentDispositionHeader, QVariant("form-data; name=\"upload[file]\"; filename=\"" + QFileInfo(*file).fileName() + "\"")); + imagePart.setHeader(QNetworkRequest::ContentTypeHeader, QVariant("application/octet-stream")); + qDebug() << httpMultiPart->boundary(); + + file->open(QIODevice::ReadOnly); + imagePart.setBodyDevice(file); + file->setParent(httpMultiPart); // we cannot delete the file object now, so delete it with the multiPart + + httpMultiPart->append(imagePart); + + QNetworkRequest request(url); + QNetworkReply *reply = mManager->post(request, httpMultiPart); + + httpMultiPart->setParent(reply); // delete the multiPart with the reply + + connect(reply, SIGNAL(finished()), this, SLOT(uploadDone())); + connect(reply, SIGNAL(uploadProgress(qint64, qint64)), this, SLOT (uploadProgress(qint64, qint64))); + + auto r = reply->request(); + qDebug() << NetworkHelper::debugRequest(r); +} + +void FabUploadProgress::uploadProgress(qint64 bytesSent, qint64 bytesTotal) { + qDebug() << "---------Uploaded--------------" << bytesSent<< "of" < 0) { + emit uploadProgressChanged(100 * bytesTotal / bytesSent); + } +} + +//// Handle errors from NetworkManager +void FabUploadProgress::onError(QNetworkReply::NetworkError code) +{ + QNetworkReply *reply = qobject_cast(sender()); + qDebug() << "onError" << code << Qt::endl << Qt::flush; + FMessageBox::critical(this, tr("Fritzing"), tr("Could not connect to Fritzing fab.") + "Error: " + reply->errorString()); + emit closeUploadError(); +} + +// Handle http errors detected +void FabUploadProgress::httpError(QNetworkReply* reply) +{ + QString error(reply->errorString() + reply->attribute( QNetworkRequest::HttpStatusCodeAttribute).toString()); + qDebug() << error; + FMessageBox::critical(this, tr("Fritzing"), error); + emit closeUploadError(); +} + +// Handle errors reported by remote server +void FabUploadProgress::apiError(QString message) +{ + qDebug() << message; + FMessageBox::critical(this, tr("Fritzing"), tr("Error processing the project. The factory says: %1").arg(message)); + emit closeUploadError(); +} + + +void FabUploadProgress::uploadDone() { + QNetworkReply *reply = qobject_cast(sender()); + qDebug() << "----------Finished--------------" << Qt::endl; + if (reply->error() == QNetworkReply::NoError) { + auto d = reply->readAll(); + qDebug() << d << Qt::endl << Qt::flush; + auto j = NetworkHelper::string_to_hash(d); + qDebug() << j["upload_url"].toString() << Qt::endl << Qt::flush; + QUrl callback_url(QUrl::fromUserInput(j["callback"].toString())); + mRedirect_url = j["redirect"].toString(); + mActivity = 0; + checkProcessingStatus(callback_url); + } else { + httpError(reply); + } + reply->deleteLater(); +} + +void FabUploadProgress::checkProcessingStatus(QUrl url) +{ + qDebug() << url.toString() << Qt::endl << Qt::flush; + QNetworkRequest request(url); + QNetworkReply *reply = mManager->get(request); + connect(reply, SIGNAL(finished()), this, SLOT(updateProcessingStatus())); +// connect(reply, SIGNAL(error(QNetworkReply::NetworkError)), this, SLOT(onError(QNetworkReply::NetworkError))); +} + +void FabUploadProgress::updateProcessingStatus() +{ + QNetworkReply *reply = qobject_cast(sender()); + + if (reply->error() == QNetworkReply::NoError) { + auto d = reply->readAll(); + qDebug() << d << Qt::endl << Qt::flush; + auto j = NetworkHelper::string_to_hash(d); + // Produce a funny number which is growing most of the time, + // and somewhat related to what is really happening. It should + // change on every signal, so if it stops, there is a problem. + int progress = j["progress"].toInt(); + qDebug() << progress; + QString message(j["message"].toString()); + if (progress < 0) { + apiError(message); + } else { + if (progress + mActivity > 90) { + mActivity = 0; + progress = j["progress"].toInt(); + } + mActivity += 1; + findChild("message")->setText(message); + emit processProgressChanged(std::min(progress + mActivity, 100)); + if(progress < 100) { + QUrl url = reply->url(); + QTimer::singleShot(1000, this, [this, url](){ + checkProcessingStatus(url); + }); + } else { + emit processingDone(); + } + } + } else { + httpError(reply); + } + reply->deleteLater(); +} + +void FabUploadProgress::openInBrowser() +{ + QDesktopServices::openUrl(mRedirect_url); +} diff --git a/src/dialogs/fabuploadprogress.h b/src/dialogs/fabuploadprogress.h new file mode 100644 index 000000000..e4336ce8b --- /dev/null +++ b/src/dialogs/fabuploadprogress.h @@ -0,0 +1,42 @@ +#ifndef FABUPLOADPROGRESS_H +#define FABUPLOADPROGRESS_H + +#include +#include + +class FabUploadProgress : public QWidget +{ + Q_OBJECT +public: + explicit FabUploadProgress(QWidget *parent = nullptr); + void init(QNetworkAccessManager *manager, QString filename); + + +private slots: + void doUpload(); + void openInBrowser(); + void onRequestUploadFinished(); + void onError(QNetworkReply::NetworkError code); + void uploadDone(); + void uploadProgress(qint64 bytesSent, qint64 bytesTotal); + void updateProcessingStatus(); + +signals: + void uploadProgressChanged(int); + void processProgressChanged(int); + void processingDone(); + void closeUploadError(); + +private: + QNetworkAccessManager *mManager; + QString mFilepath; + int mActivity; + QString mRedirect_url; + + void uploadMultipart(const QUrl &url, const QString &file_path); + void checkProcessingStatus(QUrl url); + void httpError(QNetworkReply *reply); + void apiError(QString message); +}; + +#endif // FABUPLOADPROGRESS_H diff --git a/src/dialogs/networkhelper.cpp b/src/dialogs/networkhelper.cpp new file mode 100644 index 000000000..b0434d4c1 --- /dev/null +++ b/src/dialogs/networkhelper.cpp @@ -0,0 +1,47 @@ +#include "networkhelper.h" + +#include +#include + +NetworkHelper::NetworkHelper() +{ + +} + +const QString NetworkHelper::debugRequest(QNetworkRequest request) +{ + QString ret(request.url().toString()); //output the url + const QList& rawHeaderList(request.rawHeaderList()); + foreach (QByteArray rawHeader, rawHeaderList) { //traverse and output the header + ret += rawHeader + ":" + request.rawHeader(rawHeader); + } + return ret; +} + +QJsonObject NetworkHelper::string_to_hash(QString str) +{ + QJsonObject obj; + QJsonDocument doc = QJsonDocument::fromJson(str.toUtf8()); + // check validity of the document + if(!doc.isNull()) + { + if(doc.isObject()) + { + obj = doc.object(); + } + else + { + qDebug() << "Document is not an object" << Qt::endl; + } + } + else + { + qDebug() << "Invalid JSON...\n" << str << Qt::endl; + } + + return obj; +} + + + + diff --git a/src/dialogs/networkhelper.h b/src/dialogs/networkhelper.h new file mode 100644 index 000000000..53673623d --- /dev/null +++ b/src/dialogs/networkhelper.h @@ -0,0 +1,16 @@ +#ifndef NETWORKHELPER_H +#define NETWORKHELPER_H + +#include +#include + +class NetworkHelper +{ +public: + NetworkHelper(); + + static const QString debugRequest(QNetworkRequest request); + static QJsonObject string_to_hash(QString str); +}; + +#endif // NETWORKHELPER_H diff --git a/src/dialogs/prefsdialog.cpp b/src/dialogs/prefsdialog.cpp index 97e7071f2..7f1305819 100644 --- a/src/dialogs/prefsdialog.cpp +++ b/src/dialogs/prefsdialog.cpp @@ -264,12 +264,14 @@ QWidget* PrefsDialog::createColorForm() h1->addWidget(c1); QColor connectedColor = ItemBase::connectedColor(); - ClickableLabel * cl1 = new ClickableLabel(tr("%1 (click to change...)").arg(connectedColor.name()), this); - connect(cl1, SIGNAL(clicked()), this, SLOT(setConnectedColor())); - cl1->setPalette(QPalette(connectedColor)); - cl1->setAutoFillBackground(true); - cl1->setMargin(MARGIN); - h1->addWidget(cl1); + m_connectedColorLabel = new QLabel(tr("%1").arg(connectedColor.name()), this); + QPushButton * pb1 = new QPushButton(tr("%1 (click to change...)").arg(""), this); + connect(pb1, SIGNAL(clicked()), this, SLOT(setConnectedColor())); + m_connectedColorLabel->setPalette(QPalette(connectedColor)); + m_connectedColorLabel->setAutoFillBackground(true); + m_connectedColorLabel->setMargin(MARGIN); + h1->addWidget(m_connectedColorLabel); + h1->addWidget(pb1); f1->setLayout(h1); layout->addWidget(f1); @@ -284,12 +286,14 @@ QWidget* PrefsDialog::createColorForm() h2->addWidget(c2); QColor unconnectedColor = ItemBase::unconnectedColor(); - ClickableLabel * cl2 = new ClickableLabel(tr("%1 (click to change...)").arg(unconnectedColor.name()), this); - connect(cl2, SIGNAL(clicked()), this, SLOT(setUnconnectedColor())); - cl2->setPalette(QPalette(unconnectedColor)); - cl2->setAutoFillBackground(true); - cl2->setMargin(MARGIN); - h2->addWidget(cl2); + m_unconnectedColorLabel = new QLabel(tr("%1").arg(unconnectedColor.name()), this); + QPushButton * pb2 = new QPushButton(tr("%1 (click to change...)").arg(""), this); + connect(pb2, SIGNAL(clicked()), this, SLOT(setUnconnectedColor())); + m_unconnectedColorLabel->setPalette(QPalette(unconnectedColor)); + m_unconnectedColorLabel->setAutoFillBackground(true); + m_unconnectedColorLabel->setMargin(MARGIN); + h2->addWidget(m_unconnectedColorLabel); + h2->addWidget(pb2); f2->setLayout(h2); layout->addWidget(f2); @@ -301,36 +305,28 @@ QWidget* PrefsDialog::createColorForm() QWidget* PrefsDialog::createOtherForm() { QGroupBox * formGroupBox = new QGroupBox(tr("Clear Settings")); - QHBoxLayout *layout = new QHBoxLayout(); - layout->setSpacing(SPACING); - - QVBoxLayout * vlayout = new QVBoxLayout(); - vlayout->setMargin(0); - vlayout->setSpacing(0); + QVBoxLayout *layout = new QVBoxLayout(); + layout->setMargin(0); + layout->setSpacing(0); QLabel * clearLabel = new QLabel(QObject::tr("Clear all saved settings and close this dialog immediately.")); clearLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); clearLabel->setWordWrap(true); - clearLabel->setFixedWidth(FORMLABELWIDTH); - vlayout->addWidget(clearLabel); + layout->addWidget(clearLabel); - vlayout->addSpacing(SPACING); + layout->addSpacing(SPACING); clearLabel = new QLabel(QObject::tr("This action does not delete any files; it restores settings to their default values.")); clearLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); clearLabel->setWordWrap(true); - clearLabel->setFixedWidth(FORMLABELWIDTH); - vlayout->addWidget(clearLabel); + layout->addWidget(clearLabel); - vlayout->addSpacing(SPACING); + layout->addSpacing(SPACING); clearLabel = new QLabel(QObject::tr("There is no undo for this action, and no further warning!!!!")); clearLabel->setSizePolicy(QSizePolicy::Minimum, QSizePolicy::Minimum); clearLabel->setWordWrap(true); - clearLabel->setFixedWidth(FORMLABELWIDTH); - vlayout->addWidget(clearLabel); - - layout->addLayout(vlayout); + layout->addWidget(clearLabel); QPushButton * clear = new QPushButton(QObject::tr("Clear Settings"), this); connect(clear, SIGNAL(clicked()), this, SLOT(clear())); @@ -444,9 +440,9 @@ void PrefsDialog::setConnectedColor() { QColor c = setColorDialog.selectedColor(); m_settings.insert("connectedColor", c.name()); - ClickableLabel * cl = qobject_cast(sender()); - if (cl) { - cl->setPalette(QPalette(c)); + if (m_connectedColorLabel) { + m_connectedColorLabel->setPalette(QPalette(c)); + m_connectedColorLabel->setText(tr("%1").arg(c.name())); } } @@ -460,9 +456,9 @@ void PrefsDialog::setUnconnectedColor() { QColor c = setColorDialog.selectedColor(); m_settings.insert("unconnectedColor", c.name()); - ClickableLabel * cl = qobject_cast(sender()); - if (cl) { - cl->setPalette(QPalette(c)); + if (m_unconnectedColorLabel) { + m_unconnectedColorLabel->setPalette(QPalette(c)); + m_unconnectedColorLabel->setText(tr("%1").arg(c.name())); } } diff --git a/src/dialogs/prefsdialog.h b/src/dialogs/prefsdialog.h index 8dd8ce762..5359b01d3 100644 --- a/src/dialogs/prefsdialog.h +++ b/src/dialogs/prefsdialog.h @@ -91,6 +91,8 @@ protected slots: QPointer m_pcb; QPointer m_code; QPointer m_wheelLabel[3]; + QPointer m_connectedColorLabel; + QPointer m_unconnectedColorLabel; QList m_platforms; QHash m_programmerLEs; QHash m_settings; diff --git a/src/dialogs/quotedialog.cpp b/src/dialogs/quotedialog.cpp index 7addc8cf5..e0bfebb84 100644 --- a/src/dialogs/quotedialog.cpp +++ b/src/dialogs/quotedialog.cpp @@ -130,7 +130,7 @@ class CustomDelegate : public QStyledItemDelegate CustomDelegate::CustomDelegate(QTableView* tableView) { // create grid pen - int gridHint = tableView->style()->styleHint(QStyle::SH_Table_GridLineColor, new QStyleOptionViewItemV4()); + int gridHint = tableView->style()->styleHint(QStyle::SH_Table_GridLineColor, new QStyleOptionViewItem()); QColor gridColor(gridHint); _gridPen = QPen(gridColor, 0, tableView->gridStyle()); } @@ -196,7 +196,7 @@ QuoteDialog::QuoteDialog(bool full, QWidget *parent) : QDialog(parent) int ix = 0; foreach (QString labl, labels) { QTableWidgetItem * item = new QTableWidgetItem(labl); - item->setFlags(0); + item->setFlags(Qt::ItemFlags()); m_tableWidget->setItem(ix, 0, item); ix += 1; } @@ -282,18 +282,18 @@ void QuoteDialog::setText() { QTableWidgetItem * item = new QTableWidgetItem(QString::number(count)); item->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter); - item->setFlags(0); + item->setFlags(Qt::ItemFlags()); m_tableWidget->setItem(0, i + 1, item); item = new QTableWidgetItem(QString("%1%2%3").arg(hundredths(cost/count), 13, 'F', 2).arg(ThinSpaceSymbol).arg(EuroSymbol)); item->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter); - item->setFlags(0); + item->setFlags(Qt::ItemFlags()); m_tableWidget->setItem(1, i + 1, item); item = new QTableWidgetItem(QString("%1%2%3").arg(hundredths(cost), 13, 'F', 2).arg(ThinSpaceSymbol).arg(EuroSymbol)); item->setTextAlignment(Qt::AlignRight | Qt::AlignVCenter); QFont font = item->font(); font.setBold(true); item->setFont(font); - item->setFlags(0); + item->setFlags(Qt::ItemFlags()); m_tableWidget->setItem(2, i + 1, item); } diff --git a/src/fapplication.cpp b/src/fapplication.cpp index 50451e1b5..15858a2be 100644 --- a/src/fapplication.cpp +++ b/src/fapplication.cpp @@ -151,7 +151,7 @@ void FServerThread::run() DebugDialog::debug("header " + header); - QStringList tokens = header.split(QRegExp("[ \r\n][ \r\n]*"), QString::SkipEmptyParts); + QStringList tokens = header.split(QRegExp("[ \r\n][ \r\n]*"), Qt::SplitBehaviorFlags::SkipEmptyParts); if (tokens.count() <= 0) { writeResponse(socket, 400, "Bad Request", "", ""); return; @@ -167,7 +167,7 @@ void FServerThread::run() return; } - QStringList params = tokens.at(1).split("/", QString::SkipEmptyParts); + QStringList params = tokens.at(1).split("/", Qt::SplitBehaviorFlags::SkipEmptyParts); QString command = params.takeFirst(); if (params.count() == 0) { writeResponse(socket, 400, "Bad Request", "", ""); diff --git a/src/help/aboutbox.cpp b/src/help/aboutbox.cpp index 0c9c61def..136a02d7f 100644 --- a/src/help/aboutbox.cpp +++ b/src/help/aboutbox.cpp @@ -46,8 +46,7 @@ AboutBox::AboutBox(QWidget *parent) setFixedSize(AboutWidth, 466); - // the background color - setStyleSheet("background-color: #E8E8E8"); + setStyleSheet("background-color: #E8E8E8; color: #000"); // the new Default Font QFont smallFont("Droid Sans", 11); @@ -114,22 +113,21 @@ AboutBox::AboutBox(QWidget *parent) "

" + tr("Fritzing is made by: ") + tr("Prof. Reto Wettach, André Knörig, Myriel Milicevic, ") + - tr("Zach Eveland, Dirk van Oosterbosch, ") + - tr("Jonathan Cohen, Marcus Paeschke, Omer Yosha, ") + - tr("Travis Robertson, Stefan Hermann, Brendan Howell, ") + - tr("Mariano Crowe, Johannes Landstorfer, ") + - tr("Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, ") + - tr("Bryant Mairs, Uleshka Asher, Daniel Tzschentke, ") + - tr("and Kjell Morgenstern ") + + tr("Zach Eveland, Dirk van Oosterbosch, ") + + tr("Jonathan Cohen, Marcus Paeschke, Omer Yosha, ") + + tr("Travis Robertson, Stefan Hermann, Brendan Howell, ") + + tr("Mariano Crowe, Johannes Landstorfer, ") + + tr("Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, ") + + tr("Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern") + "

" + "

" + - tr("Special thanks goes out to: ") + + tr("Special thanks go out to: ") + tr("Jussi Ängeslevä, Massimo Banzi, Ayah Bdeir, ") + - tr("Durrell Bishop, David Cuartielles, Fabian Hemmert, ") + - tr("Gero Herkenrath, Jeff Hoefs, Tom Hulbert, ") + - tr("Tom Igoe, Hans-Peter Kadel, Till Savelkoul, ") + - tr("Jan Sieber, Yaniv Steiner, Olaf Val, ") + + tr("Durrell Bishop, David Cuartielles, Fabian Hemmert, ") + + tr("Gero Herkenrath, Jeff Hoefs, Tom Hulbert, ") + + tr("Tom Igoe, Hans-Peter Kadel, Till Savelkoul, ") + + tr("Jan Sieber, Yaniv Steiner, Olaf Val, ") + tr("Michaela Vieser and Julia Werner.") + "

" + @@ -164,9 +162,7 @@ AboutBox::AboutBox(QWidget *parent) "

" + "

" + - tr("Special thanks goes out as well to all the students ") + - tr("and alpha testers who were brave enough to give ") + - tr("Fritzing a test spin. ") + + tr("Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin.") + "

" + "







"; @@ -193,7 +189,6 @@ AboutBox::AboutBox(QWidget *parent) scrollFade->setGeometry(0, AboutText, AboutWidth, fadepixmap.height()); scrollFade->setStyleSheet("background-color: none"); - // auto scroll timer initialization m_restartAtTop = false; m_startTime = QTime::currentTime(); diff --git a/src/help/tipsandtricks.cpp b/src/help/tipsandtricks.cpp index 853f78894..ead069e3d 100644 --- a/src/help/tipsandtricks.cpp +++ b/src/help/tipsandtricks.cpp @@ -115,7 +115,7 @@ void TipsAndTricks::initTipSets() { ts = new TipSet; ts->heading = tr("part labels"); ts->tips << tr("To edit a part label, double-click it, or use the text input widget in the inspector window."); - ts->tips << tr("To display different properties in a part label, as well as rotate it, or change the font, right-click the label."); + ts->tips << tr("To display different properties in a part label, rotate it, or change the font, right-click the label."); ts->tips << tr("To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it."); TipSets.append(ts); diff --git a/src/items/capacitor.cpp b/src/items/capacitor.cpp index f5e1937f8..67195f9d2 100644 --- a/src/items/capacitor.cpp +++ b/src/items/capacitor.cpp @@ -101,9 +101,10 @@ bool Capacitor::collectExtraInfo(QWidget * parent, const QString & family, const if (propertyDef->maxValue > propertyDef->minValue) { validator->setBounds(propertyDef->minValue, propertyDef->maxValue); } - QString pattern = QString("((\\d{1,3})|(\\d{1,3}\\.)|(\\d{1,3}\\.\\d{1,2}))[%1]{0,1}[%2]{0,1}") - .arg(TextUtils::PowerPrefixesString) - .arg(propertyDef->symbol); + QString pattern = QString("((\\d{1,3})|(\\d{1,3}\\.)|(\\d{1,3}\\.\\d{1,2}))[%1]{0,1}[%2]{0,1}").arg( + TextUtils::PowerPrefixesString, + propertyDef->symbol + ); validator->setRegExp(QRegExp(pattern)); focusOutComboBox->setValidator(validator); connect(focusOutComboBox, SIGNAL(currentIndexChanged(const QString &)), this, SLOT(propertyEntry(const QString &))); diff --git a/src/items/dip.cpp b/src/items/dip.cpp index 7d2f7c328..1bbebdef8 100644 --- a/src/items/dip.cpp +++ b/src/items/dip.cpp @@ -116,15 +116,15 @@ QString Dip::genModuleID(QMap & currPropsMap) QString value = currPropsMap.value("package"); QString pins = currPropsMap.value("pins"); if (pins.isEmpty()) pins = "16"; // pick something safe - QString moduleID; + if (value.contains("sip", Qt::CaseInsensitive)) { - return QString("generic_sip_%1_%2").arg(pins).arg(spacing); + return QString("generic_sip_%1_%2").arg(pins, spacing); } else { int p = pins.toInt(); if (p < 4) p = 4; if (p % 2 == 1) p--; - return QString("generic_ic_dip_%1_%2").arg(p).arg(spacing); + return QString("generic_ic_dip_%1_%2").arg(QString(p), spacing); } } @@ -391,7 +391,7 @@ QString Dip::makeBreadboardDipSvg(const QString & expectedFileName) QString repeatBs = TextUtils::incrementTemplateString(repeatB, (pins - 4) / 2, increment, TextUtils::standardMultiplyPinFunction, TextUtils::incCopyPinFunction, NULL); - return svg.arg(TextUtils::getViewBoxCoord(svg, 2) / 100.0).arg(repeatTs).arg(repeatBs); + return svg.arg(TextUtils::getViewBoxCoord(svg, 2) / 100.0).arg(repeatTs, repeatBs); } bool Dip::changePinLabels(bool singleRow, bool sip) { diff --git a/src/items/hole.cpp b/src/items/hole.cpp index fd99daedf..ea6e16cd8 100644 --- a/src/items/hole.cpp +++ b/src/items/hole.cpp @@ -125,7 +125,6 @@ ItemBase * Hole::setBothSvg(const QString & holeDiameter, const QString & ringTh //DebugDialog::debug("both"); //DebugDialog::debug(svg); - QString setColor; QStringList noIDs; QString osvg; @@ -187,19 +186,16 @@ QString Hole::makeSvg(const QString & holeDiameter, const QString & ringThicknes QString id = makeID(); if (hd == 0) { svg += QString("") - .arg(rt + offsetDPI) - .arg(rt) - .arg(setColor) - .arg(id); - } + .arg(rt + offsetDPI) + .arg(rt) + .arg(setColor, id); +} else { svg += QString("") - .arg((hd / 2) + rt + offsetDPI) - .arg((hd / 2) + (rt / 2)) - .arg(rt) - .arg(setColor) - .arg(id) - .arg(rt == 0 ? "black" : "none") + .arg((hd / 2) + rt + offsetDPI) + .arg((hd / 2) + (rt / 2)) + .arg(rt) + .arg(setColor, id, rt == 0 ? "black" : "none") ; if (includeHole) { svg += QString("") // set the drill attribute to 0 for gerber translation diff --git a/src/items/itembase.cpp b/src/items/itembase.cpp index 9d13ca9be..854e8a1b9 100644 --- a/src/items/itembase.cpp +++ b/src/items/itembase.cpp @@ -2228,10 +2228,10 @@ QHash ItemBase::prepareProps(ModelPart * modelPart, bool wantD if (wantDebug) { props.insert("id", QString("%1 %2 %3") - .arg(QString::number(id())) - .arg(modelPart->moduleID()) - .arg(ViewLayer::viewLayerNameFromID(viewLayerID())) - ); + .arg(QString::number(id()) + ,modelPart->moduleID() + ,ViewLayer::viewLayerNameFromID(viewLayerID())) + ); keys.insert(1, "id"); int insertAt = 2; diff --git a/src/items/jumperitem.cpp b/src/items/jumperitem.cpp index 9bcc6b11a..8c381eb5e 100644 --- a/src/items/jumperitem.cpp +++ b/src/items/jumperitem.cpp @@ -37,12 +37,12 @@ static QHash Colors; QString makeWireImage(double w, double h, double r0x, double r0y, double r1x, double r1y, const QString & layerName, const QString & color, double thickness) { return JumperWireLayerTemplate - .arg(w).arg(h) - .arg(w * 1000).arg(h * 1000) - .arg(r0x).arg(r0y).arg(r1x).arg(r1y) - .arg(layerName) - .arg(color) - .arg(thickness); + .arg(w).arg(h) + .arg(w * 1000).arg(h * 1000) + .arg(r0x).arg(r0y).arg(r1x).arg(r1y) + .arg(layerName + ,color) + .arg(thickness); } @@ -319,11 +319,12 @@ QString JumperItem::makeSvg(ViewLayer::ViewLayerID viewLayerID) case ViewLayer::Copper0: case ViewLayer::Copper1: return Copper0LayerTemplate - .arg(w).arg(h) - .arg(w * GraphicsUtils::StandardFritzingDPI).arg(h * GraphicsUtils::StandardFritzingDPI) - .arg(r0x).arg(r0y).arg(r1x).arg(r1y) - .arg(ViewLayer::viewLayerXmlNameFromID(viewLayerID)) - .arg(Colors.value(viewLayerID)); + .arg(w).arg(h) + .arg(w * GraphicsUtils::StandardFritzingDPI).arg(h * GraphicsUtils::StandardFritzingDPI) + .arg(r0x).arg(r0y).arg(r1x).arg(r1y) + .arg(ViewLayer::viewLayerXmlNameFromID(viewLayerID) + ,Colors.value(viewLayerID) + ); //case ViewLayer::Silkscreen0: case ViewLayer::Silkscreen1: diff --git a/src/items/layerkinpaletteitem.cpp b/src/items/layerkinpaletteitem.cpp index 66fbb90c6..eedb825b2 100644 --- a/src/items/layerkinpaletteitem.cpp +++ b/src/items/layerkinpaletteitem.cpp @@ -241,7 +241,7 @@ void SchematicTextLayerKinPaletteItem::transformItem(const QTransform & currTran reloadRenderer(svg, true); - QPointF p = layerKinChief()->sceneBoundingRect().topLeft(); +// QPointF p = layerKinChief()->sceneBoundingRect().topLeft(); QTransform transform; QRectF bounds = boundingRect(); transform.translate(bounds.width() / 2, bounds.height() / 2); diff --git a/src/items/paletteitem.cpp b/src/items/paletteitem.cpp index 3c6c14bad..b1f3740d0 100644 --- a/src/items/paletteitem.cpp +++ b/src/items/paletteitem.cpp @@ -683,7 +683,7 @@ QList PaletteItem::sortConnectors() { sortedConnectors.append(connector); } ByIDParseSuccessful = true; - qSort(sortedConnectors.begin(), sortedConnectors.end(), byID); + std::sort(sortedConnectors.begin(), sortedConnectors.end(), byID); if (!ByIDParseSuccessful || sortedConnectors.count() == 0) { sortedConnectors.clear(); } diff --git a/src/items/partfactory.cpp b/src/items/partfactory.cpp index d2e57ee93..8f56e30cc 100644 --- a/src/items/partfactory.cpp +++ b/src/items/partfactory.cpp @@ -649,12 +649,10 @@ void PartFactory::fixSubpartBounds(QDomElement & top, ModelPartShared * mps) texts.append(nodeList.at(i).toElement()); } - int ix = 0; foreach (QDomElement text, texts) { text.setTagName("g"); } - ix = 0; foreach (QDomElement text, texts) { int minX, minY, maxX, maxY; QMatrix matrix; diff --git a/src/items/ruler.cpp b/src/items/ruler.cpp index 152a78063..9fc3fe500 100644 --- a/src/items/ruler.cpp +++ b/src/items/ruler.cpp @@ -128,7 +128,6 @@ QString Ruler::makeSvg(double inches) { // 1/100 centimeter spacing for (int i = 0; i <= qCeil(mmmW); i++) { double h = cm / 12; - double h2 = h - (cm / 12); double x = (offset + ((double)i / 254)) * GraphicsUtils::StandardFritzingDPI; if (i % 5 == 0) { h = cm / 6; diff --git a/src/mainwindow/mainwindow.cpp b/src/mainwindow/mainwindow.cpp index f6a68d036..f0e7d02df 100644 --- a/src/mainwindow/mainwindow.cpp +++ b/src/mainwindow/mainwindow.cpp @@ -127,7 +127,7 @@ void FTabBar::paintEvent(QPaintEvent * event) { // TODO: how to append spaces from the language direction for (int i = 0; i < this->count(); ++i) { - QStyleOptionTabV3 tab; + QStyleOptionTab tab; initStyleOption(&tab, 0); //DebugDialog::debug(QString("state %1").arg(tab.state)); QString text = tabText(i); @@ -1167,6 +1167,8 @@ void MainWindow::tabWidget_currentChanged(int index) { setActionsIcons(index, actions); } + setTitle(); + if (widget == NULL) { m_firstTimeHelpAct->setEnabled(false); return; @@ -1199,8 +1201,6 @@ void MainWindow::tabWidget_currentChanged(int index) { updateTraceMenu(); updateTransformationActions(); - setTitle(); - if (m_infoView) { m_currentGraphicsView->updateInfoView(); } @@ -1688,6 +1688,114 @@ void MainWindow::loadBundledPartFromWeb() { } */ +QList MainWindow::loadPart(const QString &fzpFile, bool addToBin) { + QDir destFolder = QDir::temp(); + + FolderUtils::createFolderAndCdIntoIt(destFolder, TextUtils::getRandText()); + QString tmpDirPath = destFolder.path(); + + QDir tmpDir(tmpDirPath); + + QList mps; + QMap map; + + if ( QFileInfo(fzpFile).exists()) { + map = TextUtils::parseFileForViewImages(fzpFile); + if(map.count() != 4) { + FMessageBox::warning( + this, + tr("Fritzing"), + tr("Local part '%1' incomplete, only '%2' layers.").arg(fzpFile).arg(map.count()) + ); + } + QDir path = QFileInfo(fzpFile).path(); + foreach(QString key, map.keys()) { + QString file = map[key]; + if(!file.startsWith(key + "/")) { + // We can add the missing "svg." prefix here. + // However, we can not add the view prefix, as we would have to modify the part file. + // Idea: Why not let Fritzing derive the folder from the view id or a real folder name + // instead of the using a filename prefix? Like we do it in the above call to + // parseFileForViewImages(). Doing this would require some + // changes and a lot of tests, but might simplify creating parts in the future. + FMessageBox::warning( + this, + tr("Fritzing"), + tr("View '%1' should be prefixed with '%2/'. Trying to continue.").arg(file, key) + ); + } + + if (key == "icon" && file.startsWith("breadboard")) { + // We make an exception for icon files, allow to reuse the breadboard view. + continue; + } + + if(!QFileInfo(path.filePath(file)).exists()) { + //tr("File '%1' for view '%2' not found in subfolder, trying prefix instead of folder.").arg(file, key) + // e.g. "breadboard_whatever/image.svg" -> "breadboard.image.svg" + file = key + "." + QFileInfo(file).fileName(); + } + + if(QFileInfo(path.filePath(file)).exists()) { + if (!QFile::copy(path.filePath(file), tmpDir.filePath("svg." + file))) { + FMessageBox::warning( + this, + tr("Fritzing"), + tr("Could not copy subfile '%1' to '%2'").arg(path.filePath(file), tmpDir.filePath("svg." + file)) + ); + return QList(); + } + } else { + FMessageBox::warning( + this, + tr("Fritzing"), + tr("Local part '%1' incomplete, subfile not found '%2'").arg(fzpFile, file) + ); + return QList(); + } + } + QString fzpTemp = QFileInfo(fzpFile).fileName(); + if(!fzpTemp.startsWith("part.")) { + fzpTemp = "part." + fzpTemp; + } + QFile::copy(fzpFile, tmpDir.filePath(fzpTemp)); + } else { + FMessageBox::warning( + this, + tr("Fritzing"), + tr("Unable to open local part '%1'").arg(fzpFile) + ); + return QList(); + } + + + try { + mps = moveToPartsFolder(tmpDir, this, addToBin, true, FolderUtils::getUserPartsPath(), "user", true); + } + catch (const QString & msg) { + FMessageBox::warning( + this, + tr("Fritzing"), + msg + ); + return QList(); + } + + if (mps.count() < 1) { + // if this fails, that means that the bundling failed + FMessageBox::warning( + this, + tr("Fritzing"), + tr("Unable to load part from '%1'").arg(fzpFile) + ); + return QList(); + } + + FolderUtils::rmdir(tmpDirPath); + + return mps; +} + QList MainWindow::loadBundledPart(const QString &fileName, bool addToBin) { QDir destFolder = QDir::temp(); @@ -1855,7 +1963,7 @@ QList MainWindow::moveToPartsFolder(QDir &unzipDir, MainWindow* mw, //DebugDialog::debug("unzip part " + file.absoluteFilePath()); ModelPart * mp = mw->copyToPartsFolder(file, addToAlien, prefixFolder, destFolder); retval << mp; - if (addToBin) { + if (addToBin && mp) { // should only be here when adding single new part m_binManager->addToMyParts(mp); } diff --git a/src/mainwindow/mainwindow.h b/src/mainwindow/mainwindow.h index ea3b1eec8..44931e1cd 100644 --- a/src/mainwindow/mainwindow.h +++ b/src/mainwindow/mainwindow.h @@ -160,6 +160,7 @@ class MainWindow : public FritzingWindow Q_OBJECT Q_PROPERTY(int fireQuoteDelay READ fireQuoteDelay WRITE setFireQuoteDelay DESIGNABLE true) + void setEnableSubmenu(QMenu *menu, bool value); public: MainWindow(class ReferenceModel *referenceModel, QWidget * parent); MainWindow(QFile & fileToLoad); @@ -244,6 +245,7 @@ class MainWindow : public FritzingWindow public slots: void ensureClosable(); QList loadBundledPart(const QString &fileName, bool addToBin); + QList loadPart(const QString &fileName, bool addToBin); void acceptAlienFiles(); void statusMessage(QString message, int timeout); void showPCBView(); @@ -603,11 +605,11 @@ protected slots: virtual void createWindowMenu(); virtual void createTraceMenus(); virtual void createHelpMenu(); - virtual void createRotateSubmenu(QMenu * parentMenu); - virtual void createZOrderSubmenu(QMenu * parentMenu); + virtual QMenu * createRotateSubmenu(QMenu * parentMenu); + virtual QMenu * createZOrderSubmenu(QMenu * parentMenu); // virtual void createZOrderWireSubmenu(QMenu * parentMenu); - virtual void createAlignSubmenu(QMenu * parentMenu); - virtual void createAddToBinSubmenu(QMenu * parentMenu); + virtual QMenu * createAlignSubmenu(QMenu * parentMenu); + virtual QMenu * createAddToBinSubmenu(QMenu * parentMenu); virtual void populateExportMenu(); // dock management diff --git a/src/mainwindow/mainwindow_menu.cpp b/src/mainwindow/mainwindow_menu.cpp index 33b157e00..d9d91eae8 100644 --- a/src/mainwindow/mainwindow_menu.cpp +++ b/src/mainwindow/mainwindow_menu.cpp @@ -60,6 +60,7 @@ along with Fritzing. If not, see . #include "../svg/groundplanegenerator.h" #include "../help/tipsandtricks.h" #include "../dialogs/setcolordialog.h" +#include "../dialogs/fabuploaddialog.h" #include "../utils/folderutils.h" #include "../utils/graphicsutils.h" #include "../utils/textutils.h" @@ -324,7 +325,8 @@ bool MainWindow::loadWhich(const QString & fileName, bool setAsLastOpened, bool result = true; } else if (fileName.endsWith(FritzingPartExtension)) { - notYetImplemented(tr("directly loading parts")); + loadPart(fileName, true); + result = true; } else if (fileName.endsWith(FritzingBundledPartExtension)) { loadBundledPart(fileName, true); @@ -670,7 +672,7 @@ void MainWindow::populateMenuFromXMLFile(QMenu *parentMenu, QStringList &actions QHash index = indexAvailableElements(indexDomElem, folderPath, actionsTracker, localeName); QList sketchDescriptors(index.values()); - qSort(sketchDescriptors.begin(), sketchDescriptors.end(), sortSketchDescriptors); + std::sort(sketchDescriptors.begin(), sketchDescriptors.end(), sortSketchDescriptors); if (sketchDescriptors.size() > 0) { // set up the "all" category @@ -1294,33 +1296,37 @@ void MainWindow::createMenus() createHelpMenu(); } -void MainWindow::createRotateSubmenu(QMenu * parentMenu) { - QMenu *rotateMenu = parentMenu->addMenu(tr("Rotate")); +QMenu * MainWindow::createRotateSubmenu(QMenu * parentMenu) { + QMenu * rotateMenu = parentMenu->addMenu(tr("Rotate")); rotateMenu->addAction(m_rotate45cwAct); rotateMenu->addAction(m_rotate90cwAct); rotateMenu->addAction(m_rotate180Act); rotateMenu->addAction(m_rotate90ccwAct); rotateMenu->addAction(m_rotate45ccwAct); + return rotateMenu; } -void MainWindow::createZOrderSubmenu(QMenu * parentMenu) { +QMenu * MainWindow::createZOrderSubmenu(QMenu * parentMenu) { QMenu *zOrderMenu = parentMenu->addMenu(tr("Raise and Lower")); zOrderMenu->addAction(m_bringToFrontAct); zOrderMenu->addAction(m_bringForwardAct); zOrderMenu->addAction(m_sendBackwardAct); zOrderMenu->addAction(m_sendToBackAct); + + return zOrderMenu; } /* void MainWindow::createZOrderWireSubmenu(QMenu * parentMenu) { - QMenu *zOrderWireMenu = parentMenu->addMenu(tr("Raise and Lower")); - zOrderWireMenu->addAction(m_bringToFrontWireAct); - zOrderWireMenu->addAction(m_bringForwardWireAct); - zOrderWireMenu->addAction(m_sendBackwardWireAct); - zOrderWireMenu->addAction(m_sendToBackWireAct); + QMenu *zOrderWireMenu = parentMenu->addMenu(tr("Raise and Lower")); + zOrderWireMenu->addAction(m_bringToFrontWireAct); + zOrderWireMenu->addAction(m_bringForwardWireAct); + zOrderWireMenu->addAction(m_sendBackwardWireAct); + zOrderWireMenu->addAction(m_sendToBackWireAct); } */ -void MainWindow::createAlignSubmenu(QMenu * parentMenu) { + +QMenu * MainWindow::createAlignSubmenu(QMenu * parentMenu) { QMenu *alignMenu = parentMenu->addMenu(tr("Align")); alignMenu->addAction(m_alignLeftAct); alignMenu->addAction(m_alignHorizontalCenterAct); @@ -1328,13 +1334,17 @@ void MainWindow::createAlignSubmenu(QMenu * parentMenu) { alignMenu->addAction(m_alignTopAct); alignMenu->addAction(m_alignVerticalCenterAct); alignMenu->addAction(m_alignBottomAct); + + return alignMenu; } -void MainWindow::createAddToBinSubmenu(QMenu * parentMenu) { +QMenu * MainWindow::createAddToBinSubmenu(QMenu * parentMenu) { QMenu *addToBinMenu = parentMenu->addMenu(tr("&Add to bin...")); addToBinMenu->setStatusTip(tr("Add selected part to bin")); QList acts = m_binManager->openedBinsActions(selectedModuleID()); addToBinMenu->addActions(acts); + + return addToBinMenu; } void MainWindow::createFileMenu() { @@ -1439,16 +1449,17 @@ void MainWindow::createPartMenu() { m_partMenu->addSeparator(); m_partMenu->addAction(m_flipHorizontalAct); m_partMenu->addAction(m_flipVerticalAct); - createRotateSubmenu(m_partMenu); - createZOrderSubmenu(m_partMenu); + m_rotateMenu = createRotateSubmenu(m_partMenu); + m_zOrderMenu = createZOrderSubmenu(m_partMenu); + //createZOrderWireSubmenu(m_partMenu); - createAlignSubmenu(m_partMenu); + m_alignMenu = createAlignSubmenu(m_partMenu); m_partMenu->addAction(m_moveLockAct); m_partMenu->addAction(m_stickyAct); m_partMenu->addAction(m_selectMoveLockAct); m_partMenu->addSeparator(); - createAddToBinSubmenu(m_partMenu); + m_addToBinMenu = createAddToBinSubmenu(m_partMenu); m_partMenu->addAction(m_showPartLabelAct); m_partMenu->addSeparator(); m_partMenu->addAction(m_selectAllObsoleteAct); @@ -1601,8 +1612,8 @@ void MainWindow::updateLayerMenu(bool resetLayout) { QList actions; actions << m_zoomInAct << m_zoomOutAct << m_zoomInShortcut << m_fitInWindowAct << m_actualSizeAct << - m_100PercentSizeAct << m_alignToGridAct << m_showGridAct << m_setGridSizeAct << m_setBackgroundColorAct << - m_colorWiresByLengthAct; + m_100PercentSizeAct << m_alignToGridAct << m_showGridAct << m_setGridSizeAct << m_setBackgroundColorAct << + m_colorWiresByLengthAct; bool enabled = (m_currentGraphicsView); foreach (QAction * action, actions) action->setEnabled(enabled); @@ -1642,7 +1653,7 @@ void MainWindow::updateLayerMenu(bool resetLayout) { LayerList keys = viewLayers.keys(); // make sure they're in ascending order when inserting into the menu - qSort(keys.begin(), keys.end()); + std::sort(keys.begin(), keys.end()); foreach (ViewLayer::ViewLayerID key, keys) { ViewLayer * viewLayer = viewLayers.value(key); @@ -1807,12 +1818,23 @@ void MainWindow::updateWireMenu() { } } +void MainWindow::setEnableSubmenu( QMenu * menu, bool value ) { + foreach (QAction * action, menu->actions()) { + action->setEnabled(value); + } + menu->setEnabled(value); + menu->menuAction()->setEnabled(value); +} + void MainWindow::updatePartMenu() { if (m_partMenu == NULL) return; if (m_currentGraphicsView == NULL) { foreach (QAction * action, m_partMenu->actions()) { action->setEnabled(false); + if (action->menu()) { + setEnableSubmenu(action->menu(), false); + } } return; } @@ -1833,18 +1855,8 @@ void MainWindow::updatePartMenu() { } } - m_alignLeftAct->setEnabled(itemCount.selCount - itemCount.wireCount > 1); - m_alignRightAct->setEnabled(itemCount.selCount - itemCount.wireCount > 1); - m_alignTopAct->setEnabled(itemCount.selCount - itemCount.wireCount > 1); - m_alignBottomAct->setEnabled(itemCount.selCount - itemCount.wireCount > 1); - m_alignVerticalCenterAct->setEnabled(itemCount.selCount - itemCount.wireCount > 1); - m_alignHorizontalCenterAct->setEnabled(itemCount.selCount - itemCount.wireCount > 1); - - //DebugDialog::debug(QString("enable layer actions %1")upat.arg(enable)); - m_bringToFrontAct->setEnabled(zenable); - m_bringForwardAct->setEnabled(zenable); - m_sendBackwardAct->setEnabled(zenable); - m_sendToBackAct->setEnabled(zenable); + setEnableSubmenu(m_alignMenu, itemCount.selCount - itemCount.wireCount > 1); + setEnableSubmenu(m_zOrderMenu, zenable); m_moveLockAct->setEnabled(itemCount.selCount > 0 && itemCount.selCount > itemCount.wireCount); m_moveLockAct->setChecked(itemCount.moveLockCount > 0); @@ -1857,17 +1869,16 @@ void MainWindow::updatePartMenu() { bool renable = (itemCount.selRotatable > 0); bool renable45 = (itemCount.sel45Rotatable > 0); - //DebugDialog::debug(QString("enable rotate (2) %1").arg(enable)); - - m_rotate90cwAct->setEnabled(renable && enable); - m_rotate180Act->setEnabled(renable && enable); - m_rotate90ccwAct->setEnabled(renable && enable); + setEnableSubmenu(m_rotateMenu, renable && enable); m_rotate45ccwAct->setEnabled(renable && renable45 && enable); m_rotate45cwAct->setEnabled(renable && renable45 && enable); + m_flipHorizontalAct->setEnabled(enable && (itemCount.selHFlipable > 0) && (m_currentGraphicsView != m_pcbGraphicsView)); m_flipVerticalAct->setEnabled(enable && (itemCount.selVFlipable > 0) && (m_currentGraphicsView != m_pcbGraphicsView)); + setEnableSubmenu(m_addToBinMenu, enable); + updateItemMenu(); updateEditMenu(); @@ -1954,7 +1965,7 @@ void MainWindow::updateTransformationActions() { bool enable = (itemCount.selRotatable > 0); bool renable = (itemCount.sel45Rotatable > 0); - //DebugDialog::debug(QString("enable rotate (1) %1").arg(enable)); +// DebugDialog::debug(QString("enable rotate (1) %1 %2").arg(enable).arg(m_rotate90ccwAct->isEnabled())); m_rotate90cwAct->setEnabled(enable); m_rotate180Act->setEnabled(enable); @@ -2676,9 +2687,30 @@ void MainWindow::hideShowProgramMenu() { } void MainWindow::hideShowTraceMenu() { - if (m_pcbTraceMenu) m_pcbTraceMenu->menuAction()->setVisible(m_currentGraphicsView == m_pcbGraphicsView); - if (m_schematicTraceMenu) m_schematicTraceMenu->menuAction()->setVisible(m_currentGraphicsView == m_schematicGraphicsView); - if (m_breadboardTraceMenu) m_breadboardTraceMenu->menuAction()->setVisible(m_currentGraphicsView == m_breadboardGraphicsView); + if (m_pcbTraceMenu) { + m_pcbTraceMenu->menuAction()->setVisible(m_currentGraphicsView == m_pcbGraphicsView); + if(m_currentGraphicsView == m_pcbGraphicsView) { + m_pcbTraceMenu->setTitle(tr("&Routing")); + } else { + m_pcbTraceMenu->setTitle(tr("Routing")); + } + } + if (m_schematicTraceMenu) { + m_schematicTraceMenu->menuAction()->setVisible(m_currentGraphicsView == m_schematicGraphicsView); + if(m_currentGraphicsView == m_schematicGraphicsView) { + m_schematicTraceMenu->setTitle(tr("&Routing")); + } else { + m_schematicTraceMenu->setTitle(tr("Routing")); + } + } + if (m_breadboardTraceMenu) { + m_breadboardTraceMenu->menuAction()->setVisible(m_currentGraphicsView == m_breadboardGraphicsView); + if(m_currentGraphicsView == m_breadboardGraphicsView) { + m_breadboardTraceMenu->setTitle(tr("&Routing")); + } else { + m_breadboardTraceMenu->setTitle(tr("Routing")); + } + } } void MainWindow::createTraceMenuActions() { @@ -4294,7 +4326,16 @@ void MainWindow::autorouterSettings() { void MainWindow::orderFab() { - QDesktopServices::openUrl(QString("http://fab.fritzing.org/")); + // save project if not clean + if (MainWindow::save()) { + // upload + QNetworkAccessManager* manager = new QNetworkAccessManager(); + FabUploadDialog upload(manager, m_fwFilename, this); + upload.exec(); + delete manager; + } else { + FMessageBox::information(this, tr("Fritzing Fab Upload"), tr("Please first save your project in order to upload it.")); + } } void MainWindow::setGroundFillSeeds() { diff --git a/src/model/modelbase.cpp b/src/model/modelbase.cpp index 17de9ff23..63e3ed257 100644 --- a/src/model/modelbase.cpp +++ b/src/model/modelbase.cpp @@ -289,23 +289,23 @@ bool ModelBase::loadInstances(QDomDocument & domDocument, QDomElement & instance bool generated = false; modelPart = m_referenceModel->retrieveModelPart(moduleIDRef); - if (modelPart == NULL) { + if (!modelPart) { DebugDialog::debug(QString("module id %1 not found in database").arg(moduleIDRef)); modelPart = fixObsoleteModuleID(domDocument, instance, moduleIDRef); - if (modelPart == NULL) { - modelPart = genFZP(moduleIDRef, m_referenceModel); - if (modelPart) { - instance.setAttribute("moduleIdRef", modelPart->moduleID()); - moduleIDRef = modelPart->moduleID(); - generated = true; - } - if (modelPart == NULL) { - missingModules.insert(moduleIDRef, instance.attribute("path")); - instance = instance.nextSiblingElement("instance"); - continue; - } + } + if (!modelPart) { + modelPart = genFZP(moduleIDRef, m_referenceModel); + if (modelPart) { + instance.setAttribute("moduleIdRef", modelPart->moduleID()); + moduleIDRef = modelPart->moduleID(); + generated = true; } } + if (!modelPart) { + missingModules.insert(moduleIDRef, instance.attribute("path")); + instance = instance.nextSiblingElement("instance"); + continue; + } if (modelPart->isCore() && m_useOldSchematics) { modelPart = createOldSchematicPart(modelPart, moduleIDRef); diff --git a/src/model/palettemodel.cpp b/src/model/palettemodel.cpp index cdc08d91b..a2625825a 100644 --- a/src/model/palettemodel.cpp +++ b/src/model/palettemodel.cpp @@ -216,24 +216,24 @@ ModelPart * PaletteModel::loadPart(const QString & path, bool update) { .arg(errorColumn) .arg(errorStr) .arg(path)); - return NULL; + return nullptr; } QDomElement root = domDocument.documentElement(); if (root.isNull()) { //QMessageBox::information(NULL, QObject::tr("Fritzing"), QObject::tr("The file is not a Fritzing file (8).")); - return NULL; + return nullptr; } if (root.tagName() != "module") { //QMessageBox::information(NULL, QObject::tr("Fritzing"), QObject::tr("The file is not a Fritzing file (9).")); - return NULL; + return nullptr; } moduleID = root.attribute("moduleId"); if (moduleID.isNull() || moduleID.isEmpty()) { //QMessageBox::information(NULL, QObject::tr("Fritzing"), QObject::tr("The file is not a Fritzing file (10).")); - return NULL; + return nullptr; } // check if it's a wire @@ -310,7 +310,7 @@ ModelPart * PaletteModel::loadPart(const QString & path, bool update) { } ModelPart * modelPart = new ModelPart(domDocument, path, type); - if (modelPart == NULL) return NULL; + if (!modelPart) return nullptr; if (path.startsWith(ResourcePath)) { modelPart->setCore(true); diff --git a/src/partsbinpalette/binmanager/stacktabbar.cpp b/src/partsbinpalette/binmanager/stacktabbar.cpp index fc7ef7c5a..0a3eb8da7 100644 --- a/src/partsbinpalette/binmanager/stacktabbar.cpp +++ b/src/partsbinpalette/binmanager/stacktabbar.cpp @@ -133,7 +133,7 @@ void StackTabBar::paintEvent(QPaintEvent *event) for(int i = 0; i < this->count(); ++i) { - QStyleOptionTabV2 option; + QStyleOptionTab option; initStyleOption(&option, i); option.shape = RoundedNorth; option.text = ""; diff --git a/src/partsbinpalette/partsbinpalettewidget.cpp b/src/partsbinpalette/partsbinpalettewidget.cpp index 1d49144de..9f37ec77c 100644 --- a/src/partsbinpalette/partsbinpalettewidget.cpp +++ b/src/partsbinpalette/partsbinpalettewidget.cpp @@ -558,7 +558,7 @@ void PartsBinPaletteWidget::load(const QString &filename, QWidget * progressTarg void PartsBinPaletteWidget::undoStackCleanChanged(bool isClean) { if(!isClean && currentBinIsCore()) { - setFilename(QString::null); + setFilename(QString()); } setWindowModified(!isClean); m_manager->setDirtyTab(this,isClean); @@ -888,7 +888,7 @@ QMenu * PartsBinPaletteWidget::binContextMenu() void PartsBinPaletteWidget::changeIconColor() { QImage image(":resources/bins/icons/" + CustomIconName); QColor initial(image.pixel(image.width() / 2, image.height() / 2)); - QColor color = QColorDialog::getColor(initial, this, tr("Select a color for this icon"), 0 ); + QColor color = QColorDialog::getColor(initial, this, tr("Select a color for this icon"), QColorDialog::ColorDialogOptions() ); if (!color.isValid()) return; QRgb match = initial.rgba(); diff --git a/src/partseditor/pemainwindow.cpp b/src/partseditor/pemainwindow.cpp index d25aeaf0b..b991d69ee 100644 --- a/src/partseditor/pemainwindow.cpp +++ b/src/partseditor/pemainwindow.cpp @@ -954,7 +954,9 @@ bool PEMainWindow::setInitialItem(PaletteItem * paletteItem) reload(true); foreach (ViewThing * viewThing, m_viewThings.values()) { - viewThing->originalSvgPath = viewThing->itemBase->filename(); + if (viewThing->itemBase) { + viewThing->originalSvgPath = viewThing->itemBase->filename(); + } viewThing->svgChangeCount = 0; } @@ -1321,6 +1323,9 @@ void PEMainWindow::initSvgTree(SketchWidget * sketchWidget, ItemBase * itemBase, int errorColumn; QDomDocument tempSvgDoc; + if (!itemBase) { + return; + } QFile file(itemBase->filename()); if (!tempSvgDoc.setContent(&file, true, &errorStr, &errorLine, &errorColumn)) { DebugDialog::debug(QString("unable to parse svg: %1 %2 %3").arg(errorStr).arg(errorLine).arg(errorColumn)); @@ -1567,7 +1572,7 @@ void PEMainWindow::loadImage() return; } - QStringList availFonts = InstalledFonts::InstalledFontsList.toList(); + QStringList availFonts = InstalledFonts::InstalledFontsList.values(); if (availFonts.count() > 0) { QString destFont = availFonts.at(0); foreach (QString f, availFonts) { @@ -1649,7 +1654,12 @@ void PEMainWindow::loadImage() QFileInfo info(origPath); QUndoCommand * parentCommand = new QUndoCommand(QString("Load '%1'").arg(info.fileName())); - new ChangeSvgCommand(this, m_currentGraphicsView, itemBase->filename(), newPath, parentCommand); + + QString oldPath; + if (itemBase) { + oldPath = itemBase->filename(); + } + new ChangeSvgCommand(this, m_currentGraphicsView, oldPath, newPath, parentCommand); m_undoStack->waitPush(parentCommand, SketchWidget::PropChangeDelay); } @@ -1752,8 +1762,10 @@ void PEMainWindow::changeSvg(SketchWidget * sketchWidget, const QString & filena setImageAttribute(fzpRoot, filename, sketchWidget->viewID()); foreach (ViewThing * viewThing, m_viewThings.values()) { - foreach(ItemBase * lk, viewThing->itemBase->layerKin()) { - delete lk; + if (viewThing->itemBase) { + foreach(ItemBase * lk, viewThing->itemBase->layerKin()) { + delete lk; + } } delete viewThing->itemBase; viewThing->itemBase = nullptr; @@ -1816,6 +1828,7 @@ void PEMainWindow::reload(bool firstTime) itemBases << m_pcbGraphicsView->addItem(modelPart, m_pcbGraphicsView->defaultViewLayerPlacement(modelPart), BaseCommand::SingleView, viewGeometry, newID, -1, nullptr); foreach (ItemBase * itemBase, itemBases) { + if (!itemBase) continue; ViewThing * viewThing = m_viewThings.value(itemBase->viewID()); viewThing->itemBase = itemBase; viewThing->referenceFile = getSvgReferenceFile(itemBase->filename()); @@ -1851,6 +1864,7 @@ void PEMainWindow::reload(bool firstTime) // TODO: may have to revisit this and move all pegi items //viewThing->itemBase->setMoveLock(true); //viewThing->itemBase->setItemIsSelectable(false); + if (!viewThing->itemBase) { continue; } viewThing->itemBase->setAcceptsMousePressLegEvent(false); viewThing->itemBase->setSwappable(false); viewThing->sketchWidget->hideConnectors(true); diff --git a/src/program/programtab.h b/src/program/programtab.h index 021510c35..38968fb25 100644 --- a/src/program/programtab.h +++ b/src/program/programtab.h @@ -185,7 +185,7 @@ class DeleteDialog : public QDialog { Q_OBJECT public: - DeleteDialog(const QString & title, const QString & text, bool deleteFileCheckBox, QWidget * parent = 0, Qt::WindowFlags f = 0); + DeleteDialog(const QString & title, const QString & text, bool deleteFileCheckBox, QWidget * parent = 0, Qt::WindowFlags f = Qt::WindowFlags()); bool deleteFileChecked(); diff --git a/src/referencemodel/sqlitereferencemodel.cpp b/src/referencemodel/sqlitereferencemodel.cpp index d0b996dbf..49442afcf 100644 --- a/src/referencemodel/sqlitereferencemodel.cpp +++ b/src/referencemodel/sqlitereferencemodel.cpp @@ -48,7 +48,7 @@ void debugError(bool result, QSqlQuery & query) { if (result) return; QSqlError error = query.lastError(); - DebugDialog::debug(QString("%1 %2 %3").arg(error.text()).arg(error.number()).arg(error.type())); + DebugDialog::debug(QString("%1 %2 %3").arg(error.text()).arg(error.nativeErrorCode()).arg(error.type())); } static ModelPart * DebugModelPart = NULL; diff --git a/src/sketch/pcbsketchwidget.cpp b/src/sketch/pcbsketchwidget.cpp index 943e6ed5b..4896c4d28 100644 --- a/src/sketch/pcbsketchwidget.cpp +++ b/src/sketch/pcbsketchwidget.cpp @@ -2712,7 +2712,7 @@ void PCBSketchWidget::fabQuote() { m_quoteDialog->exec(); delete m_quoteDialog; - m_quoteDialog = NULL; + m_quoteDialog = nullptr; } void PCBSketchWidget::gotFabQuote(QNetworkReply * networkReply) { diff --git a/src/sketch/renderthing.cpp b/src/sketch/renderthing.cpp new file mode 100644 index 000000000..77aee115f --- /dev/null +++ b/src/sketch/renderthing.cpp @@ -0,0 +1,25 @@ +#include "renderthing.h" + +#include "fgraphicsscene.h" + +QList RenderThing::getItems(QGraphicsScene * scene) { + QList items; + if (selectedItems) { + items = scene->selectedItems(); + } + else if (!m_board) { + items = scene->items(); + } + else { + items = scene->collidingItems(m_board); + items << m_board; + } + return items; +} + +void RenderThing::setBoard(QGraphicsItem *board) { + m_board = board; + if (board) { + offsetRect = m_board->sceneBoundingRect(); + } +} diff --git a/src/sketch/renderthing.h b/src/sketch/renderthing.h new file mode 100644 index 000000000..a14ee367d --- /dev/null +++ b/src/sketch/renderthing.h @@ -0,0 +1,24 @@ +#ifndef RENDERTHING_H +#define RENDERTHING_H + +#include + +struct RenderThing { + bool selectedItems; + double printerScale; + bool blackOnly; + QRectF imageRect; + QRectF offsetRect; + double dpi; + bool renderBlocker; + QRectF itemsBoundingRect; + bool empty; + bool hideTerminalPoints; + + QList getItems(QGraphicsScene * scene); + void setBoard(QGraphicsItem * board); +private: + QGraphicsItem * m_board; +}; + +#endif // RENDERTHING_H diff --git a/src/sketch/sketchwidget.cpp b/src/sketch/sketchwidget.cpp index a7486b8fc..af7ac430a 100644 --- a/src/sketch/sketchwidget.cpp +++ b/src/sketch/sketchwidget.cpp @@ -1821,8 +1821,6 @@ bool SketchWidget::dragEnterEventAux(QDragEnterEvent *event) { if (!canDropModelPart(modelPart)) return false; m_droppingWire = (modelPart->itemType() == ModelPart::Wire); - m_droppingOffset = offset; - if (ItemDrag::cache().contains(this)) { m_droppingItem->setVisible(true); } @@ -1841,9 +1839,7 @@ bool SketchWidget::dragEnterEventAux(QDragEnterEvent *event) { return false; } QSizeF size = m_droppingItem->sceneBoundingRect().size(); - if (size.width() < offset.x() || size.height() < offset.y()) { - offset = m_droppingOffset = QPointF(size.width() / 2, size.height() / 2); - } + m_droppingOffset = QPointF(size.width() / 2, size.height() / 2); QHash savedItems; QHash savedWires; @@ -3277,22 +3273,16 @@ bool SketchWidget::checkMoved(bool wait) return false; } - int moveCount = m_savedItems.count(); - if (moveCount <= 0) { + if (m_savedItems.empty()) { return false; } - ItemBase * saveBase = nullptr; - foreach (ItemBase * item, m_savedItems) { - saveBase = item; - break; - } - + int moveCount = m_savedItems.count(); + ItemBase * saveBase = m_savedItems.begin().value(); clearHoldingSelectItem(); - - QString moveString; QString viewName = ViewLayer::viewIDName(m_viewID); + QString moveString; if (moveCount == 1) { moveString = tr("Move %2 (%1)").arg(viewName).arg(saveBase->title()); } @@ -7173,10 +7163,7 @@ void SketchWidget::resizeNote(long itemID, const QSizeF & size) QString SketchWidget::renderToSVG(RenderThing & renderThing, QGraphicsItem * board, const LayerList & layers) { - renderThing.board = board; - if (board) { - renderThing.offsetRect = board->sceneBoundingRect(); - } + renderThing.setBoard(board); return renderToSVG(renderThing, layers); } @@ -7186,17 +7173,8 @@ QString SketchWidget::renderToSVG(RenderThing & renderThing, const LayerList & l QList itemsAndLabels; QRectF itemsBoundingRect; - QList items; - if (renderThing.selectedItems) { - items = scene()->selectedItems(); - } - else if (!renderThing.board) { - items = scene()->items(); - } - else { - items = scene()->collidingItems(renderThing.board); - items << renderThing.board; - } + QList items = renderThing.getItems(scene()); + foreach (QGraphicsItem * item, items) { ItemBase * itemBase = dynamic_cast(item); if (!itemBase) continue; diff --git a/src/sketch/sketchwidget.h b/src/sketch/sketchwidget.h index 2b59cc9d9..9ae4345f6 100644 --- a/src/sketch/sketchwidget.h +++ b/src/sketch/sketchwidget.h @@ -41,6 +41,8 @@ along with Fritzing. If not, see . #include "../utils/misc.h" #include "../commands.h" +#include "renderthing.h" + struct ItemCount { int selCount; int hasLabelCount; @@ -72,20 +74,6 @@ struct SwapThing { QMap propsMap; }; -struct RenderThing { - bool selectedItems; - double printerScale; - bool blackOnly; - QRectF imageRect; - QRectF offsetRect; - double dpi; - bool renderBlocker; - QRectF itemsBoundingRect; - QGraphicsItem * board; - bool empty; - bool hideTerminalPoints; -}; - class SizeItem : public QObject, public QGraphicsLineItem { Q_OBJECT diff --git a/src/svg/gerbergenerator.cpp b/src/svg/gerbergenerator.cpp index 04319575d..f8222a4fc 100644 --- a/src/svg/gerbergenerator.cpp +++ b/src/svg/gerbergenerator.cpp @@ -949,15 +949,16 @@ void GerberGenerator::exportPickAndPlace(const QString & prefix, const QString & double angle = atan2(transform.m12(), transform.m11()) * 180 / M_PI; // No;Value;Package;X;Y;Rotation;Side;Name QString string = QString("%1;%2;%3;%4;%5;%6;%7;%8\n") - .arg(ix++) - .arg(value - , itemBase->modelPart()->properties().value("package")) - .arg(GraphicsUtils::pixels2mm(loc.x() - bottomLeft.x(), GraphicsUtils::SVGDPI)) - .arg(GraphicsUtils::pixels2mm(loc.y() - bottomLeft.y(), GraphicsUtils::SVGDPI)) - .arg(angle) - .arg(itemBase->viewLayerID() == ViewLayer::Copper1 ? "Top" : "Bottom") - .arg(itemBase->instanceTitle()) - ; + .arg(ix++) + .arg(value + ,itemBase->modelPart()->properties().value("package") + ) + .arg(GraphicsUtils::pixels2mm(loc.x() - bottomLeft.x(), GraphicsUtils::SVGDPI)) + .arg(GraphicsUtils::pixels2mm(loc.y() - bottomLeft.y(), GraphicsUtils::SVGDPI)) + .arg(angle) + .arg(itemBase->viewLayerID() == ViewLayer::Copper1 ? "Top" : "Bottom" + ,itemBase->instanceTitle() + ); stream << string; stream.flush(); } diff --git a/src/svg/kicadmodule2svg.cpp b/src/svg/kicadmodule2svg.cpp index b383b3479..7eb697bdd 100644 --- a/src/svg/kicadmodule2svg.cpp +++ b/src/svg/kicadmodule2svg.cpp @@ -729,7 +729,6 @@ QString KicadModule2Svg::drawHorizontalOblong(int posX, int posY, double xSize, } QString middle; - bool gotID = false; if (padType == "SMD") { middle = QString("") @@ -741,7 +740,6 @@ QString KicadModule2Svg::drawHorizontalOblong(int posX, int posY, double xSize, } else { if (drillX == drillY) { - gotID = true; middle = QString("") .arg(posX) .arg(posY) diff --git a/src/svg/svg2gerber.cpp b/src/svg/svg2gerber.cpp index fdaebc9a7..07081849a 100644 --- a/src/svg/svg2gerber.cpp +++ b/src/svg/svg2gerber.cpp @@ -23,6 +23,7 @@ along with Fritzing. If not, see . #include "svgflattener.h" #include #include +#include #include constexpr double MaskClearance = 0.005; // 5 mils clearance @@ -178,13 +179,13 @@ void SVG2gerber::normalizeSVG() { // get rid of transforms SvgFlattener flattener; - flattener.flattenChildren(root); + flattener.flattenChildren(root, SvgAttributesMap()); } void SVG2gerber::convertShapes2paths(QDomNode node) { // I'm a leaf node. make me a path - //TODO: this should strip svg: namspaces + //TODO: this should strip svg: namespaces if(!node.hasChildNodes()) { QString tag = node.nodeName().toLower(); QDomElement element = node.toElement(); @@ -374,12 +375,15 @@ int SVG2gerber::allPaths2gerber(ForWhy forWhy) { standardAperture(circle, apertureMap, current_dcode, dcode_index, 0); // create circle outline - m_gerber_paths += QString("G01X%1Y%2D02*\n" - "G75*\n" - "G03X%1Y%2I%3J0D01*\n") - .arg(QString::number(flipx(centerx + r))) - .arg(QString::number(flipy(centery))) - .arg(QString::number(qRound(-r))); + m_gerber_paths += QString( + "G01X%1Y%2D02*\n" + "G75*\n" + "G03X%1Y%2I%3J0D01*\n" + ) + .arg(QString::number(flipx(centerx + r)) + ,QString::number(flipy(centery)) + ,QString::number(qRound(-r)) + ); m_gerber_paths += "G01*\n"; } } @@ -615,14 +619,15 @@ int SVG2gerber::allPaths2gerber(ForWhy forWhy) { void SVG2gerber::doPoly(QDomElement & polygon, ForWhy forWhy, bool closedCurve, QHash & apertureMap, QString & current_dcode, int & dcode_index) { - - //QString temp; - //QTextStream tempStream(&temp); - //polygon.save(tempStream, 1); - QString points = polygon.attribute("points"); QStringList pointList = points.split(QRegExp("\\s+|,"), QString::SkipEmptyParts); + if (pointList.length() < 4) { + qDebug() << QString("Empty polyline %1").arg(points); + DebugDialog::debug(QString("Empty polyline %1").arg(points), DebugDialog::Error); + return; + } + QString aperture; QString pointString; diff --git a/src/svg/svgfilesplitter.cpp b/src/svg/svgfilesplitter.cpp index e402680fe..b2e2eece9 100644 --- a/src/svg/svgfilesplitter.cpp +++ b/src/svg/svgfilesplitter.cpp @@ -127,10 +127,11 @@ bool SvgFileSplitter::splitString(QString & contents, const QString & elementID) for (int i = 0; i < superTransforms.count() - 1; i++) { elementText = QString("%2").arg(superTransforms[i], elementText); } - elementText = QString("%3") - .arg(elementID - , superTransforms[superTransforms.count() - 1] - , elementText); + elementText = QString("%3").arg( + elementID, + QString(superTransforms[superTransforms.count() - 1]), + elementText + ); } while (!root.firstChild().isNull()) { diff --git a/src/svg/svgflattener.cpp b/src/svg/svgflattener.cpp index 1b3877291..3280b5941 100644 --- a/src/svg/svgflattener.cpp +++ b/src/svg/svgflattener.cpp @@ -27,19 +27,29 @@ along with Fritzing. If not, see . #include #include #include +#include SvgFlattener::SvgFlattener() : SvgFileSplitter() { } -void SvgFlattener::flattenChildren(QDomElement &element) { +SvgAttributesMap SvgFlattener::mergeSvgAttributes(const SvgAttributesMap & inherited_attributes, QDomElement & element) { + SvgAttributesMap attributes(inherited_attributes); // copy + if (element.hasAttribute("stroke-width")) { + attributes["stroke-width"] = element.attribute("stroke-width"); + } + return attributes; +} + +void SvgFlattener::flattenChildren(QDomElement &element, const SvgAttributesMap & inherited_attributes) { + const SvgAttributesMap attributes = mergeSvgAttributes(inherited_attributes, element); // recurse the children QDomNodeList childList = element.childNodes(); for(int i = 0; i < childList.length(); i++) { QDomElement child = childList.item(i).toElement(); - flattenChildren(child); + flattenChildren(child, attributes); } //do translate @@ -64,21 +74,20 @@ void SvgFlattener::flattenChildren(QDomElement &element) { QMatrix transform = TextUtils::transformStringToMatrix(element.attribute("transform")); //DebugDialog::debug(QString("rotating %1 %2 %3 %4 %5 %6").arg(params.at(0)).arg(params.at(1)).arg(params.at(2)).arg(params.at(3)).arg(params.at(4)).arg(params.at(5))); - unRotateChild(element, transform); + unRotateChild(element, transform, attributes); } // remove transform element.removeAttribute("transform"); } -void SvgFlattener::unRotateChild(QDomElement & element, QMatrix transform) { - +void SvgFlattener::unRotateChild(QDomElement & element, QMatrix transform, const SvgAttributesMap & inherited_attributes) { + const SvgAttributesMap attributes( mergeSvgAttributes(inherited_attributes, element) ); // TODO: missing ellipse element if(!element.hasChildNodes()) { - - QString sw = element.attribute("stroke-width"); - if (!sw.isEmpty()) { + try { + QString sw(attributes.at("stroke-width")); bool ok; double strokeWidth = sw.toDouble(&ok); if (ok) { @@ -86,6 +95,8 @@ void SvgFlattener::unRotateChild(QDomElement & element, QMatrix transform) { QLineF newLine = transform.map(line); element.setAttribute("stroke-width", QString::number(newLine.length())); } + } catch (std::out_of_range) { + // Expected, sometimes there is no stroke-width } // I'm a leaf node. @@ -178,7 +189,7 @@ void SvgFlattener::unRotateChild(QDomElement & element, QMatrix transform) { for(int i = 0; i < childList.length(); i++) { QDomElement child = childList.item(i).toElement(); - unRotateChild(child, transform); + unRotateChild(child, transform, attributes); } } diff --git a/src/svg/svgflattener.h b/src/svg/svgflattener.h index 3e3a5a1fe..117f616c9 100644 --- a/src/svg/svgflattener.h +++ b/src/svg/svgflattener.h @@ -25,17 +25,19 @@ along with Fritzing. If not, see . #include #include +typedef std::map SvgAttributesMap; + class SvgFlattener : public SvgFileSplitter { public: SvgFlattener(); - void flattenChildren(QDomElement & element); - void unRotateChild(QDomElement & element,QMatrix transform); + void flattenChildren(QDomElement &element, const SvgAttributesMap &attributes); + void unRotateChild(QDomElement &element, QMatrix transform, const SvgAttributesMap & attributes); -public: static void flipSMDSvg(const QString & filename, const QString & svg, QDomDocument & flipDoc, const QString & elementID, const QString & altElementID, double printerScale, Qt::Orientations); static void replaceElementID(const QString & filename, const QString & svg, QDomDocument & flipDoc, const QString & elementID, const QString & altElementID); + static SvgAttributesMap mergeSvgAttributes(const SvgAttributesMap &inherited_attributes, QDomElement &element); protected: static QString flipSMDElement(QDomDocument & domDocument, QDomElement & element, const QString & att, QDomElement altAtt, const QString & altElementID, double printerScale, Qt::Orientations); diff --git a/src/svg/svgpathlexer.cpp b/src/svg/svgpathlexer.cpp index 137a0df15..293d202bc 100755 --- a/src/svg/svgpathlexer.cpp +++ b/src/svg/svgpathlexer.cpp @@ -22,8 +22,8 @@ along with Fritzing. If not, see . #include "svgpathgrammar_p.h" #include "../utils/textutils.h" -static const QRegExp findWhitespaceBefore(" ([AaCcMmVvTtQqSsLlVvHhZzx,])"); -static const QRegExp findWhitespaceAfter("([AaCcMmVvTtQqSsLlVvHhZz,]) "); +static const QRegExp findWhitespaceBefore(" ([AaCcEeMmVvTtQqSsLlVvHhZzx,])"); +static const QRegExp findWhitespaceAfter("([AaCcEeMmVvTtQqSsLlVvHhZz,]) "); static const QRegExp findWhitespaceAtEnd(" $"); static const QRegExp findMinus("-"); diff --git a/src/utils/graphicsutils.cpp b/src/utils/graphicsutils.cpp index 501587c37..06abeaa85 100644 --- a/src/utils/graphicsutils.cpp +++ b/src/utils/graphicsutils.cpp @@ -295,7 +295,7 @@ QString GraphicsUtils::toHtmlImage(QPixmap *pixmap, const char* format) { QBuffer buffer(&bytes); buffer.open(QIODevice::WriteOnly); pixmap->save(&buffer, format); // writes pixmap into bytes in PNG format - return QString("data:image/%1;base64,%2").arg(QString(format).toLower()).arg(QString(bytes.toBase64())); + return QString("data:image/%1;base64,%2").arg(QString(format).toLower(), QString(bytes.toBase64())); } QPainterPath GraphicsUtils::shapeFromPath(const QPainterPath &path, const QPen &pen, double shapeStrokeWidth, bool includeOriginalPath) diff --git a/src/utils/graphutils.cpp b/src/utils/graphutils.cpp index 639ee363d..b9f50e9ae 100644 --- a/src/utils/graphutils.cpp +++ b/src/utils/graphutils.cpp @@ -101,7 +101,7 @@ void GraphUtils::minCut(QList & connectorItems, QList visitedWires; - QList indexes; +// QList indexes; QHash vertices; QList edges; QVector verts; @@ -407,7 +407,8 @@ bool GraphUtils::chooseRatsnestGraph(const QList * partConnecto bool retval = false; try { Graph g(edges, edges + num_edges, weights, num_nodes); - property_map::type weightmap = get(edge_weight, g); + // Warning: weightmap not used? +// property_map::type weightmap = get(edge_weight, g); std::vector < graph_traits < Graph >::vertex_descriptor > p(num_vertices(g)); @@ -449,7 +450,6 @@ bool GraphUtils::scoreOneNet(QList & partConnectorItems, ViewGe typedef property < vertex_index_t, std::size_t > Index; typedef adjacency_list < listS, listS, directedS, Index > graph_t; typedef graph_traits < graph_t >::vertex_descriptor vertex_t; - typedef graph_traits < graph_t >::edge_descriptor edge_t; graph_t G; std::vector < vertex_t > verts(num_nodes); diff --git a/src/utils/lockmanager.cpp b/src/utils/lockmanager.cpp index b6ccedb8e..1919e9215 100644 --- a/src/utils/lockmanager.cpp +++ b/src/utils/lockmanager.cpp @@ -187,7 +187,6 @@ void LockManager::checkLockedFiles(const QString & prefix, QFileInfoList & backu } // we own the file - QString folder; LockedFile * lockedFile = makeLockedFile(dir.absoluteFilePath(LockedFileName), touchFrequency); lockedFiles.insert(dirInfo.fileName(), lockedFile); foreach (QFileInfo fileInfo, fileInfoList) { diff --git a/src/utils/misc.h b/src/utils/misc.h index b801d79e3..b8dd04e2d 100644 --- a/src/utils/misc.h +++ b/src/utils/misc.h @@ -38,7 +38,7 @@ along with Fritzing. If not, see . #include #include -#define ALLMOUSEBUTTONS (Qt::LeftButton | Qt::MidButton | Qt::RightButton | Qt::XButton1 | Qt::XButton2) +#define ALLMOUSEBUTTONS (Qt::LeftButton | Qt::MiddleButton | Qt::RightButton | Qt::XButton1 | Qt::XButton2) typedef QPair RealPair; diff --git a/src/utils/s2s.cpp b/src/utils/s2s.cpp index de30a1376..f03229fa3 100644 --- a/src/utils/s2s.cpp +++ b/src/utils/s2s.cpp @@ -126,10 +126,11 @@ QString makePinNumber(const ConnectorLocation * connectorLocation, double x1, do .arg(ty) .arg("middle") .arg(connectorLocation->id) - .arg(0) // SW(width) - .arg(SchematicRectConstants::PinTextColor) - .arg(SchematicRectConstants::FontFamily) - ; + .arg( + "0" // SW(width) + , SchematicRectConstants::PinTextColor + , SchematicRectConstants::FontFamily + ); if (x1 == x2) { text += "\n"; @@ -172,15 +173,15 @@ QString makePinText(const ConnectorLocation * connectorLocation, double x1, doub } text += QString("%5\n") - .arg(SchematicRectConstants::PinBigTextHeight) - .arg(x2 + xOffset) - .arg(y2 + yOffset) - .arg(anchorAtStart ? "start" : "end") - .arg(TextUtils::escapeAnd(connectorLocation->name)) - .arg(0) // SW(width) - .arg(SchematicRectConstants::PinTextColor) - .arg(SchematicRectConstants::FontFamily) - ; + .arg(SchematicRectConstants::PinBigTextHeight) + .arg(x2 + xOffset) + .arg(y2 + yOffset) + .arg(anchorAtStart ? "start" : "end" + , TextUtils::escapeAnd(connectorLocation->name) + , "0" // SW(width) + , SchematicRectConstants::PinTextColor + , SchematicRectConstants::FontFamily + ); if (rotate) { text += "\n"; @@ -261,7 +262,7 @@ bool S2S::onefzp(QString & fzpFilePath, QString & schematicFilePath) { QDomDocument dom; if (!dom.setContent(&file, true, &errorStr, &errorLine, &errorColumn)) { - message(tr("Failed loading '%1', %2 line:%3 col:%4").arg(fzpFilePath).arg(errorStr).arg(errorLine).arg(errorColumn)); + message(tr("Failed loading '%1', %2 line:%3 col:%4").arg(fzpFilePath, errorStr).arg(errorLine).arg(errorColumn)); return false; } @@ -313,7 +314,7 @@ bool S2S::onefzp(QString & fzpFilePath, QString & schematicFilePath) { QSvgRenderer renderer; bool loaded = renderer.load(schematicFilePath); if (!loaded) { - message(tr("Unable to load schematic '%1' for '%2'").arg(schematicFilePath).arg(fzpFilePath)); + message(tr("Unable to load schematic '%1' for '%2'").arg(schematicFilePath, fzpFilePath)); return false; } @@ -427,8 +428,8 @@ bool S2S::onefzp(QString & fzpFilePath, QString & schematicFilePath) { .arg(rectT) .arg((hUnits * SchematicRectConstants::NewUnit) - SchematicRectConstants::RectStrokeWidth) .arg((vUnits * SchematicRectConstants::NewUnit) - SchematicRectConstants::RectStrokeWidth) - .arg(SchematicRectConstants::RectFillColor) - .arg(SchematicRectConstants::RectStrokeColor) + .arg(SchematicRectConstants::RectFillColor + , SchematicRectConstants::RectStrokeColor) .arg(SchematicRectConstants::RectStrokeWidth) ; @@ -500,10 +501,10 @@ bool S2S::onefzp(QString & fzpFilePath, QString & schematicFilePath) { .arg(SchematicRectConstants::LabelTextHeight) .arg(((hUnits * SchematicRectConstants::NewUnit) / 2) + rectL) .arg(y) - .arg(0) // SW(width) - .arg(SchematicRectConstants::TitleColor) - .arg(TextUtils::escapeAnd(subTitle)) - .arg(SchematicRectConstants::FontFamily) + .arg("0" // SW(width) + , SchematicRectConstants::TitleColor + , TextUtils::escapeAnd(subTitle) + , SchematicRectConstants::FontFamily) ; y += (SchematicRectConstants::LabelTextHeight + SchematicRectConstants::LabelTextSpace); } diff --git a/src/utils/schematicrectconstants.cpp b/src/utils/schematicrectconstants.cpp index 2653a5162..f560d62eb 100644 --- a/src/utils/schematicrectconstants.cpp +++ b/src/utils/schematicrectconstants.cpp @@ -83,15 +83,15 @@ QString schematicPinNumber(qreal x, qreal y, qreal pinSmallTextHeight, const QSt } text += QString("%5\n") - .arg(pinSmallTextHeight) - .arg(useX) - .arg(useY) - .arg("middle") - .arg(id) - .arg(0) // SW(width) - .arg(SchematicRectConstants::PinTextColor) - .arg(SchematicRectConstants::FontFamily) - ; + .arg(pinSmallTextHeight) + .arg(useX) + .arg(useY) + .arg("middle" + ,id + ,"0" // SW(width) + ,SchematicRectConstants::PinTextColor + ,SchematicRectConstants::FontFamily + ); if (rotate) { text += "\n"; @@ -124,9 +124,9 @@ QString schematicPinText(const QString & id, const QString & signal, qreal x, qr .arg(TextUtils::escapeAnd(signal)) .arg(bigPinFontSize) .arg(x) - .arg(SchematicRectConstants::PinTextColor) - .arg(SchematicRectConstants::FontFamily) - .arg(anchor) + .arg(SchematicRectConstants::PinTextColor + ,SchematicRectConstants::FontFamily + ,anchor) ; if (rotate) { @@ -339,7 +339,7 @@ QString SchematicRectConstants::genSchematicDIP(QList & powers, QLi foreach (QDomElement contact, vias) { QString signal = getConnectorName(contact); svg += QString("\n") - .arg(contact.attribute("connectorIndex")).arg(signal); + .arg(contact.attribute("connectorIndex"), signal); svg += QString("\n") .arg(contact.attribute("connectorIndex")); } @@ -356,7 +356,7 @@ QString SchematicRectConstants::genSchematicDIP(QList & powers, QLi QString mid = QString("\n") .arg(ly - halfPinThickness).arg(contact.attribute("connectorIndex")).arg(pinLength).arg(pinThickness).arg(signal); - mid += QString("\n") + mid += QString("\n") .arg(ly - halfPinThickness).arg(contact.attribute("connectorIndex")).arg(pinThickness); svg += mid; if (busNames.contains(contact.attribute("signal"), Qt::CaseInsensitive)) { @@ -378,8 +378,8 @@ QString SchematicRectConstants::genSchematicDIP(QList & powers, QLi .arg(width - pinLength - halfPinThickness) .arg(ly) .arg(width - halfPinThickness) - .arg(SW(pinThickness)) - .arg(SchematicRectConstants::PinColor) + .arg(SW(pinThickness) + ,SchematicRectConstants::PinColor) ; viaY = ly; @@ -392,7 +392,7 @@ QString SchematicRectConstants::genSchematicDIP(QList & powers, QLi .arg(pinLength) .arg(pinThickness) .arg(signal); - mid += QString("\n") + mid += QString("\n") .arg(width) .arg(ly - halfPinThickness) .arg(contact.attribute("connectorIndex")) @@ -418,14 +418,14 @@ QString SchematicRectConstants::genSchematicDIP(QList & powers, QLi if (!contact.isNull() && !bus) { QString signal = getConnectorName(contact); svg += QString("\n") - .arg(lx).arg(halfPinThickness).arg(pinLength).arg(SW(pinThickness)).arg(SchematicRectConstants::PinColor); + .arg(lx).arg(halfPinThickness).arg(pinLength).arg(SW(pinThickness), SchematicRectConstants::PinColor); viaY = halfPinThickness; viaX = lx; QString mid = QString("\n") .arg(lx - halfPinThickness).arg(0).arg(contact.attribute("connectorIndex")).arg(pinThickness).arg(pinLength).arg(signal); - mid += QString("\n") - .arg(lx - halfPinThickness).arg(0).arg(contact.attribute("connectorIndex")).arg(pinThickness); + mid += QString("\n") + .arg(lx - halfPinThickness).arg(0).arg(contact.attribute("connectorIndex")).arg(pinThickness); svg += mid; if (busNames.contains(contact.attribute("signal"), Qt::CaseInsensitive)) { busMids.insert(contact.attribute("signal").toLower(), mid); @@ -447,14 +447,14 @@ QString SchematicRectConstants::genSchematicDIP(QList & powers, QLi if (!contact.isNull() && !bus) { QString signal = getConnectorName(contact); svg += QString("\n") - .arg(lx).arg(height - pinLength).arg(height - halfPinThickness).arg(SW(pinThickness)).arg(SchematicRectConstants::PinColor); + .arg(lx).arg(height - pinLength).arg(height - halfPinThickness).arg(SW(pinThickness), SchematicRectConstants::PinColor); viaY = height - pinLength; viaX = lx; QString mid = QString("\n") .arg(lx - halfPinThickness).arg(height - pinLength).arg(contact.attribute("connectorIndex")).arg(pinThickness).arg(pinLength).arg(signal); - mid += QString("\n") - .arg(lx - halfPinThickness).arg(height).arg(contact.attribute("connectorIndex")).arg(pinThickness); + mid += QString("\n") + .arg(lx - halfPinThickness).arg(height).arg(contact.attribute("connectorIndex")).arg(pinThickness); svg += mid; if (busNames.contains(contact.attribute("signal"), Qt::CaseInsensitive)) { busMids.insert(contact.attribute("signal").toLower(), mid); diff --git a/src/utils/textutils.cpp b/src/utils/textutils.cpp index 8824fd692..97e9eba54 100644 --- a/src/utils/textutils.cpp +++ b/src/utils/textutils.cpp @@ -43,7 +43,7 @@ along with Fritzing. If not, see . QSet InstalledFonts::InstalledFontsList; QMultiHash InstalledFonts::InstalledFontsNameMapper; // family name to filename; SVG files seem to have to use filename -const QString TextUtils::CreatedWithFritzingString("Created with Fritzing (http://www.fritzing.org/)"); +const QString TextUtils::CreatedWithFritzingString("Created with Fritzing (https://fritzing.org/)"); const QString TextUtils::CreatedWithFritzingXmlComment("\n"); const QRegExp TextUtils::FindWhitespace("[\\s]+"); @@ -612,8 +612,9 @@ QString TextUtils::svgTransform(const QString & svg, QTransform & transform, boo .arg(transform.m22()) .arg(translate ? transform.dx() : 0.0) .arg(translate ? transform.dy() : 0.0) - .arg(svg) - .arg(extras); + .arg(svg + ,extras + ); } bool TextUtils::getSvgSizes(QDomDocument & doc, double & sWidth, double & sHeight, double & vbWidth, double & vbHeight) @@ -1087,7 +1088,7 @@ bool TextUtils::fixViewBox(QDomElement & root) { double y = coords.at(1).toDouble(&ok); if (!ok) return false; - QString newValue = QString("0 0 %1 %2").arg(coords[2]).arg(coords[3]); + QString newValue = QString("0 0 %1 %2").arg(coords[2], coords[3]); root.setAttribute("viewBox", newValue); QDomElement transformElement = root.ownerDocument().createElement("g"); @@ -1444,8 +1445,8 @@ QString TextUtils::makeLineSVG(QPointF p1, QPointF p2, double width, QString col .arg(p2.x()) .arg(p2.y()) .arg(width * dpi / printerScale) - .arg(stroke) - .arg(dash) + .arg(stroke + ,dash) ; } @@ -1668,6 +1669,44 @@ QString TextUtils::parseForModuleID(const QString & fzpXmlString) return ""; } +QMap TextUtils::parseFileForViewImages(const QString & fzpPath) +{ + QMap map; + QFile file(fzpPath); + if (!file.open(QFile::ReadOnly)) return map; + + QXmlStreamReader streamReader(&file); + streamReader.setNamespaceProcessing(false); + QString view; + while (!streamReader.atEnd()) { + switch (streamReader.readNext()) { + case QXmlStreamReader::StartElement: + if (streamReader.name().toString().compare("iconView") == 0) { + view = "icon"; + } + if (streamReader.name().toString().compare("breadboardView") == 0) { + view = "breadboard"; + } + if (streamReader.name().toString().compare("pcbView") == 0) { + view = "pcb"; + } + if (streamReader.name().toString().compare("schematicView") == 0) { + view = "schematic"; + } + if (streamReader.name().toString().compare("layers") == 0) { + map[view] = streamReader.attributes().value("image").toString(); + } + break; + default: + break; + } + } + + file.close(); + return map; +} + + QString TextUtils::parseFileForModuleID(const QString & fzpPath) { QString moduleId; @@ -1950,7 +1989,7 @@ QString TextUtils::elementToString(const QDomElement & element) { QDomNamedNodeMap attributes = element.attributes(); for (int i = 0; i < attributes.count(); i++) { QDomNode attribute = attributes.item(i); - string += QString(" %1='%2'").arg(attribute.nodeName()).arg(attribute.nodeValue()); + string += QString(" %1='%2'").arg(attribute.nodeName(), attribute.nodeValue()); } string +="/>"; return string; diff --git a/src/utils/textutils.h b/src/utils/textutils.h index ef1fe2bf2..53cf31adc 100644 --- a/src/utils/textutils.h +++ b/src/utils/textutils.h @@ -133,6 +133,7 @@ class TextUtils static const QString RegexFloatDetector; static const QString AdobeIllustratorIdentifier; + static QMap parseFileForViewImages(const QString &fzpPath); protected: static bool pxToInches(QDomElement &elem, const QString &attrName, bool isIllustrator); static void squashNotElement(QDomElement & element, const QString & elementName, const QString & attName, const QRegExp & matchContent, bool & result); diff --git a/src/version/partschecker.cpp b/src/version/partschecker.cpp index c8ab3b90b..09d604b74 100644 --- a/src/version/partschecker.cpp +++ b/src/version/partschecker.cpp @@ -250,7 +250,7 @@ bool PartsChecker::checkIfClean(const QString & repoPath, errorNumber++; branchName = git_reference_shorthand(head); // TODO: Remove this restriction, maybe limited to an 'expert mode' - if (branchName != "master" && branchName != "release_0.9.6") { + if (branchName != "master" && branchName != "release_0.9.7") { partsCheckerResult.partsCheckerError = PARTS_CHECKER_ERROR_USED_GIT; partsCheckerResult.errorMessage = sNotInMasterBranch.arg(repoPath).arg(errorNumber).arg(sBoilerPlate2); goto cleanup; diff --git a/src/version/updatedialog.cpp b/src/version/updatedialog.cpp index 23b3d4f69..e29cd5764 100644 --- a/src/version/updatedialog.cpp +++ b/src/version/updatedialog.cpp @@ -2,6 +2,7 @@ Part of the Fritzing project - http://fritzing.org Copyright (c) 2007-2019 Fritzing +Copyright (c) 2020-2021 Fritzing GmbH Fritzing is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -36,6 +37,7 @@ along with Fritzing. If not, see . #include #include #include +#include static const int s_maxProgress = 1000; @@ -72,11 +74,9 @@ UpdateDialog::UpdateDialog(QWidget *parent) : QDialog(parent) vLayout->addWidget(m_progressBar); m_buttonBox = new QDialogButtonBox(QDialogButtonBox::Ok | QDialogButtonBox::Cancel); - m_buttonBox->button(QDialogButtonBox::Cancel)->setText(tr("Close")); - m_buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Update parts")); connect(m_buttonBox, SIGNAL(rejected()), this, SLOT(stopClose())); - connect(m_buttonBox, SIGNAL(accepted()), this, SLOT(updateParts())); + connect(m_buttonBox, SIGNAL(accepted()), this, SLOT(openInBrowser())); vLayout->addWidget(m_buttonBox); @@ -124,13 +124,18 @@ bool UpdateDialog::setAvailableReleases(const QList & availa QString text = QString("").arg(style); QSettings settings; + m_updateUrl = ""; if (mainRelease) { text += genTable(tr("A new main release is available for downloading:"), mainRelease); settings.setValue("lastMainVersionChecked", mainRelease->versionString); + m_updateUrl = mainRelease->link; } if (interimRelease) { text += genTable(tr("A new interim release is available for downloading:"), interimRelease); settings.setValue("lastInterimVersionChecked", interimRelease->versionString); + if (m_updateUrl.isEmpty()) { + m_updateUrl = interimRelease->link; + } } text += ""; @@ -172,9 +177,23 @@ void UpdateDialog::releasesAvailableSlot() { if (!this->isVisible()) { this->exec(); } - return; + } else { + if (m_atUserRequest) { + m_buttonBox->setEnabled(true); + m_buttonBox->button(QDialogButtonBox::Cancel)->setVisible(false); + m_buttonBox->button(QDialogButtonBox::Cancel)->setEnabled(false); + m_buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Ok")); + m_buttonBox->button(QDialogButtonBox::Ok)->setVisible(true); + if (!this->isVisible()) { + this->exec(); + } + } else { + emit enableAgainSignal(true); + } } +} +void UpdateDialog::partsAvailableSlot() { bool canWrite = false; QDir repoDir(m_repoPath); QFile permissionTest(repoDir.absoluteFilePath("test.txt")); @@ -207,7 +226,7 @@ void UpdateDialog::releasesAvailableSlot() { m_feedbackLabel->setText(tr("

Checking for new parts...

")); m_doClose = false; m_partsCheckerResult.reset(); - available = PartsChecker::newPartsAvailable(m_repoPath, m_shaFromDataBase, m_atUserRequest, m_remoteSha, m_partsCheckerResult); + bool available = PartsChecker::newPartsAvailable(m_repoPath, m_shaFromDataBase, m_atUserRequest, m_remoteSha, m_partsCheckerResult); m_doClose = true; if (!available) { m_buttonBox->button(QDialogButtonBox::Ok)->setVisible(false); @@ -229,6 +248,7 @@ void UpdateDialog::releasesAvailableSlot() { switch (m_partsCheckerResult.partsCheckerError) { case PARTS_CHECKER_ERROR_NONE: m_feedbackLabel->setText(sUpdatePartsMessage.arg(m_shaFromDataBase)); + m_buttonBox->button(QDialogButtonBox::Ok)->setText(tr("Update parts")); m_buttonBox->button(QDialogButtonBox::Ok)->setVisible(true); break; case PARTS_CHECKER_ERROR_REMOTE: @@ -262,7 +282,7 @@ void UpdateDialog::releasesAvailableSlot() { break; } - m_buttonBox->setEnabled(true); + m_buttonBox->setEnabled(true); if (!this->isVisible()) { this->exec(); } @@ -300,6 +320,7 @@ void UpdateDialog::handleError() { DebugDialog::debug("handle error"); m_feedbackLabel->setText(tr("

Sorry, unable to retrieve update info

")); + m_buttonBox->button(QDialogButtonBox::Cancel)->setVisible(true); emit enableAgainSignal(true); DebugDialog::debug("handle error done"); } @@ -330,6 +351,13 @@ void UpdateDialog::stopClose() { emit enableAgainSignal(true); } +void UpdateDialog::openInBrowser() +{ + QDesktopServices::openUrl(m_updateUrl); + emit enableAgainSignal(true); + this->close(); +} + void UpdateDialog::closeEvent(QCloseEvent * event) { if (!m_doClose) { event->ignore(); @@ -360,7 +388,9 @@ QString UpdateDialog::genTable(const QString & title, AvailableRelease * release .arg(title) .arg(release->versionString) - .arg(release->dateTime.toString(Qt::DefaultLocaleShortDate)) + //.arg(QLocale::system().toString(release->dateTime., QLocale::LongFormat)) + //.arg(release->dateTime.toString(Qt::ISODate)) + .arg(release->dateTime.toString(QLocale().dateFormat(QLocale::LongFormat))) .arg(release->link) .arg(release->summary.replace("changelog:", "", Qt::CaseInsensitive)); } diff --git a/src/version/updatedialog.h b/src/version/updatedialog.h index bc9c1a62e..018d992e3 100644 --- a/src/version/updatedialog.h +++ b/src/version/updatedialog.h @@ -51,6 +51,7 @@ class UpdateDialog : public QDialog, public PartsCheckerUpdateInterface { protected slots: void releasesAvailableSlot(); + void partsAvailableSlot(); void xmlErrorSlot(QXmlStreamReader::Error errorCode); void httpErrorSlot(QNetworkReply::NetworkError); void jsonPartsErrorSlot(QString error); @@ -58,6 +59,7 @@ protected slots: void stopClose(); void updateParts(); void onCleanRepo(class ModFileDialog *modFileDialog); + void openInBrowser(); protected: bool setAvailableReleases(const QList & availableReleases); @@ -72,12 +74,15 @@ protected slots: QString m_repoPath; QString m_shaFromDataBase; QString m_remoteSha; + QString m_updateUrl; QLabel * m_feedbackLabel = nullptr; QDialogButtonBox * m_buttonBox = nullptr; QProgressBar * m_progressBar = nullptr; PartsCheckerResult m_partsCheckerResult; bool m_doQuit = false; bool m_doClose = false; + + }; diff --git a/src/version/version.cpp b/src/version/version.cpp index 178c1fa1b..4263fa49a 100644 --- a/src/version/version.cpp +++ b/src/version/version.cpp @@ -33,7 +33,7 @@ along with Fritzing. If not, see . QString Version::m_majorVersion("0"); QString Version::m_minorVersion("9"); -QString Version::m_minorSubVersion("6"); +QString Version::m_minorSubVersion("7"); QString Version::m_modifier("b"); QString Version::m_gitVersion(GIT_VERSION); QString Version::m_gitDate(GIT_DATE); // want standard ISO form diff --git a/src/version/versionchecker.cpp b/src/version/versionchecker.cpp index dc0b2a52b..8b780ce22 100644 --- a/src/version/versionchecker.cpp +++ b/src/version/versionchecker.cpp @@ -1,7 +1,8 @@ /******************************************************************* -Part of the Fritzing project - http://fritzing.org +Part of the Fritzing project - https://fritzing.org Copyright (c) 2007-2019 Fritzing +Copyright (c) 2020-2021 Fritzing GmbH Fritzing is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -51,13 +52,14 @@ VersionChecker::~VersionChecker() { void VersionChecker::fetch() { - DebugDialog::debug("http check new version"); + DebugDialog::debug("https check new version"); m_xml.clear(); QUrl url(m_urlString); QNetworkAccessManager * manager = new QNetworkAccessManager(this); connect(manager, SIGNAL(finished(QNetworkReply *)), this, SLOT(finished(QNetworkReply *))); - QNetworkReply * reply = manager->get(QNetworkRequest(url)); + QNetworkRequest request = QNetworkRequest(url); + QNetworkReply * reply = manager->get(request); QMutexLocker locker(&m_networkReplyLock); m_networkReply = reply; } @@ -69,7 +71,7 @@ void VersionChecker::finished(QNetworkReply * networkReply) if (responseCode == 200) { m_xml.addData(networkReply->readAll()); parseXml(); - DebugDialog::debug("http check new version no error"); + DebugDialog::debug("https check new version no error"); emit releasesAvailable(); } else { @@ -108,6 +110,10 @@ void VersionChecker::parseXml() if (m_xml.attributes().value("rel").toString().compare("enclosure") == 0) { m_currentLinkHref = m_xml.attributes().value("href").toString(); } + if (m_xml.attributes().value("rel").toString().compare("alternate") == 0) { + m_currentLinkHref = m_xml.attributes().value("href").toString(); + } + } else if (m_inEntry && elementName.compare("category") == 0) { m_currentCategoryTerm = m_xml.attributes().value("term").toString(); @@ -175,18 +181,6 @@ void VersionChecker::parseEntry() { if (m_currentCategoryTerm.isEmpty()) return; if (m_currentUpdated.isEmpty()) return; -#ifndef QT_NO_DEBUG - // hack for testing - if (m_currentCategoryTerm.compare("main") == 0) { - if (m_currentTitle.compare("0.11b") == 0) { - m_currentTitle = "0.1.11b"; - } - else if (m_currentTitle.compare("0.1b") == 0) { - m_currentTitle = "0.1.1b"; - } - } -#endif - VersionThing entryVersionThing; Version::toVersionThing(m_currentTitle, entryVersionThing); if (!entryVersionThing.ok) { @@ -219,8 +213,7 @@ void VersionChecker::parseEntry() { availableRelease->link = m_currentLinkHref; availableRelease->interim = interim; availableRelease->summary = m_currentSummary; - QStringList temp = m_currentUpdated.split('+'); // conversion is confused by the +timezone suffix from the site xml - availableRelease->dateTime = QDateTime::fromString(temp[0], "yyyy-MM-ddThh:mm:ss"); + availableRelease->dateTime = QDateTime::fromString(m_currentUpdated, Qt::ISODate); m_availableReleases.append(availableRelease); } diff --git a/src/version/versionchecker.h b/src/version/versionchecker.h index f2d7c4b9d..67a2acbaa 100644 --- a/src/version/versionchecker.h +++ b/src/version/versionchecker.h @@ -2,6 +2,7 @@ Part of the Fritzing project - http://fritzing.org Copyright (c) 2007-2019 Fritzing +Copyright (c) 2020-2021 Fritzing GmbH Fritzing is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by diff --git a/tests/auto/test_svg/test_pathlexer_protected.cpp b/tests/auto/test_svg/test_pathlexer_protected.cpp index 35fc58601..5454d1da0 100755 --- a/tests/auto/test_svg/test_pathlexer_protected.cpp +++ b/tests/auto/test_svg/test_pathlexer_protected.cpp @@ -24,6 +24,7 @@ BOOST_AUTO_TEST_CASE( pathlexer_clean ) "m0,0x", "m 0 , 0 x", "m 0 0\nx\n", + "M0.0,1.0e -8A1.0,1.0 0 0 0 1.0e -8,1.0 1.0,1.0 0 0 0 1.0,1.0 1.0,1.0 0 0 0 1.0,1.0 1.0,1.0 0 0 0 1.0,1.0e -8Z", "m0,0a 2.6,2.6 0 0 1 5.2,0v5.2a 2.6, 2.6 0 0 1-5.2,0 z " "m 0.5,3 a 1,\t 1\n 0 0 0 4.2,0v-0.8a 1, 1 0 0 0 -4.2,0z " }; @@ -33,6 +34,7 @@ BOOST_AUTO_TEST_CASE( pathlexer_clean ) "m0,0x", "m0,0x", "m0 0x", + "M0.0,1.0e-8A1.0,1.0 0 0 0 1.0e-8,1.0 1.0,1.0 0 0 0 1.0,1.0 1.0,1.0 0 0 0 1.0,1.0 1.0,1.0 0 0 0 1.0,1.0e-8Z", "m0,0a2.6,2.6 0 0 1 5.2,0v5.2a2.6,2.6 0 0 1 -5.2,0z" "m0.5,3a1,1 0 0 0 4.2,0v-0.8a1,1 0 0 0 -4.2,0z" }; diff --git a/translations/fritzing_ar.ts b/translations/fritzing_ar.ts index a31a568b2..a4deac1cd 100644 --- a/translations/fritzing_ar.ts +++ b/translations/fritzing_ar.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -797,7 +782,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -805,17 +790,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1264,6 +1249,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1290,12 +1339,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1405,7 +1454,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1896,7 +1945,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate @@ -1912,7 +1961,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1933,7 +1982,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -1954,14 +2003,14 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - + + Specify a file name - - + + Fritzing (*%1) @@ -1969,76 +2018,83 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2050,17 +2106,17 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unrouted connections - + There are no unrouted connections in this view. - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2149,145 +2205,171 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting @@ -2343,7 +2425,7 @@ We're working to avoid this message, and only let you choose between proper - + Cancel @@ -2364,241 +2446,236 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - + + File '%1' not found - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber @@ -2608,1105 +2685,1125 @@ We're working to avoid this message, and only let you choose between proper - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (SVG)... - + &Print... - + Ctrl+P - + Print the current view - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + &Edit - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + Rotate current selection 45 degrees clockwise - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Convert - + Read-only - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + Ctrl+Shift+V - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - + &Zoom In - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help - + Parts Editor Help - + Display Parts Editor help in a browser - + Align - - - + + + + + + &Routing - + Move to bottom layer - + Move to top layer - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + + + + Routing + + + + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Show unrouted - + Highlight all unrouted connectors - + Select All Wires - + Select all wires - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Check Loaded Traces - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + jumpers - + copperfill - + vias - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -3718,7 +3815,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -3730,728 +3827,728 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + unable to find replacement for %1. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + &Show Breadboard - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Show/hide the label for the selected parts - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Show Code - + Show the code (programming) view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + &File - + &Export - + as Image - + for Production - + &Part - + Raise and Lower - + &View - + &Window - - - + + + Ground Fill - + &Help - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Autoroute connections... - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Shift+Ctrl+3 - + Shift+Ctrl+2 - + Shift+Ctrl+1 - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Select All CopperFill - + Select all copper fill items - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Delete - + Page Setup - + Sorry, "%1" has not been implemented yet - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - - + + Set both copper layers clickable - - + + Set copper top layer clickable - - + + Set copper bottom layer clickable - + Select All Traces - + Select all trace wires - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select all trace wires excluded from autorouting - + Select All Jumpers - + Tidy Wires - + Tidy selected wires - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Copper Top and Copper Bottom layers are both active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting... - + Autorouting Progress... - + Remove Bendpoint - + Remove copper fill - - + + &Wire Color - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Do you want to update now? - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + Update %1 part(s) @@ -4638,7 +4735,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4664,62 +4761,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4732,120 +4829,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4881,11 +4978,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4900,12 +4997,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4925,7 +5022,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4972,216 +5069,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5213,12 +5310,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5230,7 +5327,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5242,7 +5339,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5282,67 +5379,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5429,154 +5526,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6339,12 +6436,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6385,86 +6482,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6803,12 +6908,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6818,12 +6923,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6849,7 +6954,6 @@ shift key swaps scroll axis - Fritzing @@ -6885,21 +6989,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7100,12 +7204,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Convert to Via - + Convert Via to Bendpoint @@ -7121,43 +7225,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7172,28 +7276,28 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select outdated parts - + Select locked parts @@ -7395,12 +7499,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7782,7 +7886,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7806,48 +7910,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8145,17 +8249,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8163,33 +8267,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8321,87 +8425,87 @@ Fritzing still works, but you won't be able to change parts properties. - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + Change - - + + Connect - - + + to %1 - + Create and connect wire - + Rotate %2 (%1) @@ -8426,57 +8530,57 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Flip %2 (%1) @@ -8555,12 +8659,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8570,81 +8674,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8723,22 +8827,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8865,11 +8969,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8990,6 +9089,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9392,108 +9496,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_bg.ts b/translations/fritzing_bg.ts index 8ebdbb698..fbe9f14b8 100644 --- a/translations/fritzing_bg.ts +++ b/translations/fritzing_bg.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>Кодът използва лиценза на ГНУ „GPL v3“, а всичко останало – лиценза „CreativeCommons:BY-SA“ - + <b>2007-%1 Fritzing</b> <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing е създаден от: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Професор Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,209 +61,210 @@ Bryant Mairs, Uleshka Asher и Daniel Tzschentke. - Special thanks goes out to: - Със специални благодарности на: + Със специални благодарности на: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser и Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Създаването на „Fritzing“ е осъществено с финансирането на - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, спонсор на дизайна - + Department of Bauhaus-University Weimar, Отдел на университета във Ваймар, Германия, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, анонимен дарител, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. и от всяка покупка на началния комплект на Fritzing или на печатна платка от фабриката на Fritzing. - Special thanks goes out as well to all the students - Изразяваме специални благодарности към всички студенти + Изразяваме специални благодарности към всички студенти - and alpha testers who were brave enough to give - и всички изпитатели на алфа версията, които бяха достатъчно смели да + и всички изпитатели на алфа версията, които бяха достатъчно смели да - Fritzing a test spin. - опитат „Fritzing“. + опитат „Fritzing“. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -815,7 +816,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value Изберете от падащото меню, или въдетете стойност за %1 @@ -823,17 +824,17 @@ Use the file? ConnectorItem - + Add bendpoint Добавяне на пресечна точка - + Straighten curve Изправяне на кривата - + Remove bendpoint Премахване на пресечната точка @@ -1285,6 +1286,70 @@ Use the file? Повторно създаване на базата данни с частите… + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Отказ + + + + Upload to Fab + + + + + Upload + Запис + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1311,12 +1376,12 @@ Use the file? FolderUtils - + Moving your custom parts Преместване на персонализираните части - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> <p>Персонализираните Ви части и набори са преместени от скритата папка на приложението в папката Ви за документи на Fritzing тук: <br/><br/><em>%1</em><br/><br/>Надяваме се, че така ще Ви е по-лесно да ги намирате и редактирате ръчно.</p> @@ -1432,7 +1497,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size размер на отвора @@ -1919,7 +1984,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate Завъртане @@ -1935,7 +2000,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute Авт. опроводяване @@ -1966,7 +2031,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note Бележка @@ -2056,24 +2121,25 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Споделяемият „%1“ не може да се отвори: %2 - + Unable to open shareable part '%1': %2 Споделяемата част „%1“ не може да се отвори: %2 - + + Unable to load part from '%1' Частта не може да се зареди от „%1“ - - + + Specify a file name Задайте име на файла - - + + Fritzing (*%1) Fritzing (*%1) @@ -2081,45 +2147,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Frizting - + Unable to export %1 as shareable „%1“ не може да се изнесе като „споделяемо“ @@ -2129,43 +2202,68 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Не е намерена схема в „%1“ - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) Част на Fritzing (*%1) - + Unable to export %1 to shareable sketch „%1“ не може да се изнесе към споделяема схема - + MainWindow::moveToPartsFolder mainwindow missing MainWindow::moveToPartsFolder: липсва основен прозорец - + There is already a part with id '%1' loaded into Fritzing. Вече има част с идентификатор „%1“ заредена във Fritzing. - - + + Do you want to keep the imported parts? Искате ли да оставите внесените части? - + No connections to route Няма връзки за опроводяване - + Routing completed Автоматичното опроводяване завърши - + Routing completed using %n jumper part(s) Автоматичното-опроводяване завърши. Беше използвана %n част за свръзка @@ -2173,7 +2271,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed %1 от %2 мрежи са опроводени – остава %n извод за опроводяване @@ -2181,130 +2279,130 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] %1 – [%2] - + No copper top layer Няма горен меден слой - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Горният меден слой (copper 1) не е наличен при ползване на еднослойна платка. Моля, превключете платката в режим с два слоя или изберете долния слой (copper 0). - - + + Sorry! Съжаляваме! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Няма част с такива параметри. Все още работим върху това да избегнем това съобщение и да Ви дадем възможност да избирате само измежду свойства, които наистина съществуват - + No exactly matching part found; Fritzing chose the closest match. Няма точно съвпадаща част. Fritzing избра най-близкото съвпадение. - + Change to single layer pcb Преминаване към еднослоен режим на платката - + Change to two layer pcb Пременаване към двуслоен режим на платката - + Swapped %1 with module %2 „%1“ е разменено с модул „%2“ - + Change image to %2 Промяна на изображението с „%2“ - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Във файла с векторна графика „%1“ няма слой „%2“. За повече информация относно това как да съдадете платка с персонализирана форма, моля, вижте инструкциите в <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 зареждане на „%1“ - + Loading... Зареждане… - + new sketch нова схема - + Schematic conversion Преобразуване на схемата - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? При запазването си схемата ще бъде преобразувана в новия стандарт за схематични графики. Искате ли да продължите и да разрешите преобразуването? - + Backing up '%1' Създаване на разервно копие на „%1“ - + Fritzing uncompressed (*%1) Некомпресирани файлове на Fritzing (*%1) - + Unrouted connections Неопроводени връзки - + There are no unrouted connections in this view. Няма неопроводени връзки в този изглед. - + (x,y)=(%1, %2) %3 (x,y) = (%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y) = (%1, %2) (ширина, височина) = (%3, %4) %5 - + Code Код - + Welcome Добре дошли - + Ctrl+D Ctrl+D @@ -2369,13 +2467,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel Отказ - + Choose a folder for exporting Изберете папка за изнасянето @@ -2396,17 +2494,17 @@ We're working to avoid this message, and only let you choose between proper Изнасяне… - + Unable to save %1 Запазването на „%1“ е невъзможно - + Cannot print to %1 Разпечатването в „%1“ е невъзможно - + Cannot write file %1: %2. Файлът „%1“ не може да бъде записан: @@ -2414,63 +2512,63 @@ We're working to avoid this message, and only let you choose between proper - + Saved '%1' Фйлът „%1“ е запазен - + &Save &Запазаване - + Ctrl+S Ctrl+S - - + + Save the current sketch Запазване на текущата схема - + &Save As... Запазване &като… - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Споделяне в Интернет… - + Post a project to the Fritzing website Публикуване на проекта в уеб сайта на Fritzing - + JPG... JPG… - + Export the visible area of the current sketch as a JPG image Изнасяне на видимата част на текущата схема като изображение във формат JPG - + PNG... PNG… - + Export the visible area of the current sketch as a PNG image Изнасяне на видимата част на текущата схема като изображение във формат PNG @@ -2483,167 +2581,167 @@ We're working to avoid this message, and only let you choose between proper Изнасяне на видимата част на текущата схема като изображение във формат PostScript - + PDF... PDF… - + Export the visible area of the current sketch as a PDF image Изнасяне на видимата част на текущата схема като изображение във формат PDF - + SVG... SVG… - + Export the current sketch as an SVG image Изнасяне на текущата схема като изображение във формат SVG - + List of parts (&Bill of Materials)... &Списък на компонентите… - + Save a Bill of Materials (BoM)/Shopping List as text Запазване на списък на компонентите (за закупуване) като текстов файл - + XML Netlist... Описание във формат XML… - + Save a netlist in XML format Запазване на описание на мрежата във формат XML - + SPICE Netlist... Описание във формат SPICE… - + Save a netlist in SPICE format Запазване на описание на мрежата във формат SPICE - + Eagle... Eagle… - + Export the current sketch to Eagle CAD Изнасяне на текущата схема във формат за Eagle CAD - + Extended Gerber (RS-274X)... Разширени формат Gerber (RS-274X)… - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Изнасяне на текущата схема в разширен формат Gerber (RS-274X) за професионална изработка на печатни платки - + Etchable (PDF)... За ецване (PDF)… - + Export the current sketch to PDF for DIY PCB production (photoresist) Изнасяне на текущата схема във формат PDF за домашна изработка (фотолитография) - + Etchable (SVG)... За ецване (SVG)… - + Export the current sketch to SVG for DIY PCB production (photoresist) Изнасяне на текущата схема във формат SVG за домашна изработка (фотолитография) - + &Print... &Печат… - + Ctrl+P Ctrl+P - + Print the current view Разпечатване на текущия изглед - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Тази функционалност в скоро време ще Ви позволи да изнесете схемата си от Fritzing във формат за работа със EAGLE. Ако искате да има повече възможности за изнасяне към други системи, моля, уведомете ни или помогнете за осъществяването на това. - + Export SVG... Изнасяне на SVG… - + Export Bill of Materials (BoM)... Изнасяне на списък на компонентите… - + Unable to save BOM file, but the text is on the clipboard. Списъкът на компонентите не може да бъде запазен, но текстът му е копиран в буфера за обмен. - + Export SPICE Netlist... Изнасяне във формат SPICE… - + Export Netlist... Изнасяне на описание на мрежата… - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да изнесете схемата във формат Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. Изнасянето във формат Gerber може да се извършва само за една платка наведнъж. Моля, изберете коя от платките искате да изнесете. - + Sketch exported to Gerber Схемата е изнесена във формат Gerber - + Select a Fritzing File to Open Изберете файл на Fritzing, който да бъде отворен - + Cannot find file %1. Файлът „%1“ не може да бъде намерен. - + Cannot read file 1 %1: %2. Файлът „%1“ не може да бъде прочетен: @@ -2651,467 +2749,476 @@ We're working to avoid this message, and only let you choose between proper - - + + File '%1' not found Файлът „%1“ не е намерен - + Convert Преобразуване - + Read-only Само за четене - directly loading parts - директно зареждане на частите + директно зареждане на частите - + loading %1 (model) зареждане на „%1“ (модел) - + loading %1 (breadboard) зареждане на „%1“ (прототипна платка) - + loading %1 (pcb) зареждане на „%1“ (печатна платка) - + loading %1 (schematic) зареждане на „%1“ (схема) - + New Нов - + Ctrl+N Ctrl+N - + Create a new sketch Създаване на нова схема - + &Open... &Отваряне… - + Ctrl+O Ctrl+O - + Shell launch %1 Изпълнение на „%1“ в обвивката - + throw test exception хвърляне на пробно изключение - + throw a fake exception to see what happens хвърляне на фалшиво изключение с цел да се види какво ще стане - + &Quit Из&ход - + Ctrl+Q Ctrl+Q - + Quit the application Изход от програмата - + &Open Example Отваряне на п&ример - + All Всички - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: примерът с ид. = „%1“ не може да бъде зареден - + &Open Recent Files Последно отвар&яни - + &%1 %2 &%1 %2 - + Undo Отмяна - + Redo Повторение - + &Cut &Изрязване - + Cut selection Изрязване на избраното - + &Copy &Копиране - + Copy selection Копиране на избраното - + &Paste &Поставяне - + Paste clipboard contents Поставяне на съдържанието от буфера за обмен - + Paste in Place Постави на място - + Paste clipboard contents in place Поставяне на съдържанието от буфера за обмен на място - + &Duplicate &Дублиране - + Duplicate selection Дублиране на избраното - + &Delete И&зтриване - + Delete selection Изтриване на избраното - + Delete Minus Изтриване без проводниците - + Delete selection without attached wires Изтриване на избраното без прикачените проводници - + Delete Wire up to bendpoints Изтриване на проводника до пресечните точки - + &Select All Избиране на &всичко - + Select all elements Избиране на всички елементи - + &Deselect Отмяна на из&бора - + Deselect Отмяна на избора на елементи - - + + Add Note Добавяне на бележка - + &Preferences... &Настройки… - - + + Show the application's about box Показване на информацията относно програмата - + Dump all parts Извеждане на всички части - + Debug dump all parts in this view Извеждане на всички части в този изглед с цел отстраняване на грешки - + Test Connectors Изпробване на изводите - + Connect all connectors to a single test part Свъззване на всички изводи към една част за проба - + Align Left Подравняване отляво - + Align selected items at the left Подравняване на избраните елементи отляво - + Align Horizontal Center Хоризонтално центриране - + Align selected items at the horizontal center Подравняване на избраните елементи според хоризонталния център - + Align Right Подравняване отдясно - + Align selected items at the right Подравняване на избраните елементи отдясно - + Align Top Подравняване отгоре - + Align selected items at the top Подравняване на избраните елементи отгоре - + Align Vertical Center Вертикално центриране - + Align selected items at the vertical center Подравняване на избраните елементи според вертикалния център - + Align Bottom Подравняване отдолу - + Align selected items at the bottom Подравняване на избраните елементи отдолу - + Show/hide the label for the selected parts Показване/скриване на етикетите на избраните части - + Regenerate parts database ... Пресъздаване на базата данни с частите… - + Regenerate the parts database (should only be used if your parts database is broken) Пресъздаване на базата данни с частите (това е нужно само ако базата данни с частите е повредена) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+5 Ctrl+5 - + &Show Welcome Показване на п&риветствения изглед - + Show the welcome view Показване на приветствения изглед - + Show Code Показване на кода - + Show the code (programming) view Показване на изгледа с кода - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help Показване на първоначалната помощ - + &Edit &Редактиране - + &Add to bin... Добавяне към &набор части… - + Add selected part to bin Добавяне на избраната част към определен набор - + Disconnect All Wires Разкачане на всички проводници - + Disconnect all wires connected to this connector Разкачане на всички проводници свързани с този извод - + Update InfoView on hover Обновяване на информацията при посочване - + Export Normalized SVG Изнасяне на нормализиран файл SVG - + Export 1000 dpi SVG of this part in this view Изнасяне на файл SVG с гъстота от 1000 точки на инч (394 точки на см) - + Export Normalized Flattened SVG Изнасяне на нормализиран файл SVG с обединени слоеве - + Export 1000 dpi Flattened SVG of this part in this view Изнасяне на файл SVG с обединени слоеве и гъстота от 1000 точки на инч (394 точки на см) - + Rotate the selected parts by 90 degrees clockwise Завъртане на избраните части на 90 градуса по часовниковата стрелка - + Rotate the selected parts by 180 degrees Завъртане на избраните части на 180 градуса - + Rotate current selection 90 degrees counter clockwise Завъртане на избраните части на 90 градуса обратно на часовниковата стрелка - + Rotate current selection 45 degrees counter clockwise Завъртане на избраните части на 45 градуса обратно на часовниковата стрелка - + Rotate current selection 45 degrees clockwise Завъртане на избраните части на 45 градуса по часовниковата стрелка - + Revert? Отмяна? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3120,849 +3227,854 @@ Go ahead and revert? Искате ли да отмяната да бъде извършена? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Отваряне на схема на Fritzing (.fzz, .fz), или зареждане на част на Frizting (.fpz) или набор части на Fritzing (.fbz, .fzbz) - + Revert Отмяна - + Reload the sketch Презареждане на схемата - + &Delete Wire &Изтриване на проводника - + Edit (new parts editor) Промяна (в редактора на части) - + Open the new parts editor on an existing part Отваряне на редактора на части и зареждане на избраната част - + &Flip Horizontal &Хоризонтално обръщане - + Flip current selection horizontally Хоризонтално обръщане на избраното - + &Flip Vertical &Вертикално обръщане - + Flip current selection vertically Вертикално обръщане на избраното - + Bring to Front Преместване най-отгоре - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Преместване на избраното над всичко останало на слоя - + Bring Forward Преместване нагоре - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Преместване на избраното по-нагоре в слоя - + Send Backward Преместване надолу - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Преместване на избраното по-надолу в слоя - + Send to Back Преместване най-отдолу - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Преместване на избраното под всичко останало на слоя - + Lock Part Заключване на частта - + Prevent a part from being moved Забраняване на местенето на избраната част - + Sticky Лепкава - + If a "sticky" part is moved, parts on top of it are also moved Когато „лепкава“ част бъде преместена, частите върху нея се местят заедно с нея - + Select All Locked Parts Избиране на всички заключени части - + Select all parts that can't be moved Избиране на всичко части, които не могат да бъдат местени - + &Show All Layers &Показване на всички слоеве - + Show all the available layers for the current view Показване на всички слоеве в текущия изглед - + &Hide All Layers &Скриване на всички слоеве - + Hide all the layers of the current view Скриване на всички слоеве в текущия изглед - + &Show part label &Показване на етикета на частта - + &Export... &Изнасяне… - + Export selected part Изнасяне на избраната част - - + + Add Bendpoint Добавяне на пресечна точка - + Add a bendpoint to the selected wire Добавяне на пресечна точка на избрания проводник - + Convert Bendpoint to Via Преобразуване на пресечната точка в проходен отвор - + Convert the bendpoint to a via Преобразуване на пресечната точка в проходен отвор - + Convert Via to Bendpoint Преобразуване на проходния отвор в пресечна точка - + Convert the via to a bendpoint Преобразуване на проходния отвор в пресечна точка - + Straighten Curve Изправяне на кривата - + Straighten the curve of the selected wire Изправяне на кривата на избрания проводник - - + + Select outdated parts Избиране на остарелите части - - + + Update selected parts Обновяване на избраните части - + Find part in sketch... Търсене на част в схемата… - + Search for parts in a sketch by matching text Търсене на части в схемата, отговарящи на даден текст - + Open programming window Отваряне на прозореца за програмиране - + Open microcontroller programming window Отваряне на прозореца за програмиране на микроконтролери - - + + Hide part silkscreen Скриване на ситопечата на частта - + Hide/show the silkscreen layer for only this part Показване/скриване на слоя със ситопечата само за тази част - + &Zoom In &Увеличаване - + Ctrl++ Ctrl++ - + Zoom in Увеличаване на мащаба - + Ctrl+= Ctrl+= - + &Zoom Out &Намаляване - + Ctrl+- Ctrl+- - + Zoom out Намаляване на мащаба - + &Fit in Window &Побиране в прозореца - + Ctrl+0 Ctrl+0 - + Fit in window Нагласяне на мащаба така, че всичко да се събира в прозореца - + &Actual Size &Реален размер - + Actual (real world physical) size Реален размер (така, както ще изглежда реално на живо) - + 100% Size Мащаб 100% - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size Мащаб 100% (според пикселите) - + Align to Grid Подравняване по решетката - + Align items to grid when dragging Подравняване на елементите по решетката при влачене - + Show Grid Показване на решетка - + Show the grid Показване на решетката - + Set Grid Size... Задаване на размера на решетката… - + Set the size of the grid in this view Задаване на размера на решетката за този изглед - + Set Background Color... Задаване на цвета на фона… - + Set the background color of this view Задаване на цвета на фона за този изглед - + &Show Breadboard Показване на &прототипната платка - + Ctrl+1 Ctrl+1 - + Show the breadboard view Показване на изгледа като прототипна платка - + &Show Schematic Показване на &схемата - + Ctrl+2 Ctrl+2 - + Show the schematic view Показване на схематичния изглед - + &Show PCB Показване на пе&чатната платка - + Ctrl+3 Ctrl+3 - + Show the PCB view Показване на изгледа като печатна платка - + Ctrl+4 Ctrl+4 - + Show Parts Bin Icon View Показване на частите в панела като иконки - + Display the parts bin in an icon view Показване на частите в панела като иконки - + Show Parts Bin List View Показване на частите в панела като списък - + Display the parts bin in a list view Показване на частите в панела като списък - + &Minimize &Минимизиране - + Ctrl+M Ctrl+M - + Minimize current window Минимизиране на текущия прозорец - + Debugger Output Показване на журнала за отстраняване на грешки - + Online Tutorials Ръководства в Интернет - + Ctrl+? Ctrl+? - + Open Fritzing help Отваряне на помощната страница на Fritzing - Donate to Fritzing - Дарение на Fritzing + Дарение на Fritzing - Open Fritzing donation web page - Отваряне на страницата за дарения на Fritzing + Отваряне на страницата за дарения на Fritzing - + Online Projects Gallery Галерия с проекти в Интернет - + Open Fritzing examples Отваряне на страницата с примерни проекти на Fritzing - + Online Parts Reference Справка за частите в Интернет - + Open Parts Reference Отваряне на страницата за справка за частите - + First Time Help Първоначална помощ - + Check for updates... Проверка за обновления… - + Check whether a newer version of Fritzing is available for download Проверка дали дали има нова версия на Fritzing налична за сваляне - + &About &Относно - + Tips, Tricks and Shortcuts Съвети, хитрости и клавишни комбинации - + Display some handy Fritzing tips and tricks Показване на някои полезни съвети и хитрости в Fritzing - + &About Qt &Oтносно Qt - + Show Qt's about box Показване на информация за Qt - + Report a bug... Докладване на проблем… - - + + Report a but you've found in Fritzing Докладвайте проблем, с който сте се сбълскали във Fritzing - + Enable debugging log Включване на журнала за отстраняване на грешки - + Parts Editor Help Помощ за редактора на части - + Display Parts Editor help in a browser Показване на помощната страница за редактора на части - + &File &Файл - + &Export &Изнасяне - + as Image като изображение - + for Production за изработка - + &Part &Част - + Raise and Lower Нагоре и надолу - + Ctrl+Shift+V Ctrl+Shift+V - + Rotate 45° Clockwise Завъртане на 45° по часовниковата стрелка - + Rotate 90° Clockwise Завъртане на 90° по часовниковата стрелка - + Rotate 180° Завъртане на 180° - + Rotate 90° Counter Clockwise Завъртане на 90° обратно на часовниковата стрелка - + Rotate 45° Counter Clockwise Завъртане на 45° обратно на часовниковата стрелка - + Align Подравняване - + &View &Изглед - + &Window Про&зорец - - - + + + Ground Fill Запълване със заземяваща писта - + &Help &Помощ - + Move to bottom layer Преместване в долния слой - + Move to top layer Преместване в горния слой - + Delete Ratsnest Line Изтриване на свързващата линия - + Delete Wire Изтриване на проводник - + Hide part label Скриване на етикета на частта - + Show part label Показване на етикета на частта - + Show part silkscreen Показване на ситопечата на частта - + Delete Изтриване - + top and bottom горен и долен - + bottom долен - + top горен - + Ground Fill (%1) Запълване със заземяваща писта (%1) - + Copper Fill (%1) Запълване с медна писта (%1) - + Actual Size Реален размер - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Изглежда реалният размер на екрана Ви не може да бъде определен автоматично, така че „реалният размер“, както го виждате, е само предполагаем. Най-добре би било да изтеглите на схемата част „линия“ и след което да поставите истинска линия върху екрана и да променяте мащаба, докато разделенията не съвпаднат. - + Page Setup Настройки на страницата - + Sorry, "%1" has not been implemented yet Съжаляваме, но функционалността „%1“ все още не е реализирана - + + + + Routing + + + + Shift+Ctrl+A Shift+Ctrl+A - + Set Ground Fill Keepout... Задаване на отстоянието при запълване със заземяване… - + Set the minimum distance between ground fill and traces or connectors Задаване на минималното остояние между заземяващата писта и другите писти и изводи - + Design Rules Check (DRC) Проверка на правилата за проектиране - + Highlights any parts that are too close together for safe board production Открояване на частите, които са твърде близо една до друга за безпроблемна изработка - + Fritzing Fab Quote... Квота за изработка на платка от Fritzing… - + How much would it could to produce a PCB from this sketch with Fritzing Fab Проверка колко ще струва да се изработи печатна платка по тази схема във фабриката на Fritzing - - + + View from below Изглед отдолу - - + + View the PCB from the bottom layers upwards Преглед на печатната платка чрез поглед от долните слоеве нагоре - + View from above Изглед отгоре - + View the PCB from the top layers downwards Преглед на печатната платка чрез поглед от горните слоеве надолу - - + + Set both copper layers clickable Задаване и на двата медни слоя като позволени за манипулиране с мишката - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable Задаване само на горния меден слой като позволен за манипулиране с мишката - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable Задаване само на долния меден слой като позволен за манипулиране с мишката - + Shift+Ctrl+1 Shift+Ctrl+1 - + Schematic view update Обновяване на схематичния изглед - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -3971,29 +4083,29 @@ Go ahead and revert? - + Would you like to convert '%1' to the new standard now or open the file read-only? Искате ли да преобразувате „%1“ в новия стандарт сега, или предпочитате да отворите файла в режим само за четене? - + The conversion process will not modify '%1', until you save the file. Процесът на преобразуване няма да промени „%1“, докато файлът не бъде запазен. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Ще трябва да преподредите частите и връзките в схематичния изглед, тъй като размерите на повечето изображения на части са променени. Можете да използвате автоматичното опроводяване, за да почистите пистите. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Имайте предвид, че персонализираните части няма да бъдат преобразувани. В редактора на части е има инструмент за преобразуване на „правоъгълни“ схематични изображения. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -4002,7 +4114,7 @@ Note: if you want to update later, there are options under the 'Part' Забележка: ако предпочитате обновяването да бъде извършено по-късно, в менюто „Част“ има команти за работа с отделни остарели части. - + There are %n outdated part(s) in this sketch. В схемата има %n остаряла част. @@ -4010,7 +4122,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. Силно препоръчително е тази част да бъде обновена до най-новата версия. @@ -4018,228 +4130,238 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. Това може да внесе промени в схемата Ви, тъй като частите или изводите им може да са леко отместени. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background %1 фон - + Enter Text Въведете текст - + Text will match part label, description, title, etc. Enter text to search for: Текстът ще бъде съпоставен с етикета, описанието, заглавието и т.н. на частите. Въведете текст за търсене: - + Search Търсене - + No parts matched search term '%1'. Няма части отговарящи на критерия за търсене: „%1“. - + Do not autoroute Без автоматично опроводяване - + Autoroute connections... Автоматично опроводяване… - + When autorouting, do not rip up this trace wire, via, or jumper item При автоматично опроводяване, да не се прекъсва тази писта, проходен отвор или джъмпер - + Move to other side of the board Преместване от другата страна на платката - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Преместване на избраните писти от другата страна на платката (забележка: първата писта ще бъде преместена, а останалите ще я последват) - + Show unrouted Показване на неопроводените - + Highlight all unrouted connectors Открояване на всички неопроводени изводи - + Select All Traces Избиране на всички писти - + Select all trace wires Избиране на всички писти - + Select All Wires Избиране на всички проводници - + Select all wires Избиране на всички проводници - + Select All CopperFill Избиране на всички за запълване с мед - + Select all copper fill items Избиране на всички елементи, отбелязани за запълване с медна писта - + Force Update Routing Status and Ratsnests Принудително обновяване на състоянието на опроводяването и свързващите линии - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Преизчисляване на състоянието на опроводяването и свсързващите линии (в случай че автоматичното обновяване не работи правилно) - + Select all trace wires excluded from autorouting Избиране на всички проводникови писти изключени от автоматичното опроводяване - + Select All Jumpers Избиране на всички джъмпери - + Select all jumper item parts Избиране на всички джъмпер - + Select All Vias Избиране на всички проходни отвори - + Select all via parts Избиране на всички проходни отвори - + Tidy Wires Подреждане на проводниците - + Tidy selected wires Подреждане на избраните проводници - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Запълване на празните места в медния слоя – това включва и всички писти свързани със ЗЕМЯ - - + + Copper Fill Запълване с медна писта - + Remove Copper Fill Премахване на запълването с медна писта - + Remove the copper fill Премахване на запълването с медна писта - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Запълване на празните места в медния слой – това включва всички писти свързани към отправните точки - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces Проверка на заредените писти - + Copper Top and Copper Bottom layers are both active И горният и долният меден слой са активни - + Order a PCB... Поръчка на печатна платка… - + Order a PCB created from your sketch--from fabulous Fritzing Fab Поръчка на печатна платка по схемата от фабриката на Fritzing - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да използвате автоматичното опроводяване. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Моля, изберете платката, която искате да бъде опроводена автоматично. Процесът може да се извършва само за по една платка наведнъж. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да използвате запълването със заземяваща или медна писта. - + Please select a PCB--copper fill only works for one board at a time. Моля, изберете платка – запълването с медна писта може да се извършва само за по една платка наведнъж. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да премахнете запълването с медна писта. - + Please select a PCB--ground fill operations only work on a one board at a time. Моля, изберете платка – запълването със заземяваща писта може да се извършва само за по една платка наведнъж. - + Do you want to update now? @@ -4248,251 +4370,254 @@ Do you want to update now? Наистина ли искате обновяването да се извъри сега? - + OK Добре - + Set the grid size for %1. Задаване на размера на решетката за „%1“. - + Grid Size: Размер на решетката: - + in инча - + mm мм - + Restore Default По подразбиране - + Your sketch does not have a board yet! DRC only works with a PCB. Схемата все още няма платка! Проверката на правилата за проектиране работи само с печатна платка. - + Please select a PCB. DRC only works on one board at a time. Моля, изберете печатна платка. Проверката на правилата за проектиране може да се извършва само за по една платка наведнъж. - + DRC Progress... Напредък на проверката на правилата за проектиране… - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да използвате функционалностите за запълване с медна писта. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Моля, изберете печатна платка – запълването с медна писта може да се извършва само за по една платка наведнъж. - + Copper Top layer is active Горният меден слой е активен - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Файлове на Fritzing (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Споделяеми файлове на Fritzing (*%2);;Част на Fritzing (*%3);;Набор на Fritzing (*%4);;Споделяем набор на Fritzing (*%5) - - - + + + + + + &Routing &Опроводяване - + &Create trace from ratsnest Създаване на &писта от свързващата линия - + Create a trace from the ratsnest line Създаване на писта от свързващата линия - + &Create wire from ratsnest Създаване на п&роводник от свързващата линия - + Create a wire from the ratsnest line Създаване на проводник от свързващата линия - + Select All "Don't Autoroute" Traces Избиране на всички писти без авт. опроводяване - + Select All Autoroutable Traces Избиране на всички писти с авт. опроводяване - + Select all trace wires that can be changed during autorouting Избиране на всички писти позволяващи промяна при авт. опроводяване - + Fill empty regions of the copper layer--not including traces connected to a GROUND Запълване на празните места в медния слой – това включва и всички писти свързани със ЗЕМЯ - + Choose Ground Fill Seed(s)... Избиране на отправни точки за запълване със заземяваща писта… - + Set Ground Fill Seed Задаване като отправна точка за запълване със заземяваща писта - + Treat this connector and its connections as a 'ground' during ground fill. Този извод и връзките му да се третират като „земя“ при запълването със заземяващи писта. - + Clear Ground Fill Seeds Изчистване на отправните точки за запълване със заземяваща писта - + Clear ground fill seeds--enable copper fill only. Изчистване на отправните точки за запълване със заземяваща писта – позволяване само на запълването с медна писта. - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Избиране на всички писти, чиито местоположения на екрана не съвпадат с реалното им местоположение. Това е нужно само за схеми опроводени автоматично с версия 0.7.10 или по стара - + Autorouter/DRC settings... Настройки на авт. опроводяване/проверката на правилата за проектиране… - + Set autorouting parameters including keepout... Задаване на параметрите за авт. опроводяване, включително отстоянията… - + Copper Bottom layer is active Долният меден слой е активен - + Autorouting... Автоматично опроводяване… - + Autorouting Progress... Напредък на автоматичното опроводяване… - + jumpers джъмпери - + copperfill запълване с медна писта - + vias проходни отвори - + Remove Bendpoint Премахване на пресечната точка - + Generating %1 fill... Създааване на запълване с %1… - + ground заземяваща писта - + copper медна писта - + Remove copper fill Премахване на запълването с медна писта - - + + &Wire Color &Цвят на проводника - + Launch %1... Пускане на „%1“… - + No outdated parts found. All your parts are up-to-date. Няма остарели части. Всички части са актуални. - + Outdated parts Остарели части - + unable to find replacement for %1. не може да се намери заместител за „%1“. - + Update %1 part(s) Обновяване на %1 част(и) - + Successfully updated %1 part(s). Please check all views for potential side-effects. Успешно обновени части: %1. @@ -4674,7 +4799,7 @@ Reason: %2 (errcode %3) NetLabel - + net label етикет на мрежата @@ -4700,64 +4825,64 @@ Reason: %2 (errcode %3) Щракнете върху този извод, за да изтеглите нова писта. - + Change trace layer Промяна на слоя на пистата - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Frizting - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да използвате запълването с медна писта. - + %1 Fill: please select the board you want to apply fill to. Запълване %1: моля, изберете платката, върху която да приложите запълването. - + Ground Това се замества в горния текст със заземяваща писта - + Copper Това се замества в горния текст с медна писта - + Copper fill: please select only the board you want to fill. Запълване с медна писта: моля, изберете само платката, която искате да запълните. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4772,93 +4897,93 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Моля, първо щракнете върху печатна платка – функционалността за избор може да се извършва само за по една платка наведнъж. - - + + Fritzing error: unable to render board svg (1). Грешка във Fritzing: векторната графика на платката не може да бъде изчертана (1). - - - + + + Fritzing error: unable to render copper svg (1). Грешка във Fritzing: векторната графика на медния слой не може да бъде изчертана (1). - + Fritzing error: unable to write copper fill (1). Грешка във Fritzing: запълването с медна писта не може да бъде записано (1). - + Fritzing error: unable to write copper fill (2). Грешка във Fritzing: запълването с медна писта не може да бъде записано (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Запълването с медна писта не може да бъде извършено – възможно е частта да не е била поставена на печатната платка. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Запълването с медна писта не може да бъде извършено – възможно е частта да е била поставена върху друга част или проводник, вместо върху самата печатна платка. - + Clear ground fill seeds Изчистване на отправните точки за запълване със заземяваща писта - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Схемата все още няма платка! Моля, добавете печатна платка, за да можете да използвате тази функционалност за избор. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Този проходен отвор не може да бъде преобразуван в пресечна точка, тъй като е свързва част, която се намира само на долния слой, с друга, която се намира само на горния слой. - + Show part silkscreen Показване на ситопечата на частта - + Hide part silkscreen Скриване на ситопечата на частта - - + + Fritzing Fab Quote Квота за изработка на платка от Fritzing - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. Схемата все още няма платка! Не можете да изработите схемата без печатна платка. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. Съжаляваме, но http://fab.fritzing.org не отговаря на заявката за квота .Моля, проверете връзката си с мрежата и/или опитайте отново по-късно. - + Enter Keepout Въведете отстояние - + Keepout is in mils (.001 inches). @@ -4867,14 +4992,14 @@ Reason: %2 (errcode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Имайте предвид, че поради остротата на ръбовете, разстоянията може да са твърде къси с до 2 мила, - + so you may want to increase the keepout value by that much. @@ -4883,7 +5008,7 @@ Reason: %2 (errcode %3) - + 10 mils is a good default choice. @@ -4892,7 +5017,7 @@ Reason: %2 (errcode %3) - + Enter keepout value: Въведете стойност за отстоянието: @@ -4928,11 +5053,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor Редактор на части @@ -4947,12 +5072,12 @@ Reason: %2 (errcode %3) Има една последна промяна все още на изчакване. - + Duplicate 'family' property not allowed Дублирането на свойството „семейство“ не е позволено - + Duplicate 'variant' property not allowed Дублирането на свойството „вариант“ не е позволено @@ -4972,7 +5097,7 @@ Reason: %2 (errcode %3) Продължаване на работата - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Спокойно можете да затворите редактора на части ,на не забравяйте да довършите задачите по късно. @@ -5019,207 +5144,207 @@ Reason: %2 (errcode %3) Не може да се анализира файлът fzp: %1 - + Icon View Иконка - + Metadata View Свойства - + Connectors View Изводи - + Show Icon Показване на иконата - + Ctrl+4 Ctrl+4 - + Show the icon view Показване на иконката - + Ctrl+5 Ctrl+5 - + Show the metadata view Показване на свойствата - + Show Connectors Показване на изводите - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' Промяна на „%1“ на „%2“ - + Change description Промяна на описанието - + Change tags Промяна на етикета - + Change properties Промяна на свойствата - + Change connector %1 Промяна на извод %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Файлове с изображение или отпечатък (%1 %2 %3 %4 %5);;Файлове SVG (%1);;Файлове JPEG (%2);;Файлове PNG (%3);;Файл с отпечатък gEDA (%4);;Модулен файл на Kicad (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Файлове с изображения (%1 %2 %3);;Файлове SVG (%1);;Файлове JPEG (%2);;Файлове PNG (%3)%4%5 - + Open Image Отвяране на изображение - + Copy problem Копиране на проблема - + Unable to make a local copy of: '%1' Не може да се създаде локално копие на: „%1“ - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Може да използвате изображение във формат PNG или JPEG , за да създадете частта, но е по-добре да използвате файл SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- Изображенията във формат PNG и JPEG запазват своите свойства на пикселни изображения и не изглеждат добре когато бъдат уголемени, - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. така че частите на Fritzing е по-добре да използвате форматите PNG и JPG само за преглед. - + Use of PNG and JPG discouraged Употребата на форматите PNG и JPG е непрепоръчителна - - - - + + + + Conversion problem Проблем при преобразуването - - + + Fritzing (New) Parts Editor Редактор на части на Fritzing - + Show Metadata Показване на свойствата - + Show the connector metadata in a list view Показване на свойствата на изводите като списък - + Blank not allowed Това не може да бъде празно - + The value of '%1' can not be blank. Стойността на „%1“ не може да бъде празна. - + Change %1 to %2 Промяна на „%1“ на „%2“ - + Must be unique Изисква се уникалност - + Variant '%1' is in use. The variant name must be unique. Вече съществува вариант с име „%1“. Името на варианта трябва да бъде уникално. - - + + Duplicate problem Проблем с дублирането - + Unable to load '%1' „%1“ не може да се зареди - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Изглежда файлът с векторна графика „%1“ е бил изнесен от „CorelDraw“ без да е била избрана настройката „presentation attributes“ (презентационни свойства). - + Please re-export the SVG file using that setting, and try loading again. Моля, изнесете отново файла като използвате тази настройка и опитайте да го заредите отново. - + Fonts Шрифтове - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' В момента Fritzing поддържа само шрифтовете „OCRA“ и „Droid“ – те бяха заменени с шрифтовете в „%1“ - + Unable to load image file '%1': %2 @@ -5229,9 +5354,9 @@ Reason: %2 (errcode %3) - - - + + + SVG problem Проблем със SVG @@ -5265,12 +5390,12 @@ Reason: %2 (errcode %3) Искате ли да продължите работата си или предпочитете да затворите без запазване? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> <p>Моля, въведете представка, която да Ви помогне да разпознавате файловете на частта.<br/>Имената на файловете ще имат следния вид: „ПРЕДСТАВКА_%1“.<br/>(Не е задължително да променяте предложената представка, тъй като винаги се добавя уникална наставка.)</p> - + This part has %n unassigned connectors Частта има необозначен извод @@ -5278,7 +5403,7 @@ Reason: %2 (errcode %3) - + across %n views. в един изглед. @@ -5286,7 +5411,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. Докато не бъдат свързани всички изводи с елементи на векторната графика, частта няма да може да работи правилно. @@ -5326,67 +5451,67 @@ Reason: %2 (errcode %3) Преизползване на изображението за печатната платка и в този изглед - + Make only this view visible Само този изглед да бъде видим - + The part will only be visible in this view and icon view Частта ще бъде видима само в този изглед и във вид на иконка - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Тази версия на редактора на части не може да работи с отделни медни слоеве copper0 и copper1в „%1“. - + So editing may produce an invalid PCB view image Затова редактирането може да произведе неправилно изображение за печатната платка - + Unable to parse '%1': %2 line:%3 column:%4 Не може да се анализира файлът „%1“: %2 ред: %3, колона: %4 - + There are no copper layers defined in: %1. В „%1“ липсват определения на медни слоеве. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Вижте <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">това обяснение </a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Това няма да бъде проблем в следващото издание на редактора на части, - + but for now please modify the file according to the instructions in the link. но засега, моля, променете файла според инструкциите достъпни чрез връзката. - + no schematics found in %1 не са открити схеми в „%1“ - + schematic part схематична част - + no footprints found in %1 не са открити отпечатъци в „%1“ - + Relocate connector %1 Преместване на извод %1 @@ -5475,52 +5600,52 @@ Reason: %2 (errcode %3) „%1“ не може да се зареди. Моля, затворете редактора на части без да запазвате и опитайте отново. - + Unable to load image file '%1' Файлът с изображение „%1“ не може да бъде зареден - + Filename prefix Представка за името на файла - + Sketch Change Warning Предупрежение при промяна на схемата - + The open sketch '%1' uses the part you are editing. Отворената схема „%1“ използва частта, която редактирате. - + Saving this part will make a change to the sketch that cannot be undone. Ако запазите частта, това ще направи необратими промени по схемата. - + The open sketches Отворените схеми - + '%1', „%1“, - + and '%1' и „%1“ - + Saving this part will make a change to these sketches that cannot be undone. Ако запазите частта, това ще направи необратими промени по тези схеми. - + Go ahead and save? @@ -5529,102 +5654,102 @@ Go ahead and save? Искате ли запазването да бъде извършено? - + Save Запазване - + Cancel Отказ - + Move terminal point Преместване на крайната точка - + Remove connector Премахване на извода - + Remove %1 connectors Премахване на %1 извода - + Save "%1" Запазване на „%1“ - + Do you want to save the changes you made in the part "%1"? Искате ли промените, които направихте по частта „%1“, да бъдат запазени? - + Your changes will be lost if you don't save them. Ако не бъдат запазени, промените ще бъдат загубени. - + untitled part неименувана част - + Unable to load fzp from %1 Не може да се зареди файлът fzp: %1 - + Unable to create new connector--you may have to start over. Не може да бъде създаден нов извод – може да се наложи да започнете отначало. - + Add connector Добавяне на извод - + Add %1 connectors Добавяне на %1 извода - + Remove internal connection from '%1' Премахване на въртешната връзка от „%1“ - + Change all connectors to %1 Промяна на всички изводи на %1 - + Unable to parse '%1' Не може да се анализира „%1“ - + Change to %1 Промяна на %1 - + Make only %1 view visible Само изгледът „%1“ да бъде видим - + Internal connections are very messed up. Вътрешните връзки са много объркани. - + Add internal connection from '%1' to '%2' Добавяне на вътрешна връзка от „%1“ до „%2“ @@ -6390,12 +6515,12 @@ Note: this warning will not be repeated during this session. Поведение на колелцето на мишката - + Command COMMAND - + Control CONTROL @@ -6436,57 +6561,65 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (щракнете за промяна…) - + Clear Settings Изчистване на настройките - + Platform Support Системна поддръжка - + <b>%1</b> <b>%1</b> - + Location: Местоположение: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Трябва да разполагате с <a href='%1'>%2</a> (версия %3 или по-нова). - + Select a programmer (executable) for %1 Изберете програматор (изпълним файл) за %1 - + Connected Highlight Отрояване на свързаност - + Unconnected Highlight Открояване на несвързаност - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6495,7 +6628,7 @@ SHIFT променя оста ALT или %1 = мащабиране - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6504,22 +6637,22 @@ ALT или %1 = превъртане SHIFT променя оста - + Curvy vs. straight wires Криволичещи или прави проводници - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Когато натиснете левия бутон на мишката и изтеглите проводник или краче на част (а не извод или пресечна точка), бихте ли искали да промените кривината на този проводник (или краче) или предпочитате да се създаде нова пресечна точка? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Тази отметка задава поведението по подразбиране. Бихте могли да превключите към другия вид поведение, ако задържите клавиша CONTROL (COMMAND под Mac) докато влачите. - + Curvy wires and legs Криволичещи проводници и крачета @@ -6864,7 +6997,6 @@ SHIFT променя оста - Fritzing Frizting @@ -6900,12 +7032,12 @@ SHIFT променя оста Цвят за свързаност - + Unconnected highlight color Цвят за несвързаност - + Clear all saved settings and close this dialog immediately. Изчистване на запазените настройки и затваряне на прозореца. @@ -6915,12 +7047,12 @@ SHIFT променя оста Това не изтрива файлове, а само връща настройките по подразбиране. - + There is no undo for this action, and no further warning!!!! Това действие е небратимо и няма повече предупреждения!!! - + Clear Settings Изчистване на настройките @@ -6952,21 +7084,21 @@ SHIFT променя оста Редактиране на връзката - - - + + + Part Част - - - + + + Wire Проводник - + Set Grid Size Задаване на размера на решетката @@ -7183,12 +7315,12 @@ Fritzing все още работи ,но няма да можете да про Избиране на всички писти с авт. опроводяване - + Convert to Via Преобразуване в проходен отвор - + Convert Via to Bendpoint Преобразуване на проходния отвор в пресечна точка @@ -7198,43 +7330,43 @@ Fritzing все още работи ,но няма да можете да про схема - + Error reading file %1: %2. Грешка при четенето на файла „%1“: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Промнана на крачето на %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer Слой %1 - - + + Bring forward Преместване нагоре - + Send backward Преместване надолу - + Bring to front Преместване най-отгоре @@ -7249,28 +7381,28 @@ Fritzing все още работи ,но няма да можете да про Сливане на проводника - + Trace wires Писти - + Ratsnest wires Свързващи проводници - - + + Select all %1 Избиране на всички %1 - + Select outdated parts Избиране ни остарелите части - + Select locked parts Избиране на заключените части @@ -7472,12 +7604,12 @@ Fritzing все още работи ,но няма да можете да про Напредък на файла… - + Copying file %1 Копиране на файла „%1“ - + File %1 already exists: it won't be overwritten Файлът „%1“ вече съществува и няма да бъде презаписан @@ -7858,9 +7990,13 @@ Fritzing все още работи ,но няма да можете да про няма - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - Папката с части „%1“ е променена – тя не е в основния клон (%2). %3 + Папката с части „%1“ е променена – тя не е в основния клон (%2). %3 + + + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + @@ -7883,48 +8019,52 @@ Fritzing все още работи ,но няма да можете да про В папката с части „%1“ има файлове, които не могат да бъдат прочетени. %2 - + Unable to open parts folder '%1' for update. %2 Папката с части „%1“ не може да бъде отворена за обновяването. %2 - + Parts folder repo '%1' is empty. %2 Хранилището на папката с части „%1“ е празно. %2 - + Unable to determine network site for '%1'. %2 Мястото в мрежата за „%1“ не може да бъде определено. %2 - + Unable to access network site for '%1'. %2 Мястото в мрежата за „%1“ е недостъпно. %2 - + Unable to retrieve network references for '%1'. %2 Мрежовите препратки за „%1“ не могат да бъдат получени. %2 - + + Unable to retrieve the network reference for '%1'#%2. %3 + + + Unable to retrieve master network reference for '%1'. %2 - Основната мрежова препратка за „%1“ не може да бъде получена. %2 + Основната мрежова препратка за „%1“ не може да бъде получена. %2 - - + + Regenerating parts database Пресъздаване на базата данни с частите - + Unable to find parts git repository Хранилището в git за частите не може да бъде открито - + Unable to find parts git repository HEAD Версията „HEAD“ на хранилището в git за частите не може да бъде открита @@ -8230,17 +8370,17 @@ Fritzing все още работи ,но няма да можете да про Ruler - + width ширина - + &cm &см - + &in &инч @@ -8248,33 +8388,33 @@ Fritzing все още работи ,но няма да можете да про S2S - + Failed loading '%1', %2 line:%3 col:%4 „%1“ не може да се зареди, %2 ред:%3 колона:%4 - + Schematic not found for '%1' Не е открита схема за „%1“ - - + + Unable to load schematic '%1' for '%2' Схемата „%1“ за „%2“ не може да бъде заредена - + Schematic '%1' is already using the 0.1inch standard. Схемата „%1“ вече използва стандарта от 0,1 инч. - + Missing connector %1 in '%2' schematic of '%3' Извод %1 липсва в схемата „%2“ на „%3“ - + Failed loading schematic '%1', %2 line:%3 col:%4 Схемата „%1“ не може да бъде заредена, %2 ред:%3 колона:%4 @@ -8406,142 +8546,142 @@ Fritzing все още работи ,но няма да можете да про зареждането завърши - + Delete ratsnest Изтриване на свързваща линия - + %1 %2 %1 %2 - + %1 %2 items %1 %2 елемента - + Select All Избиране на всичко - + Deselect Отмяна на избора - + Add %1 Добавяне на %1 - + Selection Избор - + Move %2 (%1) Преместване на %2 (%1) - + Move %2 items (%1) Преместване на %2 елемента (%1) - - + + Select %1 Избиране на %1 - - + + Select %1 items Избиране на %1 елемента - - + + Disconnect Разкачане на - + from %1 от %1 - + Move leg of Преместване на крачето на - - + + Connect Свързване на - - + + to %1 към %1 - + Change leg curvature for %1. Промяна на кривината на краче на „%1“. - + Change leg bendpoint for %1. Промяна на пресечната точка на краче на „%1“. - + Change Промяна - + Create and connect wire Създаване и свързване на проводник - + Fritzing Frizting - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Това прилича на опит за създаване на писта между слоевете. Такова нещо не би трябвало да се получава – моля, свържете се с разработчиците. - + Create and connect %1 Създаване и свързване на %1 - + wire проводник - + trace писта - + Rotate %2 (%1) Завъртане на %2 (%1) - + Flip %2 (%1) Обръщане на %2 (%1) @@ -8632,12 +8772,12 @@ Fritzing все още работи ,но няма да можете да про - + Resize ruler to %1 %2 Преоразмеряване на линия на %1 %2 - + test connectors изпрозване на изводите @@ -8647,64 +8787,64 @@ Fritzing все още работи ,но няма да можете да про Преоразмеряване на бележка - + Change Resistance from %1 to %2 Промяна на съпротивление от %1 на %2 - - + + Change %1 from %2 to %3 Промяна на %1 от %2 на %3 - - + + Resize board to %1 %2 Преоразмеряване на платка на %1 %2 - + Create wire from Ratsnest Създаване на проводник от свързваща линия - + Disconnect all wires from %1 Разкачане на всички проводници от %1 - + Disconnect all wires from %1 items Разкачане на всички проводници от %1 елемента - + Change image from %1 to %2 Промяна на изображение от %1 на %2 - + change pin labels промяна на етикетите на крачета - + Unrouted connections are highlighted in yellow. Неопроводените връзки са откроени в жълто. - + There are no unrouted connections Има неопроводени връзки - + Unrouted connections Неопроводени връзки - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8713,17 +8853,17 @@ Note: you can also trigger this display by mousing down on the routing status te Забележка: можете да видите това и като щракнете върху текста за състоянието на опроводяване в лентата за състояние. - + Part '%1' not found in sketch Частта „%1“не е намерена в схемата - + Add %1 parts Добавяне на %1 части - + Deselect all Отмяна на целия избор @@ -8800,22 +8940,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage напрежение - + label етикет - + Net labels Мрежови етикети - + Net labels cannot be blank Мрежовите етикети не могат да бъдат празни @@ -8943,9 +9083,8 @@ Note: you can also trigger this display by mousing down on the routing status te За да редактирате етикет на част, щракнете два пъти върху него, или използвайте полето за въвеждане на текст в инспектора. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - За да покажете различни свойства в етикета на частта, както и за да го задържите или да промените шрифта, щракнете с десния бутон на мишката върху етикета. + За да покажете различни свойства в етикета на частта, както и за да го задържите или да промените шрифта, щракнете с десния бутон на мишката върху етикета. @@ -9067,6 +9206,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. За да направите извивка на проводник или огъваемо краче на прототипната или печатната платка, задръжте клавиша CONTROL (COMMAND под Мак) при влаченето. Можете да зададете дали криволичещите проводници да се създават по подразбиране в <b>Настройките</b>. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9481,93 +9625,68 @@ Note: you can also trigger this display by mousing down on the routing status te The Fritzing Creator Kit is out of Stock. For Updates please visit the fritzing.blog Творческият комплект на Fritzing не е в наличност. Можете да получите актуална информация от блога на Fritzing - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Фабрика на Fritzing - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Фабриката на Fritzing е лесна и достъпна услуга за професионална изработна на печатни платки от схемите Ви създадени чрез Fritzing. - + produce your first pcb now >> изработете първата си печатна платка сега >> - + Order your PCB now. Поръчайте печатна платка сега. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Проекти - + Blog Блог - + Fritzing News. Новините на Fritzing. - + Fritzing Projects. Проектите на Fritzing. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Няма скорошни схеми - + Unable to reach blog.fritzing.org Няма връзка с blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9576,17 +9695,17 @@ Note: you can also trigger this display by mousing down on the routing status te Няма връзка с friting.org/projects - + Tip of the Day: Съвет на деня: - + All Tips Всички съвети - + Next Tip Следващ съвет diff --git a/translations/fritzing_bn.ts b/translations/fritzing_bn.ts index 66824ad00..a72e7eb65 100644 --- a/translations/fritzing_bn.ts +++ b/translations/fritzing_bn.ts @@ -8,47 +8,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>কোড এর মধ্যে GNU GPL v3এবং বাকি টুকুর মধ্যে CreativeCommons:BY-SA - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: ফ্রিটজিংগ যারা বানিয়েছেনঃ - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto wettach,Andr&eacute;Kn &ouml;rig;Myriet Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -57,213 +57,214 @@ Bryant Mairs, Uleshka Asher, and Daniel Tzschentke. - Special thanks goes out to: - বিশেষ ভাবে ধন্যবাদ দিচ্ছিঃ + বিশেষ ভাবে ধন্যবাদ দিচ্ছিঃ - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing থেকে অর্থায়ন সঙ্গে তৈরি সম্ভব ফ্রিটজিংগ এর আনুদানে ইহা সম্ভব - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg,এর উদ্যোক্তা বা ডিজাইনার - + Department of Bauhaus-University Weimar, Buhaus বিশ্ববিদ্যাল এর weimer ডিপার্টমেন্ট,>বিভাগ Buhaus বিশ্ববিদ্যালয় weimer ডিপার্টমেন্ট, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, লম্বন IxDS, বেনামী দাতা,parallax,Picaxe, Sperkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - Special thanks goes out as well to all the students - সকল ছাত্র ছাত্রিদের বিশেষ ধন্যবাদ দেয়াহল + সকল ছাত্র ছাত্রিদের বিশেষ ধন্যবাদ দেয়াহল - and alpha testers who were brave enough to give - এবং পরীক্ষক গনকে যারা পর্যাপ্ত অভিমত প্রদান করেছেন + এবং পরীক্ষক গনকে যারা পর্যাপ্ত অভিমত প্রদান করেছেন - Fritzing a test spin. Fritzing পর্যবেক্ষণ - ফ্রিটজিংগ পরীক্ষন + ফ্রিটজিংগ পরীক্ষন <br /><br /><br /><br /><br /><br /><br /><br /> @@ -866,7 +867,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -874,18 +875,18 @@ Use the file? ConnectorItem - + Add bendpoint বিন পয়েন্ট যোগ করুন - + Straighten curve প্রাথমিক পর্যবেক্ষণ বক্র সোজা - + Remove bendpoint বিন পয়েন্ট সরিয়ে ফেলুন @@ -1338,6 +1339,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + ফ্রিটজিং + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1364,12 +1429,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1486,7 +1551,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size ছিেদ্রর সাইজ @@ -2040,7 +2105,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate ঘুরােনা @@ -2057,7 +2122,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute স্বয়ংক্রিয় রুট @@ -2079,7 +2144,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note চিহ্ন যুক্ত নোট সংযুক্তী @@ -2104,40 +2169,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing ফ্রিটজিং @@ -2178,64 +2250,90 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name একটি নিদৃষ্ট ফাইলের নাম নির্দেশিত একটি ফাইলের নাম - + Fritzing Part (*%1) ফ্রিটজিং অংশ t(*%1) - + Unable to export %1 to shareable sketch নকশারঅংশ বিশেষ রপ্তানিতে করতেঅপারগ %1বিনিময় স্কেচপাটাতে অক্ষম - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? তুমি কি চাও আমদানি করা যন্ত্রাংশ রাখতে? সংগ্রিিহত অংশ ধরে রাখতে চান? - + No connections to route ঘুরিয়ে সংযোগ নেই/ রাস্তার সাথে কোন সংযুক্তি নাই সংযোগ রাস্তা নেই - + Routing completed রাস্তা তৈরি সম্পন্ন রাউটিং সমপণ্য - + Routing completed using %n jumper part(s) সম্পূর্ণ রাউটিং ব্যবহারে %n জাম্পার অংস(S) @@ -2243,7 +2341,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed %1এবং%2নিপিষ্ট জাল সংযোগ%n(s)কে স্থাপন @@ -2251,29 +2349,29 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] %1 - [%2] - + No copper top layer উপরের স্তর এ কোন তামা নাই উপরে লেয়ারে কোণ কপার নাই - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. উপলুব্ধ একতরফা তামা (copper1)বোর্ড টি হয়নি অনুগ্রহ করে দুই পাস তামার বোর্ড আনতে(copper0)নির্বাচন করুন। - - + + Sorry! দুঃখিত? - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist ঐসব কোনো পার্টসে নাই। @@ -2281,112 +2379,112 @@ We're working to avoid this message, and only let you choose between proper আমরা এই বার্তা বাদ দেবার চেষ্টা করছি এবং শুধু যেসব ধর্ম যোগ করা আছে সেইগুলাই পছন্দ করতে দিব। - + No exactly matching part found; Fritzing chose the closest match. যথাযথভাবে কোন অংশ মেলানোর জন্য পাওয়া যায় নি; কাছাকাছি মিল fritzing. - + Change to single layer pcb একক স্তর পি সি বি পরিবর্তন এক স্তর পি সি বি পরিবর্তন - + Change to two layer pcb দুই স্তর পি সি বি বদল দুই স্তরপি সি বি পরিবর্তন - + Swapped %1 with module %2 %1 সঙ্গে %2মডিউল বদল করতে মডিউল আনতে%1 পাঠাতে%2 - + Change image to %2 ইমেজ বদল করতে%2 ইমেজ বদলে%2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 বোঝাই করতে%1 লোডিং %1 - + Loading... বোঝাই... লোডিং... - + new sketch নতুন চাকতি নতুন স্কেচ - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' ফিরে আসতে %1 - - + + Fritzing (*%1) ফ্রিটজিং(*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections অসংযুক্ত রাস্তা অসংযুক্ত সংযোগ - + There are no unrouted connections in this view. এখানে অসংযুক্ত রাস্তার চিত্র দেখা অসংযুক্ত রাস্তার চিত্র দেখতে - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2491,13 +2589,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel বাতিল - + Choose a folder for exporting রপ্তানির জন্য একটি ফোল্ডার নির্বাচন করুন পরীক্ষণের জন্য একটি ফোল্ডার নির্বাচন করুন @@ -2521,92 +2619,92 @@ We're working to avoid this message, and only let you choose between proper রপ্তানি হচ্ছে... - + Unable to save %1 সঞ্চয় সম্ভব নয় %1 - + Cannot print to %1 মদ্রনে করতেঅক্ষম %1 প্রিন্ট করতে অক্ষম %1 - + Cannot write file %1: %2. ফাইলটি লিখা অসম্ভব%1: %2. - + Saved '%1' সঞ্চয় %1 সংরক্ষণ%1 - + Unable to export %1 as shareable বিনিময় করে%1পাঠানো সম্ভব নয় - + &Save সংরক্ষণ - + Ctrl+S Ctrl+S - - + + Save the current sketch বর্তমান নকশা সঞ্চয় এই নকশা সংরক্ষন - + &Save As... এবং সেমতে সঞ্চয়... সেমতে সংরক্ষণ... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... অন লাইনে শেয়ার করুন... - + Post a project to the Fritzing website ফ্রিটজিংওয়েব সাইটে এই প্রোজেক্ট পোষ্ট করা ফ্রিটজিং ওয়েব সাইটে উক্ত প্রোজেক্ট পাঠান - + JPG... জে পি জি... JPG... - + Export the visible area of the current sketch as a JPG image JPG ইমেজ হিসাবে বর্তমান নকশায় দৃশ্যমান এরিয়া সাথে এক্সপোর্ট - + PNG... পিএনজি... PNG... - + Export the visible area of the current sketch as a PNG image PNG ইমেজ হিসাবে বর্তমান নকশায় দৃশ্যমান এরিয়া সাথেএক্সপোর্ট @@ -2619,187 +2717,187 @@ We're working to avoid this message, and only let you choose between proper স্ক্রিপ্ট পোষ্ট ইমেজ হিসাবে বর্তমান নকশায় দৃশ্যমান এরিয়া সাথেএক্সপোর্ট - + PDF... পি ডি এফ... - + Export the visible area of the current sketch as a PDF image PDFইমেজ হিসাবে বর্তমান নকশায় দৃশ্যমান এরিয়ার সাথে এক্সপোর্ট - + SVG... SVG... - + Export the current sketch as an SVG image SVG চিত্র হিসাবে বর্তমান নকশা এক্সপোর্ট - + List of parts (&Bill of Materials)... তালিকার অংশ (এবং উপকরন বিল)... - + Save a Bill of Materials (BoM)/Shopping List as text সপিং তালিকায় একটি উপাদান বিল টেক্সট হিসাবে সংরক্ষণ - + XML Netlist... XML Netlist... - + Save a netlist in XML format XML ফর্মেটে একটি netlistসংরক্ষণ করুন - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... ঈগল... Eagle... - + Export the current sketch to Eagle CAD বর্তমানস্কেচ ঈগলCADএ রপ্তানি করুন - + Extended Gerber (RS-274X)... Gerber সম্প্রসারণ (RS-247x)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... Etchable (PDF)... একত্রিত(PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) পিডিএফ DIY PCB উত্পাদনের (photoresist) জন্য বর্তমান স্কেচ রপ্তানি করুন - + Etchable (SVG)... একত্রিত (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) SVG তে DIY PCB উত্পাদনের (photoresist) জন্য বর্তমান স্কেচ রপ্তানি করুন - + &Print... প্রিন্ট... - + Ctrl+P Ctrl+P - + Print the current view প্রিন্ট বর্তমান ভিউ - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. এই শীঘ্রই EAGLE লেআউট সফ্টওয়্যার আপনার Fritzing স্কেচ টি রপ্তানি করবে. যদি আপনার প্রিয় EDA টুল আমাদের আরো রপ্তানি করে,যা অবদান রাখতেপারে। - + Export SVG... SVG রপ্তানি... - + Export Bill of Materials (BoM)... উপাদােনর বিল রপ্তানি (BoM)... - + Unable to save BOM file, but the text is on the clipboard. BOM ফাইলটি সংরক্ষণ করতে ব্যর্থ কিন্তু টেক্সট ক্লিপবোের্ড হবে. - + Export SPICE Netlist... - + Export Netlist... সর্বশেষ লিস্ট রপ্তানি - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. আপনার স্কেচ এখনো এর কোন বোর্ডটি হইনি! PCB যুক্তএকটি GERBER এক্সপোর্ট করুন. - + Gerber export can only handle one board at a time--please select the board you want to export. GERBER রপ্তানি শুধুমাত্র একটি সময়ে এক বোর্ডের ব্যাবহার করতে পারে - আপনি বোর্ডের নির্বাচন করতে এবং রপ্তানি করতে চান. - + Sketch exported to Gerber GERBER এবং স্কেচ এক্সপোর্ট - + Select a Fritzing File to Open একটি Fritzing ফাইল খুলুন এবং নির্বাচন করুন - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) ফ্রিটজিং ফাইল (*%1 *%2 *%3 *%4 *%5);;ফ্রিটজিং (*%1);;ফ্রিটজিং বিনিময় (*%2);;ফ্রিটজিং অংশ(*%3);; ফ্রিটজিং বিন (*%4);;ফ্রিটজিং বিনিময় বিন (*%5) - + Cannot find file %1. ফাইল খুজে পাচ্ছে না %1. - + Cannot read file 1 %1: %2. 1 ফাইলটি পড়তে পারচ্ছে না %1: %2 - + Revert? প্রত্যাবর্তন? প্রত্যাবর্তন ? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -2807,722 +2905,721 @@ Go ahead and revert? এগিয়ে যান এবং প্রত্যাবর্তন? - - + + File '%1' not found ফাইল %1 খুজে পায়না - + Convert পরিবর্তন - + Read-only শুধু-পড়তে - directly loading parts - সরাসরি পার্টস লোডিং + সরাসরি পার্টস লোডিং - + loading %1 (model) মডেল %1 লোড - + loading %1 (breadboard) ব্রেডবোর্ড %1 লোড - + loading %1 (pcb) পি সি বি %1 লোড - + loading %1 (schematic) লোড %1 (স্কেমেটিক) - + New নতুন টি - + Ctrl+N Ctrl+N - + Create a new sketch একটি নাতুন স্কেচ বানান একটি নাতুন স্কেচ নিন - + &Open... খুলতে - + Ctrl+O Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) একটি ফ্রিটজিং স্কেজ (.fzz, .fz),এবং একটি ফ্রিটজিং পার্ট লোড (.fzpz),,এবংএকটি ফ্রিটজিং পার্ট বক্স (.fzb, .fzbz) খুলতে - + Revert প্রত্যাবর্তন - + Reload the sketch স্কেচটি পুনরায় লোড - + Shell launch %1 শেল প্রবর্তন 1% - + throw test exception ব্যতিক্রমটি পরীক্ষা করতে - + throw a fake exception to see what happens ব্যতিক্রম কি হবে দেখতে একটি জাল নিক্ষেপ - + &Quit সব বন্ধ - + Ctrl+Q Ctrl+Q - + Quit the application এই অ্যাপ্লিকেসন বন্ধ - + &Open Example উদাহরন খুলুন - + All সকল - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow :: populateMenuWithIndex: আইডি = '% 1' উদাহরণ টি লোড করতে পারেনি - + &Open Recent Files বর্তমান ফাইল খুলতে - + &%1 %2 %1 %2 - + Undo আগেরমত করুন - + Redo আবার করুন - + &Cut কাটতে - + Cut selection কাটতে নির্বাচন - + &Copy কপি - + Copy selection কপি নির্বাচন - + &Paste পেস্ট - + Paste clipboard contents ক্লিপবোর্ডে বিষয়বস্তু আটকান - + Paste in Place এখান থেকে বাহির - + Paste clipboard contents in place একটি স্থানে ক্লিপবোর্ডের বিষয়বস্তু আটকান - + &Duplicate ডুপ্লিকেট - + Ctrl+D Ctrl+B - + Duplicate selection প্রতিলিপি নির্বাচন - + &Delete মুছতে - + Delete selection মুছতে নির্বাচন - + &Delete Wire - + &Select All সব নির্বাচন - + Select all elements সকল যন্ত্রাংশ নির্বাচন - + &Deselect বাদ দিতে - + Deselect বাদ দাও - - + + Add Note নোট সংযুক্ত - + &Preferences... ও পছন্দসমূহ ... - - + + Show the application's about box আবেদন এর সম্পর্কে বক্স দেখান - + Edit (new parts editor) এডিট (নিউ পার্টস এডিটর) - + Open the new parts editor on an existing part বর্তমান অংশ নতুন অংশগুলির একটাএডিটর খুলুন - + Rotate 45° Clockwise 135° ক্লক ওয়াইজ ঘুরান {135�?} {45°?} - + Rotate 90° Clockwise 135° ক্লক ওয়াইজ ঘুরান {135�?} {90°?} - + Rotate 180° 180° ঘুরান {180�?} {180°?} - + Rotate 90° Counter Clockwise 45° ক্লক ওয়াইজ বিপরিতে ঘুরান {45�?} {90°?} - + Rotate 45° Counter Clockwise 45° ক্লক ওয়াইজ বিপরিতে ঘুরান {45�?} {45°?} - + &Add to bin... বিন যুক্ত করুন ... - + Add selected part to bin নির্বাচিত অংশে বিন যোগ করুন - + Disconnect All Wires সমস্ত তারের সংযোগ বিচ্ছিন্ন - + Ctrl+Shift+V - + Disconnect all wires connected to this connector সব সংযোগ এই সংযোগকারী এবং তারের সংযোগ বিচ্ছিন্ন - + Update InfoView on hover আপডেট InfoView উপর কার্সার রেখে দেখুন - + Export Normalized SVG সাধারণ SVG রপ্তানি করুন - + Export 1000 dpi SVG of this part in this view 1000 DPI SVG এই অংশের রপ্তানি এর ফলে ভিউ - + Export Normalized Flattened SVG সাধারণত একরকমের SVG রপ্তানি করুন - + Export 1000 dpi Flattened SVG of this part in this view 1000 DPI এই ভিউ রপ্তানি এর ফলে অংশের SVG একরকমের - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate current selection 45 degrees clockwise 45 ডিগ্রি ক্লক ওয়াইজ ঘুরা নির্বাচন - + Rotate the selected parts by 90 degrees clockwise 90 ডিগ্রি ক্লক ওয়াইজ নির্বািচত পার্টস ঘুরান - + Rotate the selected parts by 180 degrees 180 ডিগ্রি নির্বািচত পার্টস ঘুরান - + Rotate current selection 90 degrees counter clockwise 90 ডিগ্রি ক্লক ওয়াইজ বিপরিতে বর্তমান নির্বাচন ঘুরান - + Rotate current selection 45 degrees counter clockwise 45 ডিগ্রি ক্লক ওয়াইজ বিপরিতে বর্তমান নির্বাচন ঘুরান - + &Flip Horizontal পাশা পাশি উল্টান - + Flip current selection horizontally বর্তমান নির্বাচন পাশা পাি শ দিকে উল্টান - + &Flip Vertical খাড়া ভাবে উল্টান - + Flip current selection vertically বর্তমান নির্বাচন খাড়া দিকে উল্টান - + Bring to Front সম্মুখে আনুন - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer নিজেদের লেয়ারটিতে নির্বাচিত বস্তু (গুলি) সামনে আনতে - + Bring Forward এক ধাপ সামনে আনতে - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer নিজেদের লেয়ারটির মধ্যে নির্বাচিত বস্তু (গুলি) পেছিয়ে আনতে - + Send Backward পিছনে ফিরতে - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer পুনরায় লেয়ারের মধ্যে নির্বাচিত বস্তু (গুলি) পাঠান - + Send to Back পুনরায় পাঠান - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer পুনরায় লেয়ারের মধ্যে নির্বাচিত বস্তু (গুলি) পাঠান লেয়ারে আবার নির্বাচিত বস্তু (গুলি) পাঠান - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part অংশিক লক - + Prevent a part from being moved একটি করে অংশ আটকাতে পাঠানো হচ্ছে - + Sticky আঠালো - + If a "sticky" part is moved, parts on top of it are also moved আপনি যদি একটি "স্টিকি" অংশ স্থানান্তর করেন , এটা উপরে অংশের ও সরানো হয় - + Select All Locked Parts সব লক অংশ নির্বাচন - + Select all parts that can't be moved সকল পার্টস সরানো যাবে না নির্বাচন করুন - + Show/hide the label for the selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Ctrl+5 Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Ctrl+4 Ctrl+4 - + Show the code (programming) view - + &Show All Layers সকল স্তর প্রদর্শন - + Show all the available layers for the current view দৃশ্যমান প্রাপ্তিসাধ্য সব স্তর প্রদর্শন জন্য বর্তমান ভিউ - + &Hide All Layers সকল স্তর হাইড - + Hide all the layers of the current view সব লুকান স্তর দেখুন বর্তমান ভিউ - + Align - + Move to bottom layer - + Move to top layer - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + There are %n outdated part(s) in this sketch. @@ -3530,7 +3627,7 @@ Go ahead and revert? - + We strongly recommend that you update these %n parts to the latest version. @@ -3538,1103 +3635,1131 @@ Go ahead and revert? - + This may result in changes to your sketch, as parts or connectors may be shifted. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + &Show part label পার্ট লেভেল দেখুন - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + &Export... এবং রপ্তানি... - + Export selected part পার্ট রপ্তানির জন্য - - + + Add Bendpoint Bendpoint যোগ করুন - + Add a bendpoint to the selected wire সমস্ত নির্বাচিত তারের একটি bendpoint যোগ করুন - + Convert Bendpoint to Via Bendpoint মাধ্যমে রূপান্তরিত করুন - + Convert the bendpoint to a via বিন পয়েন্ট এর মধ্যেই রূপান্তর - + Convert Via to Bendpoint Bendpoint এর মাধ্যমে রূপান্তর করুন - + Convert the via to a bendpoint bendpoint মাধ্যমে একটাকে রূপান্তর করুন - + Straighten Curve বক্র সোজা - + Straighten the curve of the selected wire - - + + Select outdated parts মেয়াদোত্তীর্ণ যন্ত্রাংশ নির্বাচন - - + + Update selected parts নির্বাচিত যন্ত্রাংশ আপডেট - + Open programming window প্রোগ্রামিং উইনডো খুলুন - + Open microcontroller programming window মাইক্রো কন্ট্রোলার প্রোগ্রামিং উইনডো খুলুন - + &Zoom In এবং জুম ইন - + Ctrl++ Ctrl++ - + Zoom in জুম ইন - + Ctrl+= Ctrl+= - + &Zoom Out এবং জুম আউট - + Ctrl+- Ctrl+- - + Zoom out জুম আউট - + &Fit in Window এবং উইনডো তে স্তাপন - + Ctrl+0 Ctrl+0 - + Fit in window উইনডো তে স্তাপন - + &Actual Size এবং প্রকৃত মাপ - + Actual (real world physical) size প্রকৃত (বাস্তব বিশ্বের আসল) মাপ - + 100% Size মাপ 100% - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size 100% (পিক্সেল)মাপ - + Align to Grid গ্রিড অনুযায়ী সাজান - + Align items to grid when dragging গ্রিড অনুযায়ী আইটেম হলে টেনে নিয়ে সাজান - + Show Grid গ্রিডের প্রদর্শন - + Show the grid এই গ্রিডের প্রদর্শন - + Set Grid Size... গ্রিডের আকার ... - + Set the size of the grid in this view এই ভিউ গ্রিডের আকার সেট করতে - + Set Background Color... ব্যাকগ্রাউন্ড রং সেট - + Set the background color of this view এই ভিউ ব্যাকগ্রাউন্ড রং সেট করতে - + &Show Breadboard এবং ব্যাকগ্রাউন্ড প্রদর্শন. - + Ctrl+1 Ctrl+1 - + Show the breadboard view ব্রেডবোর্ড ভিউ দেখুন - + &Show Schematic এবং স্কেমেটিক প্রদর্শন - + Ctrl+2 Ctrl+2 - + Show the schematic view স্কেমেটিক ভিউ দেখুন - + &Show PCB এবং পি সি বি প্রদর্শন করুন - + Ctrl+3 Ctrl+3 - + Show the PCB view পি সি বি ভিউ দেখুন - + Show Parts Bin Icon View পার্টস বিন প্রদর্শন আইকন - + Display the parts bin in an icon view পার্টস চিেএর মত ভিউ প্রদর্শন - + Show Parts Bin List View তালিকা প্রদর্শন পার্টস বিন ভিউ - + Display the parts bin in a list view পার্টস বিন ভিউ তালিকায় প্রদর্শন - + &Minimize এবং মিনিমাইজ - + Ctrl+M Ctrl+M - + Minimize current window এই উইনডো মিনিমাইজ - + Debugger Output ডিবাগার আউটপুট - + Online Tutorials অনলাইন টিউটোরিয়াল - + Ctrl+? Ctrl+? - + Open Fritzing help ফ্রিটজিং সহায়তা ওপেন - Donate to Fritzing - Fritzing এ প্রদান করুন + Fritzing এ প্রদান করুন - Open Fritzing donation web page - Fritzing প্রদান এ ওয়েবপেইজ খুলুন + Fritzing প্রদান এ ওয়েবপেইজ খুলুন - + Online Projects Gallery অনলাইন প্রজেক্টস গ্যালারী - + Open Fritzing examples Fritzing উদাহরণ খুলুন - + Online Parts Reference অনলাইন রেফারেন্স অংশগুলি - + Open Parts Reference পার্টস রেফারেন্স খুলুন - + First Time Help প্রাথমিক সহায়তা - + Check for updates... আপডেটের জন্য চেক করুন ... - + Check whether a newer version of Fritzing is available for download Fritzing থেকে ডাউন লোডের জন্য যা নেওয়া হয়েছে একটি নতুন সংস্করণ কিনা তা চেক - + &About এই সম্পর্কে - + Tips, Tricks and Shortcuts টিপস, ট্রিকস এবং শর্টকাট - + Display some handy Fritzing tips and tricks কিছু সহজ টিপস এবং ট্রিকস Fritzing প্রদর্শন - + &About Qt Qt সম্পর্কে - + Show Qt's about box Qt এর প্রদর্শন বক্স সম্পর্কে - + Report a bug... একটি বাগ রিপোর্ট করুন ... - - + + Report a but you've found in Fritzing যে রিপোর্ট করেছেন তা আপনি Fritzing এ খুঁজে পাবেন - + Enable debugging log ডিবাগিং লগ সক্রিয় করুন - + Parts Editor Help - + Display Parts Editor help in a browser - + &File ফাইল - + &Export রপ্তানি করুন - + as Image ইমেজ হিসাবে - + for Production জন্য উত্পাদন - + &Edit সম্পাদনা - + &Part যন্ত্রাংশ - + Raise and Lower বারিয়ে এবং কমিয়ে - + &View দেখতে প্রদর্শন - + &Window উইনডো - - - + + + + + + &Routing রাউটিং - - - + + + Ground Fill গ্রাউনড ফিল - + &Help সহায়তা - + Delete Ratsnest Line Ratsnest লাইন মুছে দিন - + Delete Wire তার মুছেফেলা - + Hide part label হাইড পার্ট লেভেল - + Show part label - + Show part silkscreen - + Delete মুছুন - + Actual Size আসল সাইজ - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. মনিটর এর প্রকৃত মাপ সয়ংক্রিয় ভাবে বের করা মনে হয় সম্ভব না এই জন্য প্রকৃত মাপ আনুমানিক ধরে নেওয়া হয়েছে। ভালো বুদ্ধি হচ্ছে একটা রুলার ধরে বসান এবং তারপর একটা আসল রুলার এর সাথে মিলাতে থাকুন (লম্বায় টেনে টেনে) যতক্ষণ পর্যন্ত না মিলে। - + Page Setup পৃষ্ঠা সেটআপ - + Sorry, "%1" has not been implemented yet দুঃখিত, "% 1" এখনো বাস্তবায়িত হয়নি - + Shift+Ctrl+A Shift+Ctrl+A - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + Set both copper layers clickable ক্লিকযোগ্য উভয় তামার স্তর নির্ধারণ করুন - + Shift+Ctrl+3 Shift+Ctrl+A - - + + Set copper top layer clickable উপরের স্তরে তামার ক্লিকযোগ্য নির্ধারণ - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable নিচের স্তরে তামার ক্লিকযোগ্য নির্ধারণ - + Shift+Ctrl+1 Shift+Ctrl+1 - + &Create trace from ratsnest & Ratsnest থেকে ট্রেস তৈরি করুন - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help + + + Routing + + + + Autoroute connections... - + Create a trace from the ratsnest line Ratsnest লাইন থেকে একটি ট্রেস তৈরি করুন - + &Create wire from ratsnest Ratsnest থেকে তার তৈরি করুন - + Create a wire from the ratsnest line Ratsnest লাইন থেকে একটি তার তৈরি করুন - + Do not autoroute স্বয়ংক্রিয় রুট হবে না - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board বোর্ডেটি অন্য দিকে সরান - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted আন রাউটেড প্রদর্শন - + Highlight all unrouted connectors সব আন রাউটেড সংযোগ গুলিকে হাইলাইট - + Select All Traces সব ট্রেস নির্বাচন করুন - + Select all trace wires সব তারের চিহ্ন নির্বাচন করুন - + Select All Wires সমস্ত তার নির্বাচন করুন - + Select all wires সব তারের নির্বাচন করুন - + Select All CopperFill সমস্ত কপার ফিল নির্বাচন করুন - + Select all copper fill items সব তামা ভরাট করা আইটেম নির্বাচন করুন - + Force Update Routing Status and Ratsnests ফোর্স আপডেট রাউটিং অবস্থা এবং Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces সমস্ত " Autoroute করবেন না" ট্রেস নির্বাচন করুন - + Select all trace wires excluded from autorouting সব ট্রেস থেকে autorouting বাদ তারগুলিকে নির্বাচন করুন - + Select All Autoroutable Traces সমস্ত Autoroutable ট্রেস নির্বাচন করুন - + Select all trace wires that can be changed during autorouting সব ট্রেস নির্বাচন তারগুলিকে যে autoroutingএর সময় পরিবর্তন করা যেতে পারে - + Select All Jumpers সমস্ত Jumpers নির্বাচন করুন - + Select all jumper item parts সমস্ত Jumpers আইটেম যন্ত্রাংশ নির্বাচন করুন - + Select All Vias সমস্ত Vias নির্বাচন করুন - + Select all via parts সমস্ত ভায়া যন্ত্রাংশ নির্বাচন করুন - + Tidy Wires পরিপাটি তারগুলি - + Tidy selected wires পরিপাটি নির্বাচিত তারগুলি - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill কপার ফিল - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill কপার ফিল সরাতে - + Remove the copper fill এই কপার ফিল সরাতে - + Choose Ground Fill Seed(s)... গ্রাউনড ফিল সীড গুলো পছন্দ করুন - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed গ্রাউন্ড ফিল সীড সেট করুন - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds গ্রাউন্ড ফিল সীড গুলো পরিষ্কার - + Clear ground fill seeds--enable copper fill only. সাফ ভূমি ভরাট বীজ - পূরণ করুন.সক্ষম গ্রাউন্ড ফিল সীড গুলো পরিষ্কার--শুধু তামার ফিল সক্রিয় - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces লোড ট্রেস চেক করুন - + Copper Top and Copper Bottom layers are both active উপরের তামা এবং নীচের তামাস্তর উভয় সক্রিয় - + Copper Top layer is active উপরের তামার স্তর সক্রিয় - + Copper Bottom layer is active নিচের তামার লেয়ার সক্রিয় - + Order a PCB... একটি PCB অর্ডার ... - + Order a PCB created from your sketch--from fabulous Fritzing Fab আপনার স্কেচ তৈরির একটি PCB অর্ডার করুন -- কল্পিত Fritzing Fab থেকে - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. আপনার স্কেচ এখনো এর কোন বোর্ড হইনি! অটোরুট ব্যাবহার করতে একটি পি সি বি সংযুক্ত করুন - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. আনুগ্রহ করে অটোরুট করতে বোর্ড নির্বাচন করুন অটোরুট একই সময়ে একটি বোর্ড পরিচালনা করতে পারবে - + Autorouting... স্বয়ংক্রিয় রাউটিং ... - + Autorouting Progress... Autorouting অগ্রগতি... - + jumpers জাম্পারস - + copperfill কপার ফিল - + vias vias - + Remove Bendpoint বিন পয়েন্ট সরিয়ে ফেলুন - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. তমার বরদে কন স্কেছ নাই প সি বি করার অন্ন দয়া করে আক্তি তামা জুক্ত গ্রুন্দ ফিল্ল বেবহার ক্রুরুন আপনার বোর্ডে কোনো স্কেচ নাই !পি সি বি করার জন্য দয়া করে একটি তামার যুক্ত গ্রাউনড ফিল ব্যবহার করুন - + Please select a PCB--copper fill only works for one board at a time. নির্বাচিত পি সি বি -- একটি বোর্ডের জন্য কপার ফিল একই সাথে কাজ করবে - + Generating %1 fill... ফিল জেনারেট করুন %1... - + ground গ্রাউন্ড - + copper কপার - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. আপনার তৈরি নকশা করা বোর্ডটিএখনো হয়নি? দয়া করে কপার ফাইলে নতুন একটি পি সি বি স্তাপন করুন - + Please select a PCB--ground fill operations only work on a one board at a time. দয়া করে একটা PCB নির্বাচন করুন -- ground fil কাজকর্ম শুধু এক বোর্ডে একই সাথে. কাজ করবে . - + Remove copper fill কপার ফিল সরাতে - - + + &Wire Color এবং তারের রং - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... আরম্ভ করুন %1... - + No outdated parts found. All your parts are up-to-date. কোন মেয়াদোত্তীর্ণ পার্টস খুঁজে পাওয়া যায়নি. আপনার সমস্ত পার্টস আপ টু ডেট. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts মেয়াদ উত্তীর্ণ যন্ত্রাংশ - + Do you want to update now? - + unable to find replacement for %1. খুঁজে পেতে অসমর্থ হলে বদল করার জন্য খোজ করুন - + Update %1 part(s) যন্ত্রাংশ (গুলি) আপডেট%1 - + Successfully updated %1 part(s). Please check all views for potential side-effects. যন্ত্রাংশ (গুলি)সফলভাবে আপডেট %1. সম্ভাব্য পার্শ্ব প্রতিক্রিয়া জন্য সব মতামত দয়া করে চেক করুন. - + OK ঠিক - + Set the grid size for %1. % 1 গ্রিডের মাপ নির্ধারণ করার জন্য - + Grid Size: গ্রিডের আকারঃ - + in প্রবেশ ইন - + mm মি মি - + Restore Default ডিফল্ট পুনঃ স্থাপন - + Your sketch does not have a board yet! DRC only works with a PCB. আপনার তৈরি নকশা করা বোর্ডটিএখনো হয়নি? দয়া করে পাথানর জন্য একটিPCB যোগ করতে পারেন - + Please select a PCB. DRC only works on one board at a time. কাজের করতে একটি পি সি বি ও কপার ফাইল নির্বাচন করুনএই বোর্ডের জন্য - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. আপনার তৈরি নকশা করা বোর্ডটিএখনো হয়নি? দয়া করে পাথানর জন্য একটিPCB যোগ করতে পারেন - - + + Please select a PCB. Copper fill operations only work on one board at a time. একটি পি সি বি করুন।তামা ভরাট অপারেশান কেবল একটি বোর্ড এ একটি সমায় এর কাজ এই বোর্ডে কাজ করতে একটি পি সি বি ও কপার ফাইল নির্বাচন করুন @@ -4779,7 +4904,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4803,24 +4928,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing ফ্রিটজিং @@ -4832,8 +4957,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. কাজের করতে একটি পি সি বি ও কপার ফাইল নির্বাচন করুনএই বোর্ডের জন্য @@ -4843,152 +4968,152 @@ Reason: %2 (errcode %3) - + Change trace layer ট্রেস স্তর পি সি বি পরিবর্তন - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground গ্রাউন্ড - + Copper কপার - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5047,11 +5172,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor পার্টস এডিটর @@ -5067,182 +5192,182 @@ Reason: %2 (errcode %3) fzpফাইল হতে প্রিন্ট বন্ধ %1 - + Icon View আইকন ভিউ - + Metadata View মেটাডেটা ভিউ - + Connectors View কানেক্টরস ভিউ - + Show Icon আইকন দেখুন - + Ctrl+4 Ctrl+4 - + Show the icon view আইকন ভিউ দেখুন - + Ctrl+5 Ctrl+5 - + Show the metadata view মেটাডেটা ভিউ দেখুন - + Show Connectors কানেক্টরস দেখুন - + Ctrl+6 Ctrl+6 - + Change description বর্ণনা পরিবর্তন%1 - + Change %1 to '%2' পরিবর্তন করতে %1to%2 - + Change tags ট্যাগ পরিবর্তন - + Change properties জায়গা পরিবর্তন - + Change connector %1 কানেক্টরস পরিবর্তন করতে%1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) ইমেজ এবং ফটোপ্রিন্ট ফাইল (%1 %2 %3 %4 %5);;SVG ফাইল (%1);;JPEG ফাইল (%2);;PNG ফাইল (%3);;gEDA ফটোপ্রিন্ট ফাইল (%4);;Kicad মডিউল ফাইল (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 ইমেজ ফাইল (%1 %2 %3);;SVG ফাইল(%1);;JPEG ফাইল (%2);;PNG ফাইল (%3)%4%5 - + Open Image ইমেজ খুলুন - + Copy problem কপিতে সমস্যা - + Unable to make a local copy of: '%1' লোকাল কপি করা অসম্ভব '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- JPGএবং PNG বিটম্যাপ ইমেজ চরিত্র বজায় রাখে,যখন কমে আসবে তখন ভাল দেখাবে না -- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. Fritzing পার্টস স্থানধারক হিসাবে আমাদের জন্য শ্রেষ্ঠ শুধুমাত্র JPGএবং PNG ব্যবহার. - + Use of PNG and JPG discouraged JPG, PNG এবং ব্যবহার বাঞ্ছনীয় - - - - + + + + Conversion problem সমস্যার পরিবর্তন - - - + + + SVG problem SVG সমস্যা - + Unable to parse '%1': %2 line:%3 column:%4 প্রেস করা অসম্ভবঃ'%1': %2 লাইনঃ%3 কলামঃ%4 - + There are no copper layers defined in: %1. এতে কোন কপার লেয়ার পাওয়া যায়নাই %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. এখানে দেখুন <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">বিস্তারিত আছে </a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>এতে সমস্যা নাই পরবর্তী রিলিজে এডিটর সমস্যার সৃষ্টি হতে পারে,' - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 এতে স্কেমেটিক'স পাচ্ছে না %1 - + schematic part স্কেমেটিক অংশ - + no footprints found in %1 এতে ফটোপ্রিন্ট পাচ্ছে না %1 - + Relocate connector %1 সংযোগ পুনরায় দেখতে %1 @@ -5426,167 +5551,167 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning স্কেচ পরিবর্তন সংকেত - + The open sketch '%1' uses the part you are editing. খুলুন স্কেচ '% 1' অংশ হয় তাহলে সম্পাদিত ব্যবহার করা. ' সম্পাদিত যন্ত্রাংশ ব্যবহার করে একটি স্কেচ খুলুন '%1' - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches এই নকশাগুলি খুলতে - + '%1', '%1', - + and '%1' এবং '%1' - + Saving this part will make a change to these sketches that cannot be undone. এই অংশ সংরক্ষণ করুন স্কেস পরিবর্তনের পর তা পূর্বাবস্তায় আনা যাবে না - + Go ahead and save? @@ -5595,107 +5720,107 @@ Go ahead and save? এগিয়ে জান সঞ্চয় - + Save সঞ্চয় - + Cancel বাতিল - + Move terminal point মুল পয়েন্ট সরাতে - + Remove connector কানেক্টরস সরিয়ে ফেলা - + Remove %1 connectors কানেক্টরস সরিয়ে ফেলতে %1 - + Save "%1" সঞ্চয় %1 - + Do you want to save the changes you made in the part "%1"? আপনি কি পরিবর্তিত আবস্তায় তৈরি অংশ সঞ্চয় করতে চান"%1"? - + Your changes will be lost if you don't save them. আপনার পরিবর্তিত অংশ মুছে গেছে সঞ্চয় সম্ভব নয় - + untitled part বেনামী যন্ত্র - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector কানেক্টর যুক্ত - + Add %1 connectors কানেক্টরস যুক্ত করতে%1 - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors @@ -5703,7 +5828,7 @@ Go ahead and save? - + across %n views. @@ -5711,12 +5836,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6528,96 +6653,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1%2 {1?} + + + + %1 (click to change...) - + Clear Settings সেটিংস পরিষ্কার - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6962,7 +7095,6 @@ shift key swaps scroll axis - Fritzing ফ্রিটজিং @@ -7034,12 +7166,12 @@ shift key swaps scroll axis সংযুক্ত রং হাইলাইট করতে - + Unconnected highlight color অসম্পৃক্ত রং হাইলাইট করাতে - + Clear all saved settings and close this dialog immediately. @@ -7049,13 +7181,13 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! এই পদক্ষেপ এর জন্য কোন পূর্বাবস্থায় ফেরাতে, এবং আরও সতর্কীকরণ! - + Clear Settings সেটিংস পরিষ্কার @@ -7080,21 +7212,21 @@ shift key swaps scroll axis ফাইল '% 1' হল শুধুমাত্র পাঠযোগ্য; একটি ভিন্ন ফাইলের ব্যবহার করুন. - - - + + + Part যন্ত্র - - - + + + Wire তার - + Set Grid Size গ্রিডের আকার সেট @@ -7355,18 +7487,18 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি সকল 'autoroute' ট্রেস নির্বাচন করুন - - + + Select all %1 সব নির্বাচন করুন - + Convert to Via এর মাধ্যমে রূপান্তর - + Convert Via to Bendpoint বিন পয়েন্ট এর মধইয় রূপান্তর @@ -7376,43 +7508,43 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি স্কেম - + Error reading file %1: %2. ত্রুটি ফাইলটি পড়া %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 লোগো পরিবর্তনে %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 স্তর - - + + Bring forward এক ধাপ সামনে - + Send backward পিছনে ফিরতে - + Bring to front সম্মুখে আনুন @@ -7427,22 +7559,22 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি সংযোগ তার - + Trace wires তারের ট্রেস - + Ratsnest wires Ratsnest তার গুলি - + Select outdated parts মেয়াদোত্তীর্ণ যন্ত্রাংশ নির্বাচন - + Select locked parts লক যন্ত্রাংশ নির্বাচন করুন @@ -7755,12 +7887,12 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি ফাইলের অগ্রগতি... - + Copying file %1 ফাইল কপি হচ্ছে - + File %1 already exists: it won't be overwritten @@ -7946,7 +8078,7 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7970,48 +8102,48 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8306,18 +8438,18 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি Ruler - + width প্রস্থ প্রশস্ততা - + &cm - + &in @@ -8325,33 +8457,33 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8487,153 +8619,153 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি লোড সম্পন্ন - + Delete ratsnest ratsnest মুছেফেলা ratsnestমুছতে - + %1 %2 %1%2 - + %1 %2 items items%1%2 আইটেম %1%2 - + Select All সব নির্বাচন সব নির্বাচন করুন - + Deselect অনির্বাচন - + Add %1 যুক্ত%1 যোগ করুন %1 - + Selection নির্বাচন বাছাই - + Move %2 (%1) স্থানান্তর করা %2(%1) - + Move %2 items (%1) স্থানান্তর করা%2 items(%1) - - + + Select %1 নির্বাচন করুন %1 - - + + Select %1 items নির্বাচন করুন%1 items - - + + Disconnect সংযোগ বিচসিন্ন করা - + from %1 হইতে%1 হতে%1 - + Move leg of লেগ সরাতে - - + + Connect যুক্ত করা সংযোগ - - + + to %1 to%1 কর %1 - + Change leg curvature for %1. লেগ বক্রতা পরিবর্তনের জন্য%1 - + Change leg bendpoint for %1. লেগ পরিবর্তন জন্য বিন পয়েন্ট%1 - + Change পরিবর্তন - + Create and connect wire এবং তারের সাথেসংযোগ তৈরি করতে - + Fritzing ফ্রিটজিং - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. মনে হয় layeerজুড়ে ট্রেসতৈরি করতে এই circulamstanceআবশ্যক।কোন developper সাথে যোগাযোগ করুন. - + Create and connect %1 সাথেসংযোগ তৈরি করতে এবং সংযোগ তৈরি করতে %1 - + wire তার wire - + trace গমনপথ ট্রেস - + Rotate %2 (%1) আবর্তিত%2 (%1) - + Flip %2 (%1) Flip%2(%1) @@ -8725,33 +8857,33 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি - + Resize ruler to %1 %2 এবং মাপকাঠি পুনরায় আকার দিন %1 %2 - - + + Resize board to %1 %2 বোর্ড পুনরায় আকার দিন %1%2 - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8761,59 +8893,59 @@ Fritzing এখনও কাজ করছে, কিন্তু আপনি নোট পুনঃমাপ - + Change Resistance from %1 to %2 রেজিস্টেনস পরিবর্তন করতে %1থেকে%2 - - + + Change %1 from %2 to %3 %1পরিবর্তনের জন্য %2 থেকে %3 - + Create wire from Ratsnest তারের Ratsnest তৈরি করতে - + Disconnect all wires from %1 সকল তারের সংযোগ বিচসিন্ন করতে%1 - + Disconnect all wires from %1 items সকল তারের সংযোগ বিচসিন্ন করতে%1 আইটেম - + Change image from %1 to %2 ইমেজ পরিবর্তনের জন্য%1থেকে%2 - + change pin labels পিন লেবেল পরিবর্তন - + Unrouted connections are highlighted in yellow. Unrouted connections are highlighted in yellow. Unrouted সংযোগটি উজ্জল হলুদ করা থাকে। - + There are no unrouted connections এখানে কোন unrouted সংযোগ নাই - + Unrouted connections Unrouted সংযোগটি - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8891,22 +9023,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage ভোল্টেজ - + label স্তর - + Net labels - + Net labels cannot be blank @@ -9033,11 +9165,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -9158,6 +9285,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9560,108 +9692,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_cs.ts b/translations/fritzing_cs.ts index 037eaebf7..a9c0f5d47 100644 --- a/translations/fritzing_cs.ts +++ b/translations/fritzing_cs.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 za kód a CreativeCommons:BY-SA za zbytek - + <b>2007-%1 Fritzing</b> <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing vytvořili: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,209 +61,210 @@ Bryant Mairs, Uleshka Asher, a Daniel Tzschentke. - Special thanks goes out to: - Zvláštní poděkování patří: + Zvláštní poděkování patří: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzimu, Ayah Bdeirovi, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrelul Bishopovi, Davidu Cuartiellesovi, Fabianu Hemmertovi, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrathovi, Jeffu Hoefsovi, Tomu Hulbertovi, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tomu Igoevi, Hans-Peteru Kadelovi, Tillu Savelkoulovi, - + Jan Sieber, Yaniv Steiner, Olaf Val, Janu Sieberovi, Yaniv Steinerovi, Olafu Vaolovi, - + Michaela Vieser and Julia Werner. Michaele Vieserové a Julii Wernerové. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing bylo možné vytvořit s financováním - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, sponzor Designu - + Department of Bauhaus-University Weimar, Oddělení Bauhaus univerzity Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, anonymní dárce, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. a z každého zakoupeného Fritzing Starter Kitu nebo vyrobené DPS z Fritzing Laboratoří. - Special thanks goes out as well to all the students - Zvláštní poděkování patří také všem studentům + Zvláštní poděkování patří také všem studentům - and alpha testers who were brave enough to give - a alfa testerům, kteří měli odvahu se + a alfa testerům, kteří měli odvahu se - Fritzing a test spin. - pustit do kola testů Fritzingu. + pustit do kola testů Fritzingu. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -811,7 +812,7 @@ Použít soubor? Capacitor - + Select from the dropdown, or type in a %1 value Vyberte z uvedených možností, nebo zadejte hodnotu %1 @@ -819,17 +820,17 @@ Použít soubor? ConnectorItem - + Add bendpoint Přidat bod zlomu - + Straighten curve Vyrovnat křivku - + Remove bendpoint Odstranit bod zlomu @@ -1281,6 +1282,70 @@ Poté bude nutné restartovat Fritzing Probíhá obnova databáze součástek ... + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Zrušit + + + + Upload to Fab + + + + + Upload + Nahrát + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1308,12 +1373,12 @@ Poté bude nutné restartovat Fritzing FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1429,7 +1494,7 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít Hole - + hole size velikost otvoru @@ -1917,7 +1982,7 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít MainWindow - + Rotate Otočit @@ -1933,7 +1998,7 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít - + Autoroute Automaticky routovat @@ -1954,7 +2019,7 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít - + Add a note Přidá poznámku @@ -1975,14 +2040,14 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít Nelze otevřít '%1':%2 - - + + Specify a file name Zadejte název souboru - - + + Fritzing (*%1) Fritzing (*%1) @@ -1990,76 +2055,83 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable Nelze exportovat %1 jako sdílený - + Fritzing Part (*%1) Fritzing součástka (*%1) - + Unable to export %1 to shareable sketch Nelze exportovat %1 do sdíleného návrhu - - + + Do you want to keep the imported parts? Přejete zachovat importované součástky? - + No connections to route Žádné propojky k routování - + Routing completed Routing dokončen - + Routing completed using %n jumper part(s) Routing dokončen s použitím %n propojky @@ -2068,17 +2140,17 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít - + Unrouted connections Nezroutované propojky - + There are no unrouted connections in this view. Žádné nezroutované propojky. - + %1 of %2 nets routed - %n connector(s) still to be routed %1 z %2 routovaných propojů - %n propojka, která bude ještě routována @@ -2164,146 +2236,172 @@ Je také možné zvolit konektory jako výplň země kliknutím pravým tlačít Nelze otevřít sdílitelný '%1': %2 - + Unable to open shareable part '%1': %2 Nelze otevřít sdílitelnou součástku '%1': %2 - + + Unable to load part from '%1' Nelze načíst součástku z '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing MainWindow::moveToPartsFolder hlavní okno chybí - + There is already a part with id '%1' loaded into Fritzing. Součástka s id '%1' je již načtena programem Fritzing. - + %1 - [%2] %1 - [%2] - + No copper top layer Žádná měděná horní vrstva - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Na jednostranné desce není horní měděná vrstva (měď 1) k dispozici. Přepněte desku na oboustrannou, nebo zvolte spodní měděnou vrstvu (měď 0). - - + + Sorry! Promiňte! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Součástka s touto charakteristikou neexistuje. Pracujeme na potlačení této zprávy a nyní Vám nezbývá, než zvolit mezi vlastnostmi, které existují - + No exactly matching part found; Fritzing chose the closest match. Nebyla nalezena přesně shodná součástka; Fritzing vybral součástku s nejbližšími vlastnostmi. - + Change to single layer pcb Změnit na jednostrannou desku DPS - + Change to two layer pcb Změnit na oboustrannou desku DPS - + Swapped %1 with module %2 Přepnut %1 s modulem %2 - + Change image to %2 Změnit obrázek na %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. SVG %1 neobsahuje vrstvu '%2'. Další informace o tom, jak vytvořit vlastní obrazec desky naleznete v kurzu na <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 načítání %1 - + Loading... Načítání... - + new sketch nový návrh - + Schematic conversion Konverze schématu - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Uložení tohoto návrhu, jej převede na nový grafický standart (schématu). Pokračovat a převést ? - + Backing up '%1' Zálohovat '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (šířka, výška)=(%3, %4) %5 - + Code Kód - + Welcome Uvítací obrazovka - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Váš návrh dosud neobsahuje desku! Pro úspěšný export do Gerber přidejte PCB. - + Choose a folder for exporting Vybrat složku pro export @@ -2363,7 +2461,7 @@ Pracujeme na potlačení této zprávy a nyní Vám nezbývá, než zvolit mezi - + Cancel Zrušit @@ -2384,153 +2482,152 @@ Pracujeme na potlačení této zprávy a nyní Vám nezbývá, než zvolit mezi Exportování... - + Unable to save %1 Nelze uložit %1 - + Cannot print to %1 Nelze tisknout na %1 - + Cannot write file %1: %2. Nelze zapsat soubor %1: %2. - + Saved '%1' Uložit '%1' - + Select a Fritzing File to Open Vybrat soubor Fritzing pro otevření - + Cannot find file %1. Nelze nalézt soubor %1. - + Cannot read file 1 %1: %2. Nelze číst soubor 1 %1: %2. - - + + File '%1' not found Soubor '%1' nenalezen - directly loading parts - přímé načtení součástek + přímé načtení součástek - + loading %1 (model) načítání %1 (model) - + loading %1 (breadboard) načítání %1 (montážní deska) - + loading %1 (pcb) načítání %1 (pcb) - + loading %1 (schematic) načítání %1 (schéma) - + New Nový - + Ctrl+N Ctrl+N - + Create a new sketch Vytvoří nový návrh - + &Open... &Otevřít... - + Ctrl+O Ctrl+O - + &Save &Uložit - + Ctrl+S Ctrl+S - - + + Save the current sketch Uloží aktuální návrh - + &Save As... &Uložit jako... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Sdílet online... - + Post a project to the Fritzing website Pošle projekt na webové stránky Fritzing - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image Exportuje viditelnou oblast aktuálního návrhu jako JPG obrázek - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image Exportuje viditelnou oblast aktuálního návrhu jako PNG obrázek @@ -2543,92 +2640,92 @@ Pracujeme na potlačení této zprávy a nyní Vám nezbývá, než zvolit mezi Exportuje viditelnou oblast aktuálního návrhu jako PostScript obrázek - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image Exportuje viditelnou oblast aktuálního návrhu jako PDF obrázek - + SVG... SVG... - + Export the current sketch as an SVG image Exportuje aktuální návrh jako SVG obrázek - + List of parts (&Bill of Materials)... Seznam součástek (&Soupiska materiálu)... - + Save a Bill of Materials (BoM)/Shopping List as text Uloží soupisku materiálu (BoM)/Nákupní seznam jako text - + XML Netlist... XML Netlist... - + Save a netlist in XML format Uloží netlist v XML formátu - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Exportuje aktuální návrh do Eagle CAD - + Etchable (PDF)... Leptatelné (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) Exportuje aktuální návrh do PDF pro DIY výrobu DPS (fotocesta) - + Export the current sketch to SVG for DIY PCB production (photoresist) Exportuje aktuální návrh do SVG pro DIY výrobu DPS (fotocesta) - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber Návrh exportován do Gerber @@ -2638,1100 +2735,1120 @@ Pracujeme na potlačení této zprávy a nyní Vám nezbývá, než zvolit mezi Textový soubor BoM (*.html) - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Exportuje aktuální návrh do Extended Gerber formátu (RS-274X) pro professionální výrobu DPS - + Etchable (SVG)... Leptatelné (SVG)... - + &Print... &Tisk... - + Ctrl+P Ctrl+P - + Print the current view Vytiskne aktuální pohled - + Shell launch %1 Shell spustil %1 - + throw test exception vlož testovací vyjímku - + throw a fake exception to see what happens Vloží falešnou výjimku , aby bylo vidět, co se stane - + &Quit &Ukončit - + Ctrl+Q Ctrl+Q - + Quit the application Ukončí aplikaci - + &Open Example &Příklady - + All Vše - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: nelze načíst příklad s id='%1' - + &Open Recent Files &Otevřít nedávné soubory - + &%1 %2 &%1 %2 - + Undo Zpět - + Redo Vpřed - + &Cut V&yjmout - + Cut selection Vyjme vybrané - + &Copy &Kopírovat - + Copy selection Kopíruje vybrané - + &Paste &Vložit - + Paste clipboard contents Vloží obsah schránky - + Paste in Place Vložit na místo - + Paste clipboard contents in place Vloží obsah schránky na místo - + &Duplicate &Duplikovat - + Ctrl+D Ctrl+D - + Duplicate selection Duplikuje vybrané - + &Delete &Odstranit - + Delete selection Odstraní vybrané - + &Select All &Vybrat vše - + Select all elements Vybere všechny prvky - + &Deselect &Zrušit výběr - + Deselect Zruší výběr - - + + Add Note Přidat poznámku - + &Preferences... &Předvolby... - - + + Show the application's about box Zobrazí okno O programu - + &Edit &Upravit - + &Add to bin... &Přidat do zásobníku... - + Add selected part to bin Přidá vybranou součástku do zásobníku - + Disconnect All Wires Odpojí všechny propojky - + Disconnect all wires connected to this connector Odpojí všechny propojky od této špičky - + Update InfoView on hover Aktualizuje InfoView při přechodu - + Export Normalized SVG Exportuje normalizované SVG - + Export 1000 dpi SVG of this part in this view Exportuje 1000 dpi SVG této součástky v tomto zobrazení - + Export Normalized Flattened SVG Exportuje normalizované sloučené SVG - + Export 1000 dpi Flattened SVG of this part in this view Exportuje 1000 dpi sloučený SVG této součástky v tomto zobrazení - + Rotate the selected parts by 90 degrees clockwise Otočí aktuální výběr o 90 stupňů vpravo - + Rotate the selected parts by 180 degrees Otočí aktuální výběr o 180 stupňů - + Rotate current selection 90 degrees counter clockwise Otočí aktuální výběr o 90 stupňů vlevo - + Rotate current selection 45 degrees counter clockwise Otočí aktuální výběr o 45 stupňů vlevo - + Rotate current selection 45 degrees clockwise Otočí aktuální výběr o 45 stupňů vpravo - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Convert Převést - + Read-only Pouze pro čtení - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert Obrátit - + Reload the sketch - + &Delete Wire &Odstranit Propojku - + Edit (new parts editor) Upravit (editor součástek) - + Open the new parts editor on an existing part Otevřít editor součástek na existující součástce - + Rotate 45° Clockwise Otočit o 45° doprava - + Rotate 90° Clockwise Otočit o 90° doprava - + Rotate 180° Otočit o 180° - + Rotate 90° Counter Clockwise Otočit o 90° doleva - + Rotate 45° Counter Clockwise Otočit o 45° doleva - + &Flip Horizontal &Překlopit vodorovně - + Flip current selection horizontally Překlopí aktuální výběr vodorovně - + &Flip Vertical &Překlopit svisle - + Flip current selection vertically Překlopí aktuální výběr svisle - + Bring to Front Přesunout dopředu - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Přenese vybraný(é) objekt(y) dopředu v jejich vrstvě - + Bring Forward Posunout vpřed - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Posune vybraný(é) objekt(y) vpřed v jejich vrstvě - + Send Backward Posunout vzad - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Posune vybraný objekt(y) vzad ve své vrstvě - + Send to Back Přesunout dozadu - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Přesune vybraný objekt(y) dozadu ve své vrstvě - + Lock Part Uzamknout součástku - + Prevent a part from being moved Zabrání přesunu součástky - + Sticky Zachytit - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts Vybrat všechny uzamčené součástky - + Select all parts that can't be moved Vybere všechny součástky, které nemohou být přesunuty - + &Show All Layers &Zobrazit všechny vrstvy - + Show all the available layers for the current view Zobrazí všechny dostupné vrstvy pro aktuální zobrazení - + &Hide All Layers &Skrýt všechny vrstvy - + Hide all the layers of the current view Skryje všechny vrstvy aktuálního zobrazení - + &Show part label &Zobrazit popisku součástky - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + &Export... &Exportovat... - + Export selected part Exportuje vybranou součástku - - + + Add Bendpoint Přidat bod zlomu - + Add a bendpoint to the selected wire Přidá bod zlomu vybrané propojce - + Straighten Curve Vyrovnat křivku - + Straighten the curve of the selected wire Vyrovná křivku vybrané propojky - - + + Select outdated parts Vybrat neaktuální součástky - - + + Update selected parts Aktualizovat vybrané součástky - + Find part in sketch... Vyhledat součástku v návrhu... - + Search for parts in a sketch by matching text Hledat součástky v návrhu dle zadaného textu - + Open programming window Otevřít programátorské okno - + Open microcontroller programming window Otevře programátorské okno mikroprocesoru - + &Zoom In &Zvětšit - + Regenerate parts database ... Obnovit databázi součástek ... - + Regenerate the parts database (should only be used if your parts database is broken) Obnoví databázi součástek (Použijte jen když je databáze poškozená) - + Ctrl++ Ctrl++ - + Zoom in Zvětšit - + Ctrl+= Ctrl+= - + &Zoom Out &Zmenšit - + Ctrl+- Ctrl+- - + Zoom out Zmenšit - + &Fit in Window &Přizpůsobit oknu - + Ctrl+0 Ctrl+0 - + Fit in window Přizpůsobí oknu - + &Actual Size &Aktuální velikost - + Actual (real world physical) size Aktuální (skutečná fyzická) velikost - + 100% Size 100% Velikost - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size 100% (pixelů) velikost - + Align to Grid Přichytit k mřížce - + Align items to grid when dragging Při přetažení přichytí položky k mřížce - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Show Grid Zobrazit mřížku - + Show the grid Zobrazí mřížku - + Set Grid Size... Nastavit velikost mřížky... - + Set the size of the grid in this view Nastaví velikost mřížky v tomto náhledu - + Set Background Color... Nastavit barvu pozadí... - + Set the background color of this view Nastaví barvu pozadí v tomto náhledu - + Ctrl+4 Ctrl+4 - + Ctrl+5 Ctrl+5 - + &Show Welcome &Zobrazit Uvítací obrazovku - + Show the welcome view Zobrazí Uvítací obrazovku - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help Zobrazit první nápovědu - + Parts Editor Help Nápověda editoru součástek - + Display Parts Editor help in a browser Zobrazí nápovědu editoru součástek ve webovém prohlížeči - + Align - - - + + + + + + &Routing &Routování - + Move to bottom layer - + Move to top layer - + top and bottom - + bottom spodní - + top vrchní - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size Aktuální velikost - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Zdá se, že není možné automaticky určit skutečnou, fyzickou velikost monitoru, takže současně implementovaná 'aktuální velikost' je pouhý odhad. Nejlepší by bylo použít funkci pravítka, poté přes něj umístit skutečné pravítko (fyzické) a měnit velikost, dokud se neshodují. - + + + + Routing + + + + &Create trace from ratsnest &Vytvořit spoj ze sítě propojů - + Create a trace from the ratsnest line Vytvoří spoj z propoje - + &Create wire from ratsnest &Vytvořit propojku ze sítě propojů - + Create a wire from the ratsnest line Vytvoří prostý propoj z propojky - + Show unrouted Ukázat nezroutované - + Highlight all unrouted connectors Zvýraznit všechny nezroutované propojky - + Select All Wires Vybrat všechny propojky - + Select all wires Vybere všechny propojky - + Select All "Don't Autoroute" Traces Vybrat všechny neroutované spoje - + Select All Autoroutable Traces Vybrat všechny routované spoje - + Select all trace wires that can be changed during autorouting Vybere všechny spoje které mohou být upraveny během autoroutingu - + Choose Ground Fill Seed(s)... Vybrat plochu(y) zemní výplně... - + Set Ground Fill Seed Nastaví plochu zemní výplně - + Treat this connector and its connections as a 'ground' during ground fill. Během vytváření zemní výplně považovat tento konektor a jeho připojení jako "zem". - + Clear Ground Fill Seeds Vymazat plochy zemní výplně - + Clear ground fill seeds--enable copper fill only. Vymaže plochy zemní výplně--povolí pouze výplň mědí. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Check Loaded Traces - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + jumpers - + copperfill - + vias propojovací díry - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... Vytváření %1 výplňl... - + ground zemní - + copper měděnou - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -3740,7 +3857,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -3749,736 +3866,744 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + unable to find replacement for %1. nelze nalézt náhradu pro %1. - + OK OK - + Set the grid size for %1. Nastaví velikost mřížky pro %1. - + Grid Size: Velikost mřížky: - + in palce - + mm mm - + Restore Default Obnovit výchozí - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + &Show Breadboard &Zobrazit Montážní desku - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Delete Minus Odstranit bez propojek - + Delete selection without attached wires Odstraní vybrané bez drátových propojek - + Delete Wire up to bendpoints Odstranit propojku mezi zlomovými body - + Show/hide the label for the selected parts Zobrazit/skrýt popisek vybrané součástky - + Convert Bendpoint to Via Změnit zlomový bod na propojovací díru - + Convert the bendpoint to a via Změní zlomový bod na propojovací díru - + Convert Via to Bendpoint Změnit propojovací díru na zlomový bod - + Convert the via to a bendpoint Změní propojovací díru na zlomový bod - - + + Hide part silkscreen Skrýt schématickou značku - + Hide/show the silkscreen layer for only this part Skrýt/Ukázat schématickou značku pouze pro tuto součástku - + Ctrl+1 Ctrl+1 - + Show the breadboard view Zobrazí Montážní desku - + &Show Schematic &Zobrazit Schéma - + Ctrl+2 Ctrl+2 - + Show the schematic view Zobrazí Schéma - + &Show PCB &Zobrazit DPS - + Ctrl+3 Ctrl+3 - + Ctrl+Shift+V Ctrl+Shift+V - + Show the PCB view Zobrazí DPS - + Show Code Zobrazit Kód - + Show the code (programming) view Zobrazí programovací kód - + Show Parts Bin Icon View Zobrazit součástky zásobníku jako ikony - + Display the parts bin in an icon view Zobrazí zásobník součástek jako ikony - + Show Parts Bin List View Zobrazit součástky zásobníku jako seznam - + Display the parts bin in a list view Zobrazí zásobník součástek jako seznam - + &Minimize &Minimalizovat - + Ctrl+M Ctrl+M - + Minimize current window Minimalizuje aktuální okno - + Debugger Output Výstup debuggeru - + Online Tutorials Online výuka - + Ctrl+? Ctrl+? - + Open Fritzing help Otevře nápovědu Fritzingu - Donate to Fritzing - Podpořte Fritzing + Podpořte Fritzing - Open Fritzing donation web page - Otevře web stránku daru pro Fritzing + Otevře web stránku daru pro Fritzing - + Online Projects Gallery Online galerie projektů - + Open Fritzing examples Otevře Fritzing příklady - + Online Parts Reference Online reference součástek - + Open Parts Reference Otevře reference součástek - + First Time Help První nápověda - + Check for updates... Kontrola aktualizace... - + Check whether a newer version of Fritzing is available for download Zkontroluje, zda není ke stažení novější verze Fritzingu - + &About &O programu - + Tips, Tricks and Shortcuts Tipy, triky a klávesové zkratky - + Display some handy Fritzing tips and tricks Zobrazí některé užitečné tipy a triky Fritzingu - + &About Qt &O Qt - + Show Qt's about box Zobrazí okno o Qt's - + Report a bug... Nahlásit chybu... - - + + Report a but you've found in Fritzing Nahlásí chybu, kterou jste nalezli ve Fritzingu - + Enable debugging log Povolit debugging log - + &File &Soubor - + &Export &Exportovat - + as Image jako obrázek - + for Production pro výrobu - + &Part &Součástka - + Raise and Lower Řazení - + &View &Zobrazení - + &Window &Okno - - - + + + Ground Fill Zemnící výplň - + &Help &Nápověda - + Delete Ratsnest Line Vymazat propojovací čáru - + Delete Wire Odstranit propojku - + Hide part label Skrýt popisek součástky - + Show part label Ukázat popisek součástky - + Show part silkscreen Ukázat schématickou značku - + Autoroute connections... - + Shift+Ctrl+A Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Shift+Ctrl+3 Shift+Ctrl+3 - + Shift+Ctrl+2 Shift+Ctrl+2 - + Shift+Ctrl+1 Shift+Ctrl+1 - + Do not autoroute Neprovádět autoroutování - + When autorouting, do not rip up this trace wire, via, or jumper item Při autoroutingu se nezničí tento propojovací spoj, propojovací díra, nebo propojka - + Move to other side of the board Přesunout na druhou stranu desky - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Přesunoue vybrané spoje na druhou stranu desky (Pozn.: "první" stopa bude přesunuta a ostatní budou následovat na stejnou stranu) - + Select All CopperFill Vybrat všechny měděné výplně - + Select all copper fill items Vybere všechny položky měděné výplně - + Select all jumper item parts Vybrat všechny položky propojek součástek - + Select All Vias Vybrat všechny průchodky - + Select all via parts Vybere všechny průchodky součástek - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Vyplní prázdné oblasti měděné vrstvy--včetně všech spojů připojených k ZEMI - + Fill empty regions of the copper layer--not including traces connected to a GROUND Vyplní prázdné oblasti měděné vrstvy--s vyjímkou všech spojů připojených k ZEMI - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Vyplní prázdné oblasti měděné vrstvy--výplň bude obsahovat všechny spoje připojené k plochám - + Shift+Ctrl+D Shift+Ctrl+D - + Delete Odstranit - + Page Setup Nastavení stránky - + Sorry, "%1" has not been implemented yet Promiňte, funkce %1 nebyla dosud implementována - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Tato funkce brzy poskytne export návrhu Fritzing do EAGLE PCB software. Pokud byste chtěli mít více exportů do svých oblíbených nástrojů EDA, prosím dejte nám vědět, nebo nám přispějte. - + Export SVG... Exportovat SVG... - + Export Bill of Materials (BoM)... Export soupisky materiálu (BoM)... - + Unable to save BOM file, but the text is on the clipboard. Nelze uložit soubor BOM, ale text je uložen ve schránce. - + Export Netlist... Export netlistu... - - + + Set both copper layers clickable Nastaví obě měděné vrstvy klikatelné - - + + Set copper top layer clickable Nastaví horní měděnou vrstvu klikatelnou - - + + Set copper bottom layer clickable Nastaví spodní měděnou vrstvu klikatelnou - + Select All Traces Vybrat všechny spoje - + Select all trace wires Vybere všechny spoje - + Force Update Routing Status and Ratsnests Provedení aktualizace routingu a propojení - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Přepočítat stav routingu a propojení propojek (v případě, že autoaktualizace nepracuje správně) - + Select all trace wires excluded from autorouting Vybere všechny spoje vyjmuté z autoroutingu - + Select All Jumpers Vybrat všechny propojky - + Tidy Wires Uspořádat propoje - + Tidy selected wires Uspořádá vybrané propoje - - + + Copper Fill Měděná výplň - + Remove Copper Fill Odstranit měděnou výplň - + Remove the copper fill Odstraní měděnou výplň - + Copper Top and Copper Bottom layers are both active Obě měděné vrstvy, horní i spodní, jsou aktivní - + Order a PCB... Objednat DPS - + Order a PCB created from your sketch--from fabulous Fritzing Fab Objedná DPS, vytvořené z Vašeho návrhu - v báječném Fritzing Fab - + Copper Top layer is active Horní měděná vrstva je aktivní - + Copper Bottom layer is active Spodní měděná vrstva je aktivní - + Autorouting... Autorouting... - + Autorouting Progress... Probíhá autorouting... - + Remove Bendpoint Odstranit bod zlomu - + Remove copper fill Odstranit měděnou výplň - - + + &Wire Color &Barva propojky - + Launch %1... Spustit %1... - + No outdated parts found. All your parts are up-to-date. Nebyly nalezeny žádné neaktuální součástky. Všechny Vaše součástky jsou aktuální. - + Outdated parts Neaktuální součástky - + Do you want to update now? Aktualizovat nyní ? - + Successfully updated %1 part(s). Please check all views for potential side-effects. Úspěšně aktualizováno %1 součástek. Zkontrolujte, všechny pohledy pro potenciální vedlejší účinky. - + Update %1 part(s) Aktualizace %1 součástek @@ -4660,7 +4785,7 @@ Důvod: %2 (chyb.kód %3) NetLabel - + net label @@ -4686,62 +4811,62 @@ Důvod: %2 (chyb.kód %3) Klikněte na tento pin pro vytažení nového spoje. - + Change trace layer Změnit vrstvu spoje - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Váš návrh ještě neobsahuje desku! Přidejte PCB Aby bylo možné použít měděnou výplň. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4756,120 +4881,120 @@ Důvod: %2 (chyb.kód %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). Chyba Fritzingu: Nelze renderovat desku v SVG (1). - - - + + + Fritzing error: unable to render copper svg (1). Chyba Fritzingu: Nelze renderovat měď v SVG (1). - + Fritzing error: unable to write copper fill (1). Chyba Fritzingu: Nelze zapsat měděnou výplň (1). - + Fritzing error: unable to write copper fill (2). Chyba Fritzingu: Nelze zapsat měděnou výplň (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Nelze vytvořit měděnou výplň - pravděpodobně součástka nebyla vloženal na PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Nelze vytvořit měděnou výplň - součástka byla pravděpodobně vložena na jinou část nebo propoj, spíše než aktuální PCB. - + Clear ground fill seeds Vymazat plochy zemní výplně - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Nelze změnit tuto propojovací díru na zlomový bod protože je připojena k součástce která se nachází pouze na spodní vrstvě a další součástka je pouze na vrchní vrstvě. - + Show part silkscreen Ukázat schématickou značku - + Hide part silkscreen Skrýt schématickou značku - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4905,11 +5030,11 @@ Důvod: %2 (chyb.kód %3) - - - - - + + + + + Parts Editor Editor součástek @@ -4924,12 +5049,12 @@ Důvod: %2 (chyb.kód %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4949,7 +5074,7 @@ Důvod: %2 (chyb.kód %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4996,216 +5121,216 @@ Důvod: %2 (chyb.kód %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 Ctrl+4 - + Show the icon view - + Ctrl+5 Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Soubory obrázků & patic (%1 %2 %3 %4 %5);;SVG soubory (%1);;JPEG soubory (%2);;PNG soubory (%3);;soubory gEDA patic (%4);;soubory Kicad modulů (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Soubory obrázků (%1 %2 %3);;SVG soubory (%1);;JPEG soubory (%2);;PNG soubory (%3)%4%5 - + Open Image Otevřít obrázek - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem Problém konverze - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5237,12 +5362,12 @@ Důvod: %2 (chyb.kód %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5251,7 +5376,7 @@ Důvod: %2 (chyb.kód %3) - + across %n views. @@ -5260,7 +5385,7 @@ Důvod: %2 (chyb.kód %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5300,67 +5425,67 @@ Důvod: %2 (chyb.kód %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 v %1 nenalezeno žádné schéma - + schematic part schéma součástky - + no footprints found in %1 v %1 nenalezena žádná patice - + Relocate connector %1 @@ -5447,154 +5572,154 @@ Důvod: %2 (chyb.kód %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save Uložit - + Cancel Zrušit - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" Uložit "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. Vaše změny budou ztraceny, pokud je neuložíte. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector Přidat konektor - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6360,12 +6485,12 @@ Poznámka: Během této relace se již toto varování nebude opakovat.Chování kolečka myši - + Command Příkaz - + Control Řízení @@ -6406,57 +6531,65 @@ Poznámka: Během této relace se již toto varování nebude opakovat. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (kliknout pro změnu...) - + Clear Settings Výchozí nastavení - + Platform Support Platformy - + <b>%1</b> <b>%1</b> - + Location: Adresář: - + ... Najít... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Vyžaduje <a href='%1'>%2</a> (ve verzi minimálně %3 nebo novější). - + Select a programmer (executable) for %1 Vyberte programátor (spustitelný) pro %1 - + Connected Highlight Zvýraznění propojených - + Unconnected Highlight Zvýraznění nepropojených - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6465,7 +6598,7 @@ klávesa SHIFT přepne posun osy Klávesa Alt nebo klávesa %1 = zvětšení - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6474,22 +6607,22 @@ klávesa SHIFT přepne posun osy Klávesa Alt nebo klávesa %1 = posunout - + Curvy vs. straight wires Křivky vs. rovné propojky - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Když vytahujete novou drátovou propojku (ze součástky) nebo nožičku součástky, chcete změnit ohyb propojky (či nožičky) nebo vytáhnout nový zlomový bod ? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Tento checkbox nastaví defaultní chování. Mužete přepnout na nedefaultní chování držením tlačítka Ctrl (Control) [Mac: Command] při tažení. - + Curvy wires and legs Ohýbat propojky a nožičky @@ -6828,12 +6961,12 @@ Klávesa Alt nebo klávesa %1 = posunout Barva zvýraznění spojení - + Unconnected highlight color Barva zvýraznění nespojení - + Clear all saved settings and close this dialog immediately. Vymaže veškerá nastavení a okamžitě uzavře toto dialogové okno. @@ -6843,12 +6976,12 @@ Klávesa Alt nebo klávesa %1 = posunout Tato akce nevymaže žádné soubory; Pouze obnoví výchozí nastavení. - + There is no undo for this action, and no further warning!!!! Tento krok nelze vzít zpět !!! - + Clear Settings Výchozí nastavení @@ -6874,7 +7007,6 @@ Klávesa Alt nebo klávesa %1 = posunout - Fritzing Fritzing @@ -6910,21 +7042,21 @@ Klávesa Alt nebo klávesa %1 = posunout Upravit odkaz - - - + + + Part Součástka - - - + + + Wire Propojka - + Set Grid Size Nastavit velikost mřížky @@ -7130,12 +7262,12 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek. - + Convert to Via Změnit na propojovací díru - + Convert Via to Bendpoint Změnit propojovací díru na zlomový bod @@ -7151,43 +7283,43 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek.Zobrazení schématu - + Error reading file %1: %2. Chyba čtení souboru %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Změna pinu %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer Vrstva %1 - - + + Bring forward Posunout vpřed - + Send backward Posunout vzad - + Bring to front Přesunout dopředu @@ -7202,28 +7334,28 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek.Spojit propojku - + Trace wires Vytvoř spoj z propoje - + Ratsnest wires Vytvoř síť spojů - - + + Select all %1 Vybrat všechny %1 - + Select outdated parts Vybrat všechny neaktuální součástky - + Select locked parts Vybrat všechny uzamčené součástky @@ -7398,12 +7530,12 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek.Zpracovávání souboru... - + Copying file %1 Kopírování souboru %1 - + File %1 already exists: it won't be overwritten Soubor %1 již existuje: nebude přepsán @@ -7817,7 +7949,7 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7841,48 +7973,48 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database Probíhá obnova databáze součástek - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8177,17 +8309,17 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek. Ruler - + width šířka - + &cm &cm - + &in &in @@ -8195,33 +8327,33 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8353,87 +8485,87 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek.načítání sokončeno - + %1 %2 %1 %2 - + %1 %2 items %1 %2 položky - + Select All Vybrat vše - + Deselect Zruší výběr - + Add %1 Přidat %1 - + Selection Výběr - + Move %2 (%1) Přesun %2 (%1) - + Move %2 items (%1) Přesun %2 položky (%1) - - + + Select %1 Vybrat %1 - - + + Select %1 items Vybrat %1 položek - - + + Disconnect Odpojit - + Change Změnit - - + + Connect Připojit - - + + to %1 do %1 - + Create and connect wire Vytvořit a připojit propojku - + Rotate %2 (%1) Otočit %2 (%1) @@ -8458,57 +8590,57 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek.Dvojklik - + Delete ratsnest Vymazat síť propojů - + from %1 z %1 - + Move leg of Přesunout pin - + Change leg curvature for %1. Změnit křivku pinu pro %1. - + Change leg bendpoint for %1. Změnit zlomový bod pinu pro %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. To se jeví jako pokus o vytvoření spoje napříč vrstvami. Tato skutečnost by neměla vzniknout: kontaktujte vývojáře. - + Create and connect %1 Vytvořte propojku %1 - + wire propojka - + trace spoj - + Flip %2 (%1) Překlopit %2 (%1) @@ -8581,12 +8713,12 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek. - + Resize ruler to %1 %2 Změnit velikost pravítka %1 %2 - + test connectors @@ -8596,64 +8728,64 @@ Fritzing stále funguje, ale nebudete moci změnit vlastnosti Součástek.Změnit velikost popisku - + Change Resistance from %1 to %2 Změna odporu z %1 na %2 - - + + Change %1 from %2 to %3 Změna %1 z %2 na %3 - - + + Resize board to %1 %2 Změnit velikost desky na %1 %2 - + Create wire from Ratsnest Vytvořit propojku ze sítě propojů - + Disconnect all wires from %1 Odpojit všechny propojky od %1 - + Disconnect all wires from %1 items Odpojit všechny propojky od %1 položek - + Change image from %1 to %2 Změnit obrázek z %1 na %2 - + change pin labels změnit popisky pinů - + Unrouted connections are highlighted in yellow. Nezroutované propojky jsou označeny žlutě. - + There are no unrouted connections Žádné nezroutované propojky - + Unrouted connections Nezroutované propojky - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8662,17 +8794,17 @@ Note: you can also trigger this display by mousing down on the routing status te Poznámka: Toto okno můžete taktéž zobrazit kliknutím na text stavu autoroutingu ve status baru (spodní části obrazovky). - + Part '%1' not found in sketch Součástka %1 nebyla v návrhu nalezena - + Add %1 parts Přidáno %1 součástek - + Deselect all Odznačit vše @@ -8748,22 +8880,22 @@ Poznámka: Toto okno můžete taktéž zobrazit kliknutím na text stavu autorou SymbolPaletteItem - + voltage napětí - + label popisek - + Net labels - + Net labels cannot be blank @@ -8892,9 +9024,8 @@ Poznámka: Toto okno můžete taktéž zobrazit kliknutím na text stavu autorou Klepněte dvakrát na popisek součástky, čímž jej upravíte. Nebo můžete použít panel Inspektor, kliknutím na součástku a poté kliknutím na název součástky. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - K zobrazení jiných druhů popisků, úpravu písma, rotaci a další možnosti součástky, klikněte pravým tlačítkem myši na popisek. + K zobrazení jiných druhů popisků, úpravu písma, rotaci a další možnosti součástky, klikněte pravým tlačítkem myši na popisek. @@ -9016,6 +9147,11 @@ Poznámka: Toto okno můžete taktéž zobrazit kliknutím na text stavu autorou In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. Na obrazovce "Montážní deska" nebo "DPS", pokud chcete přidat zakřivení drátové propojce nebo ohebné nožicce, začněte posouvat propojku nebo nožičku se stiknutým tlačítkem Ctrl (Control, Mac: Command).Nastavení výchozího ohýbání drátů či nožiček, nalznete v menu "<b>Upravit</b>" -> "<b>Předvolby</b>" -> záložky "<b>Zobrazení .....</b>". + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9430,93 +9566,68 @@ Poznámka: Toto okno můžete taktéž zobrazit kliknutím na text stavu autorou The Fritzing Creator Kit is out of Stock. For Updates please visit the fritzing.blog Fritzing Creator Kit není skladem. Pro více informací navštivte fritzing.blog - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Fritzing Laboratoř - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Laboratoř je jednoduchá a spolehlivá služba k profesionální výrobě DPS z vašich Fritzing návrhů. - + produce your first pcb now >> vyrobte si vlastní DPS >> - + Order your PCB now. Objednat DPS. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Projekty - + Blog Blog - + Fritzing News. Fritzing Novinky. - + Fritzing Projects. Fritzing Projekty. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Žádné nedávné soubory - + Unable to reach blog.fritzing.org Nelze se připojit k blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9525,17 +9636,17 @@ Poznámka: Toto okno můžete taktéž zobrazit kliknutím na text stavu autorou Nelze se připojit k friting.org/projects - + Tip of the Day: Tip dne: - + All Tips Všechny Tipy - + Next Tip Další Tip diff --git a/translations/fritzing_da.ts b/translations/fritzing_da.ts index 972e4ef3c..ab2d7c85a 100644 --- a/translations/fritzing_da.ts +++ b/translations/fritzing_da.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -792,7 +777,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -800,17 +785,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1259,6 +1244,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1285,12 +1334,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1400,7 +1449,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1948,7 +1997,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1964,7 +2013,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -2000,7 +2049,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2024,40 +2073,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2077,196 +2133,222 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) - + %1 of %2 nets routed - %n connector(s) still to be routed - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2347,13 +2429,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2374,2089 +2456,2104 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + Delete Minus - + Delete selection without attached wires - + &Delete Wire - + Delete Wire up to bendpoints - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Ctrl+Shift+V - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+1 - + Ctrl+2 - + Ctrl+3 - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Show the breadboard view - + &Show Schematic - + Show the schematic view - + &Show PCB - + Show the PCB view - + Show Code - + Show the code (programming) view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + First Time Help - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + Raise and Lower - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Check Loaded Traces - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + There are %n outdated part(s) in this sketch. - + We strongly recommend that you update these %n parts to the latest version. - + This may result in changes to your sketch, as parts or connectors may be shifted. - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. @@ -4598,7 +4695,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4621,24 +4718,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4649,8 +4746,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4660,152 +4757,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5009,11 +5106,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5061,472 +5158,472 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors - + across %n views. - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6325,96 +6422,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6769,7 +6874,6 @@ shift key swaps scroll axis - Fritzing @@ -6830,12 +6934,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6845,12 +6949,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6885,21 +6989,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7167,18 +7271,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7188,43 +7292,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7239,22 +7343,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7567,12 +7671,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7732,7 +7836,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7756,48 +7860,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8090,17 +8194,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8108,33 +8212,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8266,142 +8370,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8495,91 +8599,91 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8653,22 +8757,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8817,7 +8921,7 @@ Note: you can also trigger this display by mousing down on the routing status te - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. + To display different properties in a part label, rotate it, or change the font, right-click the label. @@ -9322,108 +9426,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_de.ts b/translations/fritzing_de.ts index 11ed98743..fb7af97af 100644 --- a/translations/fritzing_de.ts +++ b/translations/fritzing_de.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 auf den Quellcode und CreativeCommons:BY-SA auf den Rest - + <b>2007-%1 Fritzing</b> <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing ist die gemeinsame Arbeit von: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,92 +61,96 @@ Bryant Mairs, Uleshka Asher, und Daniel Tzschentke. - Special thanks goes out to: - Besonderer Dank geht an: + Besonderer Dank geht an: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser und Julia Werner. - + Thanks for the translations go out to: Vielen Dank für die Übersetzungen geht an: - + Yuelin and Ninjia Yuelin und Ninjia - + Chinese (Traditional): Chinesisch (traditionell): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: Spanisch: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: Italienisch: - + Portuguese (European): Portugiesisch (Europäisch): - + Portuguese (Brazilian): Portugiesisch (brasilianisch): - + Chinese (Simplified): Vereinfachtes Chinesisch: @@ -155,7 +159,7 @@ Robert Lee - + Japanese: Japanisch: @@ -164,114 +168,119 @@ Hiroshi Suzuki - + Russian: Russisch: - + Dutch: Niederländisch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: Tschechisch: - + Korean: Koreanisch: - + Slovak: Slowakisch: - + Greek: Griechisch: - + French: Französisch: - + Turkish: Türkisch: - + Bulgarian: Bulgarisch: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - Bryant Mairs, Uleshka Asher, und Daniel Tzschentke + Bryant Mairs, Uleshka Asher, und Daniel Tzschentke - and Kjell Morgenstern - und Kjell Morgenstern + und Kjell Morgenstern - + Ukrainian: Ukrainisch: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing wird ermöglicht durch die Förderung von - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, die Unterstützung durch die Design - + Department of Bauhaus-University Weimar, Abteilung der Bauhaus-Universität Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, Parallax, Picaxe, Sparkfun, zahlreiche Spender, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. und von jedem Kauf eines Fritzing Starter Kit oder einer Leiterplatte von Fritzing Fab. - Special thanks goes out as well to all the students - Besonderer Dank geht außerdem an alle Studenten + Besonderer Dank geht außerdem an alle Studenten - and alpha testers who were brave enough to give - und Alpha-Testern, die mutig genug waren, um + und Alpha-Testern, die mutig genug waren, um - Fritzing a test spin. - Fritzing auszuprobieren. + Fritzing auszuprobieren. @@ -819,7 +828,7 @@ Trotzdem diese Datei benutzen? Capacitor - + Select from the dropdown, or type in a %1 value Aus der Liste wählen oder %1-Wert eintippen @@ -827,17 +836,17 @@ Trotzdem diese Datei benutzen? ConnectorItem - + Add bendpoint Biegepunkt hinzufügen - + Straighten curve Biegung begradigen - + Remove bendpoint Biegepunkt entfernen @@ -1287,6 +1296,70 @@ Trotzdem diese Datei benutzen? Bauteil-Datenbank wird neu erstellt... + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Abbrechen + + + + Upload to Fab + + + + + Upload + Hochladen + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1313,12 +1386,12 @@ Trotzdem diese Datei benutzen? FolderUtils - + Moving your custom parts Eigene Bauteile werden verschoben - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> <p>Deine selbst erstellten Bauteile werden jetzt von dem verborgenen "App Data"-Ordner in Deinen Fritzing Dokumenten-Ordner verschoben: <br/><br/><em>%1</em><br/><br/>So wird es für Dich einfacher, die zugehörigen Dateien zu finden und ggf. manuell zu bearbeiten.</p> @@ -1434,7 +1507,7 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d Hole - + hole size Lochgröße @@ -1921,7 +1994,7 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d MainWindow - + Rotate Drehen @@ -1937,7 +2010,7 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d - + Autoroute Autoroute @@ -1978,14 +2051,14 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d "%1" konnte nicht geöffnet werden: %2 - - + + Specify a file name Dateinamen auswählen - - + + Fritzing (*%1) Fritzing (*%1) @@ -1993,75 +2066,82 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable %1 konnte nicht als verteilbar exportiert werden - + Fritzing Part (*%1) Fritzing Bauteil (%1) - + No connections to route Keine Verbindungen zum Routen - + Routing completed Routing fertiggestellt - + Unrouted connections Ungeroutete Verbindungen - + There are no unrouted connections in this view. Es gibt keine ungerouteten Verbindungen in dieser Ansicht. - + %1 - [%2] %1 - [%2] @@ -2144,112 +2224,138 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d "%1" (shareable) konnte nicht geöffnet werden: %2 - + Unable to open shareable part '%1': %2 Bauteil "%1" konnte nicht geöffnet werden: %2 - + + Unable to load part from '%1' Bauteil aus "%1" konnte nicht geladen werden - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. Es gibt bereits ein Bauteil mit der ID '%1'. - + No copper top layer Fehlende obere Kupferebene - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Die obere Kupferebene (copper 1) ist auf einer einseitigen Leiterplatte nicht verfügbar. Bitte ändere die Leiterplatte auf eine beidseitige, oder wähle die untere Kupferebene (copper 0). - + No exactly matching part found; Fritzing chose the closest match. Kein passendes Bauteil gefunden; das ähnlichste wurde automatische ausgewählt. - + Change to single layer pcb Zu einseitiger Leiterplatte ändern - + Change to two layer pcb Zu beidseitiger Leiterplatte ändern - + Change image to %2 Bild ändern nach %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Der SVG-Datei %1 fehlt eine '%2'-Ebene. Um mehr darüber zu lernen, wie man eine eigene Leiterplattenform erstellt, schau Dir die <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>Anleitung</a> an. - + loading %1 Lade %1 - + Loading... Lade... - + new sketch Neuer Entwurf - + Schematic conversion Schaltplankonvertierung - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Beim Speichern dieses Entwurfs wird er in den neuen schematischen Grafikstandard konvertiert. Fortfahren und konvertieren? - + Backing up '%1' '%1' wird gesichert - + Fritzing uncompressed (*%1) Fritzing unkomprimiert (*%1) - + (x,y)=(%1, %2) %3 (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (Breite, Höhe)=(%3, %4) %5 - + Code Code - + Welcome Willkommen @@ -2314,64 +2420,64 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d Exportiere... - + Unable to save %1 Der Entwurf %1 konnte nicht gespeichert werden - + Cannot print to %1 Der Entwurf %1 konnte nicht gedruckt werden - + Cannot write file %1: %2. Der Entwurf %1 konnte nicht geschrieben werden: %2. - + Saved '%1' '%1' gespeichert - + Cannot find file %1. Entwurf %1 konnte nicht gefunden werden. - + Cannot read file 1 %1: %2. Der Entwurf %1 konnte nicht gelesen werden: %2. - + Etchable (SVG)... Ätzbar (SVG)... - + Create a new sketch Neuen Entwurf erstellen - + &Open... &Öffnen... - + Ctrl+O Strg+O - + Export the visible area of the current sketch as a JPG image Sichtbaren Bereich als JPEG-Bild speichern - + Export the visible area of the current sketch as a PNG image Sichtbaren Bereich als PNG-Bild speichern @@ -2380,27 +2486,27 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d Sichtbaren Bereich als PostScript-Grafik speichern - + Export the visible area of the current sketch as a PDF image Sichtbaren Bereich als PDF-Dokument speichern - + Export the current sketch as an SVG image Aktuellen Entwurf als SVG-Grafik speichern - + Save a Bill of Materials (BoM)/Shopping List as text Einkaufs- bzw. Stückliste (BoM) als Textdatei speichern - + &Open Recent Files &Zuletzt geöffnete Entwürfe - + &Open Example &Beispiele @@ -2411,69 +2517,69 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d - + Cancel Abbrechen - - + + File '%1' not found Datei '%1' konnte nicht gefunden werden - + New Neu - + Ctrl+N Strg+N - + &Save &Speichern - + Ctrl+S Strg+S - - + + Save the current sketch Aktuellen Entwurf speichern - + &Save As... Speichern &unter... - + Shift+Ctrl+S Umschalt+Strg+S - + Share online... Online veröffentlichen... - + Post a project to the Fritzing website Dieses Projekt auf der Fritzing Website veröffentlichen - + JPG... JPG... - + PNG... PNG... @@ -2482,672 +2588,670 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d PostScript... - + PDF... PDF... - + SVG... SVG... - + List of parts (&Bill of Materials)... Stückliste (&BoM)... - + XML Netlist... XML-Netzliste... - + Save a netlist in XML format Netzliste im XML-Format speichern - + SPICE Netlist... SPICE Netzliste... - + Save a netlist in SPICE format Netzliste im SPICE-Format speichern - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Aktuellen Entwurf nach EAGLE CAD exportieren - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Aktuellen Entwurf im Extended Gerber-Format (RS-274X) für professionelle Platinenproduktion exportieren - + Etchable (PDF)... Ätzbar (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) Aktuellen Entwurf als PDF für Selbstbau-Leiterplatten exportieren (Fotoresist-Methode) - + Export the current sketch to SVG for DIY PCB production (photoresist) Aktuellen Entwurf als SVG für Selbstbau-Leiterplatten exportieren (Fotoresist-Methode) - + &Print... &Drucken... - + Ctrl+P Strg+P - + Print the current view Aktuelle Ansicht drucken - + Export SPICE Netlist... SPICE-Netzliste exportieren... - + Gerber export can only handle one board at a time--please select the board you want to export. Es kann nur eine Leiterplatte gleichzeitig exportiert werden - bitte wähle die Leiterplatte aus, die Du exportieren möchtest. - + Sketch exported to Gerber Entwurf wurde als Gerber exportiert - + throw test exception Test-Ausnahme erzeugen - + throw a fake exception to see what happens Testweise eine Ausnahme erzwingen, um zu sehen was passiert - + &Quit &Beenden - + Ctrl+Q Strg+Q - + Quit the application Programm beenden - + All Alle - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &%1 %2 &%1 %2 - + &Cut &Ausschneiden - + Cut selection Auswahl ausschneiden - + &Copy &Kopieren - + Copy selection Auswahl kopieren - + &Paste &Einfügen - + Paste clipboard contents - Inhalte aus der Zwischenablage einfügen + Inhalte aus der Zwischenablage einfügen - + Paste in Place Hier einfügen - + Paste clipboard contents in place Zwischenablage an der Mausposition einfügen - + &Duplicate &Duplizieren - + Ctrl+D Strg+D - + Duplicate selection Auswahl duplizieren - + &Delete &Löschen - + Delete selection Auswahl löschen - + &Select All &Alles auswählen - + Select all elements Alle Teile auswählen - + &Deselect Auswahl &zurücksetzen - + Deselect Auswahl zurücksetzen - + &Preferences... &Einstellungen... - - + + Show the application's about box Zeige Informationen über Fritzing an - + &Add to bin... Zum Sortiment &hinzufügen... - + Add selected part to bin Ausgewähltes Bauteil zum Sortiment hinzufügen - + Disconnect All Wires Alle Drähte lösen - + Disconnect all wires connected to this connector Alle Drähte, welche mit diesem Verbinder verbunden sind, lösen - + Update InfoView on hover InfoAnsicht beim Überfahren aktualisieren - + Export Normalized SVG Normalisiertes SVG exportieren - + Export 1000 dpi SVG of this part in this view Aktuellen Ausschnitt als SVG mit 1000 dpi exportieren - + Export Normalized Flattened SVG Reduziertes SVG exportieren - + Export 1000 dpi Flattened SVG of this part in this view Aktuellen Ausschnitt als reduziertes SVG mit 1000 dpi exportieren - + Dump all parts Alle Bauteile wegwerfen - + Debug dump all parts in this view Alle Bauteile wegwerfen in dieser Ansicht debuggen - + Test Connectors Verbinder prüfen - + Connect all connectors to a single test part Alle Verbinder mit einem einzigen Testteil verbinden - + Align Left Links - + Align selected items at the left Ausgewählte Bauteile links ausrichten - + Align Horizontal Center Horizontal zentrieren - + Align selected items at the horizontal center Ausgewählte Bauteile horizontal zentrieren - + Align Right Rechts - + Align selected items at the right Ausgewählte Bauteile rechts ausrichten - + Align Top Oben - + Align selected items at the top Ausgewählte Bauteile oben ausrichten - + Align Vertical Center Vertikal zentrieren - + Align selected items at the vertical center Ausgewählte Bauteile vertikal zentrieren - + Align Bottom Unten - + Align selected items at the bottom Ausgewählte Bauteile unten ausrichten - + Lock Part Abschließen/Verriegeln Sperren - + Prevent a part from being moved Position des Bauteils sperren - + Select All Locked Parts Alle gesperrten Bauteile auswählen - + Select all parts that can't be moved Alle Bauteile auswählen, die nicht bewegt werden können - + Show/hide the label for the selected parts Bezeichnung des Bauteils ein-/ausblenden - + Straighten Curve Biegung begradigen - + Straighten the curve of the selected wire Biegung des ausgewählten Drahtes begradigen - + Find part in sketch... Finde Bauteil im Entwurf... - + Search for parts in a sketch by matching text Bauteil mit einem Suchbegriff finden - - + + Hide part silkscreen Bauteil-Siebdruck ausblenden - + Hide/show the silkscreen layer for only this part Siebdruckebene für dieses Bauteil ein-/ausblenden - + Regenerate parts database ... Bauteil-Datenbank neu erstellen... - + Regenerate the parts database (should only be used if your parts database is broken) Gesamte Bauteil-Datenbank neu erstellen (nur verwenden, falls diese fehlerhaft ist) - + Color Breadboard Wires By Length Kabellänge farbig kodieren - + Display breadboard wires using standard color coding by length Braeadboard-Kabel entsprechend ihrer Länge farbcodiert anzeigen - + Ctrl+4 Strg+4 - + Ctrl+5 Strg+5 - + &Show Welcome Willkommen an&zeigen - + Show the welcome view Die Willkommensansicht anzeigen - + Show Parts Bin Icon View Sortiment als Symbole anzeigen - + Display the parts bin in an icon view Die Bauteile des Sortiments in einer Symbolansicht anzeigen - + Show Parts Bin List View Bauteile-Sortiment in Listenansicht anzeigen - + Display the parts bin in a list view Die Bauteile des Sortiments in einer Listenansicht anzeigen - Donate to Fritzing - Spenden an Fritzing + Spenden an Fritzing - Open Fritzing donation web page - Öffnet die Fritzing Spenden-Website + Öffnet die Fritzing Spenden-Website - + Display First Time Help Erstbenutzerhilfe anzeigen - + Align Ausrichten - + Move to bottom layer Auf untere Ebene verschieben - + Move to top layer Auf obere Ebene verschieben - + Hide part label Bauteilbeschriftung ausblenden - + Show part label Bauteilbeschriftung anzeigen - + Show part silkscreen Siebdruck einblenden - + Delete Entfernen - + top and bottom Oben und unten - + bottom Unten - + top Oben - + Ground Fill (%1) Massefüllung (%1) - + Copper Fill (%1) Kupferfüllung (%1) - + Choose Ground Fill Seed(s)... Saat für Massefüllung wählen... - + Set Ground Fill Seed Als Saat für Massefüllung setzen - + Treat this connector and its connections as a 'ground' during ground fill. Diesen Verbinder und seine Verbindungen als "Masse" bei der Massefüllung belegen. - + Clear Ground Fill Seeds Massefüllung-Saat zurücksetzen - + Clear ground fill seeds--enable copper fill only. Saat für Massefüllung zurücksetzen und normale Kupferfüllung aktivieren - + Set Ground Fill Keepout... Abstand der Massefüllung einstellen... - + Set the minimum distance between ground fill and traces or connectors Minimaler Abstand zwischen Massefüllung und benachbarten Leiterbahnen und Verbindern - + Design Rules Check (DRC) Entwurfsregelprüfung (DRC) - + Highlights any parts that are too close together for safe board production Überprüft das Layout auf mögliche Produktionsprobleme - + Fritzing Fab Quote... Herstellungspreis mit Fritzing Fab... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Ermittelt einen Kostenvoranschlag für die Produktion mit "Fritzing Fab" - - + + View from below Sicht von unten - - + + View the PCB from the bottom layers upwards Leiterplatte von unten betrachten - + View from above Sicht von oben - + View the PCB from the top layers downwards Leiterplatte von oben betrachten - + jumpers Drahtbrücken - + copperfill Kupferfülling - + vias Vias - + Generating %1 fill... %1-Füllung wird erzeugt... - + ground Masse - + copper Kupfer - + Schematic view update Schaltplanansicht aktualisieren - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -3156,28 +3260,29 @@ Du kannst auch per rechten Mausklick einen Verbinder als "Saat" für d - + Would you like to convert '%1' to the new standard now or open the file read-only? - Möchtest Du '%1' jetzt in den neuen Standard konvertieren oder die Datei schreibgeschützt öffnen? + Möchtest Du '%1' jetzt in den neuen Standard konvertieren oder die Datei schreibgeschützt öffnen? + - + The conversion process will not modify '%1', until you save the file. Der Konvertierungsprozess wird '%1' nicht verändern, bis Du die Datei speicherst. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Du musst die Schaltplan-Ansicht neu aufräumen, da die Größen vieler Bauteile angepasst wurden. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Beachte dass Deine eigenen Bauteile nicht konvertiert werden. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -3186,7 +3291,7 @@ Note: if you want to update later, there are options under the 'Part' Hinweis: Wenn Du die Aktualisierung später durchführen möchtest, gibt es im 'Bauteile'-Menü spezielle Funktionen, um mit veralteten Bauteilen umzugehen. - + There are %n outdated part(s) in this sketch. Es sind %n veraltete Bauteile in diesem Entwurf. @@ -3194,7 +3299,7 @@ Hinweis: Wenn Du die Aktualisierung später durchführen möchtest, gibt es im & - + We strongly recommend that you update these %n parts to the latest version. Wir empfehlen Dir eindringlich, diese %n Bauteile auf die neueste Version zu aktualisieren. @@ -3202,74 +3307,74 @@ Hinweis: Wenn Du die Aktualisierung später durchführen möchtest, gibt es im & - + This may result in changes to your sketch, as parts or connectors may be shifted. Dies kann zu Änderungen am Entwurf führen, Bauteile oder Verbinder können verschoben sein. - + unable to find replacement for %1. Konnte keinen Ersatz für %1 finden. - + %1 background %1 Hintergrund - + Enter Text Text eingeben - + Text will match part label, description, title, etc. Enter text to search for: Der Suchtext wird mit den Bauteilbeschreibungen verglichen. Gib einen Text zur Suche ein: - + Search Suche - + No parts matched search term '%1'. Es konnten keine Bauteile für '%1' gefunden werden. - + Rotate the selected parts by 90 degrees clockwise Die ausgewählten Bauteile um 90° im Uhrzeigersinn drehen - + Rotate the selected parts by 180 degrees Die ausgewählten Bauteile um 180° drehen - + Rotate current selection 90 degrees counter clockwise Aktuelle Auswahl um 90° gegen den Uhrzeigersinn drehen - + Rotate current selection 45 degrees counter clockwise Aktuelle Auswahl um 45° gegen den Uhrzeigersinn drehen - + Rotate current selection 45 degrees clockwise Aktuelle Auswahl um 45° im Uhrzeigersinn drehen - + Revert? Zurücksetzen? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3278,535 +3383,555 @@ Go ahead and revert? Zurücksetzen? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Öffne einen Fritzing-Entwurf (.fzz, .fz), ein Fritzing-Bauteil (.fzpz) oder -Bauteilsortiment (.fzb, .fzbz) - + Revert Zurücksetzen - + Reload the sketch Entwurf erneut laden - + &Delete Wire Draht &entfernen - + Edit (new parts editor) Bearbeiten (neuer Bauteile-Editor) - + Open the new parts editor on an existing part Öffne den neuen Bauteile-Editor für ein vorhandenes Bauteil - + &Flip Horizontal &Horizontal umdrehen - + Flip current selection horizontally Auswahl horizontal umdrehen - + &Flip Vertical &Vertikal umdrehen - + Flip current selection vertically Auswahl vertikal umdrehen - + Bring to Front Nach vorne bringen - + Shift+Ctrl+] Umschalt+Strg+] - + Bring selected object(s) to front of their layer Auswahl innerhalb deiner Ebene in den Vordergrund bringen - + Bring Forward Schrittweise nach vorne bringen - + Ctrl+] Strg+] - + Bring selected object(s) forward in their layer Auswahl innerhalb deiner Ebene schrittweise in den Vordergrund bringen - + Send Backward Schrittweise nach hinten senden - + Ctrl+[ Strg+[ - + Send selected object(s) back in their layer Auswahl innerhalb ihrer Ebene schrittweise in den Hintergrund senden - + Send to Back Nach hinten senden - + Shift+Ctrl+[ Umschalt+Strg+[ - + Send selected object(s) to the back of their layer Auswahl innerhalb ihrer Ebene in den Hintergrund senden - + Sticky Haftend - + If a "sticky" part is moved, parts on top of it are also moved Wenn ein "haftendes" Bauteil bewegt wird, werden auch alle darauf liegenden Bauteile mitbewegt - + &Show All Layers Alle Ebenen &anzeigen - + Show all the available layers for the current view Alle Ebenen der aktuellen Ansicht anzeigen - + &Hide All Layers Alle Ebenen a&usblenden - + Hide all the layers of the current view Alle Ebenen der aktuellen Ansicht ausblenden - + &Export... &Exportieren... - + Export selected part Ausgewähltes Bauteil exportieren - - + + Add Bendpoint Biegepunkt hinzufügen - + Add a bendpoint to the selected wire Einen Biegepunkt zum ausgewählten Draht hinzufügen - + Convert Bendpoint to Via Biegepunkt in Via umwandeln - + Convert the bendpoint to a via Biegepunkt in ein Via umwandeln - + Convert Via to Bendpoint Via in Biegepunkt umwandeln - + Convert the via to a bendpoint Via in einen Biegepunkt umwandeln - + Actual (real world physical) size Originalgröße - + 100% Size 100% Größe - + 100% (pixel) size 100% (Pixel-)Größe - + Align to Grid Am Raster ausrichten - + Align items to grid when dragging Elemente beim Ziehen am Raster ausrichten - + Show Grid Raster anzeigen - + Show the grid Das Raster einblenden - + Set Grid Size... Rastergröße... - + Set the size of the grid in this view Die Weite der Rasterung für diese Ansicht anpassen - + Set Background Color... Hintergrundfarbe... - + Set the background color of this view Die Hintergrundfarbe für diese Ansicht anpassen - + Tips, Tricks and Shortcuts Tipps, Tricks, und Kurztasten - + Parts Editor Help Hilfe zum Bauteile-Editor - + Display Parts Editor help in a browser Hilfe zum Bauteile-Editor im Browser öffnen - + as Image als Bild - + for Production für die Produktion - - - + + + + + + &Routing &Routing - - - + + + Ground Fill Massefüllung - + Actual Size Originalgröße - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Es ist leider nicht möglich, die tatsächliche physische Größe dieses Displays zu berechnen, sodass die "Originalgröße" nur eine Annäherung ist. - + Shift+Ctrl+A Umschalt+Strg+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Wähle eine Leiterbahn aus, dessen Position auf dem Bildschirm nicht der richtigen Position entspricht. (Nur nötig für Entwürfe die in Version 0.7.10 oder früher mit dem Autorouter geroutet wurden.) - + Autorouter/DRC settings... Autorouter/DRC-Einstellungen... - + Set autorouting parameters including keepout... Autorouter und Entwurfsregeln einstellen - - + + Set both copper layers clickable Beide Kupferseiten - + Shift+Ctrl+3 Umschalt+Strg+3 - - + + Set copper top layer clickable Obere Kupferebene anklickbar machen - + Shift+Ctrl+2 Umschalt+Strg+2 - - + + Set copper bottom layer clickable Untere Kupferebene anklickbar machen - + Shift+Ctrl+1 Umschalt+Strg+1 - + &Create trace from ratsnest &Leiterbahn aus Luftlinie erstellen - + Ctrl+Shift+V Str+Umschalt+V - + Rotate 45° Clockwise Um 45° im Uhrzeigersinn drehen - + Rotate 90° Clockwise Um 90° im Uhrzeigersinn drehen - + Rotate 180° Um 180° drehen - + Rotate 90° Counter Clockwise Um 90° gegen den Uhrzeigersinn drehen - + Rotate 45° Counter Clockwise Um 45° gegen den Uhrzeigersinn drehen + + + Visit fritzing.org + + + + + fritzing.org + + + + + Routing + + + + Autoroute connections... Verbindungen automatisch routen... - + Create a trace from the ratsnest line Aus dieser Luftlinie eine Leiterbahn erstellen - + &Create wire from ratsnest &Draht aus Luftlinie erstellen - + Create a wire from the ratsnest line Aus dieser Luftlinie einen Draht erstellen - + Do not autoroute Von Autorouting ausschließen - + When autorouting, do not rip up this trace wire, via, or jumper item Beim Autorouten dieses Element ignorieren - + Move to other side of the board Auf andere Platinenseite verschieben - + Show unrouted Ungeroutete anzeigen - + Highlight all unrouted connectors Alle nicht gerouteten Verbinder hervorheben - + Select All Wires Alle Drähte auswählen - + Select all wires Alle Drähte auswählen - + Select All CopperFill Alle Kupferfüllungen auswählen - + Select all copper fill items Alle Elemente mit Kupferfüllung auswählen - + Select All "Don't Autoroute" Traces Alle "Nicht Autorouten"-Leiterbahnen auswählen - + Select All Autoroutable Traces Alle "Autoroute-baren"-Leiterbahnen auswählen - + Select all trace wires that can be changed during autorouting Alle Leiterbahnen auswählen, die während des Autorouting geändert werden könnten - + Select All Jumpers Alle Drahtbrücken auswählen - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Leere Bereiche der Kupferebene auffüllen - Füllung wird alle mit MASSE verbundenen Leiterbahnen beinhalten - + Fill empty regions of the copper layer--not including traces connected to a GROUND Leere Bereiche der Kupferebene auffüllen - ausgenommen mit MASSE verbundene Leiterbahnen - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Leere Bereiche der Kupferebene auffüllen - Füllung wird alle mit der "Saat" verbundenen Leiterbahnen einschließen - + Shift+Ctrl+D Umschalt+Strg+D - + Check Loaded Traces Geladene Leiterbahnen überprüfen - + Copper Top and Copper Bottom layers are both active Obere und untere Kupferseite sind beide aktiviert - + Order a PCB... Leiterplatte bestellen... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Eine Leiterplatte bestellen, welche aus deinem Entwurf erstellt wurde--von dem fabelhaften Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Dein Entwurf enthält noch keine Leiterplatte! Bitte füge eine hinzu, um den Autorouter zu starten. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Es kann nur eine Leiterplatte gleichzeitig geroutet werden. Bitte wähle die Leiterplatte aus, die Du autorouten möchtest. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Dein Entwurf enthält noch keine Leiterplatte! Bitte füge eine hinzu, um eine Kupferfüllung zu erzeugen. - + Please select a PCB--copper fill only works for one board at a time. Bitte wähle erst eine Leiterplatte aus. Die Kupferfüllung kann nur auf einer Leiterplatte gleichzeitig ausgeführt werden. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Dein Entwurf enthält noch keine Leiterplatte! Bitte füge eine hinzu, um die Kupferfüllung entfernen zu können. - + Please select a PCB--ground fill operations only work on a one board at a time. Bitte wähle erst eine Leiterplatte aus. Änderungen an der Kupferfüllung können nur auf einer Leiterplatte gleichzeitig ausgeführt werden. - + Do you want to update now? @@ -3815,538 +3940,548 @@ Do you want to update now? Willst Du jetzt aktualisieren? - + OK OK - + Set the grid size for %1. Rasterweite festlegen für %1. - + Grid Size: Rasterweite: - + in in - + mm mm - + Restore Default Zurücksetzen - + Your sketch does not have a board yet! DRC only works with a PCB. Dein Entwurf enthält noch keine Leiterplatte! Bitte füge eine hinzu, um den die Entwurfsregelprüfung zu starten. - + Please select a PCB. DRC only works on one board at a time. Bitte wähle erst eine Leiterplatte aus. Die Entwurfsregelprüfung kann nur auf einer Leiterplatte gleichzeitig ausgeführt werden. - + DRC Progress... Fortschritt der Prüfung... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. Deinem Entwurf fehlt noch die Leiterplatte! Für die Kupferfüllung musst Du erst eine Leiterplatte (PCB) einfügen. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Bitte wähle erst eine Leiterplatte aus. Die Kupferfüllung kann nur auf einer Leiterplatte gleichzeitig ausgeführt werden. - + Copper Top layer is active Ober Kupferseite ist aktiviert - + Copper Bottom layer is active Untere Kupferseite ist aktiviert - + Autorouting Progress... Autorouting-Fortschritt... - + Launch %1... %1 ausführen... - + No outdated parts found. All your parts are up-to-date. Keine veralteten Bauteile gefunden. Alle vewendeten Bauteil sind auf dem aktuellen Stand. - + Outdated parts Veraltete Bauteile - + Successfully updated %1 part(s). Please check all views for potential side-effects. %1 Bauteil(e) erfolgreich aktualisiert. Bitte überprüfe alle Ansichten auf eventuelle Nebenwirkungen. - + Update %1 part(s) %1 Bauteil(e) aktualisieren - + &Zoom In &Vergrößern - + Shell launch %1 %1 im Terminal ausführen - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Fritzing-Dateien (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing-Paket (*%2);;Fritzing-Bauteil (*%3);;Fritzing-Sortiment (*%4);;Fritzing-Sortiment-Paket (*%5) - + Convert Umwandeln - + Read-only Schreibgeschützt - + Delete Minus Entfernen (ohne) - + Delete selection without attached wires Ausgewählte Elemente ohne verbundene Drähte entfernen - + Delete Wire up to bendpoints Verbindungen bis zum nächsten Knotenpunkt entfernen - + Open programming window Programmierfenster - + Open microcontroller programming window Fenster zur Programmiereung von Mikrocontrollern öffnen - + Ctrl++ Strg++ - + Zoom in Vergrößern - + Ctrl+= Strg+= - + &Zoom Out &Verkleinern - + Ctrl+- Strg+- - + Zoom out Verkleinern - + &Fit in Window Alles in &Fenster einpassen - + Ctrl+0 Strg+0 - + Fit in window Gesamten Entwurf ins Fenster einpassen - + &Actual Size &Originalgröße - + Shift+Ctrl+0 Umschalt+Strg+0 - + &Show Breadboard &Steckplatine anzeigen - + Ctrl+1 Strg+1 - + Show the breadboard view Steckplatinenansicht anzeigen - + &Show Schematic &Schaltplan anzeigen - + Ctrl+2 Strg+2 - + Show the schematic view Schaltplanansicht anzeigen - + &Show PCB &Leiterplatte anzeigen - + Ctrl+3 Strg+3 - + Show the PCB view Leiterplattenansicht anzeigen - + Show Code Code anzeigen - + Show the code (programming) view (Programmier-)Code-Ansicht anzeigen - + &Minimize &Minimieren - + Ctrl+M Strg+M - + Minimize current window Fenster minimieren - + Debugger Output Debugger-Ausgabe - + Ctrl+? Strg+? - + Open Fritzing help Fritzing-Hilfe öffnen (im Browser) - + Open Fritzing examples Fritzing-Beispielprojekte öffnen (im Browser) - + Open Parts Reference Bauteile-Referenz öffnen (im Browser) - + &About &Über Fritzing - + Display some handy Fritzing tips and tricks Hilfreiche Tastaturkürzel und weitere Tips - + Report a bug... Fehler melden... - + Enable debugging log Debugging-Aufzeichnung aktivieren - + &File &Datei - + &Export &Exportieren - + Delete Ratsnest Line Verbindung entfernen - + Delete Wire Leiterbahn entfernen - + Export SVG... SVG-Datei exportieren... - + Unable to save BOM file, but the text is on the clipboard. Die BoM-Datei konnte nicht gespeicher werden, aber der Text liegt im Zwischenspeicher. - + Export Netlist... Netzliste exportieren... - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Ausgewählte Leiterbahnen auf die andere Seite verschieben - + Force Update Routing Status and Ratsnests Aktualisierung von Luftlinien und Routing-Status erzwingen - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Neuberechnung des Routing-Status und aller Luftlinien (falls die automatische Aktualisierung nicht richtig funktioniert) - + Select all jumper item parts Alle Drahtbrücken auswählen - + Select All Vias Alle Vias auswählen - + Select all via parts Alle Vias auswählen - + Tidy Wires Drähte aufräumen - + Tidy selected wires Ausgewählte Drähte aufräumen - + Remove copper fill Kupferfüllung entfernen - + Remove Bendpoint Biegepunkt entfernen - - + + &Wire Color &Drahtfarbe - + &Edit &Bearbeiten - - + + Select outdated parts Veraltete Bauteile auswählen - - + + Update selected parts Ausgewählte Bauteile aktualisieren - + Online Tutorials Online-Anleitungen - + Online Projects Gallery Online-Projektgalerie - + Online Parts Reference Online-Bauteilreferenz - + &Part Bau&teil - + &View &Ansicht - + &Window &Fenster - + &Help &Hilfe - + Sorry, "%1" has not been implemented yet Entschuldige bitte, "%1" haben wir noch nicht fertig. - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Deinem Entwurf fehlt die Leiterplatte! Um nach Gerber zu exportieren, müssen die Bauteile auf einer Leiterplatte (PCB) angeordnet sein. - + Choose a folder for exporting Wähle einen Ordner für den Export - - + + Copper Fill Kupferfüllung - + Remove Copper Fill Kupferfüllung entfernen - + Remove the copper fill Kupferfüllung wieder entfernen - + Autorouting... Autorouting, bitte warten... - + First Time Help Hilfe für Erstbenutzer - + loading %1 (model) Lade %1 (Modell) - + loading %1 (breadboard) Lade %1 (Steckplatine) - + loading %1 (pcb) Lade %1 (Leiterplatte) - + loading %1 (schematic) Lade %1 (Schaltplan) - + Unable to export %1 to shareable sketch Der Entwurf %1 konnte nicht als Paket exportiert werden - + Routing completed using %n jumper part(s) Routing fertiggestellt mit %n Drahtbrücke @@ -4354,7 +4489,7 @@ Bitte überprüfe alle Ansichten auf eventuelle Nebenwirkungen. - + %1 of %2 nets routed - %n connector(s) still to be routed %1 von %2 Netzen geroutet - %n Verbinder noch zu routen @@ -4362,121 +4497,120 @@ Bitte überprüfe alle Ansichten auf eventuelle Nebenwirkungen. - directly loading parts - Bauteile direkt laden + Bauteile direkt laden - + Page Setup Seite einrichten - + Undo &Rückgängig - + Redo &Wiederherstellen - + Select a Fritzing File to Open Fritzing-Entwurf öffnen - + &Show part label &Bezeichnung anzeigen - + Export Bill of Materials (BoM)... Materialliste (BoM) exportieren... - + Add a note Notiz - - + + Add Note Notiz hinzufügen - + Check for updates... Nach Aktualisierungen suchen... - + Check whether a newer version of Fritzing is available for download Überprüfen, ob eine neuere Fritzing-Version zum Download bereit steht - + Select All Traces Alle Leiterbahnen auswählen - + Select all trace wires Alle Leiterbahnen auswählen - + Select all trace wires excluded from autorouting Alle Leiterbahnen auswählen, die vom Autorouting ausgeschlossen sind - - + + Do you want to keep the imported parts? Möchtest Du die importierten Bauteile behalten? - + &About Qt &Über Qt - + Show Qt's about box Informationen über Qt anzeigen - - + + Report a but you've found in Fritzing Melde uns einen Bug, den Du in Fritzing entdeckt hast - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. An dieser Stelle gibt es bald einen Export zur EAGLE Layout Software. Wenn Du mehr Exportmöglichkeiten wünschst, sag uns Bescheid, oder hilf mit. - - + + Sorry! Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Es gibt leider keine Bauteile mit diesen Eigenschaften. (Wir arbeiten daran, diesen Hinweis zu vermeiden, und nur solche Eigenschaften anzubieten, die es gibt.) - + Swapped %1 with module %2 %1 wurde ausgetauscht durch Modul %2 @@ -4491,7 +4625,7 @@ We're working to avoid this message, and only let you choose between proper Möchtest Du trotzdem fortfahren? - + Raise and Lower Reihenfolge @@ -4671,7 +4805,7 @@ Ursache: %2 (Fehlercode %3) NetLabel - + net label Netzbezeichnung @@ -4697,66 +4831,68 @@ Ursache: %2 (Fehlercode %3) Diesen Verbinder klicken und ziehen, um eine neue Leiterbahn zu erstellen. - + Change trace layer Auf andere Seite verschieben - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Deinem Entwurf fehlt noch die Leiterplatte! Für die Kupferfüllung musst Du erst eine Leiterplatte (PCB) einfügen. - + %1 Fill: please select the board you want to apply fill to. %1-Füllung: Bitte wähle eine Leiterplatte aus. - + Ground Masse - + Copper Kupfer - + Copper fill: please select only the board you want to fill. Kupferfüllung: Bitte wähle eine Leiterplatte aus. - + Please designate one or more ground fill seeds before doing a ground fill. - Wähle zunächst ein oder mehrere Verbinder als "Saat" für die Massefüllung aus. + Wähle zunächst ein oder mehrere Verbinder als "Saat" für die Massefüllung aus. + + @@ -4765,93 +4901,93 @@ Ursache: %2 (Fehlercode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Bitte wähle erst eine Leiterplatte aus. Diese Funktion kann nur auf einer Leiterplatte gleichzeitig ausgeführt werden. - - + + Fritzing error: unable to render board svg (1). Fehler: Das Leiterplatten-SVG konnte nicht gerendert werden (1). - - - + + + Fritzing error: unable to render copper svg (1). Fehler: Das Kupfer-SVG konnte nicht gerendert werden (1). - + Fritzing error: unable to write copper fill (1). Fehler: Konnte Kupferfüllung nicht erstellen (1). - + Fritzing error: unable to write copper fill (2). Fehler: Konnte Kupferfüllung nicht erstellen (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Kupferfüllung konnte nicht erzeugt werden--wahrscheinlich wurde das Bauteil nicht auf der Leiterplatte abgelegt. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Kupferfüllung konnte nicht erzeugt werden--möglicherweise wurde das Bauteil nicht auf die eigentliche Leiterplatte, sondern auf ein anderes Bauteil oder einen Draht abgelegt. - + Clear ground fill seeds Massefüllung-Saat zurücksetzen - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Dein Entwurf enthält noch keine Leiterplatte! Bitte füge eine hinzu, um diese Funktion auszuführen. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Dieses Via konnte nicht in einen Biegepunkt konvertiert werden, da es mit Bauteilen auf der Ober- und Unterseite verbunden ist. - + Show part silkscreen Bauteil-Siebdruck einblenden - + Hide part silkscreen Bauteil-Siebdruck ausblenden - - + + Fritzing Fab Quote Fritzing Fab Herstellungspreis - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. Dein Entwurf enthält bisher keine Platine. Ohne diese kann Dein Entwurf nicht produziert werden. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. Leider antwortet http://fab.fritzing.org nicht auf die Preisanfrage. Bitte überprüfe Deine Internetverbindung oder versuche es später noch einmal. - + Enter Keepout Abstand eingeben - + Keepout is in mils (.001 inches). @@ -4860,21 +4996,23 @@ Ursache: %2 (Fehlercode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Beachten Sie, dass durch die Kantenglättung der Abstand um ca. 2 tausendstel Zoll kleiner werden kann - + so you may want to increase the keepout value by that much. - so dass Du diese entsprechend aufrechnen solltest. + so dass Du diese entsprechend aufrechnen solltest. + + - + 10 mils is a good default choice. @@ -4883,7 +5021,7 @@ Ursache: %2 (Fehlercode %3) - + Enter keepout value: Gib den Abstandswert ein: @@ -4919,11 +5057,11 @@ Ursache: %2 (Fehlercode %3) - - - - - + + + + + Parts Editor Bauteile-Editor @@ -4938,12 +5076,12 @@ Ursache: %2 (Fehlercode %3) Eine letzte Bearbeitung steht noch aus. - + Duplicate 'family' property not allowed Duplizieren der "Familien"-Eigenschaft ist nicht erlaubt - + Duplicate 'variant' property not allowed Duplizieren der "Varianten"-Eigenschaft ist nicht erlaubt @@ -4963,7 +5101,7 @@ Ursache: %2 (Fehlercode %3) Weiterarbeiten - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Das Beenden das Bauteile-Editors ist jetzt in Ordnung, solange Du daran denkst, die Belegung später fertigzustellen. @@ -5010,207 +5148,207 @@ Ursache: %2 (Fehlercode %3) FZP-Datei von %1 konnte nicht geparst werden - + Icon View Symbolansicht - + Metadata View Metadatenansicht - + Connectors View Verbinderansicht - + Show Icon Symbol anzeigen - + Ctrl+4 Strg+4 - + Show the icon view Die Symbolansicht anzeigen - + Ctrl+5 Strg+5 - + Show the metadata view Die Metadatenansicht anzeigen - + Show Connectors Verbinder anzeigen - + Ctrl+6 Strg+6 - + Change %1 to '%2' Ändere %1 zu '%2' - + Change description Beschreibung ändern - + Change tags Schlagwörter ändern - + Change properties Eigenschaften ändern - + Change connector %1 Verbinder %1 ändern - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Bild- & Anschlussflächen-Dateien (%1 %2 %3 %4 %5);;SVG-Dateien (%1);;JPEG-Dateien (%2);;PNG-Dateien (%3);;gEDA-Anschlussflächendateien (%4);;Kicad-Moduldateien (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Bilddateien (%1 %2 %3);;SVG-Dateien (%1);;JPEG-Dateien (%2);;PNG-Dateien (%3)%4%5 - + Open Image Bild öffnen - + Copy problem Kopierproblem - + Unable to make a local copy of: '%1' Eine lokale Kopie von '%1' konnte nicht erstellt werden - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Du kannst ein PNG- oder JPG-Bild zum Erstellen Deines Bauteils verwenden, aber es ist besser, eine SVG zu verwenden. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- PNG und JPG-Bilder behalten ihre Beschaffenheit als Rastergrafik und werden beim Skalieren nicht gut aussehen-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. deshalb ist es für Fritzing-Bauteile am besten, wenn PNG und JPG nur als Platzhalter verwendet werden. - + Use of PNG and JPG discouraged Verwendung von PNG und JPG ist nicht empfohlen - - - - + + + + Conversion problem Konvertierungsproblem - - + + Fritzing (New) Parts Editor Fritzing (Neuer) Bauteile-Editor - + Show Metadata Metadaten anzeigen - + Show the connector metadata in a list view Verbindermetadaten in einer Listenansicht anzeigen - + Blank not allowed Leer nicht erlaubt - + The value of '%1' can not be blank. Der Wert von '%1' darf nicht leer sein. - + Change %1 to %2 %1 nach %2 ändern - + Must be unique Muss eindeutig sein - + Variant '%1' is in use. The variant name must be unique. Variante '%1' ist in Gebrauch. Der Variantenname muss eindeutig sein. - - + + Duplicate problem Duplizierungsproblem - + Unable to load '%1' Konnte '%1' nicht laden - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Die SVG-Datei '%1' wurde anscheinend aus CorelDRAW ohne die 'Präsentationsattribute'-Einstellung exportiert. - + Please re-export the SVG file using that setting, and try loading again. Bitte exportiere die SVG-Datei mit dieser Einstellung erneut und versuche sie nochmal zu laden. - + Fonts Schriftarten - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' Fritzing unterstützt derzeit nur OCRA und Droid-Schriftarten--diese haben die Schriftarten in '%1' ersetzt - + Unable to load image file '%1': %2 @@ -5219,9 +5357,9 @@ Ursache: %2 (Fehlercode %3) %2 - - - + + + SVG problem SVG-Problem @@ -5255,12 +5393,12 @@ Ursache: %2 (Fehlercode %3) Möchtest Du Weiterarbeiten oder Schließen ohne zu speichern? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> <p>Geben Sie ein Präfix ein, um die Teiledateien leichter identifizieren zu können.<br/>Die Dateinamen haben die Form 'PREFIX_%1'.<br/>(Das vorgeschlagene Präfix muss nicht geändert werden, da immer ein eindeutiger Suffix hinzugefügt wird.)</p> - + This part has %n unassigned connectors Dieses Bauteil hat %n unbelegte Verbinder @@ -5268,7 +5406,7 @@ Ursache: %2 (Fehlercode %3) - + across %n views. über %n Ansichten. @@ -5276,7 +5414,7 @@ Ursache: %2 (Fehlercode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. Bis alle Verbinder SVG-Elementen zugeordnet sind, wird das Bauteil nicht korrekt funktionieren. @@ -5316,67 +5454,67 @@ Ursache: %2 (Fehlercode %3) Das Leiterplattenbild in dieser Ansicht wiederverwenden - + Make only this view visible Nur diese Ansicht sichtbar machen - + The part will only be visible in this view and icon view Das Bauteil wird nur in dieser Ansicht und in der Symbolansicht sichtbar sein - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Diese Version des neuen Bauteile-Editors kann mit separaten Kupfer0 und Kupfer1-Ebenen in '%1' nicht umgehen. - + So editing may produce an invalid PCB view image So könnte die Bearbeitung ein ungültiges Bild von der Leiterplattenansicht erzeugen - + Unable to parse '%1': %2 line:%3 column:%4 '%1': %2 Zeile:%3 Spalte:%4 konnte nicht geparst werden - + There are no copper layers defined in: %1. Es sind keine Kupferebenen bestimmt in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Siehe <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">diese Erklärung</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>In der nächsten Version des Bauteile-Editors wird dies kein Problem mehr sein, - + but for now please modify the file according to the instructions in the link. aber folge vorerst den Anleitungen im Link. - + no schematics found in %1 Keine Schaltpläne gefunden in %1 - + schematic part Schematischer Teil - + no footprints found in %1 keine Anschlussflächen gefunden in %1 - + Relocate connector %1 Verbinder %1 umsetzen @@ -5464,52 +5602,52 @@ Ursache: %2 (Fehlercode %3) '%1' kann nicht geladen werden. Bitte schließen Sie den Bauteile-Editor ohne zu speichern und versuchen Sie es erneut. - + Unable to load image file '%1' Bilddatei '%1' konnte nicht geladen werden - + Filename prefix Dateinamenpräfix - + Sketch Change Warning Entwurfsänderungswarnung - + The open sketch '%1' uses the part you are editing. Der geöffnete Entworf '%1' verwendet das Teil, das Sie bearbeiten. - + Saving this part will make a change to the sketch that cannot be undone. Beim Speichern dieses Bauteils wird im Entwurf eine Änderung vorgenommen werden, welche nicht rückgängig gemacht werden kann. - + The open sketches Die offenen Entwürfe - + '%1', '%1', - + and '%1' und '%1' - + Saving this part will make a change to these sketches that cannot be undone. Beim Speichern dieses Bauteils wird in diesen Entwürfen eine Änderung vorgenommen werden, welche nicht rückgängig gemacht werden kann. - + Go ahead and save? @@ -5518,102 +5656,102 @@ Go ahead and save? Fortsetzen und speichern? - + Save Speichern - + Cancel Abbrechen - + Move terminal point Anschlusspunkt verschieben - + Remove connector Verbinder entfernen - + Remove %1 connectors %1 Verbinder entfernen - + Save "%1" "%1" speichern - + Do you want to save the changes you made in the part "%1"? Willst du die vorgenommenen Änderungen im Bauteil "%1" speichern? - + Your changes will be lost if you don't save them. Deine Änderungen gehen verloren, wenn sie nicht gespeichert werden. - + untitled part unbenannte Beuteile - + Unable to load fzp from %1 FZP aus %1 konnte nicht geladen werden - + Unable to create new connector--you may have to start over. Neuer Verbinder konnte nicht erstellt werden--möglicherweise müssen Sie von vorne beginnen. - + Add connector Verbinder hinzufügen - + Add %1 connectors %1 Verbinder hinzufügen - + Remove internal connection from '%1' Interne Verbindung aus '%1' entfernen - + Change all connectors to %1 Alle Verbinder zu %1 ändern - + Unable to parse '%1' '%1' konnte nicht geparst werden - + Change to %1 Ändern auf %1 - + Make only %1 view visible Nur %1-Ansicht sichtbar machen - + Internal connections are very messed up. Interne Verbindungen sind sehr durcheinander. - + Add internal connection from '%1' to '%2' Interne Verbindung von '%1' nach '%2' hinzufügen @@ -5976,7 +6114,7 @@ Fortsetzen und speichern? Hide part label - Beschriftung ausblenden + Beschriftung ausblenden @@ -6363,12 +6501,12 @@ Hinweis: Diese Warnung wird nur einmal angezeigt. Verhalten des Mausrads - + Command Cmd - + Control Strg @@ -6424,57 +6562,65 @@ Hinweis: Diese Warnung wird nur einmal angezeigt. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (zum Ändern anklicken...) - + Clear Settings Einstellungen zurücksetzen - + Platform Support Plattform-Unterstützung - + <b>%1</b> <b>%1</b> - + Location: Pfad: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Du benötigst <a href='%1'>%2</a> (Version %3 oder neuer). - + Select a programmer (executable) for %1 Wähle einen Programmierer (ausführbare Datei) für %1 - + Connected Highlight Verbunden - + Unconnected Highlight Nicht verbunden - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6483,7 +6629,7 @@ Mausrad + Umschalt-Taste = horizontaler Bildlauf Mausrad + Alt- oder %1-Taste = Zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6492,22 +6638,22 @@ Mausrad + Alt- oder %1-Taste = vertikaler Bildlauf Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf - + Curvy vs. straight wires Gebogene vs. gerade Drähte - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Wenn Du mit der Maus an einem Draht oder Bauteilbeinchen ziehst, möchtest Du die Biegung ändern oder einen Knick hinzufügen? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Dies ist die Standardeinstellung. Du kannst immer das jeweils andere Verhalten erzielen, wenn Du beim Ziehen die "Strg"-Taste (Mac: Cmd) gedrückt hältst. - + Curvy wires and legs Gebogene Drähte und Beinchen @@ -6522,7 +6668,7 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf While it is possible to read and edit %1 programming files, it is not yet possible to use Fritzing to compile or upload these programs to a microcontroller. - Während das Einlesen und Bearbeiten von %1-Programmierdateien möglich ist, ist es momentan leider noch nicht möglich, dieses Programm direkt in Fritzing zu kompilieren oder auf einen Mikrocontroller hochzuladen. + Es ist zwar möglich, %1-Programmierdateien zu lesen und zu bearbeiten, aber es ist noch nicht möglich, diese Programme mit Fritzing zu kompilieren oder auf einen Mikrocontroller zu laden. @@ -6836,12 +6982,12 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Hervorhebungsfarbe für "Verbunden" - + Unconnected highlight color Hervorhebungsfarbe für "Nicht verbunden" - + Clear all saved settings and close this dialog immediately. Alle Einstellungen zurücksetzen und dieses Fenster schließen. @@ -6851,12 +6997,12 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Diese Aktion führt nicht zum Löschen von Dateien, es setzt lediglich alle Einstellungen zurück. - + There is no undo for this action, and no further warning!!!! Diese Aktion kann nicht rückgängig gemacht werden, und es gibt keine weitere Warnung!!! - + Clear Settings Einstellungen zurücksetzen @@ -6876,12 +7022,12 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Alle "Autorutebaren" Leiterbahnen auswählen - + Convert to Via In Via umwandeln - + Convert Via to Bendpoint Via in Biegepunkt umwandeln @@ -6918,7 +7064,6 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf - Fritzing Fritzing @@ -6976,21 +7121,21 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Neuerstellung der Datenbank fehlgeschlagen - - - + + + Part Bauteil - - - + + + Wire Draht - + Set Grid Size Rastergröße @@ -7064,43 +7209,43 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Schaltplanansicht - + Error reading file %1: %2. Fehler beim lesen der Datei %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Ändere Beinchen von %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1-Ebene - - + + Bring forward Schrittweise nach vorne bringen - + Send backward Schrittweise nach hinten senden - + Bring to front Nach vorne bringen @@ -7115,7 +7260,7 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Draht verbinden - + Select locked parts Alle gesperrten Bauteile auswählen @@ -7241,7 +7386,8 @@ Mausrad + Alt + Umschalt-Taste = horizontaler Bildlauf Error %1 - Fehler %1 + Fehler %1 + @@ -7284,18 +7430,18 @@ Versuche, Fritzing neu zu starten. Falls das Problem bestehen bleibt, wende Dich Notizen - + Trace wires Leiterbahnen - + Ratsnest wires Luftlinien - - + + Select all %1 Alles auswählen %1 @@ -7397,7 +7543,7 @@ im Sortiment. Nicht erneut hinzufügen? Dateifortschritt... - + Select outdated parts Veraltete Bauteile auswählen @@ -7572,12 +7718,12 @@ im Sortiment. Nicht erneut hinzufügen? Fehler in SVG-Konvertierung 2: %1 %2 %3 - + Copying file %1 Kopiere Datei %1 - + File %1 already exists: it won't be overwritten Datei %1 ist bereits vorhanden: Sie kann nicht überschrieben werden @@ -7621,7 +7767,7 @@ im Sortiment. Nicht erneut hinzufügen? the board outline layer, - die Board Kontur-Schicht, + die Board Kontur-Schicht, @@ -7636,7 +7782,7 @@ im Sortiment. Nicht erneut hinzufügen? mask layer(s), - Maskenschicht(en), + Maskenschicht(en), @@ -7651,12 +7797,12 @@ im Sortiment. Nicht erneut hinzufügen? %1 layer export is empty. - Export Ebene %1 ist leer. + Export Ebene %1 ist leer. %1 layer export is empty (case 2). - %1 Ebenenexport ist leer (Fall 2). + %1 Ebenenexport ist leer (Fall 2). @@ -7841,9 +7987,13 @@ im Sortiment. Nicht erneut hinzufügen? N/V - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - Der Bauteil-Ordner '%1' wurde geändert - er befindet sich nicht im Zweig 'master' (%2). %3 + Der Bauteil-Ordner '%1' wurde geändert - er befindet sich nicht im Zweig 'master' (%2). %3 + + + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + @@ -7866,48 +8016,52 @@ im Sortiment. Nicht erneut hinzufügen? Es befinden sich nicht lesbare Dateien im Bauteil-Ordner '%1'. %2 - + Unable to open parts folder '%1' for update. %2 Der Bauteil-Ordner '%1' konnte für die Aktualisierung nicht geöffnet werden. %2 - + Parts folder repo '%1' is empty. %2 Das Bauteil-Ordner repository '%1' ist leer. %2 - + Unable to determine network site for '%1'. %2 Der Netzwerkort für '%1' konnte nicht gefunden werden. %2 - + Unable to access network site for '%1'. %2 Es konnte keine Verbindung zum Netzwerkort für '%1' hergestellt werden. %2 - + Unable to retrieve network references for '%1'. %2 Es konnten keine Netzwerk-Referenzen für '%1' gefunden werden. %2 - + + Unable to retrieve the network reference for '%1'#%2. %3 + + + Unable to retrieve master network reference for '%1'. %2 - Es konnte keine 'master'-Netzwerkreferenz für '%1' gefunden werden. %2 + Es konnte keine 'master'-Netzwerkreferenz für '%1' gefunden werden. %2 - - + + Regenerating parts database Bauteil-Datenbank wird neu erstellt - + Unable to find parts git repository Git-repository konnte nicht gefunden werden - + Unable to find parts git repository HEAD Git-repository HEAD konnte nicht gefunden werden @@ -8213,17 +8367,17 @@ im Sortiment. Nicht erneut hinzufügen? Ruler - + width Breite - + &cm &cm - + &in &in @@ -8231,33 +8385,33 @@ im Sortiment. Nicht erneut hinzufügen? S2S - + Failed loading '%1', %2 line:%3 col:%4 Laden von '%1', %2 Zeile:%3 Sp.:%4 fehlgeschlagen - + Schematic not found for '%1' Schaltplan für '%1' nicht gefunden - - + + Unable to load schematic '%1' for '%2' Schaltplan '%1' für '%2' konnte nicht geladen werden - + Schematic '%1' is already using the 0.1inch standard. Schaltplan '%1' verwendet bereits den 0,1-Zoll-Standard. - + Missing connector %1 in '%2' schematic of '%3' Fehlender Verbinder %1 in '%2' Schaltplan von '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 Schaltplan '%1', %2 Zeile:%3 Sp.:%4 konnte nicht geladen werden @@ -8389,82 +8543,82 @@ im Sortiment. Nicht erneut hinzufügen? Bauteil geladen - + %1 %2 %1 %2 - + %1 %2 items %1 %2 Elemente - + Select All Alles auswählen - + Deselect Auswahl zurücksetzen - + Add %1 %1 hinzufügen - + Move %2 (%1) %2 verschieben (%1) - + Move %2 items (%1) %2 Elemente verschieben (%1) - - + + Select %1 %1 auswählen - - + + Select %1 items %1 Elemente auswählen - - + + Disconnect Trennen - + Change Ändere - - + + Connect Verbinde - - + + to %1 mit %1 - + Create and connect wire Draht erstellen und verbinden - + Rotate %2 (%1) Drehen %2 (%1) @@ -8484,57 +8638,57 @@ im Sortiment. Nicht erneut hinzufügen? Doppelklicken - + Delete ratsnest Luftlinie entfernen - + from %1 von %1 - + Move leg of Verschiebe Beinchen von - + Change leg curvature for %1. Beinchenbiegung für %1 ändern. - + Change leg bendpoint for %1. Beinchenbiegepunkt für %1 ändern. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Dies scheint ein Versuch zur Erzeugung einer Leiterbahn quer durch Ebenen zu sein. Dieser Umstand sollte nicht eintreten: Bitte kontaktiere die Entwickler. - + Create and connect %1 %1 erstellen und verbinden - + wire Draht - + trace Leiterbahn - + Flip %2 (%1) Umdrehen %2 (%1) @@ -8564,74 +8718,74 @@ im Sortiment. Nicht erneut hinzufügen? Farbe von %1 Drähten nach %2 ändern - + Resize ruler to %1 %2 Größes des Lineals nach %1 %2 ändern - + test connectors Verbinder prüfen - + Change Resistance from %1 to %2 Wert des Widerstands von %1 nach %2 ändern - - + + Change %1 from %2 to %3 %1 von %2 nach %3 ändern - - + + Resize board to %1 %2 Größe anpassen auf %1 %2 - + Create wire from Ratsnest Draht aus Luftlinie erstellen - + Disconnect all wires from %1 Alle Drähte zu %1 trennen - + Disconnect all wires from %1 items Alle Drähte zu %1 Elementen lösen - + Change image from %1 to %2 Bild von %1 nach %2 ändern - + change pin labels Kontaktbezeichnungen ändern - + Unrouted connections are highlighted in yellow. Ungeroutete Verbindungen werden in gelb hervorgehoben. - + There are no unrouted connections Es gibt keine ungerouteten Verbindungen - + Unrouted connections Ungeroutete Verbindungen - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8640,17 +8794,17 @@ Note: you can also trigger this display by mousing down on the routing status te Beachte: Du kannst diese Anzeige auch aufrufen, indem Du den Routing-Status in der Statusleiste unten anklickst und gedrückt hältst. - + Part '%1' not found in sketch Bauteil '%1' konnte in diesem Entwurf nicht gefunden werden - + Add %1 parts %1 Bauteile hinzufügen - + Deselect all Auswahl zurücksetzen @@ -8675,7 +8829,7 @@ Beachte: Du kannst diese Anzeige auch aufrufen, indem Du den Routing-Status in d %1 Bezeichnung '%2' - + Selection Auswahl @@ -8783,22 +8937,22 @@ Beachte: Du kannst diese Anzeige auch aufrufen, indem Du den Routing-Status in d SymbolPaletteItem - + voltage Spannung - + label Bezeichnung - + Net labels Netzbezeichnungen - + Net labels cannot be blank Netzbezeichnungen können nicht leer bleiben @@ -8925,11 +9079,6 @@ Beachte: Du kannst diese Anzeige auch aufrufen, indem Du den Routing-Status in d To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -9050,6 +9199,11 @@ Beachte: Du kannst diese Anzeige auch aufrufen, indem Du den Routing-Status in d In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9465,111 +9619,90 @@ Beachte: Du kannst diese Anzeige auch aufrufen, indem Du den Routing-Status in d Das Fritzing Creator Kit ist momentan nicht verfügbar. Besuche den Fritzing Blog für Aktualisierungen. - - Donate - - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - Die Entwicklung und Wartung von Software ist eine Menge Arbeit. Ohne Eure Unterstützung ist es nicht möglich, das durchzuhalten. - - - - Donate and leave a comment. - - - - - Donate now - + Die Entwicklung und Wartung von Software ist eine Menge Arbeit. Ohne Eure Unterstützung ist es nicht möglich, das durchzuhalten. - + Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab ist ein einfacher und kostengünstiger Dienst für die Herstellung von professionellen Leiterplatten aus Deinen Fritzing-Entwürfen. - + produce your first pcb now >> stelle Deine erste Leiterplatte jetzt her >> - + Order your PCB now. Bestelle jetzt Deine Leiterplatte. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Projekte - + Blog Blog - + Fritzing News. Fritzing Neuigkeiten. - + Fritzing Projects. Fritzing Projekte. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Keine aktuellen Entwürfe gefunden - + Unable to reach blog.fritzing.org blog.fritzing.org konnte nicht erreicht werden - + Unable to reach fritzing.org/projects - + fritzing.org/projects kann nicht erreicht werden Unable to reach friting.org/projects friting.org/projects konnte nicht erreicht werden - + Tip of the Day: Tipp des Tages: - + All Tips Alle Tipps - + Next Tip Nächster Tipp diff --git a/translations/fritzing_el.ts b/translations/fritzing_el.ts index 09d6b81d3..678b78c6f 100644 --- a/translations/fritzing_el.ts +++ b/translations/fritzing_el.ts @@ -8,47 +8,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 στον κώδικα και CreativeCommons:BY-SA στα υπόλοιπα - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Το Fritzing κατασκευάστηκε από τους: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -57,209 +57,210 @@ Bryant Mairs, Uleshka Asher, and Daniel Tzschentke. - Special thanks goes out to: - Ιδιαίτερες ευχαριστίες στους: + Ιδιαίτερες ευχαριστίες στους: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Το Fritzing είναι πραγματικότητα με χρηματοδότηση από τους - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, για την χορηγία του Σχεδίου - + Department of Bauhaus-University Weimar, Τμήμα του πανεπιστημίου Bauhaus Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, έναν ανώνυμο χορηγό, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - Special thanks goes out as well to all the students - Ειδικές ευχαριστίες σε όλους τους σπουδαστές + Ειδικές ευχαριστίες σε όλους τους σπουδαστές - and alpha testers who were brave enough to give - και στους δοκιμαστές των alpha εκδόσεων που ήταν αρκετά γενναίοι + και στους δοκιμαστές των alpha εκδόσεων που ήταν αρκετά γενναίοι - Fritzing a test spin. - να δοκιμάσουν το Fritzing. + να δοκιμάσουν το Fritzing. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -807,7 +808,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value Επιλέξτε από την λίστα, ή πληκτρολογίστε μία %1 τιμή @@ -815,17 +816,17 @@ Use the file? ConnectorItem - + Add bendpoint Εισαγωγή καμπής - + Straighten curve Ευθυγράμμιση καμπύλης - + Remove bendpoint Αφαίρεση καμπής @@ -1274,6 +1275,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Ακύρωση + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1300,12 +1365,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1421,7 +1486,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size μέγεθος οπής @@ -1911,7 +1976,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate Περιστροφή @@ -1927,7 +1992,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute Αυτο-Δρομολόγιση @@ -1948,7 +2013,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note Προσθήκη Σημείωσης @@ -2048,29 +2113,30 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Αδυναμία ανοίγματος του κοινόχρηστου '%1': %2 - + Unable to open shareable part '%1': %2 Αδυναμία ανοίγματος του κοινόχρηστου εξαρτήματος '%1': %2 - + + Unable to load part from '%1' Αδυναμία φόρτωσης του εξαρτήματος '%1' - - + + Specify a file name Προσδιορίστε ένα όνομα αρχείου - + Change image to %2 Αλλαγή εικόνας σε %2 - - + + Fritzing (*%1) Fritzing (*%1) @@ -2078,45 +2144,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable Αδυναμία εξαγωγής του %1 ως κοινόχρηστο @@ -2126,43 +2199,68 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Δεν βρέθηκε κανένα σχέδιο στο '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) Εξάρτημα Fritzing (*%1) - + Unable to export %1 to shareable sketch Αδυναμία εξαγωγής του %1 σε κοινόχρηστο σχέδιο - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. Υπάρχει ήδη ένα εξάρτημα με ταυτότητα '%1' που έχει φορτωθεί στο Fritzing. - - + + Do you want to keep the imported parts? Θέλετε να διατηρήσετε τα εισαγμένα εξαρτήματα; - + No connections to route Δεν υπάρχουν συνδέσεις για δρομολόγιση - + Routing completed Η δρομολόγιση ολοκληρώθηκε - + Routing completed using %n jumper part(s) Η δρομολόγιση ολοκληρώθηκε χρησιμοποιώντας %n βραχυκυκλωτήρες @@ -2170,7 +2268,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed %1 από %2 δίκτυα δρομολογήθηκαν - %n συνδετήρες προς δρομολόγηση @@ -2178,125 +2276,125 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] %1 - [%2] - + No copper top layer Δεν υπάρχει πάνω επίπεδο χαλκού - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Το πανω επίπεδο χαλκού (copper 1) δεν είναι διαθέσιμο σε μία μονής όψης πλακέτα. Παρακαλώ αλλάξτε την πλακέτα σε διπλής όψης ή επιλέξτε το κάτω επίπεδο (copper 0) χαλκού. - - + + Sorry! Συγνώμη! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Δεν υπάρχει εξάρτημα με αυτά τα χαρακτηριστικά. Προσπαθούμε να αποφύγουμε το μήνυμα αυτό, και σας επιτρέπουμε να επιλέξετε μεταξύ ιδιοτήτων που υπάρχουν - + No exactly matching part found; Fritzing chose the closest match. Δεν βρέθηκε ακριβώς το εξάρτημα, το Fritzing επέλεξε το πιο ταιριαστό. - + Change to single layer pcb Αλλαγή σε τυπωμένο μονής όψης - + Change to two layer pcb Αλλαγή σε τυπωμένο διπλής όψης - + Swapped %1 with module %2 Ανταλλάχτηκε το το άρθρωμα %1 με το %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Το Svg %1 στερείται ενός '%2' επιπέδου. Για περισσότερες πληροφορίες για την δημιουργία προσαρμοσμένου σχήματος πλακετών δείτε το βοήθημα στο <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 φόρτωση %1 - + Loading... Φόρτωση... - + new sketch νέο σχέδιο - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' Αντιγραφή ασφαλείας '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections Μη δρομολογημένες συνδέσεις - + There are no unrouted connections in this view. Δεν υπάρχουν μη δρομολογημένες συνδέσεις σε αυτή την προβολή. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code Κώδικας - + Welcome - + Ctrl+D Ctrl+D @@ -2361,13 +2459,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel Ακύρωση - + Choose a folder for exporting Επιλογή φακέλου για την εξαγωγή @@ -2388,80 +2486,80 @@ We're working to avoid this message, and only let you choose between proper Εξαγωγή... - + Unable to save %1 Αδυναμία αποθήκευσης του %1 - + Cannot print to %1 Αδυναμία εκτύπωσης του %1 - + Cannot write file %1: %2. Αδυναμία εγγραφής του αρχείου %1: %2. - + Saved '%1' Αποθηκευμένο '%1' - + &Save &Αποθήκευση - + Ctrl+S Ctrl+S - - + + Save the current sketch Αποθήκευση τρέχοντος σχεδίου - + &Save As... &Αποθήκευση Ως... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Διαμοιρασμός στο Ιντερνετ... - + Post a project to the Fritzing website Τοποθετήστε ένα έργο σας στην σελίδα του Fritzing - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image Εξαγωγή της ορατής περιοχής του τρέχοντος σχεδίου ως JPG εικόνας - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image Εξαγωγή της ορατής περιοχής του τρέχοντος σχεδίου ως PNG εικόνας @@ -2474,1065 +2572,1084 @@ We're working to avoid this message, and only let you choose between proper Εξαγωγή της ορατής περιοχής του τρέχοντος σχεδίου ως PostScrip εικόνας - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image Εξαγωγή της ορατής περιοχής του τρέχοντος σχεδίου ως PDF εικόνας - + SVG... SVG... - + Export the current sketch as an SVG image Εξαγωγή του τρέχοντος σχεδίου ως SVG εικόνας - + List of parts (&Bill of Materials)... Λίστα των εξαρτημάτων (Κόστος Υλικών, &BoM)... - + Save a Bill of Materials (BoM)/Shopping List as text Αποθήκευση του Κόστους Υλικών (BoM) ως κείμενο - + XML Netlist... XML Netlist... - + Save a netlist in XML format Αποθήκευση netlist σε XML μορφή - + SPICE Netlist... SPICE Netlist... - + Save a netlist in SPICE format Αποθήκευση μίας netlist σε μορφή SPICE - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Εξαγωγή του τρέχοντος σχεδίου σε Eagle CAD - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Εξαγωγή του τρέχοντος σχεδίου σε μορφή Extended Gerber (RS-274X) για επαγγελματική παραγωγή τυπωμένου (PCB) - + Etchable (PDF)... Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) Εξαγωγή του τρέχοντος σχεδίου σε PDF για την κατασκευή "σπιτικού" φωτοευαίσθητου τυπωμένου (photoresist PCB) - + Etchable (SVG)... Οξυγραφία (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) Εξαγωγή του τρέχοντος σχεδίου σε SVG για την κατασκευή "σπιτικού" φωτοευαίσθητου τυπωμένου (photoresist PCB) - + &Print... &Εκτύπωση... - + Ctrl+P Ctrl+P - + Print the current view Εκτύπωση της τρέχουσας προβολής - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Αυτό σύντομα θα προσφαίρει εξαγωγή του Fritzing σχεδίου σας για το λογισμικό σχεδίασης EAGLE. Αν θέλετε να έχετε περισσότερες επιλογές εξαγωγής στο αγαπημένο σας EDA εργαλείο, ενημερώστε μας, ή συνεισφέρετε οι ίδιοι. - + Export SVG... Εξαγωγή SVG... - + Export Bill of Materials (BoM)... Εξαγωγή κόστους υλικών (BoM)... - + Unable to save BOM file, but the text is on the clipboard. Αδυναμία αποθήκευσης του αρχείου BoM, αλλά το κείμενο υπάρχει στο πρόχειρο. - + Export SPICE Netlist... Εξαγωγή SPICE Netlist... - + Export Netlist... Εξαγωγή Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Το σχέδιο σας δεν έχει ακόμη πλακέτα! Παρακαλώ προσθέστε ένα τυπωμένο (PCB) για να εξάγετε σε Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. Η εξαγωγή Gerber μπορεί μόνο να διαχειριστεί μόνο μία πλακέτα την φορά--παρακαλώ επιλέξτε την πλακέτα που θέλετε να εξάγετε. - + Sketch exported to Gerber Το σχέδιο εξάχθηκε σε Gerber - + Select a Fritzing File to Open Επιλέξτε για Άνοιγμα ένα αρχείο Fritzing - + Cannot find file %1. Αδυναμία εύρεσης του αρχείου %1. - + Cannot read file 1 %1: %2. Αδυναμία ανάγνωσης του αρχείου 1 %1: %2. - - + + File '%1' not found Το αρχείο '%1' δεν βρέθηκε - + Convert Μετατροπή - + Read-only Μόνο Ανάγνωση - directly loading parts - απευθείας φόρτωση εξαρτημάτων + απευθείας φόρτωση εξαρτημάτων - + loading %1 (model) φόρτωση %1 (μοντέλου) - + loading %1 (breadboard) φόρτωση %1 (breadboard) - + loading %1 (pcb) φόρτωση %1 (pcb) - + loading %1 (schematic) φόρτωση %1 (σχέδιο) - + New Νέο - + Ctrl+N Ctrl+N - + Create a new sketch Δημιουργεί ένα νέο σχέδιο - + &Open... &Άνοιγμα... - + Ctrl+O Ctrl+O - + Shell launch %1 Εκκίνηση κελύφους %1 - + throw test exception εισαγωγή εξαίρεσης δοκιμής - + throw a fake exception to see what happens Εισάγει μία ψεύτικη εξαίρεση για να δει τι συμβαίνει - + &Quit &Έξοδος - + Ctrl+Q Ctrl+Q - + Quit the application Εγκαταλείπει την εφαρμογή - + &Open Example &Άνοιγμα Παραδείγματος - + All Όλα - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: αδυναμία φόρτωσης παραδείγματος με διακριτικό='%1' - + &Open Recent Files &Άνοιγμα Πρόσφατων Αρχείων - + &%1 %2 &%1 %2 - + Undo Αναίρεση - + Redo Επανάληψη - + &Cut &Αποκοπή - + Cut selection Αποκοπή επιλογής - + &Copy - + Copy selection Αντιγράφει το επιλεγμένο - + &Paste &Επικόλληση - + Paste clipboard contents Επικόλληση των περιεχομένων του πρόχειρου - + Paste in Place Επικόλληση Εδώ - + Paste clipboard contents in place Επικόλληση των περιεχομένων του πρόχειρου στην ίδια θέση - + &Duplicate &Διπλότυπο - + Duplicate selection Δημιουργεί ένα αντίγραφο της επιλογής - + &Delete &Διαγραφή - + Delete selection Διαγράφει την επιλογή - + &Select All &Επιλογή Όλων - + Select all elements Επιλέγει όλα τα στοιχεία - + &Deselect &Αποεπιλογή - + Deselect Αποεπιλέγει - - + + Add Note Προσθήκη Σημείωσης - + &Preferences... &Επιλογές... - - + + Show the application's about box Εμφανίζει πληροφορίες για την εφαρμογή - + Rotate 45° Clockwise Περιστροφή 135° Δεξιόστροφα {135�?} {45°?} - + Rotate 90° Clockwise Περιστροφή 135° Δεξιόστροφα {135�?} {90°?} - + Rotate 180° Περιστροφή 180° {180�?} {180°?} - + Rotate 90° Counter Clockwise Περιστροφή 45° Αριστερόστροφα {45�?} {90°?} - + Rotate 45° Counter Clockwise Περιστροφή 45° Αριστερόστροφα {45�?} {45°?} - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + &Edit &Επεξεργασία - + &Add to bin... &Προσθήκη σε δοχείο... - + Add selected part to bin Προσθέτει το εξάρτημα σε δοχείο - + Disconnect All Wires Αποσύνδεση Όλων των Καλωδίων - + Disconnect all wires connected to this connector Αποσυνδέει όλα τα καλώδια που συνδέονται σε αυτόν τον συνδετήρα - + Update InfoView on hover Ενημέρωση InfoView στο πέρασμα από πάνω - + Export Normalized SVG Εξαγωγή Κανονικοποιημένου SVG - + Export 1000 dpi SVG of this part in this view Εξάγει ένα SVG 1000 dpi του εξαρτήματος σε αυτή την προβολή - + Export Normalized Flattened SVG Εξαγωγή Κανονικοποιημένου Πεπλατυσμένου SVG - + Export 1000 dpi Flattened SVG of this part in this view Εξάγει ένα Πεπλατυσμένο SVG του εξαρτήματος σε αυτή την προβολή - + Rotate the selected parts by 90 degrees clockwise Περιστρέφει το επιλεγμένο εξάρτημα κατά 90 μοίρες δεξιόστροφα - + Rotate the selected parts by 180 degrees Περιστρέφει το επιλεγμένο εξάρτημα κατά 180 μοίρες - + Rotate current selection 90 degrees counter clockwise Περιστρέφει την τρέχουσα επιλογή 90 μοίρες αριστερόστροφα - + Rotate current selection 45 degrees counter clockwise Περιστρέφει την τρέχουσα επιλογή 45 μοίρες αριστερόστροφα - + Rotate current selection 45 degrees clockwise Περιστρέφει την τρέχουσα επιλογή 45 μοίρες δεξιόστροφα - + &Flip Horizontal &Οριζόντια Αναστροφή - + Flip current selection horizontally Αναστρέφει την τρέχουσα επιλογή οριζόντια - + &Flip Vertical &Κατακόρυφη Αναστροφή - + Flip current selection vertically Αναστρέφει την τρέχουσα επιλογή κατακόρυφα - + Bring to Front Μεταφορά Εμπρός - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Μεταφέρει τα επιλεγμένα αντικείμενα εμπρός στο επίπεδό τους - + Bring Forward Μεταφορά προς τα Εμπρός - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Μεταφέρει τα επιλεγμένα αντικείμενα προς τα εμπρός στο επίπεδό τους - + Send Backward Μεταφορά προς τα Πίσω - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Μεταφέρει τα επιλεγμένα αντικείμενα πίσω στο επίπεδό τους - + Send to Back Μεταφορά Πίσω - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Μεταφέρει τα επιλεγμένα αντικείμενα προς τα πίσω στο επίπεδό τους - + Lock Part Κλείδωμα Εξαρτήματος - + Prevent a part from being moved Αποτρέπει την μετακίνηση ενός εξαρτήματος - + Select All Locked Parts Επιλογή Όλων των Κλειδωμένων Εξαρτημάτων - + Select all parts that can't be moved Επιλέγει όλα τα εξαρτήματα που δεν μπορούν να μετακινηθούν - + &Show All Layers &Εμφάνιση Όλων των Επιπέδων - + Show all the available layers for the current view Εμφανίζει όλα τα διαθέσιμα επίπεδα για την τρέχουσα προβολή - + &Hide All Layers &Απόκρυψη Όλων των Επιπέδων - + Hide all the layers of the current view Αποκρύπτει όλα τα επίπεδα της τρέχουσας προβολής - + &Show part label &Εμφάνιση ετικέτας εξαρτήματος - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + &Export... &Εξαγωγή... - + Export selected part Εξάγει το επιλεγμένο εξάρτημα - - + + Add Bendpoint Εισαγωγή Καμπής - + Add a bendpoint to the selected wire Εισάγει ένα σημείο καμπής στο επιλεγμένο καλώδιο - + Convert Bendpoint to Via Μετατροπή σημείου καμπής σε Οπή - + Convert the bendpoint to a via Μετατρέπει το σημείο καμπής σε οπή - + Convert Via to Bendpoint Μετατροπή Οπής σε Σημείο καμπής - + Convert the via to a bendpoint Μετατρέπει την οπή σε σημείο καμπής - + Straighten Curve Ευθυγράμμιση Καμπύλης - + Straighten the curve of the selected wire Ευθυγραμμίζει την καμπύλη του επιλεγμένου καλωδίου - - + + Select outdated parts Επιλογή ξεπερασμένων εξαρτημάτων - - + + Update selected parts Ενημέρωση επιλεγμένων εξαρτημάτων - + Open programming window Άνοιγμα παραθύρου προγραμματισμού - + Open microcontroller programming window Ανοίγει το παράθυρο προγραμματισμού του μικροελεγκτή - + &Zoom In &Μεγέθυνση - + Ctrl++ Ctrl++ - + Zoom in Εκτελεί μεγέθυνση - + Ctrl+= Ctrl+= - + &Zoom Out &Σμίκρυνση - + Ctrl+- Ctrl+- - + Zoom out Εκτελεί σμίκρυνση - + &Fit in Window &Ταίριασμα στο Παράθυρο - + Ctrl+0 Ctrl+0 - + Fit in window Προσαρμόζει το μέγεθος σε αυτό του παραθύρου - + &Actual Size &Πραγματικό Μέγεθος - + Actual (real world physical) size Πραγματικό φυσικό μέγεθος - + 100% Size 100% Μέγεθος - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size 100% μέγεθος (εικονοστοιχεία) - + Align to Grid Ευθυγράμμιση στο Πλέγμα - + Align items to grid when dragging Ευθυγραμμίζει τα αντικείμενα στο πλέγμα κατά το σύρσιμο - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+5 Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code Εμφάνιση Κώδικα - + Show the code (programming) view Εμφάνιση προβολής κώδικα (προγραμματισμού) - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help - - - + + + + + + &Routing &Δρομολόγηση + + + Routing + + + + Autoroute connections... Συνδέσεις Αυτοδρομολόγησης... - + &Create trace from ratsnest &Δημιουργία ίχνους από το rastnet - + Create a trace from the ratsnest line Δημιουργεί έναν διάδρομο από την γραμμή του rastnet - + &Create wire from ratsnest &Δημιουργία καλωδίου από το rastnet - + Create a wire from the ratsnest line Δημιουργεί ένα καλώδιο από την γραμμή του rastnet - + Select All Wires Επιλογή Όλων των Καλωδίων - + Select all wires Επιλέγει όλα τα καλώδια - + Select All "Don't Autoroute" Traces Επιλογή Όλων "Μην Αυτοδρομολογείς" τα Ίχνη - + Select All Autoroutable Traces Επιλογή Όλων των Αυτοδρομολογούμενων Ιχνών - + Select all trace wires that can be changed during autorouting Επιλέγει όλα ίχνη καλωδίων που μπορεί να αλλαχτούν κατά την αυτοδρομολόγηση - + Fill empty regions of the copper layer--not including traces connected to a GROUND Γεμίζει τις άδειες περιοχές του επιπέδου του χαλκού χωρίς να περιλαμβάνει τα ίχνη που συνδέονται σε κάποια Γείωση (GROUND) - + Choose Ground Fill Seed(s)... Επιλέξτε Φύτρες Γεμίσματος Γείωσης... - + Set Ground Fill Seed Καθορίστε Φύτρες Γεμίσματος Γείωσης - + Treat this connector and its connections as a 'ground' during ground fill. Αντιμετωπίζει τους συνδετήρες και τις συνδέσεις τους ως 'γείωση' κατά το γέμισμα γείωσης. - + Clear Ground Fill Seeds Καθάρισμα των Φυτρών Γεμίσματος Γείωσης - + Clear ground fill seeds--enable copper fill only. Καθαρίζει τις φύτρες γεμίσματος γείωσης. Ενεργοποιεί γέμισμα χαλκού μόνο. - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Επιλέξτε τα ίχνη που η θέση στην οθόνη δεν ταιριάζει την πραγματική θέση. Μόνο για σχέδια αυτοδρομολογημένα με έκδοση 0.7.10 ή νεότερη - + Autorouter/DRC settings... Ρυθμίσεις Αυτοδρομολογητή/DRC... - + Set autorouting parameters including keepout... Ρύθμιση παραμέτρων αυτοδρομολόγησης και ορίου ασφαλείας... - + jumpers βραχυκυκλωτήρες - + copperfill γέμισμα χαλκού - + vias οπές - + Generating %1 fill... Παραγωγή %1 γεμίσματος... - + ground γείωση - + copper χαλκός - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Do you want to update now? - + unable to find replacement for %1. Αδυναμία εύρεσης αντικατάστασης για το %1. - + &Show Breadboard &Εμφάνιση Breadboard - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Αρχεία Fritzing (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Διαμοιραζόμενα Fritzing (*%2);;Εξαρτήματα Fritzing (*%3);;Δοχεία Fritzing (*%4);;Διαμοιραζόμενα Δοχεία Fritzing (*%5) - + Revert? Αναίρεση; - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3541,603 +3658,601 @@ Go ahead and revert? Συνέχεια στην αναίρεση; - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Άνοιγμα ενός σχεδίου Fritzing (.fzz, .fz), ή φόρτωση ενός εξαρτήματος Fritzing (.fzpz), ή ένός δοχείου εξαρτηματων Fritzing (.fzb, .fzbz) - + Revert Αναίρεση - + Reload the sketch Επαναφόρτωση του σχεδίου - + &Delete Wire &Διαγραφή Καλωδίου - + Edit (new parts editor) Επεξεργασία (επεξεργαστής νέων εξαρτημάτων) - + Open the new parts editor on an existing part Άνοιγμα του επεξεργαστή νέων εξαρτημάτων σε ένα υπάρχον εξάρτημα - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Sticky Υπόμνημα (Sticky) - + If a "sticky" part is moved, parts on top of it are also moved Όταν ένα εξάρτημα-υπόμνημα μετακινείτε, τα από πάνω αντικείμενα μετακινούνται επίσης - + Show/hide the label for the selected parts Εμφάνιση/Απόκρυψη της ετικέτας για το επιλεγμένο εξάρτημα - + Find part in sketch... Εύρεση εξαρτήματος στο σχέδιο... - + Search for parts in a sketch by matching text Αναζήτηση για εξαρτήματα σε ένα σχέδιο βάση κειμένου - - + + Hide part silkscreen Απόκρυψη μεταξοτυπίας εξαρτήματος - + Hide/show the silkscreen layer for only this part Αποκρύψη/Εμφάνιση του επιπέδου μεταξοτυπίας για αυτό το εξάρτημα - + Show Grid Εμφάνιση Πλέγματος - + Show the grid Εμφανίζει το πλέγμα - + Set Grid Size... Ρύθμιση μεγέθους πλέγματος... - + Set the size of the grid in this view Ρυθμίζει το μέγεθος πλέγματος σε αυτή την προβολή - + Set Background Color... Ρύθμιση Χρώματος Φόντου... - + Set the background color of this view Ρυθμίζει το χρώμα φόντου σε αυτή την προβολή - + Ctrl+1 Ctrl+1 - + Show the breadboard view Εμφανίζει την προβολή breadboard - + &Show Schematic &Εμφάνιση Schematic - + Ctrl+2 Ctrl+2 - + Show the schematic view Εμφανίζει την προβολή σε σχηματικό - + &Show PCB &Εμφάνιση Τυπωμ.ένου (PCB) - + Ctrl+3 Ctrl+3 - + Show the PCB view Εμφανίζει την προβολή σε τυπωμένο (PCB) - + Ctrl+4 Ctrl+4 - + Show Parts Bin Icon View Εμφάνιση Δοχείου Εξαρτημάτων ως Εικονίδια - + Display the parts bin in an icon view Εμφανίζει τα εξαρτήματα στο δοχείο σαν εικονίδια - + Show Parts Bin List View Εμφάνιση Δοχείου Εξαρτημάτων ως Λίστα - + Display the parts bin in a list view Εμφανίζει τα εξαρτήματα στο δοχείο σαν λίστα - + &Minimize &Ελαχιστοποίηση - + Ctrl+M Ctrl+M - + Minimize current window Ελαχιστοποιεί το τρέχον παράθυρο - + Debugger Output Έξοδος Αποσφαλματωτή - + Online Tutorials Βοηθήματα στο Διαδίκτυο - + Ctrl+? Ctrl+? - + Open Fritzing help Άνοιγμα βοήθειας του Fritzing - Donate to Fritzing - Δωρεά προς το Fritzing + Δωρεά προς το Fritzing - Open Fritzing donation web page - Ανοίγει την σελίδα δωρεών του Fritzing + Ανοίγει την σελίδα δωρεών του Fritzing - + Online Projects Gallery Συλλογή Έργων στο Διαδίκτυο - + Open Fritzing examples Άνοιγμα παραδειγμάτων του Fritzing - + Online Parts Reference Αναφορά Εξαρτημάτων στο Διαδίκτυο - + Open Parts Reference Άνοιγμα Αναφοράς Εξαρτημάτων - + First Time Help Βοήθεια Πρώτης Φοράς - + Check for updates... Έλεγχος για ενημερώσεις... - + Check whether a newer version of Fritzing is available for download Ελέγχει αν υπάρχει κάποια νέα έκδοση του Fritzing για μεταφόρτωση - + &About &Περί - + Tips, Tricks and Shortcuts Συμβουλές, Κόλπα και Συντομεύσεις - + Display some handy Fritzing tips and tricks Εμφανίζει μερικές χρήσιμες συμβουλές και κόλπα - + &About Qt &Περί του Qt - + Show Qt's about box Εμφανίζει πληροφορίες για το Qt - + Report a bug... Αναφορά προβλήματος... - - + + Report a but you've found in Fritzing Αναφέρει κάποιο πρόβλημα που εντοπίσατε στο Fritzing - + Enable debugging log Ενεργοποίηση καταγραφής αποσφαλμάτωσης - + Parts Editor Help Βοήθεια Επεξεργαστή Εξαρτημάτων - + Display Parts Editor help in a browser Εμφανίζει την βοήθεια του Επεξεργαστή Εξαρτημάτων σε έναν φυλλομετρητή - + &File &Αρχείο - + &Export &Εξαγωγή - + as Image ως Εικόνα - + for Production για Παραγωγή - + &Part &Εξάρτημα - + Raise and Lower Ανύψωση και Κατέβασμα - + Ctrl+Shift+V - + Align - + &View &Προβολή - + &Window &Παράθυρο - - - + + + Ground Fill Γέμισμα Γείωσης - + &Help &Βοήθεια - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line Διαγραφή Γραμμής Rastnest - + Delete Wire Διαγραφή Καλωδίου - + Hide part label Απόκρυψη ετικέτας εξαρτήματος - + Show part label Εμφάνιση ετικέτας εξαρτήματος - + Show part silkscreen Εμφάνιση μεταξοτυπίας εξαρτήματος - + Delete Διαγραφή - + top and bottom - + bottom κάτω μέρος - + top πάνω μέρος - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size Φυσικό Μέγεθος - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Δεν μοιάζει να είναι εφικτό να καθοριστεί αυτόματα το φυσικό μέγεθος της οθόνης, έτσι το 'Φυσικό Μέγεθος' είναι απλά μια εκτίμηση. Η καλύτερη λύση θα ήταν να τοποθετήσετε έναν κανόνα και μετά έναν πραγματικό κανόνα από πάνω να μεγεθύνεται μέχρι να υπάρξει ταύτιση. - + Page Setup Ρύθμιση Σελίδας - + Sorry, "%1" has not been implemented yet Συγνώμη. Το "%1" δεν έχει υλοποιηθεί ακόμη - + Shift+Ctrl+A Shift+Ctrl+A - + Set Ground Fill Keepout... Ορισμός Ορίου Ασφαλείας στο Γέμισμα Χαλκού... - + Set the minimum distance between ground fill and traces or connectors Ορισμός ελάχιστης απόστασης μεταξύ γεμίσματος χαλκού και ιχνών ή συνδετήρων - + Design Rules Check (DRC) Έλεγχος Σχεδιαστικών Κανόνων (DRC) - + Highlights any parts that are too close together for safe board production Επισήμανση όποιων εξαρτημάτων βρίσκονται πολύ κοντά το ένα στο άλλο, για ασφαλή παραγωγή πλακέτας - + Fritzing Fab Quote... Ερώτηση Fritzing Fab... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Πόσο θα στοίχιζε η παραγωγή ενός τυπωμένου (PCB) από αυτό το σχέδιο με το Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable Ενεργοποίηση του "κλικ" στα δύο επίπεδα - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable Ενεργοποίηση του "κλικ" στο πάνω επίπεδο - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable Ενεργοποίηση του "κλικ" στο κάτω επίπεδο - + Shift+Ctrl+1 Shift+Ctrl+1 - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -4145,7 +4260,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4153,328 +4268,338 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background - + Enter Text QInputDialog::getText() - + Text will match part label, description, title, etc. Enter text to search for: Το κείμενο θα ταιριάξει με την ετικέτα του εξαρτήματος, περιγραφή, τίτλο, κτλ. Εισάγετε κείμενο προς αναζήτηση: - + Search Αναζήτηση - + No parts matched search term '%1'. Κανένα εξάρτημα δεν ταιριάζει με τον όρο '%1'. - + Do not autoroute Όχι αυτοδομολόγηση - + When autorouting, do not rip up this trace wire, via, or jumper item Κατά την αυτοδρομολόγηση, μην πειράζεις αυτό το ίχνος, καλώδιο, τυφλή οπή ή βραχυκυκλωτήρα - + Move to other side of the board Μετακίνηση στην άλλη πλευρά της πλακέτας - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Μετακινεί τα επιλεγμένα ίχνη στην άλλη πλευρά της πλακέτας (θα μετακινηθεί το πρώτο και τα υπόλοιπα θα ακολουθήσουν) - + Show unrouted Εμφάνιση μη δρομολογημένων - + Highlight all unrouted connectors Επισήμανση όλων των μη δρομολογημένων συνδετήρων - + Select All Traces Επιλογή Όλων των Ιχνών - + Select all trace wires Επιλέγει όλα τα ίχνη καλωδίων - + Select All CopperFill Επιλογή Όλου του Γεμίσματος Χαλκού - + Select all copper fill items Επιλέγει όλα τα αντικείμενα γεμίσματος χαλκού - + Force Update Routing Status and Ratsnests Εξαναγκασμένη Ενημέρωση Κατάστασης Δρομολόγησης και Rastnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Υπολογίζει πάλι την κατάσταση δρομολόγησης και τα καλώδια rastnests (σε περίπτωση που η αυτοδρομολόγηση δεν δουλεύει σωστά) - + Select all trace wires excluded from autorouting Επιλογή όλων των ιχνών καλωδίων που εξαιρούνται από την αυτοδρομολόγηση - + Select All Jumpers Επιλογή Όλων των Βαχυκυκλωτήρων - + Select all jumper item parts Επιλέγει όλους τους βραχυκυκλωτήρες - + Select All Vias Επιλογή Όλων των τυφλών Οπών - + Select all via parts Επιλέγει όλες τις τυφλές οπές - + Tidy Wires Τακτοποίηση Καλωδίων - + Tidy selected wires Τακτοποιεί τα επιλεγμένα καλώδια - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Γεμίζει τις άδειες περιοχές του επιπέδου χαλκού. Το γέμισμα θα περιλάβει όλα τα ίχνη που συνδέονται σε μία γείωση (GROUND) - - + + Copper Fill Γέμισμα Χαλκού - + Remove Copper Fill Αφαίρεση Γέμισμα Χαλκού - + Remove the copper fill Αφαιρεί το γέμισμα χαλκού - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Γεμίζει τις άδειες περιοχές του επιπέδου χαλκού. Το γέμισμα θα περιλάβει όλα τα ίχνη που συνδέονται σε φύτρες - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces Έλεγχος Φορτωμένων Ιχνών - + Copper Top and Copper Bottom layers are both active Το Πάνω και Κάτω στρώμα χαλκού είναι ενεργά - + Order a PCB... Παραγγελία Τυπωμένου (PCB)... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Παραγγελία ενός PCB που δημιουργήθηκε από κάποιο σχέδιο σας. Από το εργαστήριο του Fritzing - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Το σχέδιο σας δεν έχει κάποια πλακέτα ακόμη! Παρακαλώ προσθέστε μια πλακέτα (PCB) για να κάνετε χρήση του αυτόματου δρομολογητή. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Παρακαλώ επιλέξτε την πλακέτα που θέλετε για τον αυτόματο δρομολογητή. Ο αυτόματος δρομολογητής μπορεί να χειριστεί μία πλακέτα την φορά. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Το σχέδιο σας δεν έχει κάποια πλακέτα ακόμη! Παρακαλώ προσθέστε κάποιο PCB για να χρησιμοποιήσετε γέμισμα χαλκού. - + Please select a PCB--copper fill only works for one board at a time. Παρακαλώ επιλέξτε μία πλακέτα (PCB)--το γέμισμα χαλκού μπορεί να χειριστεί μία πλακέτα την φορά. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Το σχέδιο σας δεν έχει κάποια πλακέτα ακόμη! Παρακαλώ προσθέστε κάποιο PCB για να αφαιρέσετε το γέμισμα χαλκού. - + Please select a PCB--ground fill operations only work on a one board at a time. Παρακαλώ επιλέξτε μία πλακέτα (PCB)--το γέμισμα γείωσεις μπορεί να χειριστεί μία πλακέτα την φορά. - + OK Εντάξει - + Set the grid size for %1. Ρύθμιση μεγέθους πλέγματος για %1. - + Grid Size: Μέγεθος Πλέγματος: - + in in - + mm mm - + Restore Default Αποκατάσταση Προεπιλογών - + Your sketch does not have a board yet! DRC only works with a PCB. Το σχέδιο σας δεν περιέχει κάποια πλακέτα! Ο DRC λειτουργεί μόνο με μία πλακέτα (PCB). - + Please select a PCB. DRC only works on one board at a time. Παρακαλώ επιλέξτε μία πλακέτα (PCB)--ο DRC μπορεί να χειριστεί μία πλακέτα την φορά. - + DRC Progress... Πρόοδος DRC... - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. Το σχέδιο σας δεν έχει κάποια πλακέτα ακόμη! Παρακαλώ προσθέστε κάποια πλακέτα (PCB) για να χρησιμοποιήσετε τις λειτουργίες γεμίσματος χαλκού. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Παρακαλώ επιλέξτε μία πλακέτα (PCB). Το γέμισμα χαλκού μπορεί να χειριστεί μία πλακέτα την φορά. - + Copper Top layer is active Το πάνω στρώμα Χαλκού είναι ενεργό - + Copper Bottom layer is active Το κάτω στρώμα Χαλκού είναι ενεργό - + Autorouting... Αυτοδρομολόγηση... - + Autorouting Progress... Πρόοδος Αυτοδρομολόγησης... - + Remove Bendpoint Αφαίρεση Καμπής - + Remove copper fill Αφαίρεση γεμίσματος χαλκού - - + + &Wire Color &Χρώμα Καλωδίου - + Launch %1... Εκκίνηση %1... - + No outdated parts found. All your parts are up-to-date. Δεν βρέθηκαν ξεπερασμένα εξαρτήματα. Όλα τα εξαρτηματά σας είναι ενημερωμένα. - + Outdated parts Ξεπερασμένα εξαρτήματα - + Update %1 part(s) Ενημέρωση %1 εξαρτημάτων - + Successfully updated %1 part(s). Please check all views for potential side-effects. Επιτυχής ενημέρωση %1 εξαρτημάτων. @@ -4656,7 +4781,7 @@ Reason: %2 (errcode %3) NetLabel - + net label ετικέτα δικτύου @@ -4682,31 +4807,31 @@ Reason: %2 (errcode %3) Κλικ σε αυτόν τον συνδετήρα για να εξάγετε έναν νέο ίχνος. - + Change trace layer Αλλαγή επιπέδου ίχνους - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing @@ -4717,34 +4842,34 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Παρακαλώ κάντε "κλικ" σε μία πλακέτα (PCB) πρώτα--αυτή η λειτουργία επιλογής λειτουργεί με μία πλακέτα την φορά. - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Το σχέδιο σας δεν έχει κάποια πλακέτα ακόμη! Παρακαλώ προσθέστε κάποιο PCB για να χρησιμοποιήσετε γέμισμα χαλκού. - + %1 Fill: please select the board you want to apply fill to. %1 Γέμισμα: παρακαλώ επιλέξτε την πλακέτα που θέλετε να εφαρμόσετε το γέμισμα. - + Ground Γείωση - + Copper Χαλκός - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4753,92 +4878,92 @@ Reason: %2 (errcode %3) - - + + Fritzing error: unable to render board svg (1). Σφάλμα Fritzing: Αδυναμία απόδοσης του board.svg(1). - - - + + + Fritzing error: unable to render copper svg (1). Σφάλμα Fritzing: Αδυναμία απόδοσης του copper.svg(1). - + Fritzing error: unable to write copper fill (1). Σφάλμα Fritzing: Αδυναμία εγγραφής του γεμίσματος χαλκού(1). - + Fritzing error: unable to write copper fill (2). Σφάλμα Fritzing: Αδυναμία εγγραφής του γεμίσματος χαλκού(2). - + Copper fill: please select only the board you want to fill. Γέμισμα χαλκού: παρακαλώ επιλέξτε μόνο την πλακέτα που θέλετε να γεμίσετε. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Αδυναμία γεμίσματος χαλκού. Πιθανότατα το εξάρτημα δεν τοποθετήθηκε πάνω στο τυπωμένο (PCB). - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Αδυναμία γεμίσματος χαλκού. Πιθανότατα το εξάρτημα τοποθετήθηκε πάνω κάποιο άλλο εξάρτημα, καλώδιο και όχι στο τυπωμένο (PCB). - + Clear ground fill seeds Καθαρισμός φυτρών γεμίσματος χαλκού - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Το σχέδιο σας δεν έχει κάποια πλακέτα ακόμη! Παρακαλώ προσθέστε κάποια πλακέτα (PCB) για να χρησιμοποιήσετε αυτή την λειτουργία επιλογής. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Αδυναμία μετατροπής της οπής σε σημείο καμπής διότι είναι συνδεδεμένη σε κάποιο εξάρτημα που είναι μόνο στο κάτω επίπεδο και σε ένα άλλο που είναι μόνο στο πάνω επίπεδο. - + Show part silkscreen Εμφάνιση μεταξοτυπίας εξαρτήματος - + Hide part silkscreen Απόκρυψη μεταξοτυπίας εξαρτήματος - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. Το σχέδιο σας δεν έχει πλακέτα ακόμη. Δεν μπορείτε να κατασκευάσετε αυτό το σχέδιο χωρίς τυπωμένο (PCB). - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout Εισαγωγή Ορίου Ασφαλείας - + Keepout is in mils (.001 inches). @@ -4847,13 +4972,13 @@ Reason: %2 (errcode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Σημείωστε πως λόγο της ομαλοποίησης (aliasing), οι αποστάσεις μπορεί να είναι μικρότερες μέχρι και 2 mils - + so you may want to increase the keepout value by that much. @@ -4862,7 +4987,7 @@ Reason: %2 (errcode %3) - + 10 mils is a good default choice. @@ -4871,7 +4996,7 @@ Reason: %2 (errcode %3) - + Enter keepout value: Εισάγετε την τιμή του ορίου ασφαλείας: @@ -4907,11 +5032,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor Επεξεργαστής Εξαρτημάτων @@ -4926,12 +5051,12 @@ Reason: %2 (errcode %3) Εκκρεμεί μία τελευταία επεξεργασία. - + Duplicate 'family' property not allowed Δεν επιτρέπεται διπλότυπη ιδιότητα 'οικογένειας' - + Duplicate 'variant' property not allowed Δεν επιτρέπεται διπλότυπη ιδιότητα 'παραλλαγή' @@ -4951,7 +5076,7 @@ Reason: %2 (errcode %3) Συνέχιση εργασίας - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Η έξοδος από τον επεξεργαστή Εξαρτημάτων είναι εντάξει, αρκεί να θυμηθείτε να τελειώσετε την εργασία αργότερα. @@ -4998,207 +5123,207 @@ Reason: %2 (errcode %3) Αδυναμία ανάλυσης του fzp αρχείου %1 - + Icon View Προβολή εικονιδίων - + Metadata View Προβολή μεταδεδομένων - + Connectors View Προβολή συνδετήρων - + Show Icon Εμφάνιση Εικονιδίου - + Ctrl+4 Ctrl+4 - + Show the icon view Εμφανίζει την προβολή σε εικονίδια - + Ctrl+5 Ctrl+5 - + Show the metadata view Εμφάνιση της προβολής μεταδεδομένων - + Show Connectors Εμφάνιση Συνδετήρων - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' Αλλαγή %1 σε '%2' - + Change description Αλλαγή περιγραφής - + Change tags Αλλαγή ετικετών - + Change properties Αλλαγή ιδιοτήτων - + Change connector %1 Αλλαγή συνδετήρα %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Αρχεία Εικόνας & Footprint (%1 %2 %3 %4 %5);;Αρχεία SVG (%1);;Αρχεία JPEG (%2);;Αρχεία PNG (%3);;Αρχεία gEDA Footprint (%4);;Αρχεία Αρθρωμάτων Kicad(%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Αρχεία Εικόνας (%1 %2 %3);;Αρχεία SVG (%1);;Αρχεία JPEG (%2);;Αρχεία PNG (%3)%4%5 - + Open Image Άνοιγμα Εικόνας - + Copy problem Πρόβλημα αντιγραφής - + Unable to make a local copy of: '%1' Αδυναμία δημιουργίας τοπικού αντιγράφου του '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Μπορείτε να χρησιμοποιήσετε ένα αρχείο PNG ή JPG για να κατασκευάσετε το εξάρτημά σας, αλλά είναι καλύτερα να χρησιμοποιήσετε ένα SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- Οι PNG και JPG εικόνες δεν εμφανίζονται όμορφα όταν αλλάζουν διαστάσεις-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. έτσι για εξαρτήματα του Fritzing είναι καλύτερα να χρησιμοποιείτε PNG και JPG μόνο ως δείκτες τοποθέτησης. - + Use of PNG and JPG discouraged Η χρήση PNG και JPG δεν ενδείκνυται - - - - + + + + Conversion problem Πρόβλημα Μετατροπής - - + + Fritzing (New) Parts Editor Επεξεργαστής Εξαρτημάτων (Νέος) του Fritzing - + Show Metadata Εμφάνιση Μεταδεδομένων - + Show the connector metadata in a list view Εμφάνιση μεταδεδομένων του συνδετήρα σε μορφή λίστας - + Blank not allowed Δεν επιτρέπονται τα κενά - + The value of '%1' can not be blank. Η τιμή του '%1' δεν μπορεί να είναι κενή. - + Change %1 to %2 Αλλαγή του %1 σε %2 - + Must be unique Πρέπει να είναι μοναδικό - + Variant '%1' is in use. The variant name must be unique. Η παραλλαγή '%1' είναι σε χρήση. Το όνομα πρέπει να είναι μοναδικό. - - + + Duplicate problem Πρόβλημα διπλότυπου - + Unable to load '%1' Αδυναμία φόρτωσης του '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Το SVG αρχείο '%1' μοίαζει να έχει εξαχθεί από το CorelDRAW χωρίς να έχει επιλεγεί η ρύθμιση 'presentation attributes'. - + Please re-export the SVG file using that setting, and try loading again. Παρακαλώ ξανα εξάγετε το SVG αρχείο χρησιμοποιώντας την ρύθμιση αυτή. - + Fonts Γραμματοσειρά - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' Το Fritzing αυτή την στιγμή υποστηρίζει μόνο OCRA και Droid γραμματοσειρές--αυτέςέχουν υποκαθίσταθεί για τις γραμματοσειρές στο '%1' - + Unable to load image file '%1': %2 @@ -5206,9 +5331,9 @@ Reason: %2 (errcode %3) %2 - - - + + + SVG problem Πρόβλημα SVG @@ -5242,12 +5367,12 @@ Reason: %2 (errcode %3) Θέλετε να συνεχίσετε να εργάζεστε ή κλείσιμο χωρίς αποθήκευση; - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors Αυτό το εξάρτημα έχει %n ασύνδετους συνδετήρες @@ -5255,7 +5380,7 @@ Reason: %2 (errcode %3) - + across %n views. διά μέσου %n προβολών. @@ -5263,7 +5388,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. Μέχρι όλοι οι συνδετήρες να ανατεθούν σε SVG στοιχεία, το εξάρτημα δεν θα λειτουργεί σωστά. @@ -5303,67 +5428,67 @@ Reason: %2 (errcode %3) Επαναχρησιμοποίηση εικόνας PCB σε αυτή την προβολή - + Make only this view visible Κάνε μόνο αυτή την προβολή ορατή - + The part will only be visible in this view and icon view Το εξάρτημα θα είναι ορατό μόνο σε αυτή την προβολή και προβολή εικονιδίων - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Αυτή η έκδοση του νέου επεξεργαστή εξαρτημάτων δεν μπορεί να αντιμετωπίσει ξεχωριστά επίπεδα copper0 και copper1 στο '%1'. - + So editing may produce an invalid PCB view image Έτσι η επεξεργασία ίσως παράξει μία μη έγκυρη προβολή εικόνας PCB - + Unable to parse '%1': %2 line:%3 column:%4 Αδυναμία ανάλυσης '%1': %2 γραμμή:%3 στήλη:%4 - + There are no copper layers defined in: %1. Δεν υπάρχουν καθορισμένα επίπεδα χαλκού στο: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Δείτε <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">αυτή την εξήγηση</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Αυτό δεν θα είναι πρόβλημα στην επόμενη έκδοση του Επεξεργαστή Εξαρτημάτων, - + but for now please modify the file according to the instructions in the link. αλλά για τώρα παρακαλώ τροποποιήστε το αρχείο σύμφωνα με τις οδηγίες στον σύνδεσμο. - + no schematics found in %1 δεν βρέθηκε σχηματικό στο %1 - + schematic part σχηματικό εξαρτήματος - + no footprints found in %1 δεν βρέθηκε footprint στο %1 - + Relocate connector %1 Επανεντοπισμός συνδετήρα %1 @@ -5452,52 +5577,52 @@ Reason: %2 (errcode %3) Αδυναμία φόρτωσης '%1'. Παρακαλώ κλείστε τον επεξεργαστή εξαρτημάτων χωρίς αποθήκευση και προσπαθήστε πάλι. - + Unable to load image file '%1' Αδυναμία φόρτωσης του αρχείου εικόνας %1 - + Filename prefix - + Sketch Change Warning Προειδοποίηση Αλλαγής Σχεδίου - + The open sketch '%1' uses the part you are editing. Το ανοικτό σχέδιο '%1' χρησιμοποιεί τα εξαρτήματα που επεξεργάζεστε. - + Saving this part will make a change to the sketch that cannot be undone. Η αποθήκευση αυτού του εξαρτήματος θα δημιουργήσει αλλαγές στο σχέδιο που δεν μπορούν να αναιρεθούν. - + The open sketches Τα ανοικτά σχέδια - + '%1', '%1', - + and '%1' και '%1' - + Saving this part will make a change to these sketches that cannot be undone. Η αποθήκευση αυτού του εξαρτήματος θα δημιουργήσει αλλαγές σε αυτλα τα σχέδια που δεν μπορούν να αναιρεθούν. - + Go ahead and save? @@ -5506,102 +5631,102 @@ Go ahead and save? Συνέχιση και αποθήκευση; - + Save Αποθήκευση - + Cancel Ακύρωση - + Move terminal point Μετακίνηση τερματικού σημείου - + Remove connector Αφαίρεση συνδετήρα - + Remove %1 connectors Αφαίρεση %1 συνδετήρων - + Save "%1" Αποθήκευση "%1" - + Do you want to save the changes you made in the part "%1"? Θέλετε να αποθηκεύσετε τις αλλαγές που κάνατε στο εξάρτημα "%1"; - + Your changes will be lost if you don't save them. Οι αλλαγές σας θα χαθούν αν δεν τις αποθηκεύσετε. - + untitled part εξάρτημα χωρίς τίτλο - + Unable to load fzp from %1 Αδυναμία φόρτωσης του fzp από %1 - + Unable to create new connector--you may have to start over. Αδυναμία δημιουργίας νέου συνδετήρα--ίσως χρειαστεί να ξαναρχίσετε. - + Add connector Προσθήκη συνδετήρα - + Add %1 connectors Προσθήκη %1 συνδετήρων - + Remove internal connection from '%1' Αφαίρεση εσωτερικών συνδέσεων από '%1' - + Change all connectors to %1 Αλλαγή όλλων των συνδετήρων σε %1 - + Unable to parse '%1' Αδυναμία ανάλυσης του '%1' - + Change to %1 Αλλαγή σε %1 - + Make only %1 view visible Κάνε μόνο την προβολή %1 ορατή - + Internal connections are very messed up. Οι εσωτερικές συνδέσεις είναι πολύ μπερδεμένες. - + Add internal connection from '%1' to '%2' Προσθήκη εσωτερικής σύνδεσης από '%1' σε '%2' @@ -6367,12 +6492,12 @@ Note: this warning will not be repeated during this session. Συμπεριφορά Ροδέλας Ποντικιού - + Command Εντολή - + Control Έλεγχος @@ -6413,57 +6538,65 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 ("κλικ" για αλλαγή...) - + Clear Settings Καθαρισμός Ρυθμίσεων - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 Επιλέξτε έναν προγραμματιστή (εκτελέσιμο) για το %1 - + Connected Highlight Επισήμανση Συνδεδεμένου - + Unconnected Highlight Επισήμανση μη Συνδεδεμένου - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6472,7 +6605,7 @@ Alt or %1 key = zoom Το Alt ή το %1 = μεγέθυνση - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6481,22 +6614,22 @@ shift key swaps scroll axis Το Shift ανταλλάσσει τους άξονες κύλισης - + Curvy vs. straight wires Καμπυλωτά ή ευθύγραμμα καλώδια - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Όταν πατάτε το ποντίκι και σύρετε πάνω σε ένα καλώδιο ή στο πόδι ενός εξαρτήματος (σε αντίθεση με έναν συνδετήρα ή σημείο καμπής) θέλετε να αλλάζει η καμπύλη ή να δημιουργείται ένα νέο σημείο καμπής; - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Το κουτί επιλογής θέτει την προκαθορισμένη συμπεριφορά. Μπορείτε να επιστρέψετε στην μη προκαθορισμένη συμπεριφορά κρατώντας το πλήκτρο Control (πλήκτρο Command για Mac) όταν σύρετε. - + Curvy wires and legs @@ -6841,7 +6974,6 @@ shift key swaps scroll axis - Fritzing Fritzing @@ -6877,12 +7009,12 @@ shift key swaps scroll axis Χρώμα επισήμανσης συνδεδεμένων - + Unconnected highlight color Χρώμα επισήμανσης ασύνδετων - + Clear all saved settings and close this dialog immediately. Καθαρισμός όλων των αποθηκευμένων ρυθμίσεων και κλείσιμο αυτού του διαλόγου. @@ -6892,12 +7024,12 @@ shift key swaps scroll axis Αυτή η ενέργεια δεν διαγράφει αρχεία, επαναφέρει τις ρυθμίσεις στις προεπιλεγμένες τιμές. - + There is no undo for this action, and no further warning!!!! Δεν υπάρχει αναίρεση για αυτή την ενέργεια, και καμιά περαιτέρω προειδοποίηση!!! - + Clear Settings Καθαρισμός Ρυθμίσεων @@ -6917,21 +7049,21 @@ shift key swaps scroll axis Επεξεργασία συνδέσμου - - - + + + Part Εξάρτημα - - - + + + Wire Καλώδιο - + Set Grid Size Ρύθμιση Μεγέθους Πλέγματος @@ -7148,12 +7280,12 @@ Fritzing still works, but you won't be able to change parts properties.Επιλογή Όλων των Αυτοδρομολογούμενων Ιχνών - + Convert to Via Μετατροπή σε Οπή - + Convert Via to Bendpoint Μετατροπή Οπής σε Σημείο Καμπής @@ -7163,43 +7295,43 @@ Fritzing still works, but you won't be able to change parts properties.schem - + Error reading file %1: %2. Σφάλμα ανάγνωσης αρχείου %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Αλλαγή στο πόδι του %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 Επίπεδο - - + + Bring forward Μεταφορά προς τα Εμπρός - + Send backward Μεταφορά προς τα Πίσω - + Bring to front Μεταφορά Εμπρός @@ -7214,28 +7346,28 @@ Fritzing still works, but you won't be able to change parts properties.Ένωση Καλωδίου - + Trace wires Ιχνηλάτηση καλωδίων - + Ratsnest wires Καλώδια Ratsnest - - + + Select all %1 Επιλογή Όλων των %1 - + Select outdated parts Επιλογή ξεπερασμένων εξαρτημάτων - + Select locked parts Επιλογή κλειδωμένων εξαρτημάτων @@ -7437,12 +7569,12 @@ Fritzing still works, but you won't be able to change parts properties.Πρόοδος Αρχείου... - + Copying file %1 Αντιγραφή αρχείου %1 - + File %1 already exists: it won't be overwritten Το αρχείο %1 υπάρχει: δεν θα αντικατασταθεί @@ -7824,7 +7956,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7848,48 +7980,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8187,17 +8319,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width πλάτος - + &cm - + &in @@ -8205,33 +8337,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8363,142 +8495,142 @@ Fritzing still works, but you won't be able to change parts properties.ολοκλήρωση φόρτωσης - + Delete ratsnest Διαγραφή ratsnest - + %1 %2 %1 %2 - + %1 %2 items %1 %2 αντικείμενα - + Select All Επιλογή Όλων - + Deselect Αποεπιλογή - + Add %1 Προσθήκη %1 - + Selection Επιλογή - + Move %2 (%1) Μετακίνηση %2 (%1) - + Move %2 items (%1) Μετακίνηση %2 αντικειμένων (%1) - - + + Select %1 Επιλογή %1 - - + + Select %1 items Επιλογή %1 αντικειμένων - - + + Disconnect Αποσύνδεση - + from %1 από %1 - + Move leg of Μετακίνηση από το - - + + Connect Σύνδεση - - + + to %1 στο %1 - + Change leg curvature for %1. Αλλαγή καμπύλης ποδιού για το %1. - + Change leg bendpoint for %1. Αλλαγή σημείου καμπής ποδιού για το %1. - + Change Αλλαγή - + Create and connect wire Δημιουργία και σύνδεση καλωδίου - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Αυτό μοιάζει με προσπάθεια για την δημιουργία ενός ίχνους διαμέσου επιπέδων. Αυτό δεν έπρεπε να συμβεί: παρακαλώ ειδοποιείστε τους προγραμματιστές. - + Create and connect %1 Δημιουργία και σύνδεση %1 - + wire καλωδίου - + trace ίχνους - + Rotate %2 (%1) Περιστροφή %2 (%1) - + Flip %2 (%1) Αναστροφή %2 (%1) @@ -8589,12 +8721,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 Αλλαγή μεγέθους κανόνα σε %1 %2 - + test connectors @@ -8604,64 +8736,64 @@ Fritzing still works, but you won't be able to change parts properties.Αλλαγή μεγέθους Σημείωσης - + Change Resistance from %1 to %2 Αλλαγή Αντίστασης από %1 σε %2 - - + + Change %1 from %2 to %3 Αλλαγή %1 από %2 σε %3 - - + + Resize board to %1 %2 Μέγεθος πλακέτας σε %1 %2 - + Create wire from Ratsnest Δημιουργία καλωδίου από Ratsnes - + Disconnect all wires from %1 Αποσύνδεση όλων των καλωδίων από το %1 - + Disconnect all wires from %1 items Αποσύνδεση όλων των καλωδίων από %1 αντικείμενα - + Change image from %1 to %2 Αλλαγή εικόνας από %1 σε %2 - + change pin labels αλλαγή ετικετών ακίδας (pin) - + Unrouted connections are highlighted in yellow. Μη δρομολογημένες συνδέσεις είναι επισημασμένες με κίτρινο. - + There are no unrouted connections Δεν υπάρχουν μη δρομολογημένες συνδέσεις - + Unrouted connections Μη δρομολογημένς συνδέσεις - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8670,17 +8802,17 @@ Note: you can also trigger this display by mousing down on the routing status te Σημείωση: μπορείτε να προκαλέσετε την οθόνη αυτή πατώντας το ποντίκι στο κείμενο κατάστασης της δρομολόγησης στην μπάρα κατάστασης. - + Part '%1' not found in sketch Το εξάρτημα '%1' δεν βρέθηκε στο σχέδιο - + Add %1 parts - + Deselect all Αποεπιλογή όλων @@ -8757,22 +8889,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage τάση - + label ετικέτα - + Net labels Ετικέτες Δικτύων - + Net labels cannot be blank Οι ετικέτες δικτύων δεν μπορεί να είναι κενές @@ -8899,11 +9031,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -9024,6 +9151,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9426,108 +9558,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_en.ts b/translations/fritzing_en.ts index 0725f48b1..966b15068 100644 --- a/translations/fritzing_en.ts +++ b/translations/fritzing_en.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1887,7 +1936,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + %1 of %2 nets routed - %n connector(s) still to be routed %1 of %2 nets routed - %n connection still to be routed @@ -1896,7 +1945,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1907,7 +1956,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1923,19 +1972,19 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to export %1 as shareable - - + + Specify a file name - - + + Fritzing (*%1) @@ -1943,50 +1992,57 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 to shareable sketch - + Fritzing Part (*%1) @@ -2088,22 +2144,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Unable to open shareable part '%1': %2 - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) Routing completed using %n jumper part @@ -2111,67 +2192,67 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Change to single layer pcb - + Change to two layer pcb - + Change image to %2 - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + %1 - [%2] @@ -2181,57 +2262,58 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Unable to load part from '%1' - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - + No exactly matching part found; Fritzing chose the closest match. - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Backing up '%1' @@ -2292,104 +2374,104 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + Create a new sketch - + &Open... - + Ctrl+O - + Export the visible area of the current sketch as a JPG image - + Export the visible area of the current sketch as a PNG image - + Export the visible area of the current sketch as a PDF image - + Export the current sketch as an SVG image - + Save a Bill of Materials (BoM)/Shopping List as text - + &Open Recent Files - + &Open Example @@ -2400,748 +2482,738 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Cancel - - + + File '%1' not found - + New - + Ctrl+N - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + List of parts (&Bill of Materials)... - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &%1 %2 - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - + &Preferences... - - + + Show the application's about box - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Ctrl+Shift+V - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Select All Locked Parts - + Select all parts that can't be moved - + Show/hide the label for the selected parts - + Straighten Curve - + Straighten the curve of the selected wire - + Find part in sketch... - + Search for parts in a sketch by matching text - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Display First Time Help - + Align - + Move to bottom layer - + Move to top layer - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + jumpers - + copperfill - + vias - + Generating %1 fill... - + ground - + copper - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. There is %n outdated part in this sketch. @@ -3149,7 +3221,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. We strongly recommend that you update this part to the latest version. @@ -3157,1262 +3229,1287 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + unable to find replacement for %1. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + Rotate current selection 45 degrees clockwise - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Actual (real world physical) size - + 100% Size - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Tips, Tricks and Shortcuts - + Parts Editor Help - + Display Parts Editor help in a browser - + as Image - + for Production - - - + + + + + + &Routing - - - + + + Ground Fill - + Delete Ratsnest Line - + Delete Wire - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + &Create trace from ratsnest - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + Show Code - + Show the code (programming) view + + + Visit fritzing.org + + + + + fritzing.org + + + + + Routing + + + + Autoroute connections... - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Check Loaded Traces - + Copper Top and Copper Bottom layers are both active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Do you want to update now? - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting Progress... - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + Update %1 part(s) - + &Zoom In - + Shell launch %1 - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Convert - + Read-only - + Open programming window - + Open microcontroller programming window - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Shift+Ctrl+0 - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Ctrl+? - + Open Fritzing help - + Open Fritzing examples - + Open Parts Reference - + First Time Help - + &About - + Display some handy Fritzing tips and tricks - + Report a bug... - + Enable debugging log - + &File - + &Export - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting - + Export SVG... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - + Tidy Wires - + Tidy selected wires - + Remove copper fill - + Remove Bendpoint - + Select all jumper item parts - + Select All Vias - + Select all via parts - - + + &Wire Color - + &Edit - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... - + Etchable (SVG)... - - + + Select outdated parts - - + + Update selected parts - + Online Tutorials - + Online Projects Gallery - + Online Parts Reference - + &Part - + &View - + &Window - + &Help - + Sorry, "%1" has not been implemented yet - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Autorouting... - - directly loading parts - - - - + Page Setup - + Undo - + Redo - + Select a Fritzing File to Open - + &Show part label - + Export Bill of Materials (BoM)... - + Add a note - - + + Add Note - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + Select All Traces - + Select all trace wires - + Select all trace wires excluded from autorouting - - + + Do you want to keep the imported parts? - + &About Qt - + Show Qt's about box - - + + Report a but you've found in Fritzing - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + Swapped %1 with module %2 @@ -4427,7 +4524,7 @@ We're working to avoid this message, and only let you choose between proper - + Raise and Lower @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4632,62 +4729,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4700,120 +4797,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4849,11 +4946,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4868,12 +4965,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4893,7 +4990,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4940,216 +5037,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5181,12 +5278,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors This part has %n unassigned connector @@ -5194,7 +5291,7 @@ Reason: %2 (errcode %3) - + across %n views. in %n view. @@ -5202,7 +5299,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5242,67 +5339,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5389,154 +5486,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6284,12 +6381,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6345,86 +6442,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6753,12 +6858,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6768,12 +6873,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6793,12 +6898,12 @@ shift key swaps scroll axis - + Convert to Via - + Convert Via to Bendpoint @@ -6835,7 +6940,6 @@ shift key swaps scroll axis - Fritzing @@ -6881,21 +6985,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7000,43 +7104,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7051,7 +7155,7 @@ Fritzing still works, but you won't be able to change parts properties. - + Select locked parts @@ -7185,18 +7289,18 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 @@ -7297,7 +7401,7 @@ is already there, we won't add it again, right? - + Select outdated parts @@ -7472,12 +7576,12 @@ is already there, we won't add it again, right? - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ is already there, we won't add it again, right? - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ is already there, we won't add it again, right? - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ is already there, we won't add it again, right? Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ is already there, we won't add it again, right? S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,82 +8381,82 @@ is already there, we won't add it again, right? - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + Change - - + + Connect - - + + to %1 - + Create and connect wire - + Rotate %2 (%1) @@ -8372,57 +8476,57 @@ is already there, we won't add it again, right? - + Delete ratsnest - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Flip %2 (%1) @@ -8452,91 +8556,91 @@ is already there, we won't add it again, right? - + Resize ruler to %1 %2 - + test connectors - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8561,7 +8665,7 @@ Note: you can also trigger this display by mousing down on the routing status te - + Selection @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8809,11 +8913,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8934,6 +9033,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_es.ts b/translations/fritzing_es.ts index 2912576e9..c9a919374 100644 --- a/translations/fritzing_es.ts +++ b/translations/fritzing_es.ts @@ -12,42 +12,42 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 para el código y CreativeCommons:BY-SA para el resto - + Fritzing is made by: Fritzing está creado por: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -56,214 +56,215 @@ Bryant Mairs, Uleshka Asher y Daniel Tzschentke. - Special thanks goes out to: - Un agradecimiento especial a: + Un agradecimiento especial a: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser y Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): Chino (tradicional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: Español: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: Italiano: - + Portuguese (European): Portugues (Europeo): - + Portuguese (Brazilian): Portugués (Brasileño): - + Chinese (Simplified): Chino (simplificado): - + Japanese: Japonés: - + Russian: Ruso: - + Dutch: Holandés: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: Checo: - + Korean: Coreano: - + Slovak: Eslovaco: - + Greek: Griego: - + French: Francés: - + Turkish: Turco: - + Bulgarian: Búlgaro: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - + <b>2007-%1 Fritzing</b> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing existe gracias a la financiación de - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, patrocinadores del Diseño - + Department of Bauhaus-University Weimar, Departamento de la Universidad de Bauhaus Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, un donante anónimo, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. y por cada compra de un Kit de iniciación a Fritzing o un PCB de Fritzing Fab. - Special thanks goes out as well to all the students - Un agradecimiento especial a todo el alumnado + Un agradecimiento especial a todo el alumnado - and alpha testers who were brave enough to give - y a los alfa testers que fueron suficientemente valientes como para + y a los alfa testers que fueron suficientemente valientes como para - Fritzing a test spin. - darle a Fritzing una vuelta de prueba. + darle a Fritzing una vuelta de prueba. @@ -812,7 +813,7 @@ Usan el archivo? Capacitor - + Select from the dropdown, or type in a %1 value Selecciona del *dropdown, o tipo en un %1 valor @@ -820,17 +821,17 @@ Usan el archivo? ConnectorItem - + Add bendpoint Añadir dobles - + Straighten curve Alisa curva - + Remove bendpoint Saca dobles @@ -1279,6 +1280,70 @@ Usan el archivo? Volviendo a generar la base de datos de componentes... + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Cancelar + + + + Upload to Fab + + + + + Upload + Carga + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1306,12 +1371,12 @@ Usan el archivo? FolderUtils - + Moving your custom parts Moviendo tus componentes personalizados - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1427,7 +1492,7 @@ Es también posible de escoger un conector como tierra llena semilla por correct Hole - + hole size Tamaño del agujero @@ -1914,7 +1979,7 @@ Es también posible de escoger un conector como tierra llena semilla por correct MainWindow - + Rotate Girar @@ -1925,7 +1990,7 @@ Es también posible de escoger un conector como tierra llena semilla por correct - + Autoroute Autorutear @@ -1941,13 +2006,13 @@ Es también posible de escoger un conector como tierra llena semilla por correct Guardar %1 - + Unable to export %1 as shareable Imposible de exportar %1 como compartido - - + + Specify a file name Especifica un nombre para el archivo @@ -1955,45 +2020,52 @@ Es también posible de escoger un conector como tierra llena semilla por correct - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 to shareable sketch Imposible exportar %1 como un bosquejo portable @@ -2095,27 +2167,52 @@ Es también posible de escoger un conector como tierra llena semilla por correct Incapaz de abrir compartido '%1': %2 - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Unable to open shareable part '%1': %2 Incapaz de abrir compartido componente '%1': %2 - + Fritzing Part (*%1) - + No connections to route No existen conexiones que rutear - + Routing completed Ruteado completo - + Routing completed using %n jumper part(s) @@ -2123,78 +2220,78 @@ Es también posible de escoger un conector como tierra llena semilla por correct - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - + Change to single layer pcb Cambio a capa sola PCB - + Change to two layer pcb Cambio a dos capa PCB - + Change image to %2 Imagen de cambio a %2 - + Schematic conversion Conversión esquemática - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Salvando este esquemático lo convertirá al estándar de gráfico esquemático nuevo. Va adelante y convertir? - - + + Fritzing (*%1) Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections Conexiones sin camino - + There are no unrouted connections in this view. No hay conexiones sin camino. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code Código - + Welcome Bienvenida - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2207,57 +2304,58 @@ Es también posible de escoger un conector como tierra llena semilla por correct Ningún Esquemático encontrado en '%1' - + + Unable to load part from '%1' Incapaz de cargar componente de '%1' - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. hay ya una componente con id '%1' cargado a Fritzing. - + %1 - [%2] %1 - [%2] - + No copper top layer Ninguna capa superior de cobre - + No exactly matching part found; Fritzing chose the closest match. Ninguna componente corresponde exactamente; Fritzing escojerá la que más se corresponda. - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Al archivo Svg %1 le faltan '%2' capas. Para mayor información sobre como crear una placa personalizada, vea el tutorial en <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 Cargando %1 - + Loading... Cargando... - + new sketch Esquemático nuevo - + Backing up '%1' Respaldando '%1' @@ -2322,78 +2420,77 @@ Es también posible de escoger un conector como tierra llena semilla por correct Exportando... - + Unable to save %1 Imposible guardar %1 - + Cannot print to %1 No es posible imprimir a %1 - + Cannot write file %1: %2. No es posible escribir el Archivo %1:%2. - + Saved '%1' Guardado '%1' - + Cannot find file %1. Imposible encontrar archivo %1. - directly loading parts - Cargando componentes directamente + Cargando componentes directamente - + loading %1 (model) Cargando %1 (modelo) - + loading %1 (breadboard) Cargando %1 (Protoboard) - + loading %1 (pcb) Cargando %1 (PCB) - + loading %1 (schematic) Cargando %1 (Esquemático) - + Create a new sketch Crear bosquejo nuevo - + &Open... &Abrir... - + Ctrl+O Ctrl+O - + Export the visible area of the current sketch as a JPG image Exportar el área visible del bosquejo actual como una imagen JPG - + Export the visible area of the current sketch as a PNG image Exportar el área visible del bosquejo actual como una imagen PNG @@ -2402,27 +2499,27 @@ Es también posible de escoger un conector como tierra llena semilla por correct Exportar el área visble del bosquejo actual como una imagen PostScript - + Export the visible area of the current sketch as a PDF image Exportar el área visble del bosquejo actual como una imagen PDF - + Export the current sketch as an SVG image Exportar el bosquejo actual como una imagen SVG - + Save a Bill of Materials (BoM)/Shopping List as text Guardar una Lista de Materiales(BoM)/Lista de Compras como texto - + &Open Recent Files &Abrir Archivos recientes - + &Open Example &Abrir ejemplo @@ -2433,739 +2530,737 @@ Es también posible de escoger un conector como tierra llena semilla por correct - + Cancel Cancelar - - + + File '%1' not found Archivo '%1' no encontrado - + New Nuevo - + Ctrl+N Ctrl+N - + &Save &Guardar - + Ctrl+S Ctrl+S - - + + Save the current sketch Guardar el bosquejo actual - + &Save As... &Guardar como... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Compartir en línea... - + Post a project to the Fritzing website Postear un proyecto al sitio web de Fritzing - + List of parts (&Bill of Materials)... Lista de Componentes (&Lista de Materiales)... - + XML Netlist... Lista de Red XML... - + Save a netlist in XML format Guardar la netlist en formato XML - + SPICE Netlist... SPICE Netlist... - + Save a netlist in SPICE format Guarda la netlist en formato SPICE - + Export the current sketch to Eagle CAD Export el bosquejo actual en Eagle CAD - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Exportar el boceto actual a formato Gerber extendido (RS-274X) para producción profesional PCB - + Export the current sketch to PDF for DIY PCB production (photoresist) Exportación el esquemático actual a PDF para PCB al ácido - + Export the current sketch to SVG for DIY PCB production (photoresist) Exportación el esquemático actual a svg para PCB al ácido - + &Print... &Imprimir... - + Ctrl+P Ctrl+P - + Print the current view Imprimir la vista actual - + Export SPICE Netlist... ESPECIA de exportación Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. Gerber La exportación sólo puede manejar uno entabla a la vez--complacer seleccionar el placa quieres exportación. - + Sketch exported to Gerber El esquemático exportó a Gerber - + throw test exception hacer una excepción de prueba - + throw a fake exception to see what happens hacer una excepcióon falsa para ver que pasa - + &Quit &Salir - + Ctrl+Q Ctrl+Q - + Quit the application Salir de la aplicación - + All Todo - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: no se puede cargar el ejemplo con el id='%1' - + &%1 %2 &%1 %2 - + &Cut &Cortar - + Cut selection Cortar selección - + &Copy &Copiar - + Copy selection Copiar selección - + &Paste &Pegar - + Paste clipboard contents Pegar contenido del portapapeles - + Paste in Place Pasta en Sitio - + Paste clipboard contents in place Contenidos de portapapeles de la pasta en sitio - + &Duplicate &Duplicar - + Ctrl+D Ctrl+D - + Duplicate selection Duplicar selección - + &Delete &Borrar - + Delete selection Borrar selección - + &Select All &Seleccionar todo - + Select all elements Seleccionar todos los elementos - + &Deselect &Deseleccionar - + Deselect Deseleccionar - + &Preferences... &Preferencias... - - + + Show the application's about box Mostrar el dialogo acerca de la aplicación - + &Add to bin... &Añadir al compartimiento... - + Add selected part to bin Añadir la componente selecionada al compartimiento - + Disconnect All Wires Desconectar Todos los Cables - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot read file 1 %1: %2. - + Disconnect all wires connected to this connector Desconectar todos los cables conectados a éste conector - + Update InfoView on hover Actualizar información de la vista en el hover - + Export Normalized SVG Exportar SVG Normalizado - + Export 1000 dpi SVG of this part in this view Exportar a 1000 dpi SVG de esta componente en esta vista - + Export Normalized Flattened SVG Exportar SVG Plano Normalizado - + Export 1000 dpi Flattened SVG of this part in this view Exportar a 1000 dpi SVG plano de esta componente a esta vista - + Dump all parts Vertedero todas las componentes - + Debug dump all parts in this view Depurar verter todas las componentes en esta vista - + Test Connectors Conectores de prueba - + Connect all connectors to a single test part Conectar todos los conectores a una componente de prueba sola - + Align Left Alinea Dejó - + Align selected items at the left Alinea seleccionó elementos en el izquierdos - + Align Horizontal Center Alinea Centro Horizontal - + Align selected items at the horizontal center Alinea seleccionó elementos en el centro horizontal - + Align Right Alinear a la derecha - + Align selected items at the right Alinear objetos seleccionados a la derecha - + Align Top Alinear arriba - + Align selected items at the top Alinear arriba los elementos seleccionados - + Align Vertical Center Alinear en el centro vertical - + Align selected items at the vertical center Alinea seleccionó elementos en el centro vertical - + Align Bottom Alinea Inferior - + Align selected items at the bottom Alinea seleccionó elementos en el fondo - + Lock Part Bloquear componente - + Prevent a part from being moved Impedir una componente de ser movió - + Select All Locked Parts Selecciona Todos Los Componentes Bloqueados - + Select all parts that can't be moved Seleccionar todas las componentes que no puede ser movido - + Show/hide the label for the selected parts El mostrar/ocultar la etiqueta para el seleccionó componentes - + Straighten Curve Alisar Curva - + Straighten the curve of the selected wire Alisar la curva del cable seleccionado - + Find part in sketch... Buscando componente en esquemático... - + Search for parts in a sketch by matching text Busca componentes en un esquemático con texto - - + + Hide part silkscreen Componente de escondrijo silkscreen - + Hide/show the silkscreen layer for only this part El escondrijo/muestra el silkscreen capa para único esta componente - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+4 - + Ctrl+5 - + &Show Welcome &Mostrar Bienvenida - + Show the welcome view Mostrar bienvenida - + Show Parts Bin Icon View Exhibición de Componentes como Iconos - + Display the parts bin in an icon view Exhibición de Componentes como Iconos - + Show Parts Bin List View Exhibición de Componentes como una Lista - + Display the parts bin in a list view Exhibición de Componentes como una Lista - Donate to Fritzing - Donación para Fritzing + Donación para Fritzing - Open Fritzing donation web page - Abrir la página web de donaciones de Fritzing + Abrir la página web de donaciones de Fritzing - + Display First Time Help Primera Ayuda - + Align Alineación - + Move to bottom layer Movimiento a capa inferior - + Move to top layer Movimiento a capa superior - + Hide part label Ocultar el nombre del componente - + Show part label Mostrar el nombre del componente - + Show part silkscreen Componente mostrar silkscreen - + Delete Borrar - + top and bottom Superior y fondo - + bottom Inferior - + top Superior - + Ground Fill (%1) La tierra Llena (%1) - + Copper Fill (%1) Cobertura cobre (%1) - + Choose Ground Fill Seed(s)... Elegí Semilla(s) de tierra... - + Set Ground Fill Seed Elegí Semilla de Tierra llena - + Treat this connector and its connections as a 'ground' during ground fill. Tratar este conector y sus conexiones como 'tierra' durante la tierra llena. - + Clear Ground Fill Seeds Borrar Semillas - + Clear ground fill seeds--enable copper fill only. Limpiar cobertura inicial de semilla--habilitar solo cobertura de cobre. - + Set Ground Fill Keepout... Distancia minima... - + Set the minimum distance between ground fill and traces or connectors Pone la distancia mínima entre tierra llena y caminos o conectores - + Design Rules Check (DRC) Controlar de Reglas del diseño (DRC) - + Highlights any parts that are too close together for safe board production Destaca cualquiera separa aquello es demasiado cercano junto para producción de placa seguro - + Fritzing Fab Quote... Presupuesto del Fritzing Fab... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Cuánto pueda para producir un PCB de este esquemático con Fritzing Fab - - + + View from below Vista desde abajo - - + + View the PCB from the bottom layers upwards Vista el PCB de las capas inferiores hacia arriba - + View from above Vista de arriba - + View the PCB from the top layers downwards Vista el PCB de las capas superiores hacia abajo - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + jumpers saltos - + copperfill relleno de cobre - + vias vias - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Generating %1 fill... Generando %1 llena... - + ground Tierra - + copper Cobre - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Schematic view update Actualización de vista esquemática - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -3174,29 +3269,29 @@ Es también posible de escoger un conector como tierra llena semilla por correct - + Would you like to convert '%1' to the new standard now or open the file read-only? ¿Desea convertir '%1' al formato nuevo o abrirlo como solo lectura? - + The conversion process will not modify '%1', until you save the file. El proceso de conversión no modificará '%1', hasta que se guarda el archivo. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Tendrás que Rearrange componentes y conexiones en vista esquemática, cuando las medidas de la mayoría de imágenes de componente habrán cambiado. Considera utilizar el autorouteado para limpiar arriba de caminos. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Nota que cualesquier componentes hechas de encargo no serán convertidas. Una herramienta para convertir 'rectangular' las imágenes esquemáticas es disponibles en el Editor de Componentes. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -3205,7 +3300,7 @@ Note: if you want to update later, there are options under the 'Part' Nota: si quieres actualizar más tarde, hay opciones en el menú de componentes - + There are %n outdated part(s) in this sketch. @@ -3213,74 +3308,74 @@ Nota: si quieres actualizar más tarde, hay opciones en el menú de componentes< - + This may result in changes to your sketch, as parts or connectors may be shifted. Esto puede resultar en cambios a su proyecto, cuando las componentes o los conectores pueden ser cambiados. - + unable to find replacement for %1. incapaz de encontrar sustitución para %1. - + %1 background %1 fondo - + Enter Text Introduce Texto - + Text will match part label, description, title, etc. Enter text to search for: Concidencias de texto en etiqueta, descripción, título, etc. Introduzca el texto a buscar: - + Search Búsqueda - + No parts matched search term '%1'. Ninguna búsqueda con el termino '%1'. - + Rotate the selected parts by 90 degrees clockwise Girar las componentes seleccionadas 90 grados en sentido horario - + Rotate the selected parts by 180 degrees Girar las componentes seleccionadas 180 grados - + Rotate current selection 90 degrees counter clockwise Girar la seleccion actual 90 grados en sentido antihorario - + Rotate current selection 45 degrees counter clockwise Rotar la sección actual 45 grados en sentido antihorario - + Rotate current selection 45 degrees clockwise Rotar la sección actual 45 grados en sentido horario - + Revert? ¿Revertir? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3289,570 +3384,590 @@ Go ahead and revert? ¿Desea revertir? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Abierto un Fritzing esquemático (.fzz, .*fz), o cargar un Fritzing componente (.*fzpz), o un Fritzing componente de componentes (.*fzb, .*fzbz) - + Revert Revert - + Reload the sketch Reload El esquemático - + &Delete Wire Elimina Cable (&D) - + Edit (new parts editor) Editar (editor de componentes nuevas) - + Open the new parts editor on an existing part Abierto el nuevo editor de componentes en una componente de existir - + &Flip Horizontal &Espejado Horizontalmente - + Flip current selection horizontally Espeja la selección en horizontalmente - + &Flip Vertical &Espejado Verticalmente - + Flip current selection vertically Espeja la selección en verticalmente - + Bring to Front Traer al frente - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Enviar el o los objetos seleccionados a la capa del frente - + Bring Forward Traer al frente - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Enviar el o los objetos seleccionados a la capa del frente - + Send Backward Enviar al Fondo - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Enviar el o los objetos seleccionados a la capa de atrás - + Send to Back Enviar atrás - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Enviar el o los objetos seleccionados a la capa de atrás - + Sticky Pegajoso - + If a "sticky" part is moved, parts on top of it are also moved Si un "pegajoso" la componente está movida, las componentes arriba de él son también movió - + &Show All Layers &Mostrar todas las capas - + Show all the available layers for the current view Ocultar todas las capas disponibles para la vista actual - + &Hide All Layers Ocultar todas las capas (&H) - + Hide all the layers of the current view Ocultar todas las capas de la vista actual - + &Export... &Exportar... - + Export selected part Exportar componente seleccionada - - + + Add Bendpoint Añadir doblez - + Add a bendpoint to the selected wire Añadir doblez al cable seleccionado - + Convert Bendpoint to Via Convierte dobles a Vía - + Convert the bendpoint to a via Convertir el dobles a un vía - + Convert Via to Bendpoint Convierte Vía a dobles - + Convert the via to a bendpoint Convertir el vía a un dobles - + Actual (real world physical) size Tamaño real (físico en el mundo real) - + 100% Size Tamaño al 100% - + 100% (pixel) size Tamaño al 100% (pixel) - + Align to Grid Alinear a la Grilla - + Align items to grid when dragging Alienar componentes a la grilla al arrastrar - + Show Grid Mostrar Grilla - + Show the grid Mostrar la grilla - + Set Grid Size... Medida de Grilla... - + Set the size of the grid in this view Pone la medida de la grilla en esta vista - + Set Background Color... Elegir Color De fondo... - + Set the background color of this view Pone el color de fondo de esta vista - + Tips, Tricks and Shortcuts Tips, Trucos y Atajos - + Parts Editor Help Ayuda de Editor de las componentes - + Display Parts Editor help in a browser Mostrar la ayuda de Editor de Componentes en un navegador - + as Image Imagen - + for Production para Producción - - - + + + + + + &Routing En&rutado - - - + + + Ground Fill La tierra Llena - + Delete Ratsnest Line Elimina *Ratsnest Línea - + Delete Wire Elimina Cable - + Actual Size Tamaño Real - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. No es posible determinar el 'tamaño real' de su monitor, lo mejor es que usted compare el componente real con él de la pantalla y cambie el zoom hasta que estos tengan el mismo tamaño y use esa escala como la real. - + Shift+Ctrl+A Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Seleccionar cualesquier caminos donde la ubicación de pantalla *doesn'*t empareja la ubicación real. Sólo necesitado para esquemático autoruteard con versión 0.7.10 o más temprano - + Autorouter/DRC settings... Autorouteado/DRC encuadres... - + Set autorouting parameters including keepout... Set autoruteando los parámetros que incluyen mantener afuera... - - + + Set both copper layers clickable Elegir ambas capas de cobre al hacer click - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable Elegir la primera capa de cobre con un click - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable Elegir la última capa de cobre con un click - + Shift+Ctrl+1 Shift+Ctrl+1 - + &Create trace from ratsnest &Crea rastro de Ratsnest - + Ctrl+Shift+V Ctrl+Shift+V - + Delete Minus Elimina solo selección - + Delete selection without attached wires Elimina selección sin sujetá cables - + Delete Wire up to bendpoints Elimina Cable desde el dobles - + Rotate 45° Clockwise Girar 45° horario - + Rotate 90° Clockwise Girar 90° horario - + Rotate 180° Girar 180° - + Rotate 90° Counter Clockwise Girar 90° antihorario - + Rotate 45° Counter Clockwise Girar 45° antihorario - + Show Code Código mostrar - + Show the code (programming) view Mostrar el código vista de programación + + + Visit fritzing.org + + + + + fritzing.org + + + + + Routing + + + + Autoroute connections... Autorutear conexiones... - + Create a trace from the ratsnest line Crear un rastro del Ratsnest línea - + &Create wire from ratsnest &Crea cable de Ratsnest - + Create a wire from the ratsnest line Crear un cable del Ratsnest línea - + Do not autoroute No autorutear - + When autorouting, do not rip up this trace wire, via, or jumper item Cuándo autorutear, no desgarra arriba de este cable de rastro, vía, o elemento de saltos - + Move to other side of the board Mover camino al otro lado de la placa - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) El movimiento seleccionó caminos al otro lado de la placa (nota: el 'primer' el rastro será movido y el resto seguirá al mismo lado) - + Show unrouted Mostrar desconectados - + Highlight all unrouted connectors Marca todos lo conectores sin conexión - + Select All Wires Seleccionar Todos los Cables - + Select all wires Seleccionar todos los cables - + Select All CopperFill Selecciona Todo El Máximo Cobre - + Select all copper fill items Selecciona todos los elementos unidos por el cubertura de cobre - + Force Update Routing Status and Ratsnests Estado de Encaminamiento de Actualización de fuerza y *Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Recalculate Estado de encaminamiento y *Ratsnest cables (en caso el coche-actualización *isn'*t trabajando correctamente) - + Select All "Don't Autoroute" Traces Seleccionar Todos Los Caminos No Autorutados - + Select All Autoroutable Traces Seleccionar Todo Caminos Autoruteados - + Select all trace wires that can be changed during autorouting Seleccionar todos los caminos que puede ser cambiado durante autoruteado - + Select All Jumpers Seleccionar Todos los Saltos - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Llena regiones vacías de la capa con cobre incluirá todos los caminos conectaron a una TIERRA - + Fill empty regions of the copper layer--not including traces connected to a GROUND Llena regiones vacías de la capa cobre, no incluyendo los caminos conectaron a una TIERRA - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Llena regiones vacías de la capa con cobre incluirá todos los caminos conectaron a las semillas - + Shift+Ctrl+D - + Check Loaded Traces Control Caminos Cargados - + Copper Top and Copper Bottom layers are both active Ambas capas de cobre están activas - + Order a PCB... Ordenar un PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Ordenar un PCB creó de su esquemático--de *fabulous Fritzing *Fab - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Complacer seleccionar el placa quieres autorutear. El autorouteado sólo puede manejar uno entabla a la vez. - + Please select a PCB--copper fill only works for one board at a time. Complacer seleccionar un PCB--Máximo cobre los trabajos únicos para uno entablan a la vez. - + Please select a PCB--ground fill operations only work on a one board at a time. Complacer seleccionar un PCB--la tierra llena operaciones trabajo único en un un placa a la vez. - + We strongly recommend that you update these %n parts to the latest version. @@ -3860,7 +3975,7 @@ Go ahead and revert? - + Do you want to update now? @@ -3869,597 +3984,607 @@ Do you want to update now? ¿Desear actualizar ahora? - + OK Aceptar - + Set the grid size for %1. Pone la medida de grilla para %1. - + Grid Size: Tamaño de la grilla: - + in - + mm - + Restore Default Restauración predefinida - + Your sketch does not have a board yet! DRC only works with a PCB. ¡Su esquemático no tiene un placa todavía! DRC Trabajos únicamente con un PCB. - + Please select a PCB. DRC only works on one board at a time. Complacer seleccionar un PCB. DRC Trabajos únicos encima uno entabla a la vez. - + DRC Progress... DRC en progreso... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. su esquemático no tiene un placa todavía! Complacer añadir un PCB para utilizar Máximo cobrer operaciones. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Complacer seleccionar un PCB. Máximo cobrer las operaciones sólo trabajan encima uno entabla a la vez. - + Copper Top layer is active La capa superior de cobre esta activa - + Copper Bottom layer is active La capa inferior de cobre está activa - + Autorouting Progress... Progreso del Autoruteo... - + Launch %1... Lanzar %1... - + No outdated parts found. All your parts are up-to-date. No se encontraron componentes sin actualizar. Todos tus componentes están actualizados. - + Outdated parts componentes Atrasadas - + Successfully updated %1 part(s). Please check all views for potential side-effects. %1 componente(s) actualizadas con éxito. Complacer comprobar todas las vistas para lado potencial-efectos. - + Update %1 part(s) %1 componente(s) actualizado(s) - + &Zoom In &Acercar - + Shell launch %1 Terminal %1 - + Convert Conviertir - + Read-only Solo lectura - + Open programming window Abrir ventana de programación - + Open microcontroller programming window Abrir ventana de programación del microcontrolador - + Ctrl++ Ctrl++ - + Zoom in Acercar - + Ctrl+= Ctrl+= - + &Zoom Out &Alejar - + Ctrl+- Ctrl+- - + Zoom out Alejar - + &Fit in Window &Ajustar a la ventana - + Ctrl+0 Ctrl+0 - + Fit in window Ajustar a la ventana - + &Actual Size &Tamaño Real - + Shift+Ctrl+0 Shift+Ctrl+0 - + &Show Breadboard &Mostrar Protoboard - + Ctrl+1 Ctrl+1 - + Show the breadboard view Mostrar Protoboard - + &Show Schematic &Mostrar Esquemático - + Ctrl+2 Ctrl+2 - + Show the schematic view Mostrar Vista de Esquemático - + &Show PCB &Mostrar PCB (Circuito Impreso) - + Ctrl+3 Ctrl+3 - + Show the PCB view Mostrar la vista de PCB (Circuito Impreso) - + &Minimize &Minimizar - + Ctrl+M Ctrl+M - + Minimize current window Minimizar la ventana actual - + Debugger Output Salida del depurador - + Ctrl+? Ctrl+? - + Open Fritzing help Abrir ayuda de Fritzing - + Open Fritzing examples Abrir Ejemplos de Fritzing - + Open Parts Reference Abrir la referencia de componentes - + First Time Help Ayuda de primera vez - + &About &Acerca de Fritzing - + Display some handy Fritzing tips and tricks Mostrar algunos consejos y trucos útiles de Fritzing - + Report a bug... Reportar un fallo... - + Enable debugging log Activar registro de depuración - + &File &Archivo - + &Export &Exportar - + Choose a folder for exporting Selecciona una carpeta donde exportar - + Export SVG... Exportar SVG... - + Unable to save BOM file, but the text is on the clipboard. Incapaz de salvar archivo BOM, pero el texto esta en el portapapeles. - + Export Netlist... Exporta la NetList... - + Tidy Wires Ordenar Cables - + Tidy selected wires Ordenar cables seleccionados - + Remove copper fill Borrar las pistas de cobre - + Remove Bendpoint Quitar Punto de Doblez - + Select all jumper item parts Seleccionar todas componentes de elemento del saltos - + Select All Vias Seleccionar Todo *Vias - + Select all via parts Selecciona todo vía componentes - - + + &Wire Color &Color del Cable - + &Edit &Editar - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... Placa (PDF)... - + Etchable (SVG)... Placa (SVG)... - - + + Select outdated parts Seleccionar componentes obsoletas - - + + Update selected parts Actualizar componentes selecionados - + Online Tutorials Tutoriales en línea - + Online Projects Gallery Galeria de proyectos en línea - + Online Parts Reference Referencia para componentes en línea - + &Part &Componente - + &View &Vista - + &Window &Ventana - + &Help &Ayuda - + Page Setup Configurar Página - + Sorry, "%1" has not been implemented yet Disculpa, "%1" no se ha implementado aun - - + + Copper Fill Relleno de Cobre - + Remove Copper Fill Quitar el Relleno de Cobre - + Remove the copper fill Remover el relleno de cobre - + Autorouting... Autoruteando... - + Undo Deshacer - + Redo Rehacer - + Select a Fritzing File to Open Seleccionar un archivo Fritzing para abrir - + &Show part label &Mostrar la etiqueta de la componente - + Export Bill of Materials (BoM)... Exportar Lista de Materiales(BoM)... - + Add a note Agregar nota - - + + Add Note Agregar Nota - + Check for updates... Buscar actualizaciones... - + Check whether a newer version of Fritzing is available for download Comprobar si hay una nueva versión de Fritzing disponible para descargar - + Select All Traces Seleccionar todos los caminos - + Select all trace wires Seleccionar todos los caminos - + Select all trace wires excluded from autorouting Seleccionar todos los caminos excluidas del autoruteo - - + + Do you want to keep the imported parts? ¿Desea quedarse con las componentes importadas? - + &About Qt &Acerca de Qt - + Show Qt's about box Mostrar el dialogo acerca de QT - - + + Report a but you've found in Fritzing Reporta un error que haz encontrado en Fritzing - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Aquí encontraras pronto una opcion para exportar tu archivo de Fritzing a al Software EAGLE. Si deseas tener más opciones para exportar a tu herramienta favorita avisanos mediante el foro o contribuye con nosotros. - - + + Sorry! Disculpa - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist No hay una componente con esas caracteristicas Estamos trabajando para evitar este mensaje, y sólo dejado escoges entre propiedades que existe - + Swapped %1 with module %2 Se intercambió %1 por módulo %2 @@ -4474,7 +4599,7 @@ Estamos trabajando para evitar este mensaje, y sólo dejado escoges entre propi ¿Desea proceder con la operación? - + Raise and Lower Aumentar y disminuir @@ -4654,7 +4779,7 @@ Reason: %2 (errcode %3) NetLabel - + net label Etiqueta neta @@ -4680,56 +4805,56 @@ Reason: %2 (errcode %3) Da click sobre este conector para arrastrar una nueva traza. - + Change trace layer Capa de rastro del cambio - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + %1 Fill: please select the board you want to apply fill to. %1 Llena: complacer seleccionar el placa quieres aplicar llenar a. - + Ground Tierra - + Copper Cobre - + Copper fill: please select only the board you want to fill. Máximo cobre: por favor elige la capa que quieres llenar. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4744,99 +4869,99 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Complacer clic en un PCB primero--esta operación de selección los trabajos únicos para uno entablan a la vez. - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - - + + Fritzing error: unable to render board svg (1). Error de Fritzing: imposible hacer la placa svg (1). - - - + + + Fritzing error: unable to render copper svg (1). Error de Fritzing: Imposible hacer svg de cobre (1). - + Fritzing error: unable to write copper fill (1). Fritzing Error: incapaz de escribir Máximo cobrer (1). - + Fritzing error: unable to write copper fill (2). Fritzing Error: incapaz de escribir Máximo cobrer (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Incapaz de crear Máximo cobre, probablemente la componente están fuera del PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Incapaz de crear Máximo cobrer--posiblemente la componente estuvo caída a otra componente o cable más que el real PCB. - + Clear ground fill seeds La tierra clara llena semillas - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Incapaz de convertir esto vía a un dobles porque está conectado a una componente que es sólo en la capa inferior y otro separan aquello es sólo en la capa superior. - + Show part silkscreen Mostrar pantalla serigráfica del componente - + Hide part silkscreen Ocultar pantalla serigráfica del componente - - + + Fritzing Fab Quote Presupuesto Fritzing Fab - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. su esquemático no tiene un placa todavía. Puedes no *fabricate este esquemático sin un PCB componente. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. Lo lamento, http://fab.fritzing.org no está respondiendo a la petición de presupuesto. Por favor compruebe su conexión de red o puede probar más tarde. - + Enter Keepout Introduce la distancia mínima - + Keepout is in mils (.001 inches). @@ -4845,14 +4970,14 @@ Reason: %2 (errcode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Nota que debido al interpolado, las distancias pueden ser demasiado pequeña hasta los 2 mils - + so you may want to increase the keepout value by that much. @@ -4861,7 +4986,7 @@ Reason: %2 (errcode %3) - + 10 mils is a good default choice. @@ -4870,7 +4995,7 @@ Reason: %2 (errcode %3) - + Enter keepout value: Introduce distancia mínima: @@ -4906,11 +5031,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor Editor de componentes @@ -4925,12 +5050,12 @@ Reason: %2 (errcode %3) Todavía hay un cambio pendiente. - + Duplicate 'family' property not allowed No se permite duplicar la propiedad 'familia' - + Duplicate 'variant' property not allowed Duplicado 'variante' la propiedad no dejada @@ -4950,7 +5075,7 @@ Reason: %2 (errcode %3) Seguir trabajando - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Puedes salir del Editor de Componentes, siempre y cuando recuerdes acabar las asignaciones más tarde. @@ -4986,209 +5111,209 @@ Reason: %2 (errcode %3) Saca Conexión Interna - + Icon View Vista de icono - + Metadata View Metadata Vista - + Connectors View Vista de conectores - + Show Icon Icono mostrar - + Ctrl+4 - + Show the icon view Mostrar la vista de icono - + Ctrl+5 - + Show the metadata view Mostrar el Metadata vista - + Show Connectors Mostrar Conectores - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' Cambio %1 a '%2' - + Change description Cambiar descripción - + Change tags Cambiar Etiquetas - + Change properties Cambiar propiedades - + Change connector %1 Conector de cambio %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Archivos de Imagen y Huellas (%1 %2 %3 %4 %5);;Archivo SVG (%1);;Archivo JPEG (%2);;Archivo PNG (%3);; Archivo de Huellas gEDA (%4);;Archivo de Modulos Kicad (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Archivos de Imágenes (%1 %2 %3);;Archivo SVG (%1);; Archivo JPEG (%2);; Archivo PNG (%3)%4%5 - + Open Image Abrir Imagen - + Copy problem Problema de copia - + Unable to make a local copy of: '%1' Incapaz de hacer una copia local de: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Puedes utilizar un *PNG o *JPG imagen para construir vuestra componente, pero es mejor de utilizar un svg. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- *PNG Y *JPG las imágenes retienen su naturaleza como *bitmaps y no mira bien cuándo *scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. Tan para Fritzing componentes es más para utilizar *PNG y *JPG sólo tan *placeholders. - + Use of PNG and JPG discouraged Uso de PNG y JPG desalentó - - - - + + + + Conversion problem Problema de conversión - - + + Fritzing (New) Parts Editor (Nuevo) Editor de componentes Fritzing - + Show Metadata Mostrar Metadata - + Show the connector metadata in a list view Mostrar el conector metadata en una vista de lista - + Blank not allowed El espacio no dejado - + The value of '%1' can not be blank. El valor de '%1' no puede estar vacio. - + Change %1 to %2 Cambio %1 a %2 - + Must be unique Tiene que ser único - + Variant '%1' is in use. The variant name must be unique. Variante '%1' es en uso. El nombre de variante tiene que ser único. - - + + Duplicate problem Problema duplicado - + Unable to load '%1' Incapaz de cargar '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. El svg archivo '%1' aparece a ha sido exportado de CorelDRAW sin el 'atributos de presentación' encuadre. - + Please re-export the SVG file using that setting, and try loading again. Complacer Re-exportar el svg el archivo que utiliza que encuadre, y probar cargando otra vez. - + Fonts Fuentes - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' Fritzing Actualmente soportes únicos *OCRA y *Droid fuentes--estos han sido sustituidos en para las fuentes en '%1' - - - + + + SVG problem svg Problema @@ -5222,12 +5347,12 @@ Reason: %2 (errcode %3) Quieres mantener laborable o cerrar sin salvar? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5235,7 +5360,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5243,7 +5368,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. Hasta que todos los conectores están asignados a svg elementos, la componente no trabajará correctamente. @@ -5283,67 +5408,67 @@ Reason: %2 (errcode %3) Reutilización el PCB imagen en esta vista - + Make only this view visible Marca sólo esto ve visible - + The part will only be visible in this view and icon view La componente sólo será visible en esta vista y vista de icono - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Esta versión del Editor de Componentes nuevo no puede tratar cobre separado0 y cobre1 capas en '%1'. - + So editing may produce an invalid PCB view image Así que editando puede producir un nulo PCB imagen de vista - + Unable to parse '%1': %2 line:%3 column:%4 Incapaz a *parse '%1': %2 línea:%3 columna:%4 - + There are no copper layers defined in: %1. No hay capas de cobre definidas en: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Ve <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">esta explicación</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Esto no será un problema en la liberación próxima del Editor de Componentes, - + but for now please modify the file according to the instructions in the link. Pero por ahora complacer modificar el archivo según las instrucciones en el enlace. - + no schematics found in %1 Ningún *schematics encontrado en %1 - + schematic part Componente esquemática - + no footprints found in %1 no se encontraron huellas en %1 - + Relocate connector %1 Reubica conector %1 @@ -5443,59 +5568,59 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1': %2 - + Unable to load image file '%1' Incapaz de cargar archivo de imagen '%1' - + Filename prefix *Filename Prefijo - + Sketch Change Warning Aviso de Cambio del esquemático - + The open sketch '%1' uses the part you are editing. El esquemático abierto '%1' usos la componente estás editando. - + Saving this part will make a change to the sketch that cannot be undone. Salvando esta componente hará un cambio al esquemático que no puede ser deshecho. - + The open sketches Los esquemático abiertos - + '%1', '%1', - + and '%1' Y '%1' - + Saving this part will make a change to these sketches that cannot be undone. Salvando esta componente hará un cambio a estos esquemático que no puede ser deshecho. - + Go ahead and save? @@ -5504,102 +5629,102 @@ Go ahead and save? vamos adelante y salvamos? - + Save Guardar - + Cancel Cancelar - + Move terminal point Movimiento punto terminal - + Remove connector Saca conector - + Remove %1 connectors Saca %1 conectores - + Save "%1" Guardar "%1" - + Do you want to save the changes you made in the part "%1"? Quieres salvar los cambios hiciste en la componente "%1"? - + Your changes will be lost if you don't save them. sus cambios serán perdidos si tú *don'*t les salva. - + untitled part *untitled Componente - + Unable to load fzp from %1 Incapaz de cargar *fzp de %1 - + Unable to create new connector--you may have to start over. Incapaz de crear conector nuevo--te puede tener que empezar encima. - + Add connector Agregar conector - + Add %1 connectors Añade %1 conectores - + Remove internal connection from '%1' Saca conexión interna de '%1' - + Change all connectors to %1 Cambio todos los conectores a %1 - + Unable to parse '%1' Incapaz a *parse '%1' - + Change to %1 Cambio a %1 - + Make only %1 view visible Marca sólo %1 vista visible - + Internal connections are very messed up. Las conexiones internas son muy *messed arriba. - + Add internal connection from '%1' to '%2' Añade conexión interna de '%1' a '%2' @@ -6348,12 +6473,12 @@ Note: this warning will not be repeated during this session. Comportamiento de la Rueda del Ratón - + Command Comando - + Control Control @@ -6409,86 +6534,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (click para cambiar...) - + Clear Settings Encuadres claros - + Platform Support Soporte de plataforma - + <b>%1</b> <b>%1</b> - + Location: Ubicación: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Necesitas tener <a href='%1'>%2</a> (versión %3 o más nuevo) instalado. - + Select a programmer (executable) for %1 Seleccionar un programador (ejecutable) para %1 - + Connected Highlight Punto destacado conectado - + Unconnected Highlight Punto destacado inconexo - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires *Curvy Vs. cables rectos - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Cuándo te ratón-abajo y arrastrar en un cable o la pierna de una componente (como *opposed a un conector o un dobles) quieres cambiar la curvatura del cable (o pierna) o arrastrar fuera de un nuevo dobles? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Este *checkbox pone el *default comportamiento. Puedes cambiar atrás al no-*default comportamiento por aguantar abajo la llave de Control (*Mac: llave de Orden) cuándo arrastras. - + Curvy wires and legs *Curvy Cables y piernas @@ -6818,12 +6951,12 @@ shift key swaps scroll axis Color de punto destacado conectado - + Unconnected highlight color Color de punto destacado inconexo - + Clear all saved settings and close this dialog immediately. Claro todo salvó encuadres y cerrar este diálogo inmediatamente. @@ -6833,12 +6966,12 @@ shift key swaps scroll axis Esta acción no elimina cualesquier archivos; restaura encuadres a su *default valores. - + There is no undo for this action, and no further warning!!!! hay ningún deshacer para esta acción, y no aviso más lejano!!!! - + Clear Settings Encuadres claros @@ -6858,12 +6991,12 @@ shift key swaps scroll axis Seleccionar todo autorutearable caminos - + Convert to Via Convierte a Vía - + Convert Via to Bendpoint Convierte Vía a dobles @@ -6900,7 +7033,6 @@ shift key swaps scroll axis - Fritzing Fritzing @@ -6946,21 +7078,21 @@ shift key swaps scroll axis Vista de PCB - - - + + + Part Componente - - - + + + Wire Cable - + Set Grid Size Medida de Grilla del Set @@ -7070,43 +7202,43 @@ Fritzing Trabajos quietos, pero ganaste ser capaz de cambiar propiedades de comp Vista de Esquemático - + Error reading file %1: %2. Archivo de lectura del error %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Pierna de cambio de %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 Capa - - + + Bring forward Traer hacia adelante - + Send backward Enviar hacia atrás - + Bring to front Traer al frente @@ -7121,7 +7253,7 @@ Fritzing Trabajos quietos, pero ganaste ser capaz de cambiar propiedades de comp Unir Cable - + Select locked parts Selecciona cerró componentes @@ -7255,18 +7387,18 @@ Fritzing Trabajos quietos, pero ganaste ser capaz de cambiar propiedades de comp Notas - + Trace wires Caminos - + Ratsnest wires Saltos - - + + Select all %1 Seleccionar todos los %1 @@ -7368,7 +7500,7 @@ Es ya allí, no lo añadiremos otra vez, bien? Archivo en Progreso... - + Select outdated parts Seleccionar componentes obsoletas @@ -7543,12 +7675,12 @@ Es ya allí, no lo añadiremos otra vez, bien? fallo en la conversión svg 2: %1 %2 %3 - + Copying file %1 Copiando archivo %1 - + File %1 already exists: it won't be overwritten El Archivo %1 ya existe: no será sobre escrito @@ -7813,7 +7945,7 @@ Es ya allí, no lo añadiremos otra vez, bien? - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7837,48 +7969,48 @@ Es ya allí, no lo añadiremos otra vez, bien? - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database Volviendo a generar la base de datos de partes - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8184,17 +8316,17 @@ Es ya allí, no lo añadiremos otra vez, bien? Ruler - + width Ancho - + &cm - + &in @@ -8202,33 +8334,33 @@ Es ya allí, no lo añadiremos otra vez, bien? S2S - + Failed loading '%1', %2 line:%3 col:%4 Fallado cargando '%1', %2 línea:%3 *col:%4 - + Schematic not found for '%1' Esquemático no encontrado para '%1' - - + + Unable to load schematic '%1' for '%2' Incapaz de cargar esquemático '%1' para '%2' - + Schematic '%1' is already using the 0.1inch standard. Esquemático '%1' ya está utilizando el 0.1estándar de pulgada. - + Missing connector %1 in '%2' schematic of '%3' Conector desaparecido %1 en '%2' esquemático de '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 Fallado cargando esquemático '%1', %2 línea:%3 *col:%4 @@ -8360,82 +8492,82 @@ Es ya allí, no lo añadiremos otra vez, bien? carga terminada - + %1 %2 %1 %2 - + %1 %2 items %1 %2 items - + Select All Seleccionar Todo - + Deselect Deseleccionar - + Add %1 Agregar %1 - + Move %2 (%1) Mover %2 (%1) - + Move %2 items (%1) Mover %2 items (%1) - - + + Select %1 Selecionar %1 - - + + Select %1 items Selecionar %1 items - - + + Disconnect Desconectar - + Change Cambiar - - + + Connect Conectar - - + + to %1 a %1 - + Create and connect wire Crear y conectar Cable - + Rotate %2 (%1) Rotate %2 (%1) @@ -8455,57 +8587,57 @@ Es ya allí, no lo añadiremos otra vez, bien? Doble-clic - + Delete ratsnest Elimina Ratsnest - + from %1 De %1 - + Move leg of Pierna de movimiento de - + Change leg curvature for %1. Curvatura de pierna del cambio para %1. - + Change leg bendpoint for %1. Pierna de cambio dobles para %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Esto parece como un intento de crear un rastro a través de capas. Esta circunstancia no tendría que surgir: complacer contactar los desarrolladores. - + Create and connect %1 Crea y conectar %1 - + wire Cable - + trace Rastro - + Flip %2 (%1) Volter %2 (%1) @@ -8535,74 +8667,74 @@ Es ya allí, no lo añadiremos otra vez, bien? Cambiar color de %1 cables a %2 - + Resize ruler to %1 %2 Resize Gobernante a %1 %2 - + test connectors Conectores de prueba - + Change Resistance from %1 to %2 Resistencia de cambio de %1 a %2 - - + + Change %1 from %2 to %3 Cambio %1 de %2 a %3 - - + + Resize board to %1 %2 Cambiar el tamaño de la placa a %1 %2 - + Create wire from Ratsnest Crea cable de Ratsnest - + Disconnect all wires from %1 Desconectar Todos los cables de %1 - + Disconnect all wires from %1 items Desconectar Todos los cables de %1 elementos - + Change image from %1 to %2 Imagen de cambio de %1 a %2 - + change pin labels Etiquetas de alfiler del cambio - + Unrouted connections are highlighted in yellow. Las conexiones sin camino están destacadas en amarillo. - + There are no unrouted connections No hay caminos sin conexión - + Unrouted connections Camino sin conexión - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8611,17 +8743,17 @@ Note: you can also trigger this display by mousing down on the routing status te Nota: también puedes ver las conexiones faltantes en la barra de estado. - + Part '%1' not found in sketch EL componente '%1' no encontrado en el esquemático - + Add %1 parts Añade %1 componentes - + Deselect all Deselecionar Todo @@ -8646,7 +8778,7 @@ Nota: también puedes ver las conexiones faltantes en la barra de estado.%1 etiqueta '%2' - + Selection Selección @@ -8754,22 +8886,22 @@ Nota: también puedes ver las conexiones faltantes en la barra de estado. SymbolPaletteItem - + voltage voltaje - + label etiqueta - + Net labels Etiquetas netas - + Net labels cannot be blank Las etiquetas netas no pueden ser espacio @@ -8877,9 +9009,8 @@ Nota: también puedes ver las conexiones faltantes en la barra de estado.Para editar una etiqueta de componente, doble-clic él, o utilizar la entrada de texto *widget en la ventana de inspector. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Para mostrar propiedades diferentes en una etiqueta de componente, así como Rotate lo, o cambiar la fuente, bien-clic la etiqueta. + Para mostrar propiedades diferentes en una etiqueta de componente, así como Rotate lo, o cambiar la fuente, bien-clic la etiqueta. @@ -9006,6 +9137,11 @@ Nota: también puedes ver las conexiones faltantes en la barra de estado.In Breadboard view, to drag out a wire from the end of a bendable leg, drag with the Alt (Linux: Meta) key down. En *Breadboard vista, para arrastrar fuera de un cable del fin de un *bendable pierna, arrastra con el *Alt (Linux: Meta) llave abajo. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9435,93 +9571,68 @@ Nota: también puedes ver las conexiones faltantes en la barra de estado.The Fritzing Creator Kit is out of Stock. For Updates please visit the fritzing.blog El Kit de creación de Fritzing está agotado. Para actualizaciones, por favor, visita fritzing.blog - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab es un servicio fácil y económico para producir PCBs profesionales de tu proyecto Fritzing. - + produce your first pcb now >> produzca su primer pcb ahora mismo >> - + Order your PCB now. Pide ya tu PCB. - + <a href='%1'><img src='%2'/></a> - + Projects Proyectos - + Blog Blog - + Fritzing News. Novedades. - + Fritzing Projects. Proyectos Fritzing. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found Ningún esquemático recientes encontrados - + Unable to reach blog.fritzing.org Incapaz de alcanzar blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9530,17 +9641,17 @@ Nota: también puedes ver las conexiones faltantes en la barra de estado.Incapaz de alcanzar friting.org/projects - + Tip of the Day: Consejo del día: - + All Tips Todos los consejos - + Next Tip Próximo consejo diff --git a/translations/fritzing_et.ts b/translations/fritzing_et.ts index 02349da4a..6c16d0114 100644 --- a/translations/fritzing_et.ts +++ b/translations/fritzing_et.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1888,7 +1937,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate @@ -1904,7 +1953,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1925,7 +1974,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -1946,14 +1995,14 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - + + Specify a file name - - + + Fritzing (*%1) @@ -1961,76 +2010,83 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2038,17 +2094,17 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unrouted connections - + There are no unrouted connections in this view. - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2133,134 +2189,160 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2306,7 +2388,7 @@ We're working to avoid this message, and only let you choose between proper - + Cancel @@ -2327,130 +2409,125 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... - + Etchable (SVG)... - + New - - + + File '%1' not found - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O @@ -2470,1779 +2547,1799 @@ We're working to avoid this message, and only let you choose between proper - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + Export the visible area of the current sketch as a JPG image - + Export the visible area of the current sketch as a PNG image - + Export the visible area of the current sketch as a PDF image - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + &Edit - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Lock Part - + Prevent a part from being moved - + Select All Locked Parts - + Select all parts that can't be moved - + Straighten Curve - + Straighten the curve of the selected wire - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Delete - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + Rotate current selection 45 degrees clockwise - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - - + + Select outdated parts - - + + Update selected parts - + Actual (real world physical) size - + 100% Size - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Tips, Tricks and Shortcuts - + Report a bug... - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + as Image - + for Production - - - + + + + + + &Routing - - - + + + Ground Fill - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + &Create trace from ratsnest - + Ctrl+Shift+V - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help + + + Routing + + + + Autoroute connections... - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Wires - + Select all wires - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Check Loaded Traces - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Do you want to update now? - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + Update %1 part(s) - + &Zoom In - + Shell launch %1 - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Convert - + Read-only - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Show/hide the label for the selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Shift+Ctrl+0 - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Display some handy Fritzing tips and tricks - + &About Qt - + Show Qt's about box - - + + Report a but you've found in Fritzing - + &File - + &Export - + &Part - + Raise and Lower - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + Align - + &View - + &Window - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Page Setup - + Sorry, "%1" has not been implemented yet - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Generating %1 fill... - + ground - + copper - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -4250,7 +4347,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4258,176 +4355,176 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + unable to find replacement for %1. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - + Select All Traces - + Select all trace wires - + Select All CopperFill - + Select all copper fill items - + Select all trace wires excluded from autorouting - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Autorouting... - + Remove Bendpoint - + Remove copper fill - - + + &Wire Color - + Launch %1... @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4632,62 +4729,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4700,120 +4797,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4849,11 +4946,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4868,12 +4965,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4893,7 +4990,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4940,216 +5037,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5181,12 +5278,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5194,7 +5291,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5202,7 +5299,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5242,67 +5339,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5389,154 +5486,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6284,12 +6381,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6345,86 +6442,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6774,12 +6879,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6789,12 +6894,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6820,7 +6925,6 @@ shift key swaps scroll axis - Fritzing @@ -6856,21 +6960,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7031,12 +7135,12 @@ is already there, we won't add it again, right? - + Convert to Via - + Convert Via to Bendpoint @@ -7071,43 +7175,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7122,23 +7226,23 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select locked parts @@ -7297,7 +7401,7 @@ Fritzing still works, but you won't be able to change parts properties. - + Select outdated parts @@ -7472,12 +7576,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,87 +8381,87 @@ Fritzing still works, but you won't be able to change parts properties. - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + Change - - + + Connect - - + + to %1 - + Create and connect wire - + Rotate %2 (%1) @@ -8377,57 +8481,57 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Flip %2 (%1) @@ -8492,81 +8596,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors - + Disconnect all wires from %1 @@ -8587,12 +8691,12 @@ Note: you can also trigger this display by mousing down on the routing status te - + Resize ruler to %1 %2 - + Disconnect all wires from %1 items @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8809,11 +8913,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8934,6 +9033,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_fa.ts b/translations/fritzing_fa.ts index 25f899270..1c0178130 100644 --- a/translations/fritzing_fa.ts +++ b/translations/fritzing_fa.ts @@ -8,47 +8,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -57,210 +57,199 @@ Bryant Mairs, Uleshka Asher, and Daniel Tzschentke. - Special thanks goes out to: - با تشکر فراوان از: + با تشکر فراوان از: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -800,7 +789,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -808,17 +797,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1267,6 +1256,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1293,12 +1346,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1408,7 +1461,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1951,7 +2004,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1967,7 +2020,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1988,7 +2041,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2012,40 +2065,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2085,196 +2145,222 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) - + %1 of %2 nets routed - %n connector(s) still to be routed - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2355,13 +2441,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2382,2089 +2468,2104 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Delete Wire - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Ctrl+Shift+V - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + Raise and Lower - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. - + We strongly recommend that you update these %n parts to the latest version. - + This may result in changes to your sketch, as parts or connectors may be shifted. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Check Loaded Traces - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Show Code - + Show the code (programming) view - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. @@ -4606,7 +4707,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4629,24 +4730,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4657,8 +4758,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4668,152 +4769,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5017,11 +5118,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5069,472 +5170,472 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors - + across %n views. - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6333,96 +6434,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6772,7 +6881,6 @@ shift key swaps scroll axis - Fritzing @@ -6843,12 +6951,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6858,12 +6966,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6888,21 +6996,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7170,18 +7278,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7191,43 +7299,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7242,22 +7350,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7570,12 +7678,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7740,7 +7848,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7764,48 +7872,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8098,17 +8206,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8116,33 +8224,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8274,142 +8382,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8498,12 +8606,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8513,81 +8621,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8661,22 +8769,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8803,11 +8911,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8928,6 +9031,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9330,108 +9438,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_fr.ts b/translations/fritzing_fr.ts index 80c2f06bb..c803ab4dc 100644 --- a/translations/fritzing_fr.ts +++ b/translations/fritzing_fr.ts @@ -33,11 +33,11 @@ Special thanks goes out to: - Remerciements spéciaux à : + Remerciements spéciaux à : Fritzing a test spin. - Fritzing un tour d'essai. + Fritzing un tour d'essai. IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, @@ -45,7 +45,7 @@ Special thanks goes out as well to all the students - Un merci tout spécial aussi à tous les étudiants + Un merci tout spécial aussi à tous les étudiants Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -65,7 +65,7 @@ and alpha testers who were brave enough to give - et aux testeurs alpha qui étaient assez courageux pour faire avec + et aux testeurs alpha qui étaient assez courageux pour faire avec Fritzing is made by: @@ -212,19 +212,23 @@ Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Ukrainian: - and Kjell Morgenstern + Yelyzaveta Chyhryna - Ukrainian: + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - Yelyzaveta Chyhryna + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. @@ -1048,6 +1052,56 @@ Utiliser le fichier ? Régénérer la base de données de composants ... + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + Annuler + + + Upload to Fab + + + + Upload + Télécharger + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + Fritzing + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -2017,7 +2071,7 @@ Continuer ou annuler? directly loading parts - Composants étant chargés directement + Composants étant chargés directement Send selected object(s) back in their layer @@ -2313,7 +2367,7 @@ Do you want to update now? Open Fritzing donation web page - Ouvrir la page Web de donation Fritzing + Ouvrir la page Web de donation Fritzing Tips, Tricks and Shortcuts @@ -3014,7 +3068,7 @@ Nous travaillons à éliminer ce message afin de ne vous laisser choisir que des Donate to Fritzing - Faire un don à Fritzing + Faire un don à Fritzing Undo History @@ -3607,6 +3661,46 @@ Remarque: si vous souhaitez mettre à jour plus tard, il y a des options dans le Display breadboard wires using standard color coding by length + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5173,6 +5267,10 @@ Alt ou la touche %1 = zoom Select a programmer (executable) for %1 Sélectionnez un programmeur (exécutable) pour %1 + + %1 + %1 + ProgramTab @@ -6120,10 +6218,6 @@ Fritzing va continuer à fonctionner, mais vous n'aurez pas la possibilité Unable to find parts git repository HEAD - - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - - The parts folder '%1' may have been damaged (%2). %3 @@ -6160,10 +6254,6 @@ Fritzing va continuer à fonctionner, mais vous n'aurez pas la possibilité Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 - - Error %1 @@ -6249,6 +6339,14 @@ Fritzing va continuer à fonctionner, mais vous n'aurez pas la possibilité Fritzing requires that you make cutouts using a shape 'subtraction' or 'difference' operation in your vector graphics editor. + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -7185,7 +7283,7 @@ Remarque : vous pouvez également déclencher cet affichage en positionnant la s To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Pour afficher différentes propriétés dans l'étiquette d'un composant, pour la faire tourner, ou changer sa typographie, faites un double-clic dessus. + Pour afficher différentes propriétés dans l'étiquette d'un composant, pour la faire tourner, ou changer sa typographie, faites un double-clic dessus. To drag a wire segment (a section of a wire between two bendpoints), drag it with the Alt (Linux: Meta) key down. If you also hold down the shift key, the wire segment will be constrained to horizontal or vertical motion. @@ -7227,6 +7325,10 @@ Remarque : vous pouvez également déclencher cet affichage en positionnant la s When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. Lorsque vous utilisez le service Fab de Fritzing, s'il existe des zones vides du circuit imprimé que vous ne voulez pas remplir de cuivre, utilisez la partie cuivre-bloqueur. Cette partie redimensionnable masquera le remplissage de cuivre dans le rectangle qu'il couvre. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7571,26 +7673,6 @@ Remarque : vous pouvez également déclencher cet affichage en positionnant la s The Fritzing Creator Kit is out of Stock. For Updates please visit the fritzing.blog Le kit de créateur de Fritzing est en rupture de stock. Pour les mises à jour s'il vous plaît visitez le blog fritzing - - Donate - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - Donate and leave a comment. - - - - Donate now - - Unable to reach fritzing.org/projects diff --git a/translations/fritzing_gl.ts b/translations/fritzing_gl.ts index 1ee5e28cc..a3278548e 100644 --- a/translations/fritzing_gl.ts +++ b/translations/fritzing_gl.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1935,7 +1984,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1951,7 +2000,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1982,7 +2031,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2013,24 +2062,25 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Specify a file name - - + + Fritzing (*%1) @@ -2038,45 +2088,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable @@ -2091,43 +2148,68 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2135,7 +2217,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2143,129 +2225,129 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Ctrl+D @@ -2326,13 +2408,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2353,1594 +2435,1599 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Duplicate selection - + &Delete - + Delete selection - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Dump all parts - + Debug dump all parts in this view - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + Show/hide the label for the selected parts - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + &Edit - + &Add to bin... - + &Delete Wire - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Rotate current selection 45 degrees clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Test Connectors - + Connect all connectors to a single test part - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Part - + Raise and Lower - + Ctrl+Shift+V - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View - + &Window - - - + + + + + + &Routing - + Move to bottom layer - + Move to top layer - + Hide part label - + Show part label - + Show part silkscreen - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + + + + Routing + + + + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Show unrouted - + Highlight all unrouted connectors - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Check Loaded Traces - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -3948,7 +4035,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -3956,477 +4043,487 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - - - + + + Ground Fill - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Help - + Delete Ratsnest Line - + Delete Wire - + Delete - + Page Setup - + Sorry, "%1" has not been implemented yet - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Do not autoroute - + Autoroute connections... - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select all trace wires excluded from autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Generating %1 fill... - + ground - + copper - + Remove copper fill - - + + &Wire Color - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4632,62 +4729,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4700,120 +4797,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4849,11 +4946,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4868,12 +4965,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4893,7 +4990,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4940,216 +5037,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5181,12 +5278,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5194,7 +5291,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5202,7 +5299,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5242,67 +5339,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5389,154 +5486,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6299,12 +6396,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6345,86 +6442,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6769,7 +6874,6 @@ shift key swaps scroll axis - Fritzing @@ -6810,12 +6914,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6825,12 +6929,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6850,21 +6954,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7071,12 +7175,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Convert to Via - + Convert Via to Bendpoint @@ -7086,43 +7190,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7137,28 +7241,28 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select outdated parts - + Select locked parts @@ -7471,12 +7575,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,142 +8381,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8503,12 +8607,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8518,81 +8622,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8809,11 +8913,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8934,6 +9033,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_hi.ts b/translations/fritzing_hi.ts index 89d2b3b2f..1bdd30d93 100644 --- a/translations/fritzing_hi.ts +++ b/translations/fritzing_hi.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1935,7 +1984,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1951,7 +2000,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1982,7 +2031,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2013,24 +2062,25 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Specify a file name - - + + Fritzing (*%1) @@ -2038,45 +2088,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable @@ -2091,43 +2148,68 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2135,7 +2217,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2143,129 +2225,129 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Ctrl+D @@ -2326,13 +2408,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2353,1800 +2435,1815 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + &Edit - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Rotate current selection 45 degrees clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + Ctrl+Shift+V - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Open programming window - + Open microcontroller programming window - + Show Grid - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help - - - + + + + + + &Routing - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. + + + Routing + + + + Autoroute connections... - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Select All Wires - + Select all wires - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Check Loaded Traces - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Do you want to update now? - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + &Zoom In - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Show/hide the label for the selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Part - + Raise and Lower - + Align - + &View - + &Window - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Page Setup - + Sorry, "%1" has not been implemented yet - + Shift+Ctrl+A - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -4154,7 +4251,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4162,271 +4259,271 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select all trace wires excluded from autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Generating %1 fill... - + ground - + copper - + Remove copper fill - - + + &Wire Color - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4632,62 +4729,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4700,120 +4797,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4849,11 +4946,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4868,12 +4965,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4893,7 +4990,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4940,216 +5037,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5181,12 +5278,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5194,7 +5291,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5202,7 +5299,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5242,67 +5339,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5389,154 +5486,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6299,12 +6396,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6345,86 +6442,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6769,7 +6874,6 @@ shift key swaps scroll axis - Fritzing @@ -6805,12 +6909,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6820,12 +6924,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6845,21 +6949,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7066,12 +7170,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Convert to Via - + Convert Via to Bendpoint @@ -7081,43 +7185,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7132,28 +7236,28 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select outdated parts - + Select locked parts @@ -7466,12 +7570,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,142 +8381,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8503,12 +8607,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8518,81 +8622,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8809,11 +8913,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8934,6 +9033,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_hu.ts b/translations/fritzing_hu.ts index 694651177..9d00587b2 100644 --- a/translations/fritzing_hu.ts +++ b/translations/fritzing_hu.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -792,7 +777,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -800,17 +785,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1259,6 +1244,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1285,12 +1334,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1400,7 +1449,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1886,7 +1935,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate @@ -1902,7 +1951,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1923,7 +1972,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -1944,14 +1993,14 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - + + Specify a file name - - + + Fritzing (*%1) @@ -1959,93 +2008,100 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) - + Unrouted connections - + There are no unrouted connections in this view. - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2129,134 +2185,160 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2302,7 +2384,7 @@ We're working to avoid this message, and only let you choose between proper - + Cancel @@ -2323,130 +2405,125 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... - + Etchable (SVG)... - + New - - + + File '%1' not found - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O @@ -2466,1962 +2543,1982 @@ We're working to avoid this message, and only let you choose between proper - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + Export the visible area of the current sketch as a JPG image - + Export the visible area of the current sketch as a PNG image - + Export the visible area of the current sketch as a PDF image - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + &Edit - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Lock Part - + Prevent a part from being moved - + Select All Locked Parts - + Select all parts that can't be moved - + Straighten Curve - + Straighten the curve of the selected wire - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Delete - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + Rotate current selection 45 degrees clockwise - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - - + + Select outdated parts - - + + Update selected parts - + Actual (real world physical) size - + 100% Size - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Tips, Tricks and Shortcuts - + Report a bug... - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + as Image - + for Production - - - + + + + + + &Routing - - - + + + Ground Fill - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + &Create trace from ratsnest - + Ctrl+Shift+V - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help + + + Routing + + + + Autoroute connections... - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Check Loaded Traces - + Copper Top and Copper Bottom layers are both active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Do you want to update now? - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting Progress... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + Update %1 part(s) - + &Zoom In - + Shell launch %1 - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Convert - + Read-only - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Show/hide the label for the selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Shift+Ctrl+0 - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Test Connectors - + Connect all connectors to a single test part - + Check whether a newer version of Fritzing is available for download - + &About - + Display some handy Fritzing tips and tricks - + &About Qt - + Show Qt's about box - - + + Report a but you've found in Fritzing - + &File - + &Export - + &Part - + Raise and Lower - + Align - + &View - + &Window - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Page Setup - + Sorry, "%1" has not been implemented yet - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + jumpers - + copperfill - + vias - + Generating %1 fill... - + ground - + copper - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. - + We strongly recommend that you update these %n parts to the latest version. - + This may result in changes to your sketch, as parts or connectors may be shifted. - + unable to find replacement for %1. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - + Select All Traces - + Select all trace wires - + Select all trace wires excluded from autorouting - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Remove copper fill - + Launch %1... - + Autorouting... - + Remove Bendpoint - - + + &Wire Color @@ -4598,7 +4695,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4624,62 +4721,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4692,120 +4789,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4841,11 +4938,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4860,12 +4957,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4885,7 +4982,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4932,216 +5029,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5173,26 +5270,26 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors - + across %n views. - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5232,67 +5329,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5379,154 +5476,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6299,12 +6396,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6335,86 +6432,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6770,7 +6875,6 @@ shift key swaps scroll axis - Fritzing @@ -6806,21 +6910,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -6981,12 +7085,12 @@ is already there, we won't add it again, right? - + Convert to Via - + Convert Via to Bendpoint @@ -7006,12 +7110,12 @@ is already there, we won't add it again, right? - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -7021,12 +7125,12 @@ is already there, we won't add it again, right? - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -7061,43 +7165,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7112,23 +7216,23 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select locked parts @@ -7287,7 +7391,7 @@ Fritzing still works, but you won't be able to change parts properties. - + Select outdated parts @@ -7462,12 +7566,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7732,7 +7836,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7756,48 +7860,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8090,17 +8194,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8108,33 +8212,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8281,115 +8385,115 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace @@ -8413,87 +8517,87 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors - - + + Connect - - + + to %1 - + Create and connect wire - + Rotate %2 (%1) @@ -8508,28 +8612,28 @@ Note: you can also trigger this display by mousing down on the routing status te - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 @@ -8539,7 +8643,7 @@ Note: you can also trigger this display by mousing down on the routing status te - + Flip %2 (%1) @@ -8653,22 +8757,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8795,11 +8899,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8920,6 +9019,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9322,108 +9426,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_id.ts b/translations/fritzing_id.ts index a94edf1a6..6932aca85 100644 --- a/translations/fritzing_id.ts +++ b/translations/fritzing_id.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -792,7 +777,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -800,17 +785,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1259,6 +1244,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1285,12 +1334,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1400,7 +1449,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size ukuran lubang @@ -1933,7 +1982,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate Putar @@ -1949,7 +1998,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1980,7 +2029,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note Tambahkan catatan @@ -2011,24 +2060,25 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Specify a file name Tentukan nama file - - + + Fritzing (*%1) Fritzing (*%1) @@ -2036,45 +2086,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable @@ -2089,179 +2146,204 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) - + %1 of %2 nets routed - %n connector(s) still to be routed - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Ctrl+D Ctrl+D @@ -2322,13 +2404,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2349,2079 +2431,2094 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + &Edit - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Rotate current selection 45 degrees clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Part - + Raise and Lower - + Align - + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom bawah - + top atas - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet - + Shift+Ctrl+A - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + There are %n outdated part(s) in this sketch. - + We strongly recommend that you update these %n parts to the latest version. - + This may result in changes to your sketch, as parts or connectors may be shifted. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + &Create trace from ratsnest - + Ctrl+Shift+V - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help + + + Routing + + + + Autoroute connections... - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Shift+Ctrl+D - + Check Loaded Traces - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK Oke - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. @@ -4598,7 +4695,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4624,62 +4721,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4692,120 +4789,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4841,11 +4938,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4860,12 +4957,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4885,7 +4982,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4932,216 +5029,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5173,26 +5270,26 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors - + across %n views. - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5232,67 +5329,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5379,154 +5476,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save Simpan - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" Simpan "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. Perubahan Anda akan hilang jika Anda tidak menyimpannya. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6289,12 +6386,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6335,86 +6432,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6759,7 +6864,6 @@ shift key swaps scroll axis - Fritzing Fritzing @@ -6810,12 +6914,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6825,12 +6929,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6860,21 +6964,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7081,12 +7185,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Convert to Via - + Convert Via to Bendpoint @@ -7096,43 +7200,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7147,28 +7251,28 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select outdated parts - + Select locked parts @@ -7481,12 +7585,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7732,7 +7836,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7756,48 +7860,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8090,17 +8194,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width lebar - + &cm &cm - + &in &in @@ -8108,33 +8212,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8266,142 +8370,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8490,12 +8594,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8505,81 +8609,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8653,22 +8757,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage tegangan - + label label - + Net labels - + Net labels cannot be blank @@ -8795,11 +8899,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8920,6 +9019,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9322,93 +9426,68 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found Tidak ada sketsa terbaru - + Unable to reach blog.fritzing.org Tidak dapat menjangkau blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9417,17 +9496,17 @@ Note: you can also trigger this display by mousing down on the routing status te Tidak dapat menjangkau fritzing.org/projects - + Tip of the Day: Saran Hari Ini: - + All Tips Semua Saran - + Next Tip Saran Selanjutnya diff --git a/translations/fritzing_it.ts b/translations/fritzing_it.ts index 3f7f2bdb1..200939bd7 100644 --- a/translations/fritzing_it.ts +++ b/translations/fritzing_it.ts @@ -8,72 +8,67 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 sul codice e CreativeCommons:BY-SA su tutto il resto - + Fritzing is made by: Fritzing è fatto da: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. @@ -82,42 +77,27 @@ to Gianluca Urgese and 5volts for the Italian translation, - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - - - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. @@ -126,142 +106,147 @@ Versione %1.%2.%3 <small>(%4%5 %6) %7 [Qt %8]</small> - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - + <b>2007-%1 Fritzing</b> - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Thanks for the translations go out to: - + Bulgarian: - + Chinese (Simplified): - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Czech: - + Dutch: - + French: - + Greek: - + Italian: - + Japanese: - + Hiroshi Suzuki - + Korean: - + Jinbuhm Kim - + Portuguese (European): - + Portuguese (Brazilian): - + Slovak: - + Spanish: - + Ukrainian: - + Yelyzaveta Chyhryna - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Russian: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Turkish: @@ -805,7 +790,7 @@ A custom board svg typically has one or two silkscreen layers and one board laye Capacitor - + Select from the dropdown, or type in a %1 value @@ -813,17 +798,17 @@ A custom board svg typically has one or two silkscreen layers and one board laye ConnectorItem - + Add bendpoint Aggiungi gomito - + Remove bendpoint Rimuovi gomito - + Straighten curve Raddrizza curva @@ -1272,6 +1257,70 @@ A custom board svg typically has one or two silkscreen layers and one board laye + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Annulla + + + + Upload to Fab + + + + + Upload + Carica + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1298,12 +1347,12 @@ A custom board svg typically has one or two silkscreen layers and one board laye FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1419,7 +1468,7 @@ E' anche possibile scegliere un connettore come seme per il piano massa con Hole - + hole size dimensione foro @@ -1906,7 +1955,7 @@ E' anche possibile scegliere un connettore come seme per il piano massa con MainWindow - + Rotate Ruota @@ -1917,13 +1966,13 @@ E' anche possibile scegliere un connettore come seme per il piano massa con - + Autoroute Autoinstrada - + Add a note Aggiungi nota @@ -1939,14 +1988,14 @@ E' anche possibile scegliere un connettore come seme per il piano massa con Salva %1 - - + + Specify a file name Specifica un nome per il file - - + + Fritzing (*%1) @@ -1954,71 +2003,103 @@ E' anche possibile scegliere un connettore come seme per il piano massa con - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 to shareable sketch Impossibile esportare %1 come sketch condivisibile - + Fritzing Part (*%1) Componente di Fritzing (*%1) - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Do you want to keep the imported parts? Vuoi mantenere i componenti importati? - + No connections to route Nessuna connessione da instradare - + Routing completed Instradamento completato - + %1 of %2 nets routed - %n connector(s) still to be routed %1 di %2 reti instradate - %n connettore(i) ancora da instradare @@ -2026,25 +2107,25 @@ E' anche possibile scegliere un connettore come seme per il piano massa con - + %1 - [%2] %1 - [%2] - - + + Sorry! Spiacente! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Nussun componente con queste caratteristiche. Stiamo lavorando per evitare questo messaggio, quindi ti chiediamo di scegliere tra le proprietà esistenti - + Swapped %1 with module %2 Invertito %1 con il modulo %2 @@ -2100,739 +2181,738 @@ Stiamo lavorando per evitare questo messaggio, quindi ti chiediamo di scegliere Esportazione... - + Unable to save %1 Impossibile salvare %1 - + Cannot print to %1 Non posso stampare su %1 - + Cannot write file %1: %2. Non posso scrivere il file %1: %2. - + Saved '%1' Salvato '%1' - + Select a Fritzing File to Open Seleziona un File di Fritzing da aprire - + Cannot find file %1. Non riesco a trovare il file %1. - + Cannot read file 1 %1: %2. Non riesco a leggere il file 1 %1: %2. - directly loading parts - caricamento diretto componenti + caricamento diretto componenti - + loading %1 (model) carica %1 (modello) - + loading %1 (breadboard) carica %1 (breadboard) - + loading %1 (pcb) carica %1 (pcb) - + loading %1 (schematic) carica %1 (schema) - + Create a new sketch Crea nuovo sketch - + &Open... &Apri... - + Ctrl+O - + &Open Recent Files &Apri File Recenti - + &Open Example &Apri Esempio - + &Save &Salva - + Ctrl+S - - + + Save the current sketch Salva lo sketch corrente - + &Save As... &Salva come... - + Shift+Ctrl+S - + Export the current sketch to Eagle CAD Esporta lo sketch corrente come file CAD di Eagle - + &Print... &Stampa... - + Ctrl+P - + Print the current view Stampa la vista corrente - + &Quit &Esci - + Ctrl+Q - + Quit the application Esci dall'applicazione - + &%1 %2 &%1 %2 - + Undo Annulla - + Redo Ripeti - + &Cut &Taglia - + Cut selection Taglia selezione - + &Copy &Copia - + Copy selection Copia selezione - + &Paste &Incolla - + Paste clipboard contents Incolla contenuto della clipboard - + &Duplicate &Duplica - + Ctrl+D - + Duplicate selection Duplica selezione - + &Delete &Elimina - + Delete selection Elimina selezione - + &Select All &Seleziona Tutto - + Select all elements Seleziona tutti gli elementi - + &Deselect &Deseleziona - + Deselect Deseleziona - - + + Add Note Aggiungi nota - + &Preferences... &Preferenze... - - + + Show the application's about box Mostra la finestra informazionidell'applicazione - + Update InfoView on hover Aggiorna InfoView in sospeso - + Rotate the selected parts by 90 degrees clockwise Ruota i componenti selezionati di 90 gradi in senso orario - + Rotate the selected parts by 180 degrees Ruota i componenti selezionati di 180 gradi - + Rotate current selection 90 degrees counter clockwise Ruota la selezione corrente di 90 gradi in senso anti-orario - + &Flip Horizontal &Ribalta Orizontalmente - + Flip current selection horizontally Ribalta la selezione corrente orizontalmente - + &Flip Vertical &Ribalta Verticalmente - + Flip current selection vertically Ribalta la selezione corrente verticalmente - + Bring to Front Porta in primo piano - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer Porta l'oggetto selezionato in primo piano nel suo livello - + Bring Forward Porta avanti - + Ctrl+] - + Bring selected object(s) forward in their layer Porta l'oggetto selezionato in avanti sul suo livello - + Send Backward Manda indietro - + Ctrl+[ - + Send selected object(s) back in their layer Manda l'oggetto selezionato indietro sul suo livello - + Send to Back Manda dietro - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Manda l'oggetto selezionato dietro sul suo livello - + &Show All Layers &Mostra tutti livelli - + Show all the available layers for the current view Mostra tutti i livelli disponibili per la vista corrente - + &Hide All Layers &Nascondi tutti i livelli - + Hide all the layers of the current view Nascondi tutti i livelli della vista corrente - + &Show part label &Mostra etichetta componente - + &Zoom In &Zoom avanti - + Ctrl++ - + Zoom in Zoom avanti - + Ctrl+= - + &Zoom Out &Zoom indietro - + Ctrl+- - + Zoom out Zoom indietro - + &Fit in Window &Adatta alla Finestra - + Ctrl+0 - + Fit in window Adatta alla Finestra - + &Actual Size &Dimensioni attuali - + Shift+Ctrl+0 - + &Show Breadboard &Mostra Breadboard - + Ctrl+1 - + Show the breadboard view Mostra la vista Breadboard - + &Show Schematic &Mostra Schema - + Ctrl+2 - + Show the schematic view Mostra la vista Schema - + &Show PCB &Mostra PCB - + Ctrl+3 - + Show the PCB view Mostra la vista PCB - + &Minimize &Minimizza - + Ctrl+M - + Minimize current window Minimizza finestra corrente - + Debugger Output Output del Debugger - + Ctrl+? Ctrl+? - + Open Fritzing help Apri aiuto di Fritzing - + Open Fritzing examples Apri esempi Fritzing - + Open Parts Reference Apri referenze componenti - + First Time Help Aiuto prima volta - + Check for updates... Controlla aggiornamenti... - + Check whether a newer version of Fritzing is available for download Controlla se è disponibile una nuova versione di Fritzing per il download - + &About &Informazioni - + &About Qt &Informzaioni su QT - + Show Qt's about box Mostra finestra informazioni di Qt - - + + Report a but you've found in Fritzing Segnala un bug che hai trovato in Fritzing - + &File &File - + &Export &Esporta - + &Edit &Modifica - + &Export... &Esporta... - + Export selected part Esporta componenti selezionati - + Online Tutorials Tutorial Online - + Online Projects Gallery Galleria Progetti Online - + Online Parts Reference Referimento componenti Online - + &Part &Componenti - + &View &Visualizza - + &Window &Finestra - + &Help &Aiuto - + Page Setup Impostazioni pagina - + Sorry, "%1" has not been implemented yet Spiacente, "%1" non è ancora stato implementato - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Questa funzionalità presto permetterà di esportare i tuoi file di Fritzing nel formato EAGLE. Se vorresti più funzionalita di esportazione per il tuo EDA preferito, faccelo sapere o contribuisci. - + Export Bill of Materials (BoM)... Esporta Lista dei materiali (BoM)... - + Select All Traces Seleziona Tutte le Tracce - + Select all trace wires Seleziona tutte le tracce delle piste - + Select all trace wires excluded from autorouting Seleziona tutte le tracce escluse dall'autoinstradamento - + Autorouting... Autoinstradamento... - + Raise and Lower Sollevare e Abbassare - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - - + + Add Bendpoint Aggiungi Gomito - + Add a bendpoint to the selected wire - + Remove Bendpoint Rimuovi Gomito - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting - + Export the visible area of the current sketch as a JPG image - + Export the visible area of the current sketch as a PNG image - + Export the visible area of the current sketch as a PDF image - + Export the current sketch as an SVG image - + Save a Bill of Materials (BoM)/Shopping List as text - + Export SVG... - + Unable to export %1 as shareable @@ -2843,53 +2923,53 @@ Stiamo lavorando per evitare questo messaggio, quindi ti chiediamo di scegliere - + Cancel Annulla - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Add to bin... &Aggiungi al cesto... - + Add selected part to bin - + Tidy Wires - + Tidy selected wires - - + + &Wire Color - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Display some handy Fritzing tips and tricks @@ -2899,187 +2979,187 @@ Stiamo lavorando per evitare questo messaggio, quindi ti chiediamo di scegliere Condividi - + Share online... Condividi online... - + Post a project to the Fritzing website - + List of parts (&Bill of Materials)... - + XML Netlist... - + Save a netlist in XML format - + Export Netlist... - - + + Copper Fill Piano Rame - + Remove Copper Fill Rimuovi Piano Rame - + Remove the copper fill - + Remove copper fill - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - - + + Select outdated parts Seleziona parti obsolete - - + + Update selected parts Aggiorna parti selezionate - + No outdated parts found. All your parts are up-to-date. - + Outdated parts Parti obsolete - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + Update %1 part(s) - + No exactly matching part found; Fritzing chose the closest match. - + Shell launch %1 - + Launch %1... - + All - + throw test exception - + throw a fake exception to see what happens - + Select All Jumpers Seleziona Tutti i Jumpers - + New Nuovo - + Ctrl+N - + Tips, Tricks and Shortcuts Trucchi, Suggerimenti e Scorciatoie - + Align to Grid Allinea alla Griglia - + Align items to grid when dragging - + Open programming window - + Open microcontroller programming window - + Report a bug... Segnala un bug... - + Enable debugging log Abilita log debugging @@ -3099,97 +3179,97 @@ Please check all views for potential side-effects. Livello Superiore - + Backing up '%1' - + Rotate current selection 45 degrees counter clockwise era tradotto "Ruota la selezione corrente di 90 gradi in senso anti-orario {45 ?}" ?!? Ruota la selezione corrente di 45 gradi in senso anti-orario - + Rotate current selection 45 degrees clockwise Ruota la selezione corrente di 45 gradi in senso orario - + Actual (real world physical) size Misura effettiva (fisica mondo reale) - + 100% Size Dimensione 100% - + 100% (pixel) size - - + + Set both copper layers clickable Rendi entrambi i livelli rame cliccabili - - + + Set copper top layer clickable Rendi il livello rame superiore cliccabile - - + + Set copper bottom layer clickable Rendi il livello rame inferiore cliccabile - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting Progress... - - + + File '%1' not found - + Paste in Place Incolla sul Posto - + Paste clipboard contents in place - + Delete Cancella - + Routing completed using %n jumper part(s) @@ -3197,79 +3277,73 @@ Please check all views for potential side-effects. - + Delete Ratsnest Line - + Delete Wire - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Lock Part Blocca Parte - + Prevent a part from being moved evita che un componente sia spostato - + Select All Locked Parts Seleziona Tutte le Parti Bloccate - + Select all parts that can't be moved - + Show Parts Bin Icon View Mostra Cesto Parti in Vista a Icone - + Display the parts bin in an icon view - + Show Parts Bin List View Mostra Cesto Parti in Vista a Elenco - + Display the parts bin in a list view - Donate to Fritzing - Dona a Fritzing - - - - Open Fritzing donation web page - + Dona a Fritzing @@ -3277,72 +3351,72 @@ Please check all views for potential side-effects. Esporta per PCB - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... Fotoincisione (PDF)... - + Etchable (SVG)... Fotoincisione (SVG)... - + as Image come Immagine - + for Production per la Produuzione - + loading %1 caricamento %1 - + Loading... Caricamento... - + new sketch nuovo sketch @@ -3352,87 +3426,87 @@ Please check all views for potential side-effects. - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Unable to save BOM file, but the text is on the clipboard. - + Do not autoroute Non autoinstradare - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Select all jumper item parts - + Select All Vias Seleziona tutte le Via - + Select all via parts - + Shift+Ctrl+D - + Order a PCB... Ordina un PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Straighten Curve Rettifica Curva - + Straighten the curve of the selected wire Raddrizza la cuva del filo selezionato - + Select All CopperFill Seleziona Tutti i Piani Rame - + Select all copper fill items - + unable to find replacement for %1. @@ -3480,54 +3554,54 @@ Please check all views for potential side-effects. - + Sketch exported to Gerber - + Shift+Ctrl+A - + Shift+Ctrl+3 - + Shift+Ctrl+2 - + Shift+Ctrl+1 - - - + + + Ground Fill Piano Massa - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. @@ -3537,229 +3611,232 @@ Please check all views for potential side-effects. - + Convert Converti - + Read-only - - - + + + + + + &Routing &Instradamento - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Select All Wires Seleziona Tutti i Fili - + Select all wires - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Choose Ground Fill Seed(s)... Scegli Seme/i Piano Massa... - + Set Ground Fill Seed Imposta Seme Piano Massa - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds Cancella Seme Piano Massa - + Clear ground fill seeds--enable copper fill only. - + Generating %1 fill... Generazione piano %1... - + ground massa - + copper rame - + Show Grid Mostra Griglia - + Show the grid Mostra la griglia - + Actual Size Dimensione Effettiva - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Select All "Don't Autoroute" Traces Seleziona Tutte le Tracce "Non Autoinstradare" - + Select All Autoroutable Traces Seleziona Tutte le Tracce Autoinstradabili - + Select all trace wires that can be changed during autorouting - + Change to single layer pcb - + Change to two layer pcb - + Change image to %2 - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sticky Adesivo - + If a "sticky" part is moved, parts on top of it are also moved Se un componente "adesivo"è spostato, si spostano anche i componenti soprastanti - + Set Grid Size... Imposta Misura Griglia... - + Set the size of the grid in this view - + Set Background Color... Imposta Colore Sfondo... - + Set the background color of this view - + jumpers - + copperfill - + vias - + OK OK - + Set the grid size for %1. Imposta la dimensione della griglia per la %1. - + Grid Size: Misura Griglia: - + in - + mm - + Restore Default Ripristina Predefinito - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) @@ -3774,84 +3851,94 @@ Please check all views for potential side-effects. - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + Convert Bendpoint to Via Converti Gomito in Via - + Convert the bendpoint to a via Converte il gomito in una via - + Convert Via to Bendpoint Converti Via in Gomito - + Convert the via to a bendpoint Converte la via in un gomito - + Revert? Ripristino? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3860,52 +3947,52 @@ Go ahead and revert? Procedere e ricaricare il file come salvato sul disco? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert Ripristina - + Reload the sketch Ricarica lo sketch - + Check Loaded Traces - + Unrouted connections - + There are no unrouted connections in this view. - + Edit (new parts editor) Modifica (editor parti nuove) - + Open the new parts editor on an existing part - + Show unrouted Mostra non instradati - + Highlight all unrouted connectors @@ -3945,163 +4032,164 @@ Procedere e ricaricare il file come salvato sul disco? - + &Delete Wire &Cancella Filo - + Parts Editor Help Aiuto Editor Parti - + Display Parts Editor help in a browser - + Design Rules Check (DRC) - + DRC Progress... - + Highlights any parts that are too close together for safe board production - + Autoroute connections... - + Show/hide the label for the selected parts - - + + Hide part silkscreen Nascondi impronta componente - + Hide/show the silkscreen layer for only this part - + Hide part label Nascondi etichetta parte - + Show part label Mostra etichetta parte - + Show part silkscreen Mostra impronta componente - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Ctrl+4 - + Code Codice - + Show Code Mostra Codice - + Show the code (programming) view - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - + Find part in sketch... Trova parte nello schema... - + Search for parts in a sketch by matching text - + Text will match part label, description, title, etc. Enter text to search for: - + Search Cerca - + No parts matched search term '%1'. - + + Unable to load part from '%1' - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + SPICE Netlist... - + Save a netlist in SPICE format @@ -4116,27 +4204,27 @@ Procedere e ricaricare il file come salvato sul disco? - + Unable to open shareable part '%1': %2 - + Export SPICE Netlist... - + Set Ground Fill Keepout... Imposta Distanza Piano Massa... - + Set the minimum distance between ground fill and traces or connectors - + Enter Text @@ -4151,151 +4239,168 @@ Procedere e ricaricare il file come salvato sul disco? Vedi da Sotto - - + + View from below Vedi da sotto - - + + View the PCB from the bottom layers upwards Guarda il circuito dal livello di sotto in su - + View from above Vedi da sopra - + View the PCB from the top layers downwards Guarda il circuito dal livello di sopra in giù - + Delete Minus Cancella (non le piste) - + Delete selection without attached wires Cancella la selezione ma non le piste connesse - + Delete Wire up to bendpoints Cancella Filo fino ai gomiti - + Move to bottom layer Muovi al livello di sotto - + Move to top layer Muovi al livello di sopra - + Align Left Allinea a Sinsistra - + Align selected items at the left - + Align Horizontal Center Allinea al Centro Orizzontale - + Align selected items at the horizontal center - + Align Right Allinea a Destra - + Align selected items at the right - + Align Top Allinea Su - + Align selected items at the top - + Align Vertical Center Allinea al Centro Verticale - + Align selected items at the vertical center - + Align Bottom Allinea Giù - + Align selected items at the bottom - + + Visit fritzing.org + + + + + fritzing.org + + + + Align Allinea - + top and bottom sopra e sotto - + bottom sotto - + top sopra - + Ground Fill (%1) Piano Massa (%1) - + Copper Fill (%1) Piano Rame (%1) - + + + + Routing + + + + Do you want to update now? - + There are %n outdated part(s) in this sketch. @@ -4313,49 +4418,49 @@ Do you want to update now? Fabbrica - + Welcome Benvenuto - + Dump all parts - + Debug dump all parts in this view - + Ctrl+5 - + &Show Welcome Mostra B&envenuto - + Show the welcome view - + Display First Time Help - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + We strongly recommend that you update these %n parts to the latest version. @@ -4363,130 +4468,130 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + %1 background sfondo %1 - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Test Connectors - + Connect all connectors to a single test part - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Ctrl+Shift+V - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (larghezza, altezza)=(%3, %4) %5 - + Rotate 45° Clockwise Ruota 45° Orario - + Rotate 90° Clockwise Ruota 90° Orario - + Rotate 180° Ruota 180° - + Rotate 90° Counter Clockwise Ruota 90° Antiorario - + Rotate 45° Counter Clockwise Ruota 45° Antiorario - + Regenerate parts database ... Rigenera database delle parti... - + Regenerate the parts database (should only be used if your parts database is broken) - + Fritzing uncompressed (*%1) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length @@ -4630,7 +4735,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4651,70 +4756,70 @@ Reason: %2 (errcode %3) Click questo connettore per trascinare fuori una nuova traccia. - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. @@ -4724,34 +4829,34 @@ Reason: %2 (errcode %3) - + Please designate one or more ground fill seeds before doing a ground fill. - + Clear ground fill seeds - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. @@ -4762,44 +4867,44 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen Mostra impronta componente - + Hide part silkscreen Nascondi impronta componente - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Enter Keepout Inserisci Distanziamento - + Keepout is in mils (.001 inches). @@ -4808,13 +4913,13 @@ Reason: %2 (errcode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Nota che a causa dell'aliasing, le distanze sotto i 2 mills possono essere troppo ridotte - + so you may want to increase the keepout value by that much. @@ -4823,7 +4928,7 @@ Reason: %2 (errcode %3) - + 10 mils is a good default choice. @@ -4832,18 +4937,18 @@ Reason: %2 (errcode %3) - + Enter keepout value: Inserisci il valore di distanziamento: - - + + Fritzing Fab Quote - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. @@ -4879,71 +4984,71 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor Editor Componenti - + Show Icon Mostra Icona - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors Mostra Connettori - + Ctrl+6 - + Change %1 to '%2' - + Change tags - + Change properties - + Change description - + Change connector %1 @@ -4980,122 +5085,122 @@ Reason: %2 (errcode %3) - + Icon View Vista Icona - + Metadata View - + Connectors View - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image Apri Immagine - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - - + + + SVG problem - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. Non ci sono livelli rame definiti in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Vedi <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">questa spiegazione</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5105,49 +5210,49 @@ Reason: %2 (errcode %3) &File - + Unable to load image file '%1': %2 - + Sketch Change Warning Avvertenza Cambio Sketch - + The open sketch '%1' uses the part you are editing. Lo sketch aperto '%1' usa il componente che stai editando. - + Saving this part will make a change to the sketch that cannot be undone. Salvare questo componente causerà delle modifiche non annullabili allo sketch. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? @@ -5156,57 +5261,57 @@ Go ahead and save? Andare avanti e salvare? - + Save Salva - + Cancel Annulla - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" Salva "%1" - + Do you want to save the changes you made in the part "%1"? Vuoi salvare le modifiche che hai fatto al componente "%1"? - + Your changes will be lost if you don't save them. I tuoi cambiamenti andranno perduti se non li salvi. - + untitled part - + Add connector Aggiungi connettore - + Add %1 connectors @@ -5216,12 +5321,12 @@ Andare avanti e salvare? - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -5256,89 +5361,89 @@ Andare avanti e salvare? - - + + Fritzing (New) Parts Editor - + Show Metadata Mostra Metadati - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + Remove internal connection from '%1' - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -5370,7 +5475,7 @@ Andare avanti e salvare? - + This part has %n unassigned connectors @@ -5378,7 +5483,7 @@ Andare avanti e salvare? - + across %n views. @@ -5386,7 +5491,7 @@ Andare avanti e salvare? - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5426,22 +5531,22 @@ Andare avanti e salvare? - + Make only this view visible Rendi visibile solo questa vista - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image @@ -5451,27 +5556,27 @@ Andare avanti e salvare? &Esporta - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -5533,7 +5638,7 @@ Andare avanti e salvare? - + Unable to load image file '%1' @@ -5543,17 +5648,17 @@ Andare avanti e salvare? Inspector - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Filename prefix @@ -5568,7 +5673,7 @@ Andare avanti e salvare? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> @@ -6333,17 +6438,25 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Connected Highlight Evidenziatura Connessi - + Unconnected Highlight Evidenziatura Disonnessi @@ -6353,12 +6466,12 @@ Note: this warning will not be repeated during this session. Comportamento Rotella Mouse - + Command - + Control @@ -6383,14 +6496,14 @@ Note: this warning will not be repeated during this session. minuti - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6402,27 +6515,27 @@ shift key swaps scroll axis Generale - + Curvy vs. straight wires Fili curvi o rettilinei - + Clear Settings Cancella Impostazioni - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs Fili e piste curvi @@ -6432,32 +6545,32 @@ shift key swaps scroll axis Vista Codice - + Platform Support Supporto Piattaforme - + <b>%1</b> - + Location: Posizione: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Devi avere <a href='%1'>%2</a> (versione %3 o più nuova) installata. - + Select a programmer (executable) for %1 @@ -6808,7 +6921,6 @@ shift key swaps scroll axis - Fritzing @@ -6824,16 +6936,16 @@ shift key swaps scroll axis Modifica link - - - + + + Part Componente - - - + + + Wire Filo @@ -6900,18 +7012,18 @@ shift key swaps scroll axis Vista PCB - + Trace wires Traccia - + Ratsnest wires Nido di topo - - + + Select all %1 Seleziona tutto %1 @@ -6946,28 +7058,28 @@ Fritzing continuerà a funzionare, ma non sarà possibile cambiare le proprietà Vista schema - + %1 %2 %3 - + %1 Layer Livello %1 - - + + Bring forward Porta avanti - + Send backward Manda indietro - + Bring to front Porta in primo piano @@ -7096,7 +7208,7 @@ is already there, we won't add it again, right? - + Select outdated parts Seleziona parti obsolete @@ -7241,12 +7353,12 @@ is already there, we won't add it again, right? - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7358,12 +7470,12 @@ is already there, we won't add it again, right? - + Error reading file %1: %2. - + Select locked parts @@ -7413,12 +7525,12 @@ is already there, we won't add it again, right? - + %1 %2,%3 %4 - + Change leg of %1,%2 @@ -7559,17 +7671,17 @@ is already there, we won't add it again, right? - + Set Grid Size Imposta Misura Griglia - + There is no undo for this action, and no further warning!!!! - + Clear Settings Cancella Impostazioni @@ -7589,12 +7701,12 @@ is already there, we won't add it again, right? - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -7604,12 +7716,12 @@ is already there, we won't add it again, right? - + Convert to Via Converti in Via - + Convert Via to Bendpoint Converti Via in Gomito @@ -7775,24 +7887,24 @@ is already there, we won't add it again, right? - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7816,33 +7928,33 @@ is already there, we won't add it again, right? - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 @@ -8141,17 +8253,17 @@ is already there, we won't add it again, right? Ruler - + width larghezza - + &cm - + &in @@ -8159,33 +8271,33 @@ is already there, we won't add it again, right? S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8317,82 +8429,82 @@ is already there, we won't add it again, right? caricamento completato - + %1 %2 - + %1 %2 items %1 %2 elementi - + Select All Seleziona Tutto - + Deselect Deseleziona - + Add %1 Aggiungi %1 - + Selection Selezione - + Move %2 (%1) Muovi %2 (%1) - + Move %2 items (%1) Muovi %2 elementi (%1) - - + + Select %1 Seleziona %1 - - + + Select %1 items Seleziona %1 elementi - - + + Disconnect Disconnetti - + Change Cambia - - + + Connect Connetti - - + + to %1 a %1 - + Create and connect wire Crea e connetti filo @@ -8447,7 +8559,7 @@ is already there, we won't add it again, right? Note ridimensione - + Rotate %2 (%1) Ruota %2 (%1) @@ -8472,93 +8584,93 @@ is already there, we won't add it again, right? - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change Resistance from %1 to %2 - + Change image from %1 to %2 - - + + Change %1 from %2 to %3 - + from %1 - + Move leg of - + Flip %2 (%1) - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + change pin labels - + Delete ratsnest - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Create wire from Ratsnest @@ -8568,40 +8680,40 @@ is already there, we won't add it again, right? - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Deselect all Deseleziona tutto - + Part '%1' not found in sketch - - + + Resize board to %1 %2 Ridimensiona basetta da %1 %2 @@ -8622,17 +8734,17 @@ Note: you can also trigger this display by mousing down on the routing status te - + Resize ruler to %1 %2 - + Add %1 parts - + test connectors @@ -8707,22 +8819,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage voltaggio - + label etichetta - + Net labels - + Net labels cannot be blank @@ -8829,11 +8941,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8949,6 +9056,11 @@ Note: you can also trigger this display by mousing down on the routing status te Can't find your part? Search for it by clicking the magnifier icon in the Parts Bin and type in some keywords + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + A ratsnest line (very thin 'wire') between connections in one view means that those connections are somehow connected in another view. @@ -9381,57 +9493,57 @@ Note: you can also trigger this display by mousing down on the routing status te Negozio - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab è un servizio facile e conveniente per produrre circuiti stampati professionali dai tuoi sketch Fritzing. - + produce your first pcb now >> produci il tuo primo circuito stampato ora >> - + Order your PCB now. Ordina il tuo PCB ora. - + <a href='%1'><img src='%2'/></a> - + Projects Progetti - + Blog - + Fritzing News. Novità Fritzing. - + Fritzing Projects. Progetti Fritzing. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found Nessuno sketch recente - + Unable to reach blog.fritzing.org Impossibile connettersi a blog.fritzing.org @@ -9440,52 +9552,27 @@ Note: you can also trigger this display by mousing down on the routing status te Impossibile connettersi a fritzing.org/projects - + Tip of the Day: Suggerimento del Giorno: - + All Tips Tutti i Suggerimenti - + Next Tip Suggerimento Successivo - - - Fritzing Fab - - - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now + Fritzing Fab - + Unable to reach fritzing.org/projects diff --git a/translations/fritzing_ja.ts b/translations/fritzing_ja.ts index d1a88c6d8..6be04cd6a 100644 --- a/translations/fritzing_ja.ts +++ b/translations/fritzing_ja.ts @@ -35,10 +35,6 @@ Mariano Crowe, Johannes Landstorfer, - - Special thanks goes out to: - - Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -79,18 +75,6 @@ IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - - Special thanks goes out as well to all the students - - - - and alpha testers who were brave enough to give - - - - Fritzing a test spin. - - and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. @@ -192,19 +176,23 @@ - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Ukrainian: - and Kjell Morgenstern + Yelyzaveta Chyhryna - Ukrainian: + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - Yelyzaveta Chyhryna + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. @@ -1024,6 +1012,56 @@ A custom board svg typically has one or two silkscreen layers and one board laye + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + キャンセル + + + Upload to Fab + + + + Upload + + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + Fritzing + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1663,7 +1701,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin directly loading parts - パーツを直接読み込み中 + パーツを直接読み込み中 loading %1 (model) @@ -2580,14 +2618,6 @@ Please check all views for potential side-effects. Display the parts bin in a list view - - Donate to Fritzing - - - - Open Fritzing donation web page - - Export for PCB @@ -3557,6 +3587,46 @@ Note: if you want to update later, there are options under the 'Part' Display breadboard wires using standard color coding by length + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5103,6 +5173,10 @@ shift key swaps scroll axis Select a programmer (executable) for %1 + + %1 + %1 + ProgramTab @@ -6048,10 +6122,6 @@ is already there, we won't add it again, right? Unable to find parts git repository HEAD - - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - - The parts folder '%1' may have been damaged (%2). %3 @@ -6088,10 +6158,6 @@ is already there, we won't add it again, right? Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 - - Error %1 @@ -6177,6 +6243,14 @@ is already there, we won't add it again, right? Fritzing requires that you make cutouts using a shape 'subtraction' or 'difference' operation in your vector graphics editor. + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -6961,10 +7035,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -7133,6 +7203,10 @@ Note: you can also trigger this display by mousing down on the routing status te When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7461,26 +7535,6 @@ Note: you can also trigger this display by mousing down on the routing status te Fritzing Fab - - Donate - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - Donate and leave a comment. - - - - Donate now - - Unable to reach fritzing.org/projects diff --git a/translations/fritzing_ko.ts b/translations/fritzing_ko.ts index b24c95b3e..6ee86b15c 100644 --- a/translations/fritzing_ko.ts +++ b/translations/fritzing_ko.ts @@ -8,47 +8,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -57,209 +57,210 @@ Bryant Mairs, Uleshka Asher, and Daniel Tzschentke. - Special thanks goes out to: - Special thanks goes out to: + Special thanks goes out to: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - Special thanks goes out as well to all the students - Special thanks goes out as well to all the students + Special thanks goes out as well to all the students - and alpha testers who were brave enough to give - and alpha testers who were brave enough to give + and alpha testers who were brave enough to give - Fritzing a test spin. - Fritzing a test spin. + Fritzing a test spin. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -804,7 +805,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -812,17 +813,17 @@ Use the file? ConnectorItem - + Add bendpoint 밴드포인트 추가 - + Straighten curve 곡선을 펴기 - + Remove bendpoint 밴드포인트 제거 @@ -1271,6 +1272,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + 취소 + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1297,12 +1362,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1412,7 +1477,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size 홀 사이즈 @@ -1952,7 +2017,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate 회전 @@ -1968,7 +2033,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute 오토라우터 @@ -1999,7 +2064,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note 노트 추가 @@ -2030,24 +2095,25 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Specify a file name 파일이름을 지정하세요 - - + + Fritzing (*%1) Fritzing (*%1) @@ -2055,45 +2121,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable %1 를 공유하기위해 내보낼 수 없습니다 @@ -2108,180 +2181,205 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) Fritzing 부품 (*%1) - + Unable to export %1 to shareable sketch %1 를 공유가능한 스케치로 내보낼 수 없습니다 - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? 불러온 부품을 유지하시겠습니까? - + No connections to route 라우트할 연결이 없습니다 - + Routing completed 라우팅 완료 - + Routing completed using %n jumper part(s) %n 점퍼 부품을 사용하여 라우팅 완료 - + %1 of %2 nets routed - %n connector(s) still to be routed %2 중 %1 네트가 라우팅 됨 - %n 개의 연결이 라우팅되야 합니다 - + %1 - [%2] %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! 죄송합니다! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist 이러한 특성을 가진 부품이 없습니다. 우리는 이런 메시지를 방지하기 위해 노력하고 있습니다. 존재하는 속성중에서 선택하세요 - + No exactly matching part found; Fritzing chose the closest match. 정확하게 일치하는 부품이 없습니다; Fritzing이 가장 가까운 것을 선택했습니다. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 %1를 %2와 바꿨습니다 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Svg %1 에 %2' 레이어가 없습니다. 사용자 정의 보드 세이프를 만들기 위해서는 다음 링크에 있는 튜토리얼을 참고하세요 <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 불러오기 %1 - + Loading... 불러오기... - + new sketch 새로운 스케치 - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' 백업 '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Ctrl+D Ctrl+D @@ -2346,13 +2444,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel 취소 - + Choose a folder for exporting 내보낼 폴더 선택 @@ -2373,80 +2471,80 @@ We're working to avoid this message, and only let you choose between proper 내보내기... - + Unable to save %1 %1을 저장할 수 없습니다 - + Cannot print to %1 %1을 프린트 할 수 없습니다 - + Cannot write file %1: %2. 파일을 쓸 수 없습니다 %1: %2. - + Saved '%1' 저장 "%1" - + &Save &저장 - + Ctrl+S Ctrl+S - - + + Save the current sketch 현재 스케치 저장 - + &Save As... &다른 이름으로 저장... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... 온라인에 공유... - + Post a project to the Fritzing website Fritzing 웹사이트에 프로젝트 포스팅 - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image 현재 스케치의 보여지는 부분을 JPG 이미지로 내보내기 - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image 현재 스케치의 보여지는 부분을 PNG 이미지로 내보내기 @@ -2459,2004 +2557,2031 @@ We're working to avoid this message, and only let you choose between proper 현재 스케치의 보여지는 부분을 포스트스크립 이미지로 내보내기 - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image 현재 스케치의 보여지는 부분을 PDF 이미지로 내보내기 - + SVG... SVG... - + Export the current sketch as an SVG image 현재 스케치를 SVG 이미지로 내보내기 - + List of parts (&Bill of Materials)... 부품 리스트 (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text BOM/쇼핑리스트를 텍스트로 저장 - + XML Netlist... XML 네트리스트... - + Save a netlist in XML format 네트리스트를 XML 포멧으로 저장 - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... Eagle... - + Export the current sketch to Eagle CAD 현재 스케치를 Eagle CAD로 내보내기 - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production 현재 스케치를 프로페서널 PCB 생산을 위해 Extended Gerber 포맷 (RS-274X)으로 내보내기 - + Etchable (PDF)... Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) 현재 스케치를 DIY PCB 생산(photoresist)을 위해 PDF로 내보내기 - + Etchable (SVG)... Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) 현재 스케치를 DIY PCB 생산(photoresist)을 위해 SVG로 내보내기 - + &Print... &프린트... - + Ctrl+P Ctrl+P - + Print the current view 현재 뷰를 프린트 - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Fritzing 스케치가 EAGEL layout 소프트웨어로 변환됩니다. 다른 EDA 툴로의 변환을 원하시면 알려주시거나 기여하시기 바랍니다. - + Export SVG... SVG 내보내기... - + Export Bill of Materials (BoM)... BOM 내보내기... - + Unable to save BOM file, but the text is on the clipboard. BOM파일을 저장할 수 없지만 텍스트는 클립보드에 있습니다. - + Export SPICE Netlist... - + Export Netlist... 네트리스트 내보내기... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. 스케치에 보드가 아직 없습니다! 거버를 만들기 위해 PCB를 추가하세요. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber 스케치를 거버로 내보내기 - + Select a Fritzing File to Open 열 Fritzing 파일 선택하기 - + Cannot find file %1. %1 파일을 찾을 수 없습니다. - + Cannot read file 1 %1: %2. %1파일을 읽을 수 없습니다: %2. - - + + File '%1' not found 파일 %1이 없습니다 - + Convert - + Read-only - directly loading parts - 직접 부품을 로딩 + 직접 부품을 로딩 - + loading %1 (model) 로딩 %1 (모델) - + loading %1 (breadboard) 로딩 %1 (브레드보드) - + loading %1 (pcb) 로딩 %1 (pcb) - + loading %1 (schematic) 로딩 %1 (스케메틱) - + New 새로만들기 - + Ctrl+N Ctrl+N - + Create a new sketch 새로운 스케치 만들기 - + &Open... &열기... - + Ctrl+O Ctrl+O - + Shell launch %1 셸 실행 %1 - + throw test exception 텍스트 예외를 던지기 - + throw a fake exception to see what happens 무엇이 일어나는 보기위해 페이크 예외를 던지기 - + &Quit &종료 - + Ctrl+Q Ctrl+Q - + Quit the application 어플리케이션 종료 - + &Open Example &예제 열기 - + All 모든 예제 - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files &최근 파일 열기 - + &%1 %2 &%1 %2 - + Undo 실행 취소 - + Redo 다시 실행 - + &Cut &자르기 - + Cut selection 선택 부분 자르기 - + &Copy &복사 - + Copy selection 선택부분 복사 - + &Paste &붙이기 - + Paste clipboard contents 클립보드의 내용 붙이기 - + Paste in Place 복사한 위치에 붙이기 - + Paste clipboard contents in place 클립보드의 내용을 제자리에 붙이기 - + &Duplicate &복제 - + Duplicate selection 선택 부분 복제 - + &Delete &제거하기 - + Delete selection 선택부분 제거 - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + &Select All &전체 선택 - + Select all elements 모든 요소 선택 - + &Deselect &선택 취소 - + Deselect 선택 취소 - - + + Add Note 노트 추가 - + &Preferences... &환경설정... - - + + Show the application's about box 어플림케이션의 어바우트 박스 보기 - + Dump all parts - + Debug dump all parts in this view - + Show/hide the label for the selected parts - + Ctrl+5 Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + &Edit &편집 - + &Add to bin... &저장소에 추가... - + &Delete Wire - + Add selected part to bin 선택된 부품을 저장소에 추가 - + Disconnect All Wires 모든 와이어를 끊기 - + Disconnect all wires connected to this connector 컨넥터에 연결된 모든 와이어를 끊기 - + Update InfoView on hover 인포뷰 업데이트 - + Export Normalized SVG 표준화된 SVG 내보내기 - + Export 1000 dpi SVG of this part in this view 이 뷰에서 이 부품의 1000 dpi SVG파일을 내보내기 - + Export Normalized Flattened SVG 표준화된 Flattened SVG 내보내기 - + Export 1000 dpi Flattened SVG of this part in this view 이 뷰에서 이 부품의 1000 dpi Flattened SVG파일을 내보내기 - + Rotate current selection 45 degrees clockwise 선택 부분을 시계방향 45도 돌리기 - + Rotate the selected parts by 90 degrees clockwise 선택된 부품을 시계방향 90도 돌리기 - + Rotate the selected parts by 180 degrees 선택된 부품을 180도 돌리기 - + Rotate current selection 90 degrees counter clockwise 선택 부분을 반시계방향 90도 돌리기 - + Rotate current selection 45 degrees counter clockwise 선택 부분을 반시계방향 45도 돌리기 - + &Flip Horizontal &수평방향 뒤집기 - + Flip current selection horizontally 선택 부분 수평방향 뒤집기 - + &Flip Vertical &수직방향 뒤집기 - + Flip current selection vertically 선택 부분 수직방향 뒤집기 - + Bring to Front 맨 앞으로 가져오기 - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer 선택된 오브젝트를 맨 앞 레이어로 보내기 - + Bring Forward 앞으로 가져오기 - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer 선택된 오브젝트를 앞 레이어로 보내기 - + Send Backward 뒤로 보내기 - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer 선택된 오브젝트를 뒤 레이어로 보내기 - + Send to Back 뒤로 보내기 - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer 선택된 오브젝트를 뒤 레이어로 보내기 - + Lock Part 부품 고정하기 - + Prevent a part from being moved 부품이 이동하는 것을 방지 - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts 고정된 모든 부품 선택 - + Select all parts that can't be moved 움직일 수 없는 모든 부품 선택 - + &Show All Layers &모든 레이어 보이기 - + Show all the available layers for the current view 현재 뷰에서 가능한 모든 레이어 보이기 - + &Hide All Layers &모든 레이어 숨기기 - + Hide all the layers of the current view 현재 뷰에서 모든 레이어 숨기기 - + &Show part label &부품 라벨 보이기 - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + &Export... &내보내기... - + Export selected part 선택된 부품 내보내기 - - + + Add Bendpoint 밴드포인트 추가 - + Add a bendpoint to the selected wire 선택된 와이어에 밴드포인트 추가 - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve 곡선을 펴기 - + Straighten the curve of the selected wire 선택된 와이어의 곡선을 펴기 - - + + Select outdated parts 오랜된 부품 선택 - - + + Update selected parts 선택된 부품을 갱신 - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window 프로그래밍 윈도우 열기 - + Open microcontroller programming window 마이크로컨트롤러 프로그래밍 윈도우 열기 - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In &확대 - + Ctrl++ Ctrl++ - + Zoom in 확대 - + Ctrl+= Ctrl+= - + &Zoom Out &축소 - + Ctrl+- Ctrl+- - + Zoom out 축소 - + &Fit in Window &윈도우에 맞추기 - + Ctrl+0 Ctrl+0 - + Fit in window 윈도우에 맞추기 - + &Actual Size &실제 사이즈 - + Actual (real world physical) size 실제(실제 물리적) 사이즈 - + 100% Size 100% 사이즈 - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size 100% (픽셀) 사이즈 - + Align to Grid 그리드에 정렬 - + Align items to grid when dragging 아이템을 드레깅할 때 그리드에 정렬 - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + &Show Breadboard &브레드보드 보이기 - + Ctrl+1 Ctrl+1 - + Show the breadboard view 브레드보드 뷰 보이기 - + &Show Schematic &스케메틱 보이기 - + Ctrl+2 Ctrl+2 - + Show the schematic view 스케메틱 뷰 보이기 - + &Show PCB &PCB 보이기 - + Ctrl+3 Ctrl+3 - + Show the PCB view PCB 뷰 보이기 - + Ctrl+4 Ctrl+4 - + Show Parts Bin Icon View 부품 저장소 아이콘 뷰 보이기 - + Display the parts bin in an icon view 부품 저장소를 아이콘 뷰에 보이기 - + Show Parts Bin List View 부품 저장소 리스트 뷰 보이기 - + Display the parts bin in a list view 부품저장소를 리스트 뷰에 보이기 - + &Minimize &축소 - + Ctrl+M Ctrl+M - + Minimize current window 현재 윈도우 줄이기 - + Debugger Output 디버거 출력 - + Online Tutorials 온라인 튜토리얼 - + Ctrl+? Ctrl+? - + Open Fritzing help Fritzing 도움말 열기 - Donate to Fritzing - Fritzing에 기부하기 + Fritzing에 기부하기 - Open Fritzing donation web page - Fritzing 기부 웹페이지 열기 + Fritzing 기부 웹페이지 열기 - + Online Projects Gallery 온라인 프로젝트 갤러리 - + Open Fritzing examples Fritzing 예제 열기 - + Online Parts Reference 온라인 부품 참조 - + Open Parts Reference 부품 참조 열기 - + First Time Help 첫번째 도움말 - + Check for updates... 업데이트 확인... - + Test Connectors - + Connect all connectors to a single test part - + Check whether a newer version of Fritzing is available for download Fritzing의 새로운 버젼이 다운로드 가능한지 확인 - + &About &Fritzing에 관하여 - + Tips, Tricks and Shortcuts 팁, 트릭과 단축키 - + Display some handy Fritzing tips and tricks Fritzing 팁과 트릭을 보이기 - + Display First Time Help - + &About Qt &About Qt - + Show Qt's about box Qt about 박스 보이기 - + Report a bug... 버그 리포트... - - + + Report a but you've found in Fritzing Fritzing에서 발견한 버그 리포트하기 - + Enable debugging log 디버깅 로그 사용 - + Parts Editor Help - + Display Parts Editor help in a browser - + &File &파일 - + &Export &내보내기 - + as Image 이미지로 - + for Production 생산을 위해 - + &Part &부품 - + Raise and Lower 올리기와 내리기 - + Ctrl+Shift+V - + Rotate 45° Clockwise 시계방향 135° 돌리기 {135�?} {45°?} - + Rotate 90° Clockwise 시계방향 135° 돌리기 {135�?} {90°?} - + Rotate 180° 180° 돌리기 {180�?} {180°?} - + Rotate 90° Counter Clockwise 반시계 방향 45° 돌리기 {45�?} {90°?} - + Rotate 45° Counter Clockwise 반시계 방향 45° 돌리기 {45�?} {45°?} - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View &보기 - + &Window &윈도우 - - - + + + + + + &Routing - + Move to bottom layer - + Move to top layer - + Hide part label 부품 라벨 숨기기 - + Show part label - + Show part silkscreen - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + + + + Routing + + + + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Show unrouted - + Highlight all unrouted connectors - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Check Loaded Traces - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. - + We strongly recommend that you update these %n parts to the latest version. - + This may result in changes to your sketch, as parts or connectors may be shifted. - + OK 확인 - + Set the grid size for %1. %1의 그리드 사이즈 설정. - + Grid Size: 그리드 사이즈: - + in in - + mm mm - + Restore Default 기본값 복원 - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - - - + + + Ground Fill 그라운드 필 - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Help &도움말 - + Delete Ratsnest Line Ratsnest를 제거하기 - + Delete Wire 와이어 삭제 - + Delete 삭제 - + Page Setup 페이지 설정 - + Sorry, "%1" has not been implemented yet 죄송합니다, %1 아직 구현되지 않았습니다 - + Shift+Ctrl+A Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - - + + Set both copper layers clickable 양쪽의 copper 레이어가 클릭가능하게 설정 - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable Copper top 레이어를 클릭가능하게 설정 - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable Copper bottom 레이어를 클릭가능하게 설정 - + Shift+Ctrl+1 Shift+Ctrl+1 - + Do not autoroute 오토라우트 하지 않기 - + Autoroute connections... - + When autorouting, do not rip up this trace wire, via, or jumper item 오토라우팅할때 이 트레이스 와이어, 비아, 점퍼아이템을 버리지 마시오 - + Move to other side of the board 보드의 다른 면으로 이동 - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) 선택된 트레이스를 보드의 다른 면으로 이동(주의: 첫번째 트레이스가 이동하며 나머지도 같은 면느오 이동합니다) - + Select All Traces 모든 트레이스 선택 - + Select all trace wires 모든 트레이스 와이어 선택 - + Select All Wires - + Select all wires - + Select All CopperFill 모든 CopperFill 선택 - + Select all copper fill items 모든 Copper fill 아이템 선택 - + Force Update Routing Status and Ratsnests 라우팅 및 Ratsnets 상태를 업데이트 - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) 라우팅 상태와 라우팅 되지 않은 와이어를 계산(오토라우터가 제대로 작동하지 않을 때) - + Select all trace wires excluded from autorouting 오토라우팅되지 않은 모든 트레이스 와이어 선택 - + Select All Jumpers 모든 점퍼 선택 - + Select all jumper item parts 모든 점퍼 아이템 부품 선택 - + Select All Vias 모든 비아 선택 - + Select all via parts 모든 비아 부품 선택 - + Tidy Wires 와이어 정리 - + Tidy selected wires 선택된 와이어 정리 - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Copper 레이어의 빈공간 채우기--채우기는 그라운드에 연결된 모든 트레이스를 포함합니다 - - + + Copper Fill Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND Copper 레이어의 빈공간 채우기--그라운드에 연결된 모든 트레이스를 포함하지 않습니다 - + Remove Copper Fill Copper Fill 제거하기 - + Remove the copper fill Copper Fill 제거하기 - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D Shift+Ctrl+D - + Copper Top and Copper Bottom layers are both active Copper Top과 Copper Bottom 레이어 모두 활성화 - + Copper Top layer is active Copper Top 레이어 활성화 - + Copper Bottom layer is active Copper Bottom 레이어 활성화 - + Order a PCB... PCB 주문... - + Order a PCB created from your sketch--from fabulous Fritzing Fab 당신의 스케치로 부터 생성된 PCB를 Fritzing Fab에 주문하기 - + Autorouting... 오토라우팅... - + Autorouting Progress... 오토라우팅 진행중... - + jumpers - + copperfill - + vias - + Remove Bendpoint 밴드포인트 제거 - + Generating %1 fill... - + ground - + copper - + Remove copper fill Copper fill 제거 - - + + &Wire Color &와이어 색상 - + Launch %1... %1 실행... - + No outdated parts found. All your parts are up-to-date. 오래된 부품을 찾을 수 없습니다. 모든 부품은 최신입니다. - + Outdated parts 오랜된 부품 - + Do you want to update now? - + unable to find replacement for %1. %1을 대체할 것을 찾지 못했습니다. - + Update %1 part(s) %1 부품 업데이트 - + Successfully updated %1 part(s). Please check all views for potential side-effects. 성공적으로 %1 부품이 업데이트 @@ -4636,7 +4761,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4662,62 +4787,62 @@ Reason: %2 (errcode %3) 새로운 트레이스를 끌어내기 위해 이 컨넥터를 클릭하세요. - + Change trace layer 트레이스층을 변경하기 - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. 스케치가 아직 보드를 가지고 있지 않습니다! Copper fill을 사용하기 위해 PCB 를 추가하세요. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4730,120 +4855,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). Fritzing 에러: 보드 svg(1)을 렌더링할 수 없습니다. - - - + + + Fritzing error: unable to render copper svg (1). Fritzing 에러: copper svg(1)을 렌더링할 수 없습니다. - + Fritzing error: unable to write copper fill (1). Fritzing 에러: copper fill을 (1)을 쓸 수 없습니다. - + Fritzing error: unable to write copper fill (2). Fritzing 에러: copper fill을 (2)을 쓸 수 없습니다. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Copper fill을 생성할 수 없습니다--아마도 부품이 PCB위에 있지 않은 것 같습니다. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Copper fill을 생성할 수 없습니다--아마도 부품이 실제 PCB 대신에 다른 부품 또는 와이어 위에 있는 것 같습니다. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4879,11 +5004,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor 부품 편집기 @@ -4898,12 +5023,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4923,7 +5048,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4970,216 +5095,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 Ctrl+4 - + Show the icon view - + Ctrl+5 Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) 이미지 & 풋프린트 파일 (%1 %2 %3 %4 %5);;SVG 파일 (%1);;JPEG 파일 (%2);;PNG 파일 (%3);;gEDA 풋프린트 파일 (%4);;Kicad 모듈 파일 (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 이미지 파일 (%1 %2 %3);;SVG 파일 (%1);;JPEG 파일 (%2);;PNG 파일 (%3)%4%5 - + Open Image 이미지 열기 - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem 변환 문제 - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5211,26 +5336,26 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors - + across %n views. - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5270,67 +5395,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 %1에서 스케메틱이 발견되지 않았습니다 - + schematic part 스케메틱 부품 - + no footprints found in %1 %1에서 풋프린트가 발견되지 않았습니다 - + Relocate connector %1 @@ -5417,154 +5542,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save 저장 - + Cancel 취소 - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" 저장 "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. 저장하지 않으면 변경사항은 사라지게됩니다. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector 컨넥터 추가 - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6328,12 +6453,12 @@ Note: this warning will not be repeated during this session. 마우스 휠 동작 - + Command 명령 - + Control 제어 @@ -6374,57 +6499,65 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (변경을 원한다면 클릭하세요...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 %1를 위해 실행가능한 프로그래머 선택 - + Connected Highlight 연결된 하이라이트 - + Unconnected Highlight 연결되지 않은 하이라이트 - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6433,7 +6566,7 @@ shift 키 스크롤 축을 변경 Alt 또는 %1 키 = 줌 - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6442,22 +6575,22 @@ Alt 또는 %1 키 = 스크롤 shift 키 스크롤축을 변경 - + Curvy vs. straight wires 커브 vs 직선 - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6802,7 +6935,6 @@ shift 키 스크롤축을 변경 - Fritzing Fritzing @@ -6843,12 +6975,12 @@ shift 키 스크롤축을 변경 - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6858,12 +6990,12 @@ shift 키 스크롤축을 변경 - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6883,21 +7015,21 @@ shift 키 스크롤축을 변경 링크 편집 - - - + + + Part 부품 - - - + + + Wire 와이어 - + Set Grid Size @@ -7111,12 +7243,12 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 - + Convert to Via - + Convert Via to Bendpoint @@ -7126,43 +7258,43 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 schem - + Error reading file %1: %2. %1파일을 읽을 수 없습니다:%2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 %1,%2의 레그 변경 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 레이어 - - + + Bring forward 앞으로 가져오기 - + Send backward 뒤로 보내기 - + Bring to front 맨 앞으로 가져오기 @@ -7177,28 +7309,28 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 와이어 연결 - + Trace wires 트에이스 와이어 - + Ratsnest wires 렛츠 네스트 와이어 - - + + Select all %1 %1 전체 선택 - + Select outdated parts 오래된 부품 선택 - + Select locked parts 고정된 부품 선택 @@ -7511,12 +7643,12 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 파일 처리중... - + Copying file %1 파일 복사 %1 - + File %1 already exists: it won't be overwritten 파일 %1 이 이미 존재합니다. 덮어쓸 수 없습니다 @@ -7782,7 +7914,7 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7806,48 +7938,48 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8140,17 +8272,17 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 Ruler - + width - + &cm - + &in @@ -8158,33 +8290,33 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8316,142 +8448,142 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 불러오기 완료 - + Delete ratsnest Ratsnest를 제거하기 - + %1 %2 %1 %2 - + %1 %2 items %1 %2 아이템 - + Select All 전체 선택 - + Deselect 선택 취소 - + Add %1 %1 추가 - + Selection 선택 - + Move %2 (%1) %2 이동 (%1) - + Move %2 items (%1) %2 아이템 이동 (%1) - - + + Select %1 %1 선택 - - + + Select %1 items %1 아이템 선택 - - + + Disconnect 분리 - + from %1 %1 - + Move leg of 다리를 이동 - - + + Connect 연결 - - + + to %1 %1 - + Change leg curvature for %1. %1의 레그 곡률을 변경. - + Change leg bendpoint for %1. %1의 레그 밴드 포인트를 변경. - + Change 취소 - + Create and connect wire 와이어를 생성 및 연결 - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. 다른 레이어로 트레이스를 생성하려고 한 것 같습니다. 이런 상황은 발생해서는 안됩니다. 개발자에게 연락바랍니다. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) %2를 회전 (%1) - + Flip %2 (%1) %2 뒤집기(%1) @@ -8540,12 +8672,12 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 - + Resize ruler to %1 %2 눈금자를 %1 %2로 수정 - + test connectors @@ -8555,81 +8687,81 @@ Fritzing은 여전히 ​​작동하지만 부품 속성을 변경할 수 없 노트 크기 조정 - + Change Resistance from %1 to %2 저항값을 %1 에서 %2로 변경 - - + + Change %1 from %2 to %3 %1을 %2 에서 %3으로 변경 - - + + Resize board to %1 %2 보드 사이즈를 %1 %2로 변경 - + Create wire from Ratsnest - + Disconnect all wires from %1 %1의 모든 와이어를 끊기 - + Disconnect all wires from %1 items %1 아이템들의 모든 와이어를 끊기 - + Change image from %1 to %2 이미지를 %1 에서 %2로 변경 - + change pin labels 핀 라벨 변경 - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8703,22 +8835,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage 전원 - + label 라벨 - + Net labels - + Net labels cannot be blank @@ -8845,11 +8977,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8970,6 +9097,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9372,108 +9504,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_mk.ts b/translations/fritzing_mk.ts index 7b5c953ba..149200246 100644 --- a/translations/fritzing_mk.ts +++ b/translations/fritzing_mk.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -794,7 +779,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -802,17 +787,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1261,6 +1246,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1287,12 +1336,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1402,7 +1451,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1952,7 +2001,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1968,7 +2017,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -2004,7 +2053,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2028,40 +2077,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2081,59 +2137,85 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2142,7 +2224,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2151,130 +2233,130 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2355,13 +2437,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2382,1969 +2464,1974 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + Delete Minus - + Delete selection without attached wires - + &Delete Wire - + Delete Wire up to bendpoints - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Ctrl+Shift+V - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+1 - + Ctrl+2 - + Ctrl+3 - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Show the breadboard view - + &Show Schematic - + Show the schematic view - + &Show PCB - + Show the PCB view - + Show Code - + Show the code (programming) view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + First Time Help - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + Raise and Lower - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Check Loaded Traces - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + There are %n outdated part(s) in this sketch. @@ -4353,7 +4440,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4362,113 +4449,123 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. @@ -4614,7 +4711,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4637,24 +4734,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4665,8 +4762,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4676,152 +4773,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5025,11 +5122,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5077,453 +5174,453 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors @@ -5532,7 +5629,7 @@ Go ahead and save? - + across %n views. @@ -5541,12 +5638,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6345,96 +6442,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6789,7 +6894,6 @@ shift key swaps scroll axis - Fritzing @@ -6850,12 +6954,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6865,12 +6969,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6905,21 +7009,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7187,18 +7291,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7208,43 +7312,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7259,22 +7363,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7587,12 +7691,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7752,7 +7856,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7776,48 +7880,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8112,17 +8216,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8130,33 +8234,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8288,142 +8392,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8521,91 +8625,91 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8681,22 +8785,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8845,7 +8949,7 @@ Note: you can also trigger this display by mousing down on the routing status te - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. + To display different properties in a part label, rotate it, or change the font, right-click the label. @@ -9350,108 +9454,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_mr.ts b/translations/fritzing_mr.ts index 596c24532..3982a58c0 100644 --- a/translations/fritzing_mr.ts +++ b/translations/fritzing_mr.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1945,7 +1994,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1961,7 +2010,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1982,7 +2031,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2006,40 +2055,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2079,59 +2135,85 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2139,7 +2221,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2147,130 +2229,130 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2351,13 +2433,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2378,1173 +2460,1168 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Delete Wire - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Show Code - + Show the code (programming) view - + Align - + Move to bottom layer - + Move to top layer - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + There are %n outdated part(s) in this sketch. @@ -3552,7 +3629,7 @@ Go ahead and revert? - + We strongly recommend that you update these %n parts to the latest version. @@ -3560,909 +3637,929 @@ Go ahead and revert? - + This may result in changes to your sketch, as parts or connectors may be shifted. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Ctrl+4 - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + Raise and Lower - + Ctrl+Shift+V - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Check Loaded Traces - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4629,24 +4726,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4657,8 +4754,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4668,152 +4765,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5017,11 +5114,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5069,453 +5166,453 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors @@ -5523,7 +5620,7 @@ Go ahead and save? - + across %n views. @@ -5531,12 +5628,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6335,96 +6432,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6779,7 +6884,6 @@ shift key swaps scroll axis - Fritzing @@ -6850,12 +6954,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6865,12 +6969,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6895,21 +6999,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7177,18 +7281,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7198,43 +7302,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7249,22 +7353,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7577,12 +7681,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,142 +8381,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8508,91 +8612,91 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8809,11 +8913,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8934,6 +9033,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_nl.ts b/translations/fritzing_nl.ts index d82bcdf50..ca2d704d6 100644 --- a/translations/fritzing_nl.ts +++ b/translations/fritzing_nl.ts @@ -41,7 +41,7 @@ Special thanks goes out to: - Met speciale dank aan: + Met speciale dank aan: Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -85,15 +85,15 @@ Special thanks goes out as well to all the students - Speciale dank gaat ook uit naar alle studenten + Speciale dank gaat ook uit naar alle studenten and alpha testers who were brave enough to give - en alpha testers, welke moedig genoeg waren om + en alpha testers, welke moedig genoeg waren om Fritzing a test spin. - Fritzing te testen. + Fritzing te testen. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -200,19 +200,23 @@ - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Ukrainian: - and Kjell Morgenstern + Yelyzaveta Chyhryna - Ukrainian: + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - Yelyzaveta Chyhryna + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. @@ -1037,6 +1041,56 @@ Er zijn geen banen of connectoren die elkaar overlappen of te dicht bij elkaar l + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + Annuleren + + + Upload to Fab + + + + Upload + + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + Fritzing + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1734,7 +1788,7 @@ Wij werken er momenteel aan om dit bericht te vermijden en je te laten kiezen tu directly loading parts - Direct inladen van onderdelen + Direct inladen van onderdelen loading %1 (model) @@ -2601,11 +2655,11 @@ Controleer a.u.b. alle weergaves voor potentiële fouten. Donate to Fritzing - Doneer aan Fritzing + Doneer aan Fritzing Open Fritzing donation web page - Open de Fritzing donatie website + Open de Fritzing donatie website Export for PCB @@ -3587,6 +3641,46 @@ Note: if you want to update later, there are options under the 'Part' Display breadboard wires using standard color coding by length + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5158,6 +5252,10 @@ De shift toets wisselt de as Select a programmer (executable) for %1 Selecteer een programmer (uitvoerbaar) voor %1 + + %1 + %1 + ProgramTab @@ -6107,10 +6205,6 @@ Fritzing werkt nog steeds, maar je kunt geen eigenschappen van de onderdelen wij Unable to find parts git repository HEAD - - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - - The parts folder '%1' may have been damaged (%2). %3 @@ -6147,10 +6241,6 @@ Fritzing werkt nog steeds, maar je kunt geen eigenschappen van de onderdelen wij Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 - - Error %1 @@ -6236,6 +6326,14 @@ Fritzing werkt nog steeds, maar je kunt geen eigenschappen van de onderdelen wij Fritzing requires that you make cutouts using a shape 'subtraction' or 'difference' operation in your vector graphics editor. + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -7040,10 +7138,6 @@ Noot:Je kunt dit venster ook oproepen door op de tekst van de routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -7212,6 +7306,10 @@ Noot:Je kunt dit venster ook oproepen door op de tekst van de routing status te When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7540,26 +7638,6 @@ Noot:Je kunt dit venster ook oproepen door op de tekst van de routing status te Fritzing Fab - - Donate - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - Donate and leave a comment. - - - - Donate now - - Unable to reach fritzing.org/projects diff --git a/translations/fritzing_pl.ts b/translations/fritzing_pl.ts index a2a53284d..118a78bbe 100644 --- a/translations/fritzing_pl.ts +++ b/translations/fritzing_pl.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -794,7 +779,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -802,17 +787,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1261,6 +1246,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Anuluj + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1287,12 +1336,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1402,7 +1451,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1890,7 +1939,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate @@ -1906,7 +1955,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1927,7 +1976,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note Dodaj notatke @@ -1948,14 +1997,14 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - + + Specify a file name - - + + Fritzing (*%1) @@ -1963,76 +2012,83 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2041,17 +2097,17 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unrouted connections - + There are no unrouted connections in this view. - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2137,145 +2193,171 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 wczytuję %1 - + Loading... Wczytuję... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome Witamy - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting @@ -2331,7 +2413,7 @@ We're working to avoid this message, and only let you choose between proper - + Cancel Anuluj @@ -2352,241 +2434,236 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - + + File '%1' not found Nie znaleziono plink %1 - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) wczytuję %1 (pcb) - + loading %1 (schematic) wczytuję %1 (schemat) - + New Nowy - + Ctrl+N - + Create a new sketch - + &Open... Otwórz - + Ctrl+O - + &Save Zapisz - + Ctrl+S - - + + Save the current sketch - + &Save As... Zapisz jako... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber @@ -2596,1105 +2673,1125 @@ We're working to avoid this message, and only let you choose between proper - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (SVG)... - + &Print... Drukuj - + Ctrl+P - + Print the current view Drukuj aktualne okno - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit Wyjdź - + Ctrl+Q - + Quit the application - + &Open Example Otwórz przykad - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files Otwórz ostatnio używane - + &%1 %2 - + Undo Cofnij - + Redo - + &Cut Wytnij - + Cut selection Wytnij zaznaczone - + &Copy Kopiuj - + Copy selection - + &Paste Wklej - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate Powiel - + Ctrl+D - + Duplicate selection - + &Delete Skasuj - + Delete selection - + &Select All Zaznacz wszystko - + Select all elements - + &Deselect Odznacz - + Deselect Odznacz - - + + Add Note Dodaj notatkę - + &Preferences... Ustawienia - - + + Show the application's about box - + &Edit Edycja - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + Rotate current selection 45 degrees clockwise - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Convert - + Read-only - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Lock Part Zablokuj element - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + Ctrl+Shift+V - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - + &Zoom In - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size Aktualny rozmiar - + Actual (real world physical) size Aktualny (realny) rozmiar - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help - + Parts Editor Help - + Display Parts Editor help in a browser - + Align - - - + + + + + + &Routing - + Move to bottom layer - + Move to top layer - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size Aktualny rozmiar - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + + + + Routing + + + + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Show unrouted - + Highlight all unrouted connectors - + Select All Wires - + Select all wires - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Check Loaded Traces - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + jumpers - + copperfill - + vias - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -3703,7 +3800,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -3712,728 +3809,728 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + unable to find replacement for %1. - + OK OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text Wpisz tekst - + Text will match part label, description, title, etc. Enter text to search for: - + Search Szukaj - + No parts matched search term '%1'. - + &Show Breadboard - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Show/hide the label for the selected parts - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Show Code - + Show the code (programming) view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Minimize Zmniejsz - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials Kurs online - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... Sprawdź aktualizacje... - + Check whether a newer version of Fritzing is available for download - + &About O Fritzing... - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + &About Qt O QT... - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + &File Plik - + &Export - + as Image jako obraz - + for Production - + &Part Element - + Raise and Lower - + &View Widok - + &Window Okno - - - + + + Ground Fill - + &Help Pomoc - + Delete Ratsnest Line - + Delete Wire - + Hide part label Ukryj etykiete elementu - + Show part label - + Show part silkscreen - + Autoroute connections... - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Shift+Ctrl+3 - + Shift+Ctrl+2 - + Shift+Ctrl+1 - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Select All CopperFill - + Select all copper fill items - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + Delete Skasuj - + Page Setup Ustawienia strony - + Sorry, "%1" has not been implemented yet - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - - + + Set both copper layers clickable - - + + Set copper top layer clickable - - + + Set copper bottom layer clickable - + Select All Traces - + Select all trace wires - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select all trace wires excluded from autorouting - + Select All Jumpers - + Tidy Wires - + Tidy selected wires - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Copper Top and Copper Bottom layers are both active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting... - + Autorouting Progress... - + Remove Bendpoint - + Remove copper fill - - + + &Wire Color - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Do you want to update now? - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + Update %1 part(s) @@ -4614,7 +4711,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4640,62 +4737,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4708,120 +4805,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4857,11 +4954,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4876,12 +4973,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4901,7 +4998,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4948,216 +5045,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5189,12 +5286,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5203,7 +5300,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5212,7 +5309,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5252,67 +5349,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5399,154 +5496,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save Zapisz - + Cancel Anuluj - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" Zapisz %1 - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6309,12 +6406,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6355,86 +6452,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6773,12 +6878,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6788,12 +6893,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6819,7 +6924,6 @@ shift key swaps scroll axis - Fritzing @@ -6855,21 +6959,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7065,12 +7169,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Convert to Via - + Convert Via to Bendpoint @@ -7086,43 +7190,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7137,28 +7241,28 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select outdated parts - + Select locked parts @@ -7333,12 +7437,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7752,7 +7856,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7776,48 +7880,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8112,17 +8216,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width szerokość - + &cm - + &in @@ -8130,33 +8234,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8288,87 +8392,87 @@ Fritzing still works, but you won't be able to change parts properties. - + %1 %2 - + %1 %2 items - + Select All - + Deselect Odznacz - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + Change - - + + Connect - - + + to %1 - + Create and connect wire - + Rotate %2 (%1) @@ -8393,57 +8497,57 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Flip %2 (%1) @@ -8516,12 +8620,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8531,81 +8635,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8681,22 +8785,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8823,11 +8927,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8948,6 +9047,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9350,108 +9454,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_pt_br.ts b/translations/fritzing_pt_br.ts index da8bba4c5..7cba0fb85 100644 --- a/translations/fritzing_pt_br.ts +++ b/translations/fritzing_pt_br.ts @@ -41,7 +41,7 @@ Special thanks goes out to: - Agradecimentos especiais para: + Agradecimentos especiais para: Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -85,15 +85,15 @@ Special thanks goes out as well to all the students - Agradecimentos especiais vão também para todos os estudantes + Agradecimentos especiais vão também para todos os estudantes and alpha testers who were brave enough to give - e todos os alpha testers que foram corajosos o suficiente para fazer + e todos os alpha testers que foram corajosos o suficiente para fazer Fritzing a test spin. - os testes iniciais no Fritzing. + os testes iniciais no Fritzing. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -200,19 +200,23 @@ - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Ukrainian: - and Kjell Morgenstern + Yelyzaveta Chyhryna - Ukrainian: + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - Yelyzaveta Chyhryna + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. @@ -1036,6 +1040,56 @@ Um svg de placa personalizada tipicamente tem uma ou mais camadas de impressão + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + Cancelar + + + Upload to Fab + + + + Upload + + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + Fritzing + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1687,7 +1741,7 @@ Também é possível escolher um conector como ponto de aterramento clicando com directly loading parts - Carregando componentes diretamente + Carregando componentes diretamente loading %1 (model) @@ -2600,11 +2654,11 @@ Por favor verifique em todos os modos de visualização para verificar alguma mo Donate to Fritzing - Doar para o Fritzing + Doar para o Fritzing Open Fritzing donation web page - Abrir a página web de donativos Fritzing + Abrir a página web de donativos Fritzing Export for PCB @@ -3584,6 +3638,46 @@ Note: if you want to update later, there are options under the 'Part' Display breadboard wires using standard color coding by length + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5155,6 +5249,10 @@ shift troca eixo de scroll Select a programmer (executable) for %1 Selecione um programador (executavel) para %1 + + %1 + %1 + ProgramTab @@ -6104,10 +6202,6 @@ is already there, we won't add it again, right? Unable to find parts git repository HEAD - - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - - The parts folder '%1' may have been damaged (%2). %3 @@ -6144,10 +6238,6 @@ is already there, we won't add it again, right? Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 - - Error %1 @@ -6233,6 +6323,14 @@ is already there, we won't add it again, right? Fritzing requires that you make cutouts using a shape 'subtraction' or 'difference' operation in your vector graphics editor. + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -7040,10 +7138,6 @@ Nota: você pode também acionar este aviso passando o mouse pelo texto de estad To edit a part label, double-click it, or use the text input widget in the inspector window. - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -7212,6 +7306,10 @@ Nota: você pode também acionar este aviso passando o mouse pelo texto de estad When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7540,26 +7638,6 @@ Nota: você pode também acionar este aviso passando o mouse pelo texto de estad Fritzing Fab - - Donate - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - Donate and leave a comment. - - - - Donate now - - Unable to reach fritzing.org/projects diff --git a/translations/fritzing_pt_pt.ts b/translations/fritzing_pt_pt.ts index 86cc27710..b26474e34 100644 --- a/translations/fritzing_pt_pt.ts +++ b/translations/fritzing_pt_pt.ts @@ -41,7 +41,7 @@ Special thanks goes out to: - Agradecimentos especiais vão para: + Agradecimentos especiais vão para: Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -85,15 +85,15 @@ Special thanks goes out as well to all the students - Agradecimentos especiais vão também para todos os estudantes + Agradecimentos especiais vão também para todos os estudantes and alpha testers who were brave enough to give - e todos os alpha testers que foram corajosos o suficiente para fazer + e todos os alpha testers que foram corajosos o suficiente para fazer Fritzing a test spin. - ao Fritzing o teste inicial. + ao Fritzing o teste inicial. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -205,11 +205,11 @@ Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - e Kjell Morgenstern + e Kjell Morgenstern Ukrainian: @@ -219,6 +219,18 @@ Yelyzaveta Chyhryna Yelyzaveta Chyhryna + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + AutorouteProgressDialog @@ -1037,6 +1049,56 @@ A custom board svg typically has one or two silkscreen layers and one board laye Regenerando a base de dados dos componentes... + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + Cancelar + + + Upload to Fab + + + + Upload + Upload + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + Fritzing + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1688,7 +1750,7 @@ Também é possível escolher um conector como uma semente de aterramento clican directly loading parts - Carregando os componentes diretamente + Carregando os componentes diretamente loading %1 (model) @@ -2601,11 +2663,11 @@ Por favor verifique em todos os modos de visualização para verificar alguma mo Donate to Fritzing - Doar para o Fritzing + Doar para o Fritzing Open Fritzing donation web page - Abrir a página web de donativos Fritzing + Abrir a página web de donativos Fritzing Export for PCB @@ -3589,6 +3651,46 @@ Nota: se você deseja atualizar mais tarde, existem opções no menu 'Compo Display breadboard wires using standard color coding by length Dispor fios da breadboard utilizando código de cor padrão por comprimento + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5153,6 +5255,10 @@ tecla shift troca o eixo de scroll Select a programmer (executable) for %1 Selecione um programador (executável) para %1 + + %1 + %1 + ProgramTab @@ -6180,7 +6286,7 @@ já se encontrava lá, não vai adicionar outra vez, certo?!? The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - O diretório de componentes '%1' foi alterado--não está em master branch (%2). %3 + O diretório de componentes '%1' foi alterado--não está em master branch (%2). %3 The parts folder '%1' may have been damaged (%2). %3 @@ -6220,7 +6326,7 @@ já se encontrava lá, não vai adicionar outra vez, certo?!? Unable to retrieve master network reference for '%1'. %2 - Não foi possível recuperar a referência de rede principal para '%1'. %2 + Não foi possível recuperar a referência de rede principal para '%1'. %2 Regenerating parts database @@ -6244,6 +6350,14 @@ já se encontrava lá, não vai adicionar outra vez, certo?!? <font face='Lucida Grande, Tahoma, Sans Serif' size='2' color='#eaf4ed'>Version %1.%2.%3 (%4 %5) %6</font> <font face='Lucida Grande, Tahoma, Sans Serif' size='2' color='#eaf4ed'>Version %1.%2.%3 (%4%5) %6</font> {2'?} {4e?} {1.%2.%3 ?} {4 %5)?} {6<?} + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -7048,7 +7162,7 @@ Note: you can also trigger this display by mousing down on the routing status te To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Para exibir propriedades diferentes num rótulo de componente, girá-lo ou alterar a fonte, clique com o botão direito do rato no rótulo. + Para exibir propriedades diferentes num rótulo de componente, girá-lo ou alterar a fonte, clique com o botão direito do rato no rótulo. To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -7218,6 +7332,10 @@ Note: you can also trigger this display by mousing down on the routing status te When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. Quando utilizar o Fritzing Fab Service, Se houver áreas vazias do PCB que não quiser preenchidas com cobre, utilize o componente bloqueador de cobre. Este componente redimensionável irá mascarar o cobre no retângulo que a cerca. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7564,23 +7682,23 @@ Note: you can also trigger this display by mousing down on the routing status te Donate - Doar + Doar Fritzing development needs you - O desenvolvimento do Fritzing precisa de si + O desenvolvimento do Fritzing precisa de si Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - O desenvolvimento e a manutenção de software dão muito trabalho. Sem o seu apoio, não é possível continuar assim. + O desenvolvimento e a manutenção de software dão muito trabalho. Sem o seu apoio, não é possível continuar assim. Donate and leave a comment. - Doar e deixar um comentário. + Doar e deixar um comentário. Donate now - Doar agora + Doar agora Unable to reach fritzing.org/projects diff --git a/translations/fritzing_ro.ts b/translations/fritzing_ro.ts index 1659e3d16..6027f41e5 100644 --- a/translations/fritzing_ro.ts +++ b/translations/fritzing_ro.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 pentru cod și CreativeCommons:BY-SA pentru restul - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing este creat de: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,209 +61,210 @@ Bryant Mairs, Uleshka Asher, și Daniel Tzschentke. - Special thanks goes out to: - Mulțumiri speciale pentru: + Mulțumiri speciale pentru: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser și Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing este făcut posibil cu finanțare de la - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, sponsorul pentru Design - + Department of Bauhaus-University Weimar, Departamentul universității Weimar din Bauhaus, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, un donator anonim, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. și pentru toate achizițiile a Kitului de Pornire Fritzing sau a unei PCB de la Fabrica Fritzing. - Special thanks goes out as well to all the students - Mulțumiri speciale adresate tuturor studenților + Mulțumiri speciale adresate tuturor studenților - and alpha testers who were brave enough to give - și testerilor care au avut curajul să testeze + și testerilor care au avut curajul să testeze - Fritzing a test spin. - Fritzing. + Fritzing. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -816,7 +817,7 @@ Se utilizează fișierul? Capacitor - + Select from the dropdown, or type in a %1 value Selectați din meniul desfășurător, sau tastați o %1 valoare @@ -824,17 +825,17 @@ Se utilizează fișierul? ConnectorItem - + Add bendpoint Adaugă bendpoint - + Straighten curve Îndreaptă curba - + Remove bendpoint Elimină bendpoint @@ -1283,6 +1284,70 @@ Se utilizează fișierul? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Anulare + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1309,12 +1374,12 @@ Se utilizează fișierul? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1430,7 +1495,7 @@ Este deasemeni posibil să alegeți un conector ca sămânță umplere împămâ Hole - + hole size dimensiunea întreagă @@ -1919,7 +1984,7 @@ Este deasemeni posibil să alegeți un conector ca sămânță umplere împămâ MainWindow - + Rotate Rotire @@ -1935,7 +2000,7 @@ Este deasemeni posibil să alegeți un conector ca sămânță umplere împămâ - + Autoroute Autotrasare @@ -1956,7 +2021,7 @@ Este deasemeni posibil să alegeți un conector ca sămânță umplere împămâ - + Add a note Adaugă o notificare @@ -2050,24 +2115,25 @@ notificare Nu se poate deschide partajabila '%1': %2 - + Unable to open shareable part '%1': %2 Nu se poate deschide partea partajabilă '%1': %2 - + + Unable to load part from '%1' Nu se poate încărca partea din '%1' - - + + Specify a file name Specificați un nume fișier - - + + Fritzing (*%1) Fritzing (*%1) @@ -2075,45 +2141,52 @@ notificare - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable Nu se poate exporta %1 ca partajabil @@ -2123,43 +2196,68 @@ notificare Nu s-a găsit nici o schiță în '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) Parte Fritzing (*%1) - + Unable to export %1 to shareable sketch Nu se poate exporta %1 la schița partajabilă - + MainWindow::moveToPartsFolder mainwindow missing Fereastraprincipală::mutăladosarulcomponentelor lipsește fereastra principală - + There is already a part with id '%1' loaded into Fritzing. Este deja o parte cu id '%1' încărcată în Fritzing. - - + + Do you want to keep the imported parts? Doriți să păstrați componentele importate? - + No connections to route Nu sunt conexiuni de trasat - + Routing completed Trasare finalizată - + Routing completed using %n jumper part(s) Trasarea s-a finalizat utilizând %n componenta jumper @@ -2168,7 +2266,7 @@ notificare - + %1 of %2 nets routed - %n connector(s) still to be routed %1 din %2 rețele trasate - %n conector urmează să fie trasat @@ -2177,136 +2275,136 @@ notificare - + %1 - [%2] %1 - [%2] - + No copper top layer Nu este strat de cupru superior - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Stratul de cupru superior (cupru 1) nu este disponibil pe o placă monoplacată. Comutați placa la dubluplacată sau alegeți stratul de cupru dedesubt (cupru 0). - - + + Sorry! Regretăm! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Nici o componentă cu aceste caracteristici. Lucrăm pentru a evita acest mesaj și permisiunea de a alege între proprietăți care nu există - + No exactly matching part found; Fritzing chose the closest match. Nu s-a găsit componenta potrivită perfect; Fritzing alege cea mai apropiată potrivire. - + Change to single layer pcb Schimbă la pcb cu un singur strat - + Change to two layer pcb Schimbă la pcb cu două straturi - + Swapped %1 with module %2 S-a schimbat %1 cu modulul %2 - + Change image to %2 Schimbă imaginea la %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Svg %1 are lipsă un '%2' strat. Pentru mai multe informații despre cum să creeați o formă placă personalizată, consultați ghidul la<a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 se încarcă %1 - + Loading... Se încarcă... - + new sketch schița nouă - + Schematic conversion Conversie schemă - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Salvând această schiță va fi convertită la noul standard grafic pentru schemă. Se continuă și se convertește? - + Backing up '%1' Backing up '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections Conexiuni netrasate - + There are no unrouted connections in this view. Nu sunt conexiuni netrasate în această vizualizare. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code Cod - + Welcome Bine ați venit - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Schița dumneavoastră nu are încă o placă! Adăugați un PCB în scopul de a o exporta la Gerber. - + Choose a folder for exporting Alegeți un dosar pentru export @@ -2356,7 +2454,7 @@ Lucrăm pentru a evita acest mesaj și permisiunea de a alege între proprietă - + Cancel Anulare @@ -2377,97 +2475,96 @@ Lucrăm pentru a evita acest mesaj și permisiunea de a alege între proprietă Se exportă... - + Unable to save %1 Nu se poate salva %1 - + Cannot print to %1 Nu se poate tipări la %1 - + Cannot write file %1: %2. Nu se poate scrie fișierul %1: %2. - + Saved '%1' Salvat '%1' - + Select a Fritzing File to Open Selectați un fișier Fritzing de deschis - + Cannot find file %1. Nu se poate găsi fișierul %1. - + Cannot read file 1 %1: %2. Nu se poate citi fișierul 1 %1: %2. - - + + File '%1' not found Fișierul '%1' nu a fost găsit - directly loading parts - încărcare directă componente + încărcare directă componente - + loading %1 (model) se încarcă %1 (model) - + loading %1 (breadboard) se încarcă %1 (placă testare) - + loading %1 (pcb) se încarcă %1 (pcb) - + loading %1 (schematic) se încarcă %1 (schemă) - + New Nou - + Ctrl+N Ctrl+N - + Create a new sketch Creați o schiță nouă - + &Open... &Deschide... - + Ctrl+O Ctrl+O @@ -2487,58 +2584,58 @@ Lucrăm pentru a evita acest mesaj și permisiunea de a alege între proprietă Exportul gravabil poate manipula numai o placă odată--selectați placa pe care doriți să o exportați. - + &Save &Salvează - + Ctrl+S Ctrl+S - - + + Save the current sketch Salvează schița curentă - + &Save As... &Salvează ca... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Partajare online... - + Post a project to the Fritzing website Postează un proiect pe site-ul web Fritzing - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image Exportă zona vizibilă a schiței curente ca o imagine JPG - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image Exportă zona vizibilă a schiței curente ca o imagine PNG @@ -2551,830 +2648,833 @@ Lucrăm pentru a evita acest mesaj și permisiunea de a alege între proprietă Exportă zona vizibilă a schiței curente ca o imagine PostScript - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image Exportă zona vizibilă a schiței curente ca un fișier PDF - + SVG... SVG... - + Export the current sketch as an SVG image Exportă schița curentă ca o imagine SVG - + List of parts (&Bill of Materials)... Lista componentelor (&Factura de materiale)... - + Save a Bill of Materials (BoM)/Shopping List as text Salvează o listă de materiale (BoM)/listă cumpărături ca text - + XML Netlist... netlist is not curently translatable in romanian. see: http://en.wikipedia.org/wiki/Netlist XML Netlist... - + Save a netlist in XML format netlist is not curently translatable in romanian. see: http://en.wikipedia.org/wiki/Netlist Salvează netlist în format XML - + SPICE Netlist... netlist is not curently translatable in romanian. see: http://en.wikipedia.org/wiki/Netlist SPICE Netlist... - + Save a netlist in SPICE format netlist is not curently translatable in romanian. see: http://en.wikipedia.org/wiki/Netlist Salvează netlist în format SPICE - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Exportă schița curentă la Eagle CAD - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Exportă schița curentă în format Gerber extins (RS-274X) pentru producția profesională de PCB - + Export SPICE Netlist... netlist is not curently translatable in romanian. see: http://en.wikipedia.org/wiki/Netlist Exportă netlist SPICE... - + Gerber export can only handle one board at a time--please select the board you want to export. Exportul către Gerber poate manipula o singură placă odată selectați placa pe care doriți să o exportați. - + Sketch exported to Gerber Schița exportată la Gerber - + Export the current sketch to PDF for DIY PCB production (photoresist) Exportați schița curentă ca PDF pentru DIY producție PCB (fotorezistent) - + Export the current sketch to SVG for DIY PCB production (photoresist) Exportați schița curentă ca SVG pentru DIY producție PCB (fotorezistent) - + Etchable (PDF)... Gravabil (PDF)... - + Etchable (SVG)... Gravabil (SVG)... - + &Print... &Tipărește... - + Ctrl+P Ctrl+P - + Print the current view Tipărește vizualizarea curentă - + Shell launch %1 Lansare shell %1 - + throw test exception aruncă excepție test - + throw a fake exception to see what happens aruncă o excepție falsă pentru a vedea ce se întâmplă - + &Quit &Termină - + Ctrl+Q Ctrl+Q - + Quit the application Termină aplicația - + &Open Example &Deschide exemplu - + All Tot - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' Fereastraprincipală::populeazămeniucuindex: nu se pot încărca exemplul cu id='%1' - + &Open Recent Files &Deschide fișierele recente - + &%1 %2 &%1 %2 - + Undo Anulează - + Redo Refă - + &Cut &Taie - + Cut selection Taie selecția - + &Copy &Copiază - + Copy selection Copiază selecția - + &Paste &Lipește - + Paste clipboard contents Lipește conținutul memoriei temporare - + Paste in Place Lipește în Loc - + Paste clipboard contents in place Lipește conținutul memoriei temporare în loc - + &Duplicate &Duplicare - + Ctrl+D Ctrl+D - + Duplicate selection Duplică selecția - + &Delete &Șterge - + Delete selection Șterge selecția - + &Select All &Selectare tot - + Select all elements Selectare toate elementele - + &Deselect &Deselectare - + Deselect Deselectare - - + + Add Note Adaugă notificare - + &Preferences... &Preferințe... - - + + Show the application's about box Arată căsuța despre a aplicației - + &Edit &Editare - + &Add to bin... &Adaugă la cutie... - + Add selected part to bin Adaugă componenta selectată la cutie - + Disconnect All Wires Deconectează toate firele - + Disconnect all wires connected to this connector Deconectează toate firele conectate la acest conector - + Update InfoView on hover Actualizează informația vizualizare la planare - + Export Normalized SVG Exportă SVG normalizat - + Export 1000 dpi SVG of this part in this view Exportă SVG 1000 dpi a acestei componente în această vizualizare - + Export Normalized Flattened SVG Exportă SVG aplatizat normalizat - + Export 1000 dpi Flattened SVG of this part in this view Exportă 1000dpi SVG aplatizat a acestei componente în această vizualizare - + Rotate the selected parts by 90 degrees clockwise Rotește componentele selectate cu 90 de grade în sens orar - + Rotate the selected parts by 180 degrees Rotește componentele selectate cu 180 de grade - + Rotate current selection 90 degrees counter clockwise Rotește secțiunea curentă 90 de grade în sens antiorar - + Rotate current selection 45 degrees counter clockwise Rotește selecția curentă 45 de grade în sens antiorar - + Rotate current selection 45 degrees clockwise Rotește selecția curentă 45 de grade în sens orar - + Convert Convertește - + Read-only Doar-citire - + &Flip Horizontal &Întoarce orizontal - + Flip current selection horizontally Întoarce orizontal selecția curentă - + &Flip Vertical &Întoarce vertical - + Flip current selection vertically Întoarce vertical selecția curentă - + Bring to Front Adu în față - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Adu obiectul selectat(e) în fața stratului său - + Bring Forward Adu înainte - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Adu obiectul(ele) selectate înainte în stratul lor - + Send Backward Trimite înapoi - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Trimite obiectul(ele) selectat înapoi în stratul său - + Send to Back Trimite înapoi - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Trimite obiectul(ele) pe spatele stratului său - + Lock Part Blochează componentă - + Prevent a part from being moved Previne o componentă să fie mutată - + Select All Locked Parts Selectați toate componentele blocate - + Select all parts that can't be moved Selectați toate componentele care nu pot fi mutate - + &Show All Layers &Arată toate straturile - + Show all the available layers for the current view Arată toate straturile disponibile pentru vizualizarea curentă - + &Hide All Layers &Ascunde toate straturile - + Hide all the layers of the current view Ascunde toate straturile vizualizării curente - + &Show part label &Arată eticheta componentei - + Ctrl+Shift+V Ctrl+Shift+V - + Delete Minus Șterge minus - + Delete selection without attached wires Șterge selecția fără firele atașate - + Delete Wire up to bendpoints Șterge firul până la bendpoint-uri - + Dump all parts Depozitează toate componentele - + Debug dump all parts in this view Depanează depozitarea tuturor componentelor în această fereastră - + Rotate 45° Clockwise Rotește 135° în sens orar {135�?} {45°?} - + Rotate 90° Clockwise Rotește 135° în sens orar {135�?} {90°?} - + Rotate 180° Rotire 180° {180�?} {180°?} - + Rotate 90° Counter Clockwise Rotește 45° în sens antiorar {45�?} {90°?} - + Rotate 45° Counter Clockwise Rotește 45° în sens antiorar {45�?} {45°?} - + &Export... &Export... - + Export selected part Exportă componenta selectată - - + + Add Bendpoint Adaugă bendpoint - + Add a bendpoint to the selected wire Adaugă un bendpoint la firul selectat - + Convert Bendpoint to Via Convertește Bendpoint la Via - + Convert the bendpoint to a via Convertește bendpoint-ul la o via - + Convert Via to Bendpoint Convertește Via la Bendpoint - + Convert the via to a bendpoint Convertește via la un bendpoint - + Straighten Curve Îndreaptă curba - + Straighten the curve of the selected wire Îndreaptă curba firului selectat - - + + Select outdated parts Selectează componentele expirate - - + + Update selected parts Actualizează componentele selectate - + Open programming window Deschide fereastra de programare - + Open microcontroller programming window Deschide fereastra de programare a microcontrollerului - + &Zoom In &Mărește - + Ctrl++ Ctrl++ - + Zoom in Mărește - + Ctrl+= Ctrl+= - + &Zoom Out &Micșorează - + Ctrl+- Ctrl+- - + Zoom out Micșorează - + &Fit in Window &Potrivește în fereastră - + Ctrl+0 Ctrl+0 - + Fit in window Potrivește în fereastră - + &Actual Size &Dimensiune actuală - + Actual (real world physical) size Dimensiune (fizic lumea reală) actuală - + 100% Size Dimensiune 100% - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size dimensiune 100% (pixel) - + Align to Grid Aliniază la grilă - + Align items to grid when dragging Aliniază elementele la grilă când se trag - + Ctrl+5 Ctrl+5 - + &Show Welcome &Arată Bine ați venit - + Show the welcome view Arată vizualizarea de bun venit - + Show Code Arată codul - + Show the code (programming) view Arată vizualizarea codului (programare) - - - + + + + + + &Routing &Trasare - + &Create trace from ratsnest ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG &Crează traseu de la ratsnest - + Create a trace from the ratsnest line ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Crează un traseu de la linia ratsnest - + &Create wire from ratsnest ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG &Creează fire de la ratsnest - + Create a wire from the ratsnest line ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Crează un fir de la linia ratsnest - + Select All Wires Selectați toate firele - + Select all wires Selectați toate firele - + Fill empty regions of the copper layer--not including traces connected to a GROUND Umple regiunile goale ale stratului de cupru--nu includ traseele conectate la o ÎMPĂMÂNTARE - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Umple regiunile goale ale stratului de cupru--umplerea va include toate pistele conectate la semințe - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Selectați orice piste unde poziția ecranului nu se potrivește cu poziția actuală. Este necesar numai pentru schițele trasate automat cu versiunea 0.7.10 sau anterioară - + Autorouter/DRC settings... Configurări autotrasor/DRC... - + Set autorouting parameters including keepout... Configurează parametri de autotrasare inclusiv zona de restricționare... - + jumpers jumpere - + copperfill umple cupru - + vias vias - + Do you want to update now? @@ -3383,28 +3483,28 @@ Do you want to update now? Doriți să actualizați acum? - + unable to find replacement for %1. nu se poate găsi înlocuitor pentru %1. - + &Show Breadboard &Arată placă testare - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Fișiere Fritzing (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Partajabile Fritzing (*%2);;Componentă Fritzing (*%3);;Cutie Fritzing (*%4);;Cutie partajabilă Fritzing (*%5) - + Revert? Inversați? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3413,619 +3513,634 @@ Go ahead and revert? Continuați și inversați? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Deschide o schiță Fritzing (.fzz, .fz), sau încarcă o componentă Fritzing (.fzpz), sau o cutie componente Fritzing (.fzb, .fzbz) - + Revert Inversare - + Reload the sketch Reâncarcă schița - + &Delete Wire &Șterge fir - + Edit (new parts editor) Editare (editor componente noi) - + Open the new parts editor on an existing part Deschide editorul componente noi pe o componentă existentă - + Align Left Aliniază la stânga - + Align selected items at the left Aliniază elementele selectate la stânga - + Align Horizontal Center Aliniază centrul orizontal - + Align selected items at the horizontal center Aliniază elementele selectate la centrul orizontal - + Align Right Aliniază la dreapta - + Align selected items at the right Aliniază elementele selectate la dreapta - + Align Top Aliniază sus - + Align selected items at the top Aliniază sus elementele selectate - + Align Vertical Center Aliniază centrul vertical - + Align selected items at the vertical center Aliniază elementele selectate la centrul vertical - + Align Bottom Aliniază jos - + Align selected items at the bottom Aliniază jos elementele selectate - + Sticky Lipicios - + If a "sticky" part is moved, parts on top of it are also moved Dacă o componentă "lipicioasă" este mutată, sunt mutate și componentele de deasupra acesteia - + Show/hide the label for the selected parts Arată/ascunde eticheta pentru componentele selectate - + Find part in sketch... Găsește componentă în schiță... - + Search for parts in a sketch by matching text Caută componente într-o schiță potrivind textul - - + + Hide part silkscreen Ascunde partea serigrafică - + Hide/show the silkscreen layer for only this part Ascunde/arată stratul serigrafic numai pentru această parte - + Show Grid Arată grila - + Show the grid Arată grila - + Set Grid Size... Configurare dimensiune grilă... - + Set the size of the grid in this view Configurați dimensiunea grilei în această vizualizare - + Set Background Color... Configurează culoarea de fundal... - + Set the background color of this view Configurați culoarea de fundal a acestei vizualizări - + Ctrl+1 Ctrl+1 - + Show the breadboard view Arată vizualizarea placă testare - + &Show Schematic &Arată schema - + Ctrl+2 Ctrl+2 - + Show the schematic view Arată vizualizarea schemei - + &Show PCB &Arată PCB - + Ctrl+3 Ctrl+3 - + Show the PCB view Arată vizualizarea PCB - + Ctrl+4 Ctrl+4 - + Show Parts Bin Icon View Arată vizualizare pictogramă cutie componente - + Display the parts bin in an icon view Afișează cutia componentelor într-o vizualizare pictogramă - + Show Parts Bin List View Arată vizualizare listă cutie componente - + Display the parts bin in a list view Afișează cutia componentelor într-o vizualizare listă - + &Minimize &Minimizează - + Ctrl+M Ctrl+M - + Minimize current window Minimizează fereastra curentă - + Debugger Output Ieșire depanare - + Online Tutorials Tutoriale online - + Ctrl+? Ctrl+? - + Open Fritzing help Deschide ajutor Fritzing - Donate to Fritzing - Donați pentru Fritzing + Donați pentru Fritzing - Open Fritzing donation web page - Deschide pagina web Fritzing pentru donații + Deschide pagina web Fritzing pentru donații - + Online Projects Gallery Galeria de proiecte online - + Open Fritzing examples Deschide exemple Fritzing - + Online Parts Reference Referință componente online - + Open Parts Reference Deschide referința componentelor - + First Time Help Ajutor prima pornire - + Check for updates... Verifică pentru actualizări... - + Test Connectors Conectori test - + Connect all connectors to a single test part Conectează toți conectorii la o singură componentă test - + Check whether a newer version of Fritzing is available for download Verifică dacă este disponiobilă o versiune Fritzing mai nouă pentru descărcare - + &About &Despre - + Tips, Tricks and Shortcuts Sfaturi, trucuri și scurtături - + Display some handy Fritzing tips and tricks Afișează unele sfaturi și trucuri Fritzing utile - + Display First Time Help Afișează ajutor prima pornire - + &About Qt &Despre Qt - + Show Qt's about box Arată căsuța despre Qt - + Report a bug... Raportați un defect de programare... - - + + Report a but you've found in Fritzing Raportați un defect pe care l-ați găsit în Fritzing - + Enable debugging log Activare jurnal depanare - + Parts Editor Help Ajutor editor componente - + Display Parts Editor help in a browser Afișează ajutorul pentru editorul componentelor într-un navigator - + &File &Fișier - + &Export &Export - + as Image ca imagine - + for Production pentru producție - + &Part &Componentă - + Raise and Lower Ridică și micșorează - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align Aliniază - + &View &Vizualizare - + &Window &Fereastră - - - + + + Ground Fill Umple cu plan de masă - + &Help &Ajutor - + Move to bottom layer Mută în stratul inferior - + Move to top layer Mută în stratul superior - + Delete Ratsnest Line ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Șterge linia ratsnest - + Delete Wire Șterge fir - + Hide part label Ascunde eticheta componentei - + Show part label Arată eticheta componentei - + Show part silkscreen Arată partea serigrafică - + Delete Șterge - + top and bottom sus și jos - + bottom jos - + top sus - + Ground Fill (%1) Umple cu plan de masă (%1) - + Copper Fill (%1) Umple cu cupru (%1) - + Actual Size Dimensiune actuală - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Se pare că nu este posibil să fie determinată automat dimensiunea fizică actuală a monitorului, astfel 'dimensiunea actuală' ca implementată curent este doar o aproximare. ,Cea mai bună alegere va fi să trageți o componentă riglă, apoi plasați o riglă reală (fizică) deasupra și acționați zoom-ul până ce acestea se potrivesc. - + Page Setup Configurare pagină - + Sorry, "%1" has not been implemented yet Regretăm, "%1" nu a fost implementat încă + + + Routing + + + + Autoroute connections... Autotrasare conexiuni... - + Shift+Ctrl+A Shift+Ctrl+A - + Set Ground Fill Keepout... Configurați zona de restricționare a planului de masă... - + Set the minimum distance between ground fill and traces or connectors Configurați distanța minimă dintre planul de masă și trasee sau conectori - + Design Rules Check (DRC) Verificare Reguli Design (DRC) - + Highlights any parts that are too close together for safe board production Evidențiază orice componente care sunt prea apropiate una de cealaltă pentru producția plăcii în siguranță - + Fritzing Fab Quote... Citat Fritzing Fab... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Cât de mult ar putea să producă o PCB după această schiță cu Fritzing Fab - - + + View from below Vizualizare de dedesubt - - + + View the PCB from the bottom layers upwards Vizualizați PCB din straturile de jos în sus - + View from above Vizualizare de deasupra - + View the PCB from the top layers downwards Vizualizați PCB din straturile superioare în jos - + Shift+Ctrl+3 Shift+Ctrl+3 - + Shift+Ctrl+2 Shift+Ctrl+2 - + Shift+Ctrl+1 Shift+Ctrl+1 - + Schematic view update Actualizare vizualizare schemă - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -4034,7 +4149,7 @@ Continuați și inversați? - + Would you like to convert '%1' to the new standard now or open the file read-only? Doriți să convertiți acum '%1' la noul standard sau deschideți fișierul doar citire? @@ -4042,22 +4157,22 @@ Continuați și inversați? - + The conversion process will not modify '%1', until you save the file. Procesul de conversie nu va modifica '%1', până veți salva fișierul. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Va trebui să rearanjați componentele și conexiunile în vizualizarea schemă, ca dimensiunea celor mai multe imagini componente vor avea modificări. Luați în considerare utilizarea trasării automate pentru a curăța traseele. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Rețineți că unele componente personalizate nu vor fi convertite. O unealtă pentru convertire 'dreptunghiulară' a imaginilor schemelor este disponibilă în Editorul componentelor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -4066,7 +4181,7 @@ Note: if you want to update later, there are options under the 'Part' Notificare:dacă doriți să actualizați mai târziu, sunt opțiuni sub meniul 'Componente' pentru lucrul cu componente învechite individual. - + There are %n outdated part(s) in this sketch. Este %n componentă învechită în această schiță. @@ -4075,7 +4190,7 @@ Notificare:dacă doriți să actualizați mai târziu, sunt opțiuni sub meniul - + We strongly recommend that you update these %n parts to the latest version. Vă recomandăm să actualizați această %n componentă la ultima versiune. @@ -4084,426 +4199,436 @@ Notificare:dacă doriți să actualizați mai târziu, sunt opțiuni sub meniul - + This may result in changes to your sketch, as parts or connectors may be shifted. Aceasta poate rezulta în modificări aduse schiței, componente sau conectori pot fi mutați. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background %1 fundal - + Enter Text Introduceți text - + Text will match part label, description, title, etc. Enter text to search for: Textul se va potrivi cu eticheta componentei, descrierea, titlul, etc. Introduceți textul de căutat: - + Search Căutare - + No parts matched search term '%1'. Nici o componentă nu se potrivește cu termenul căutat '%1'. - + Do not autoroute Nu autotrasa - + When autorouting, do not rip up this trace wire, via, or jumper item Când se trasează automat, nu rupe acest traseu fir, via, sau elementul jumper - + Move to other side of the board Mută la altă parte a plăcii - + Show unrouted Arată netrasatele - + Highlight all unrouted connectors Evidențiază toți conectorii netrasați - + Select All CopperFill Selectează toate umplerile cu cupru - + Select all copper fill items Selectează toate elementele umplute cu cupru - + Select All "Don't Autoroute" Traces Selectează toate traseele "Nu trasa automat" - + Select All Autoroutable Traces Selectează toate traseele autotrasabile - + Select all trace wires that can be changed during autorouting Selectează toate traseele cablate care pot fi modificate în timpul autotrasării - + Select all jumper item parts Selectați toate componentele element jumper - + Select All Vias Selectați toate Vias - + Select all via parts Selectează toate componentele via - + Check Loaded Traces Verifică traseele încărcate - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Schița dumneavoastră nu are încă o placă! Adăugați o PCB în scopul utilizării trasatorului automat. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Selectați placa pe care doriți să o trasați automat. Trasatorul automat nu poate manipula decât o placă la un moment dat. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Schița dumneavoastră nu are încă o placă! Adăugați o PCB în scopul de a utiliza împământarea sau umplerea cu cupru. - + Please select a PCB--copper fill only works for one board at a time. Selectați o PCB--umplerea cu cupru funcționează numai cu o singură placă la un moment dat. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Schița dumneavoastră nu are încă o placă! Adăugați o PCB în scopul de a elimina umplerea cu cupru. - + Please select a PCB--ground fill operations only work on a one board at a time. Selectați o PCB--operațiile de umplere împământare funcționează cu o singură placă la un moment dat. - + OK OK - + Set the grid size for %1. Configurează dimensiunea grilei pentru %1. - + Grid Size: Dimensiune grilă: - + in in - + mm mm - + Restore Default Restaurează implicite - + Your sketch does not have a board yet! DRC only works with a PCB. Schița dumneavoastră nu are încă o placă! DRC funcționează numai cu o PCB. - + Please select a PCB. DRC only works on one board at a time. Selectați o PCB. DRC funcționează numai cu o singură placă odată. - + DRC Progress... Progres DRC... - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. Schița dumneavoastră nu are încă o PCB! Adăugați o PCB cu scopul de a utiliza operațiile de umplere cu cupru. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Selectați o PCB. Operațiile de umplere cu cupru funcționează numai cu o singură PCB la un moment dat. - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Aceasta va asigura în curând un export al schiței Fritzing la aplicația cu aspect EAGLE. Dacă doriți să aveți mai multe exporturi către unealta EDA favorită, anunțați-ne, sau contribuiți. - + Export SVG... Exportă SVG... - + Export Bill of Materials (BoM)... Exportă lista de materiale (BoM)... - + Unable to save BOM file, but the text is on the clipboard. Nu se poate salva fișierul BOM, dar textul este în memoria temporară a PC. - + Export Netlist... netlist is not curently translatable in romanian. see: http://en.wikipedia.org/wiki/Netlist Exportă netlist... - - + + Set both copper layers clickable Configurați ambele straturi de cupru să interacționeze cu mausul - - + + Set copper top layer clickable Configurați stratul de cupru de deasupra să interacționeze cu mausul - - + + Set copper bottom layer clickable Configurați stratul de cupru de dedesubt să interacționeze cu mausul - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Mută traseele selectate pe cealaltă parte a plăcii (notificare: 'primul' traseu va fi mutat iar restul îl va urma pe aceiași pistă) - + Select All Traces Selectează toate traseele - + Select all trace wires Selectează toate traseele cablate - + Force Update Routing Status and Ratsnests ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Forțează actualizarea stării trasării și ratsnest-uri - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Recalculează starea trasării și fire ratsnest (în caz de actualizare automată nu funcționează corect) - + Select all trace wires excluded from autorouting Selectează toate traseele cablate excluse de la autotrasare - + Select All Jumpers Selectează toți jumperii - + Tidy Wires Aranjează firele - + Tidy selected wires Aranjează firele selectate - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Umple regiunile goale ale stratului de cupru--umplerea va include toate traseele conectate la o ÎMPĂMÂNTARE - - + + Copper Fill Umplere cupru - + Remove Copper Fill Elimină umplere cupru - + Remove the copper fill Elimină umplerea cu cupru - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. Tratează acest conector și conexiunile sale ca o 'împământare' în timpul umplerii cu plan de masă. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Shift+Ctrl+D Shift+Ctrl+D - + Copper Top and Copper Bottom layers are both active Straturile de cupru de deasupra și de dedesubt sunt ambele active - + Order a PCB... Comandați o PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Comandați o PCB creată după schița dumneavoastră--de la fabuloasa Fritzing Fab - + Copper Top layer is active Stratul superior de cupru este activ - + Copper Bottom layer is active Stratul inferior de cupru este activ - + Autorouting... Se autotrasează... - + Autorouting Progress... Progres autotrasare... - + Remove Bendpoint Elimină bendpoint - + Generating %1 fill... Se generează %1 umplere... - + ground împământare - + copper cupru - + Remove copper fill Elimină umplerea cu cupru - - + + &Wire Color &Culoare fir - + Launch %1... Lansează %1... - + No outdated parts found. All your parts are up-to-date. Nu s-au găsit componente învechite. Toate componentele sunt actualizate. - + Outdated parts Componente învechite - + Successfully updated %1 part(s). Please check all views for potential side-effects. S-au actualizat cu succes %1 componentă(e). Verificați toate vizualizările pentru potențiale efecte secundare. - + Update %1 part(s) Actualizează %1 componentă(e) @@ -4686,7 +4811,7 @@ Motivul: %2 (cod eroare %3) NetLabel - + net label etichetă net @@ -4713,62 +4838,62 @@ Motivul: %2 (cod eroare %3) Apăsați acest conector pentru a scoate afară un nou traseu. - + Change trace layer Schimbă stratul traseului - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Schița dumneavoastră nu are încă o placă! Adăugați un PCB în scopul de a utiliza umplerea cu cupru. - + %1 Fill: please select the board you want to apply fill to. %1 Umplut: selectați placa pe care doriți să aplicați umplerea. - + Ground Împământare - + Copper Cupru - + Copper fill: please select only the board you want to fill. Umplere cu cupru: selectați numai placa pe care doriți să o umpleți. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4783,93 +4908,93 @@ Motivul: %2 (cod eroare %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Apăsați întâi pe o PCB--această operație de selecție funcționează numai pe o singură placă la un moment dat. - - + + Fritzing error: unable to render board svg (1). Eroare Fritzing: nu se poate randa placa svg (1). - - - + + + Fritzing error: unable to render copper svg (1). Eroare Fritzing: nu se poate randa cuprul svg (1). - + Fritzing error: unable to write copper fill (1). Eroare Fritzing: nu se poate scrie umplerea cu cupru (1). - + Fritzing error: unable to write copper fill (2). Eroare Fritzing: nu se poate scrie umplerea cu cupru (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Nu se poate crea umplerea cu cupru--posibil că piesa nu a fost trasă pe PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Nu se poate crea umplerea cu cupru--posibil că piesa a fost trasă pe o altă parte sau fir mai degrabă decât pe actuala PCB. - + Clear ground fill seeds Curăță semințe umplere masă - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Schița dumneavoastră nu are încă o placă! Adăugați o PCB în scopul de a utiliza această operație selectată. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Nu se poate converti acest via la un bendpoint fiindcă este conectat la o componentă care este numai pe stratul de dedesubt și o altă componentă care este numai pe stratul de deasupra. - + Show part silkscreen Arată partea serigrafiată - + Hide part silkscreen Ascunde partea serigrafiată - - + + Fritzing Fab Quote Citat Fritzing Fab - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. Schița dumneavoastră nu are încă o placă. Nu puteți fabrica această schiță fără o parte PCB. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. Regretăm, http://fab.fritzing.org nu răspunde la citatul solicitat. Verificați conexiunea la rețea și/sau încercați mai târziu. - + Enter Keepout Introduceți zona de restricționare - + Keepout is in mils (.001 inches). @@ -4878,13 +5003,13 @@ Motivul: %2 (cod eroare %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Rețineți că din cauza amestecării, distanțele pot fi prea scurte până la 2 miimi de inch - + so you may want to increase the keepout value by that much. @@ -4893,7 +5018,7 @@ Motivul: %2 (cod eroare %3) - + 10 mils is a good default choice. @@ -4902,7 +5027,7 @@ Motivul: %2 (cod eroare %3) - + Enter keepout value: Introduceți valoarea zonei de restricționare: @@ -4938,11 +5063,11 @@ Motivul: %2 (cod eroare %3) - - - - - + + + + + Parts Editor Editor componente @@ -4957,12 +5082,12 @@ Motivul: %2 (cod eroare %3) Există o ultimă editare încă în așteptare. - + Duplicate 'family' property not allowed Nu este permisă duplicarea proprietății 'familie' - + Duplicate 'variant' property not allowed Nu este permisă duplicarea proprietății 'variantă' @@ -4982,7 +5107,7 @@ Motivul: %2 (cod eroare %3) Păstrați lucrul - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Este în regulă să ieșiți din editorul componentelor acum, cât timp vă reamintiți să terminați sarcinile mai târziu. @@ -5029,207 +5154,207 @@ Motivul: %2 (cod eroare %3) Nu se poate analiza fișierul fzp %1 - + Icon View Vizualizare pictogramă - + Metadata View Vizualizare metadată - + Connectors View Vizualizare conectori - + Show Icon Arată pictogramă - + Ctrl+4 Ctrl+4 - + Show the icon view Arată vizualizarea pictogramei - + Ctrl+5 Ctrl+5 - + Show the metadata view Arată vizualizarea metadatei - + Show Connectors Arată conectorii - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' Modifică %1 la '%2' - + Change description Modifică descrierea - + Change tags Schimbă etichete - + Change properties Modifică proprietățile - + Change connector %1 Schimbă conectorul %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Fișiere imagine și amprentă (%1 %2 %3 %4 %5);;Fișiere SVG (%1);;Fișiere JPEG (%2);;Fișiere PNG (%3);;Fișiere amprentă gEDA (%4);;Fișiere modul Kicad (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Fișiere imagine (%1 %2 %3);;Fișiere SVG (%1);;Fișiere JPEG (%2);;Fișiere PNG (%3)%4%5 - + Open Image Deschide imaginea - + Copy problem Problemă la copiere - + Unable to make a local copy of: '%1' Nu se poate face o copie locală a: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Puteți utiliza o imagine PNG sau JPG pentru a construi componenta, dar este cel mai bine să utilizați un SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- Imaginile PNG și JPG păstrează natura lor ca bitmap și nu arată bine când se scalează-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. astfel pentru componentele Fritzing este cel mai bine să utilizați PNG și JPG numai ca înlocuitori. - + Use of PNG and JPG discouraged Utilizarea PNG și JPG este descurajată - - - - + + + + Conversion problem Problemă la convertire - - + + Fritzing (New) Parts Editor Editor componente (nou) Fritzing - + Show Metadata Arată metadata - + Show the connector metadata in a list view Arată metadatele conectorului într-o vizualizare listă - + Blank not allowed Gol nu este permis - + The value of '%1' can not be blank. Valoarea a '%1' nu poate fi goală. - + Change %1 to %2 Modificați %1 la %2 - + Must be unique Trebuie să fie unic - + Variant '%1' is in use. The variant name must be unique. Varianta '%1' este în utilizare. Numele variantei trebuie să fie unic. - - + + Duplicate problem Problemă duplicare - + Unable to load '%1' Nu se poate încărca '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Fișierul SVG '%1' apare că a fost exportat din CorelDRAW fără configurarea 'patributele prezentării'. - + Please re-export the SVG file using that setting, and try loading again. Exportați din nou fișierul SVG utilizând acele configurări și încercați să-l încărcați din nou. - + Fonts Fonturi - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' Fritzing actualmente suportă numai fonturile OCRA și Droid fonts--cu acestea au fost înlocuite fonturile din '%1' - + Unable to load image file '%1': %2 @@ -5238,9 +5363,9 @@ Motivul: %2 (cod eroare %3) %2 - - - + + + SVG problem Problemă SVG @@ -5274,12 +5399,12 @@ Motivul: %2 (cod eroare %3) Doriți să continuați lucrul sau închideți fără salvare? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors Această componentă are %n conector neatribuit @@ -5288,7 +5413,7 @@ Motivul: %2 (cod eroare %3) - + across %n views. peste %n vizualizare. @@ -5297,7 +5422,7 @@ Motivul: %2 (cod eroare %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. Până ce toți conectorii nu sunt atribuiți elementelor SVG, componenta nu va funcționa corect. @@ -5337,67 +5462,67 @@ Motivul: %2 (cod eroare %3) Reutilizează imaginea PCB în această vizualizare - + Make only this view visible Fă numai această vizualizare vizibilă - + The part will only be visible in this view and icon view Componenta va fi vizibilă numai în această vizualizare și vizualizare pictogramă - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Această versiune a noului Editor Componente nu poate lucra cu straturile cupru0 și cupru1 în '%1'. - + So editing may produce an invalid PCB view image Astfel editarea poate produce o imagine vizualizare PCB nevalidă - + Unable to parse '%1': %2 line:%3 column:%4 Nu se poate analiza '%1': %2 linia:%3 coloana:%4 - + There are no copper layers defined in: %1. Nu sunt straturi de cupru definite în: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Consultați <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Aceasta nu va mai fi o problemă în următoarea versiune a editorului componentelor, - + but for now please modify the file according to the instructions in the link. dar pentru moment modificați fișierul conform instrucțiunilor din link. - + no schematics found in %1 nu s-au găsit scheme în %1 - + schematic part parte schemă - + no footprints found in %1 Nu s-au găsit amprente în %1 - + Relocate connector %1 Realocare conector %1 @@ -5486,52 +5611,52 @@ Motivul: %2 (cod eroare %3) Nu se poate încărca '%1'. Închideți editorul componentelor fără să salvați și încercați din nou. - + Unable to load image file '%1' Nu se poate încărca fișierul imagine '%1' - + Filename prefix Prefix nume fișier - + Sketch Change Warning Atenționare modificare schiță - + The open sketch '%1' uses the part you are editing. Schița deschisă '%1' utilizează componenta pe care-ați editat-o. - + Saving this part will make a change to the sketch that cannot be undone. Salvând această componentă se va efectua o modificare schiței care nu mai poate fi anulată. - + The open sketches Schițele deschise - + '%1', '%1', - + and '%1' și '%1' - + Saving this part will make a change to these sketches that cannot be undone. Salvând această componentă se va efectua o modificare acestei schițe care nu poate fi anulată. - + Go ahead and save? @@ -5540,102 +5665,102 @@ Go ahead and save? Continuați și salvați? - + Save Salvează - + Cancel Anulare - + Move terminal point Mută punctul terminal - + Remove connector Elimină conector - + Remove %1 connectors Elimină %1 conectori - + Save "%1" Salvează "%1" - + Do you want to save the changes you made in the part "%1"? Doriți să salvați modificările pe care le-ați efectual în componenta "%1"? - + Your changes will be lost if you don't save them. Modificările vor fi pierdute dacă nu le salvați. - + untitled part componentă fără titlu - + Unable to load fzp from %1 Nu se poate încărca fzp de la %1 - + Unable to create new connector--you may have to start over. Nu se poate creea noul conector--va trebui să-l începeți peste. - + Add connector Adaugă conector - + Add %1 connectors Adaugă %1 conectori - + Remove internal connection from '%1' Elimină conexiunea internă de la '%1' - + Change all connectors to %1 Schimbă toți conectorii la %1 - + Unable to parse '%1' Nu se poate analiza '%1' - + Change to %1 Schimbă la %1 - + Make only %1 view visible Fă numai vizualizarea %1 vizibilă - + Internal connections are very messed up. Conexiunile interne sunt foarte încurcate. - + Add internal connection from '%1' to '%2' Adaugă conexiune internă de la '%1' la '%2' @@ -6401,12 +6526,12 @@ Notificare: această atenționare nu se va repeta în timpul acestei sesiuni.Comportament rotiță maus - + Command Comandă - + Control Control @@ -6447,57 +6572,65 @@ Notificare: această atenționare nu se va repeta în timpul acestei sesiuni. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (apăsați să modificați...) - + Clear Settings Curăță configurările - + Platform Support Platformă suport - + <b>%1</b> <b>%1</b> - + Location: Locație: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Trebuie să aveți instalată <a href='%1'>%2</a> (versiune %3 sau mai nouă). - + Select a programmer (executable) for %1 Selectați un programator (executabil) pentru %1 - + Connected Highlight Evidențiere conectat - + Unconnected Highlight Evidențiere neconectat - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6506,7 +6639,7 @@ tasta shift schimbată derulare axială Alt sau tasta %1 = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6515,22 +6648,22 @@ Alt sau tasta %1 = derulare tasta shift schimbată derulare axială - + Curvy vs. straight wires fire curbate vs. drepte - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Când mausul coboară și trage de un fir sau de un pin al unei componente (spre deosebire de un conector sau bendpoint) doriți să modificați curbura firului (sau a pinului) sau să trasați un nou bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Această casetă configurează comportamentul implicit. Puteți comuta înapoi la comportamentul ne implicit ținând apăsată tasta Control (Mac: Command key) când trageți. - + Curvy wires and legs Fire și picioare curbate @@ -6875,7 +7008,6 @@ tasta shift schimbată derulare axială - Fritzing Fritzing @@ -6911,12 +7043,12 @@ tasta shift schimbată derulare axială Culoare evidențiere conectat - + Unconnected highlight color Culoare evidențiere neconectat - + Clear all saved settings and close this dialog immediately. Curăță toate configurările salvate și închide imediat acest dialog. @@ -6926,12 +7058,12 @@ tasta shift schimbată derulare axială Această acțiune nu șterge nici un fișier; restaurează configurările la valorile lor implicite. - + There is no undo for this action, and no further warning!!!! Nu este nici o refacere pentru această acțiune și nici viitoare atenționări!!!! - + Clear Settings Curăță configurările @@ -6959,21 +7091,21 @@ tasta shift schimbată derulare axială Editare legătură - - - + + + Part Componentă - - - + + + Wire Fir - + Set Grid Size Configurați dimensiunea grilei @@ -7184,12 +7316,12 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Selectează toate traseele autotrasabile - + Convert to Via Convertește la Via - + Convert Via to Bendpoint Convertește Via la Bendpoint @@ -7205,43 +7337,43 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Vizualizare schemă - + Error reading file %1: %2. Eroare la citirea fișierului %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Schimbă piciorul al %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 strat - - + + Bring forward Adu înainte - + Send backward Trimite înapoi - + Bring to front Adu în față @@ -7256,29 +7388,29 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Alătură fir - + Trace wires Traseu cablat - + Ratsnest wires ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Fire ratsnest - - + + Select all %1 Selectează tot %1 - + Select outdated parts Selectați componentele învechite - + Select locked parts Selectați componentele blocate @@ -7485,12 +7617,12 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Progres fișier... - + Copying file %1 Se copiază fișierul %1 - + File %1 already exists: it won't be overwritten Fișierul %1 deja există: nu va fi suprascris @@ -7874,7 +8006,7 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7898,48 +8030,48 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8246,17 +8378,17 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Ruler - + width lățime - + &cm - + &in @@ -8264,33 +8396,33 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet S2S - + Failed loading '%1', %2 line:%3 col:%4 A eșuat încărcarea '%1', %2 linia:%3 col:%4 - + Schematic not found for '%1' Nu s-a găsit schema pentru '%1' - - + + Unable to load schematic '%1' for '%2' Nu se poate încărca schema '%1' pentru '%2' - + Schematic '%1' is already using the 0.1inch standard. Schema '%1' deja utilizează standardul de 0,1inch. - + Missing connector %1 in '%2' schematic of '%3' Conector lipsă %1 în '%2' schema a '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 A eșuat încărcarea schemei '%1', %2 linia:%3 col:%4 @@ -8422,87 +8554,87 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet s-a finalizat încărcarea - + %1 %2 %1 %2 - + %1 %2 items %1 %2 elemente - + Select All Selectează tot - + Deselect Deselectează - + Add %1 Adaugă %1 - + Selection Selecție - + Move %2 (%1) Mută %2 (%1) - + Move %2 items (%1) Mută %2 elemente (%1) - - + + Select %1 Selectați %1 - - + + Select %1 items Selectați %1 elemente - - + + Disconnect Deconectare - + Change Schimbă - - + + Connect Conectează - - + + to %1 la %1 - + Create and connect wire Creați și conectați fir - + Rotate %2 (%1) Rotește %2 (%1) @@ -8527,58 +8659,58 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Dublu-click - + Delete ratsnest ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Șterge ratsnest - + from %1 de la %1 - + Move leg of Mută piciorul de - + Change leg curvature for %1. Modifică curbura piciorului pentru %1. - + Change leg bendpoint for %1. Schimbă piciorul bendpoint pentru %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Aceasta pare o încercarea de a creea un traseu peste straturi. Această împrejurare nu ar trebui să apară: contactați dezvoltatorii. - + Create and connect %1 Creați și conectați %1 - + wire fir - + trace traseu - + Flip %2 (%1) Întoarce %2 (%1) @@ -8651,12 +8783,12 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet - + Resize ruler to %1 %2 Redimensionează rigla la %1 %2 - + test connectors testare conectori @@ -8666,65 +8798,65 @@ Fritzing continuă să funcționeze, dar nu veți putea să modificați propriet Redimensionează notificarea - + Change Resistance from %1 to %2 Schimbă rezistența de la %1 la %2 - - + + Change %1 from %2 to %3 Schimbă %1 de la %2 la %3 - - + + Resize board to %1 %2 Redimensionează tabla la %1 %2 - + Create wire from Ratsnest ratsnest is not translatable yet. see: http://commons.wikimedia.org/wiki/File:Rats_nest_diagram.JPG Creează fire de la ratsnest - + Disconnect all wires from %1 Deconectează toate firele de la %1 - + Disconnect all wires from %1 items Deconectează toate firele de la %1 elemente - + Change image from %1 to %2 Schimbă imaginea de la %1 la %2 - + change pin labels modifică etichetele pinilor - + Unrouted connections are highlighted in yellow. Conexiunile netrasate sunt evidențiate în galben. - + There are no unrouted connections Nu sunt conexiuni netrasate - + Unrouted connections Conexiuni netrasate - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8733,17 +8865,17 @@ Note: you can also trigger this display by mousing down on the routing status te Notificare: puteți deasemenea să declanșați acest afișaj prin trecerea mausului peste textul stare trasare în bara de stare. - + Part '%1' not found in sketch Componenta '%1' nu a fost găsită în schiță - + Add %1 parts Adaugă %1 componente - + Deselect all Deselectează tot @@ -8821,22 +8953,22 @@ Notificare: puteți deasemenea să declanșați acest afișaj prin trecerea maus SymbolPaletteItem - + voltage tensiune - + label etichetă - + Net labels Etichete rețea - + Net labels cannot be blank Etichetele rețea nu pot fi goale @@ -8964,9 +9096,8 @@ Notificare: puteți deasemenea să declanșați acest afișaj prin trecerea maus Pentru a edita etichetă unei componente, dați dublu-click pe ea, sau utilizați controlul intrare text în fereastra inspector. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Pentru a afișa proprietăți diferite în eticheta unei componente, precum și rotirea acesteia, sau schimbarea fontului, dați click-dreapta pe etichetă. + Pentru a afișa proprietăți diferite în eticheta unei componente, precum și rotirea acesteia, sau schimbarea fontului, dați click-dreapta pe etichetă. @@ -9088,6 +9219,11 @@ Notificare: puteți deasemenea să declanșați acest afișaj prin trecerea maus In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9499,93 +9635,68 @@ Notificare: puteți deasemenea să declanșați acest afișaj prin trecerea maus Fritzing CreatorKit Fritzing CreatorKit - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab este un serviciu ușor și la prețuri accesibile pentru producerea de PCB-uri profesionale după schițele Fritzing ale dumneavoastră. - + produce your first pcb now >> produceți acum primul dumneavoastră pcb >> - + Order your PCB now. Comandați acum PCB-ul dumneavoastră. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Proiecte - + Blog Blog - + Fritzing News. Știri Fritzing. - + Fritzing Projects. Proiecte Fritzing. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Nu s-au găsit schițe curente - + Unable to reach blog.fritzing.org Nu se poate accesa blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9594,17 +9705,17 @@ Notificare: puteți deasemenea să declanșați acest afișaj prin trecerea maus Nu se poate accesa friting.org/projects - + Tip of the Day: Sfatul zilei: - + All Tips Toate sfaturile - + Next Tip Sfatul următor diff --git a/translations/fritzing_ru.ts b/translations/fritzing_ru.ts index a80e579ba..fa365ae38 100644 --- a/translations/fritzing_ru.ts +++ b/translations/fritzing_ru.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 на код и CreativeCommons:BY-SA на всё остальное - + <b>2007-%1 Fritzing</b> <b>2007-%1 Fritzing</b> - + Fritzing is made by: Программа Fritzing создана: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Профессор Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,209 +61,210 @@ Bryant Mairs, Uleshka Asher и Daniel Tzschentke. - Special thanks goes out to: - Особая благодарность: + Особая благодарность: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser и Julia Werner. - + Thanks for the translations go out to: Благодарность за перевод: - + Yuelin and Ninjia Yuelin и Ninjia - + Chinese (Traditional): Китайский (традиционный): - + Robert Lee Robert Lee - + Hiroshi Suzuki Hiroshi Suzuki - + Jinbuhm Kim Jinbuhm Kim - + Spanish: Испанский: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: Итальянский: - + Portuguese (European): Португальский (европейский): - + Portuguese (Brazilian): Португальский (бразильский): - + Chinese (Simplified): Китайский (упрощённый): - + Japanese: Японский: - + Russian: Русский: - + Dutch: Голландский: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: Чешский: - + Korean: Корейский: - + Slovak: Словацкий: - + Greek: Греческий: - + French: Французский: - + Turkish: Турецкий: - + Bulgarian: Болгарский: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Создание Fritzing стало возможным благодаря финансированию - + MWFK Brandenburg, the sponsorship of the Design Министерство науки, исследований и культуры Бранденбурга, спонсор проекта - + Department of Bauhaus-University Weimar, Кафедра Баухаус-Университета Веймара, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, анонимный даритель, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. а также средства от каждой покупки Fritzing Starter Kit или печатной платы от Fritzing Fab. - Special thanks goes out as well to all the students - Особая благодарность всем студентам + Особая благодарность всем студентам - and alpha testers who were brave enough to give - и альфа-тестерам, которые были достаточно храбры, чтобы дать + и альфа-тестерам, которые были достаточно храбры, чтобы дать - Fritzing a test spin. - ход тестированию Fritzing. + ход тестированию Fritzing. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -816,7 +817,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value Выбрать в раскрывающемся списке или ввести значение %1 @@ -824,17 +825,17 @@ Use the file? ConnectorItem - + Add bendpoint Добавить точку изгиба - + Straighten curve Выпрямить кривую - + Remove bendpoint Удалить точку изгиба @@ -1286,6 +1287,70 @@ Use the file? Восстановление базы данных компонентов... + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Отменить + + + + Upload to Fab + + + + + Upload + Отправить + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1312,12 +1377,12 @@ Use the file? FolderUtils - + Moving your custom parts Перемещение ваших пользовательских компонентов - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> <p>Ваши пользовательские компоненты и каталоги перемещены из скрытой папки данных приложения в папку документов Fritzing по адресу <br/><br/><em>%1</em><br/><br/>. Это должно упростить вам их поиск и редактирование вручную.</p> @@ -1433,7 +1498,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size размер отверстия @@ -1920,7 +1985,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + %1 of %2 nets routed - %n connector(s) still to be routed %1 из %2 цепей трассировано — %n соединение ещё должно быть трассировано @@ -1930,7 +1995,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate Повернуть @@ -1941,7 +2006,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute Автотрассировка @@ -1957,19 +2022,19 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Сохранить %1 - + Unable to export %1 as shareable Не удалось экспортировать %1 как разделяемый - - + + Specify a file name Указать имя файла - - + + Fritzing (*%1) Fritzing (*%1) @@ -1977,50 +2042,57 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 to shareable sketch Не удалось экспортировать %1 в разделяемый эскиз - + Fritzing Part (*%1) Компонент Fritzing (*%1) @@ -2122,22 +2194,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Не удалось открыть разделяемый «%1»: %2 - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Unable to open shareable part '%1': %2 Не удалось открыть разделяемый компонент «%1»: %2 - + No connections to route Нет соединений для трассировки - + Routing completed Трассировка завершена - + Routing completed using %n jumper part(s) Трассировка завершена с использованием %n перемычки @@ -2146,67 +2243,67 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Change to single layer pcb Преобразовать в однослойную ПП - + Change to two layer pcb Преобразовать в двухслойную ПП - + Change image to %2 Изменить изображение на %2 - + Schematic conversion Преобразование схемы - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Сохранение этого эскиза преобразует его в новый стандарт графики для схемотехники. Продолжить и конвертировать? - + Fritzing uncompressed (*%1) Fritzing несжатый (*%1) - + Unrouted connections Неразведённые соединения - + There are no unrouted connections in this view. В этом представлении нет неразведённых соединений. - + (x,y)=(%1, %2) %3 (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (ширина, высота)=(%3, %4) %5 - + Code Код - + Welcome Добро пожаловать - + %1 - [%2] %1 — [%2] @@ -2216,57 +2313,58 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Не найдено эскизов в «%1» - + + Unable to load part from '%1' Не удалось загрузить компонент из «%1» - + MainWindow::moveToPartsFolder mainwindow missing MainWindow::moveToPartsFolder отсутствует главное окно - + There is already a part with id '%1' loaded into Fritzing. Компонент с идентификатором «%1» уже загружен во Fritzing. - + No copper top layer Отсутствует верхний слой меди - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Верхний слой меди (медь 1) не доступен на односторонней печатной плате. Пожалуйста, переключитесь на двухстороннюю плату или выберите нижний слой меди (медь 0). - + No exactly matching part found; Fritzing chose the closest match. Не найден точно совпадающий компонент. Программа Fritzing выбрала ближайшее совпадение. - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Слой «%2» отсутствует в SVG %1. Для получения дополнительной информации о том, как создавать пользовательские формы плат, см. инструкции по адресу <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 загружается %1 - + Loading... Загрузка... - + new sketch новый эскиз - + Backing up '%1' Резервное копирование «%1» @@ -2331,81 +2429,81 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Экспорт... - + Unable to save %1 Не удалось сохранить %1 - + Cannot print to %1 Не удалось распечатать на %1 - + Cannot write file %1: %2. Не удалось записать файл %1: %2. - + Saved '%1' Сохранён «%1» - + Cannot find file %1. Не удалось найти файл %1. - + Cannot read file 1 %1: %2. Не удалось прочитать файл %1: %2. - + loading %1 (model) загружается %1 (модель) - + loading %1 (breadboard) загружается %1 (макетная плата) - + loading %1 (pcb) загружается %1 (печатная плата) - + loading %1 (schematic) загружается %1 (схема) - + Create a new sketch Создать новый эскиз - + &Open... &Открыть... - + Ctrl+O Ctrl+O - + Export the visible area of the current sketch as a JPG image Экспорт видимой области текущего эскиза в изображение JPG - + Export the visible area of the current sketch as a PNG image Экспорт видимой области текущего эскиза в изображение PNG @@ -2414,27 +2512,27 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Экспорт видимой области текущего эскиза в изображение PostScript - + Export the visible area of the current sketch as a PDF image Экспорт видимой области текущего эскиза в изображение PDF - + Export the current sketch as an SVG image Экспорт текущего эскиза в изображение SVG - + Save a Bill of Materials (BoM)/Shopping List as text Сохранить как текст список материалов (BoM)/список покупок - + &Open Recent Files &Открыть последние файлы - + &Open Example &Открыть пример @@ -2445,713 +2543,711 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Cancel Отменить - - + + File '%1' not found Файл «%1» не найден - + New Новый - + Ctrl+N Ctrl+N - + &Save &Сохранить - + Ctrl+S Ctrl+S - - + + Save the current sketch Сохранить текущий эскиз - + &Save As... Сохранить &как... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Поделиться онлайн... - + Post a project to the Fritzing website Загрузить проект на сайт Fritzing - + List of parts (&Bill of Materials)... Список компонентов (&Список материалов)... - + XML Netlist... Список соединений XML... - + Save a netlist in XML format Сохранить список соединений в формате XML - + SPICE Netlist... Список соединений SPICE... - + Save a netlist in SPICE format Сохранить список соединений в формате SPICE - + Export the current sketch to Eagle CAD Экспорт текущего эскиза в Eagle CAD - + Extended Gerber (RS-274X)... Расширенный Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Экспорт текущего эскиза в расширенный формат Gerber (RS-274X) для профессионального производства ПП - + Export the current sketch to PDF for DIY PCB production (photoresist) Экспорт текущего эскиза в PDF для самостоятельного производства ПП (фоторезист) - + Export the current sketch to SVG for DIY PCB production (photoresist) Экспорт текущего эскиза в SVG для самостоятельного производства ПП (фоторезист) - + &Print... П&ечать... - + Ctrl+P Ctrl+P - + Print the current view Печать текущего представления - + Export SPICE Netlist... Экспорт списка соединений SPICE... - + Gerber export can only handle one board at a time--please select the board you want to export. Экспорт в формат Gerber может обрабатывать только одну плату за раз — пожалуйста, выберите плату, которую следует экспортировать. - + Sketch exported to Gerber Эскиз экспортирован в формат Gerber - + throw test exception вызвать тестовое исключение - + throw a fake exception to see what happens вызвать фиктивное исключение, чтобы посмотреть, что происходит - + &Quit &Выход - + Ctrl+Q Ctrl+Q - + Quit the application Выход из программы - + All Все - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: не удалось загрузить пример с идентификатором=«%1» - + &%1 %2 &%1 %2 - + &Cut &Вырезать - + Cut selection Вырезать выделенное - + &Copy &Копировать - + Copy selection Копировать выделенное - + &Paste &Вставить - + Paste clipboard contents Вставить содержимое буфера обмена - + Paste in Place Вставить на место - + Paste clipboard contents in place Вставить содержимое буфера обмена на место - + &Duplicate &Дублировать - + Ctrl+D Ctrl+D - + Duplicate selection Дублировать выделенное - + &Delete &Удалить - + Delete selection Удалить выделенное - + &Select All Выделить вс&ё - + Select all elements Выделить все элементы - + &Deselect С&нять выделение - + Deselect Снять выделение - + &Preferences... &Настройки... - - + + Show the application's about box Показать информационное окно программы - + &Add to bin... &Добавить в каталог... - + Add selected part to bin Добавить выделенный компонент в каталог - + Disconnect All Wires Отсоединить все провода - + Ctrl+Shift+V Ctrl+Shift+V - + Disconnect all wires connected to this connector Отсоединить все провода, подключённые к данному разъёму - + Update InfoView on hover Обновить просмотр информации при наведении - + Export Normalized SVG Экспорт нормализованного SVG - + Export 1000 dpi SVG of this part in this view Экспорт этого компонента в этом представлении в SVG с разрешением 1000 dpi - + Export Normalized Flattened SVG Экспорт нормализованного сглаженного SVG - + Export 1000 dpi Flattened SVG of this part in this view Экспорт этого компонента в этом представлении в сглаженный SVG с разрешением 1000 dpi - + Dump all parts Сбросить все компоненты - + Debug dump all parts in this view Отладочный дамп всех компонентов в этом представлении - + Test Connectors Проверка разъёмов - + Connect all connectors to a single test part Подключить все разъёмы к одному тестовому компоненту - + Align Left Выровнять влево - + Align selected items at the left Выровнять выделенные элементы влево - + Align Horizontal Center Выровнять по горизонтальной оси - + Align selected items at the horizontal center Выровнять выделенные элементы по горизонтальной оси - + Align Right Выровнять вправо - + Align selected items at the right Выровнять выделенные элементы вправо - + Align Top Выровнять по верху - + Align selected items at the top Выровнять выделенные элементы по верху - + Align Vertical Center Выровнять по вертикальной оси - + Align selected items at the vertical center Выровнять выделенные элементы по вертикальной оси - + Align Bottom Выровнять по низу - + Align selected items at the bottom Выровнять выделенные элементы по низу - + Lock Part Заблокировать компонент - + Prevent a part from being moved Предотвратить перемещение компонента - + Select All Locked Parts Выбрать все заблокированные компоненты - + Select all parts that can't be moved Выбрать все компоненты, которые нельзя переместить - + Show/hide the label for the selected parts Показать/скрыть метки для выбранных компонентов - + Straighten Curve Выпрямить кривую - + Straighten the curve of the selected wire Выпрямить изгиб выбранного провода - + Find part in sketch... Найти компонент в эскизе... - + Search for parts in a sketch by matching text Поиск компонентов в эскизе путём сопоставления текста - - + + Hide part silkscreen Скрыть шелкографию компонента - + Hide/show the silkscreen layer for only this part Скрыть/показать слой шелкографии только для этого компонента - + Regenerate parts database ... Восстановить базу данных компонентов... - + Regenerate the parts database (should only be used if your parts database is broken) Восстановить базу данных компонентов (следует использовать, только если ваша база данных компонентов повреждена) - + Color Breadboard Wires By Length Использовать цветовую маркировку проводов макетной платы по длине - + Display breadboard wires using standard color coding by length Отображать провода на макетной плате, используя стандартную цветовую маркировку по длине - + Ctrl+4 Ctrl+4 - + Ctrl+5 Ctrl+5 - + &Show Welcome &Показать приветствие - + Show the welcome view Показать вкладку приветствия - + Show Parts Bin Icon View Показать каталог компонентов в виде значков - + Display the parts bin in an icon view Отобразить каталог компонентов в виде значков - + Show Parts Bin List View Показать каталог компонентов в виде списка - + Display the parts bin in a list view Отобразить каталог компонентов в виде списка - Donate to Fritzing - Пожертвовать на развитие программы Fritzing + Пожертвовать на развитие программы Fritzing - Open Fritzing donation web page - Открыть страницу пожертвования Fritzing + Открыть страницу пожертвования Fritzing - + Display First Time Help Показать начальную справку - + Align Выровнять - + Move to bottom layer Переместить на нижний слой - + Move to top layer Переместить на верхний слой - + Hide part label Скрыть метку компонента - + Show part label Показать метку компонента - + Show part silkscreen Показать шелкографию компонента - + Delete Удалить - + top and bottom верх и низ - + bottom низ - + top верх - + Ground Fill (%1) Заполнение землёй (%1) - + Copper Fill (%1) Заполнение медью (%1) - + Choose Ground Fill Seed(s)... Выбор затравки (затравок) заполнения землёй... - + Set Ground Fill Seed Установить затравку для заполнения землёй - + Treat this connector and its connections as a 'ground' during ground fill. Считать этот разъём и его соединения «землёй» во время заполнения землёй. - + Clear Ground Fill Seeds Очистить затравки заполнения землёй - + Clear ground fill seeds--enable copper fill only. Очистить затравки заполнения землёй — включить только заполнение медью. - + Set Ground Fill Keepout... Установить зазор для заполнения землёй... - + Set the minimum distance between ground fill and traces or connectors Установить минимальное расстояние между заполнением землёй и дорожками или разъёмами - + Design Rules Check (DRC) Проверка правил проектирования (DRC) - + Highlights any parts that are too close together for safe board production Выделить компоненты, которые расположены слишком близко друг к другу для безопасного производства платы - + Fritzing Fab Quote... Ценовое предложение Fritzing Fab... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Сколько будет стоить производство печатной платы по этому эскизу в Fritzing Fab - - + + View from below Вид снизу - - + + View the PCB from the bottom layers upwards Вид на ПП от нижних слоёв к верхним - + View from above Вид сверху - + View the PCB from the top layers downwards Вид на ПП от верхних слоёв к нижним - + jumpers перемычки - + copperfill заполнение медью - + vias переходные отверстия - + Generating %1 fill... Генерируется заполнение (%1)... - + ground земля - + copper медь - + Schematic view update Обновление представления схемы - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -3160,29 +3256,29 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Would you like to convert '%1' to the new standard now or open the file read-only? Преобразовать «%1» для соответствия новому стандарту или открыть файл только для чтения? - + The conversion process will not modify '%1', until you save the file. Процесс преобразования не изменит «%1», пока вы не сохраните файл. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Вам придётся переставлять компоненты и соединения в режиме схемы, так как размеры большинства изображений компонентов будут изменены. Рекомендуется использовать автотрассировку для очистки дорожек. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Обратите внимание, что никакие пользовательские компоненты не будут преобразованы. Инструмент для конвертации «прямоугольных» изображений схемы доступен в редакторе компонентов. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -3191,7 +3287,7 @@ Note: if you want to update later, there are options under the 'Part' Примечание: если вы хотите выполнить обновление позже, воспользуйтесь доступными в меню «Компонент» опциями для работы с устаревшими компонентами по отдельности. - + There are %n outdated part(s) in this sketch. В этом эскизе %n устаревший компонент. @@ -3200,7 +3296,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. Настоятельно рекомендуется обновить этот %n компонент до последней версии. @@ -3209,74 +3305,74 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. Это может привести к изменениям вашего эскиза, поскольку компоненты или разъёмы могут быть сдвинуты. - + unable to find replacement for %1. не удалось найти замену для %1. - + %1 background Фон (%1) - + Enter Text Введите текст - + Text will match part label, description, title, etc. Enter text to search for: Текст будет соответствовать метке компонента, описанию, заголовку и т. д. Введите текст для поиска: - + Search Поиск - + No parts matched search term '%1'. Никакие компоненты не соответствуют поисковому запросу «%1». - + Rotate the selected parts by 90 degrees clockwise Повернуть выделенные компоненты на 90 градусов по часовой стрелке - + Rotate the selected parts by 180 degrees Повернуть выделенные компоненты на 180 градусов - + Rotate current selection 90 degrees counter clockwise Повернуть текущий выбор на 90 градусов против часовой стрелки - + Rotate current selection 45 degrees counter clockwise Повернуть текущий выбор на 45 градусов против часовой стрелки - + Rotate current selection 45 degrees clockwise Повернуть текущий выбор на 45 градусов по часовой стрелке - + Revert? Отменить изменения? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3285,580 +3381,600 @@ Go ahead and revert? Продолжить и отменить изменения? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Открыть эскиз Fritzing (.fzz, .fz) или загрузить компонент Fritzing (.fzpz) или каталог компонентов Fritzing (.fzb, .fzbz) - + Revert Отменить изменения - + Reload the sketch Перезагрузить эскиз - + &Delete Wire &Удалить провод - + Edit (new parts editor) Изменить (редактор новых компонентов) - + Open the new parts editor on an existing part Открыть редактор новых компонентов для существующего компонента - + &Flip Horizontal О&тразить по горизонтали - + Flip current selection horizontally Отразить текущее выделение по горизонтали - + &Flip Vertical О&тразить по вертикали - + Flip current selection vertically Отразить текущее выделение по вертикали - + Bring to Front На передний план - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Переместить выбранный(е) объект(ы) на передний план их слоя - + Bring Forward Переместить вперёд - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Переместить выбранный(е) объект(ы) вперёд в их слое - + Send Backward Переместить назад - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Переместить выбранный(е) объект(ы) назад в их слое - + Send to Back На задний план - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Переместить выбранный(е) объект(ы) на задний план их слоя - + Sticky Липкий - + If a "sticky" part is moved, parts on top of it are also moved Если «липкий» компонент перемещается, то компоненты поверх него тоже перемещаются - + &Show All Layers &Показать все слои - + Show all the available layers for the current view Показать все имеющиеся слои для текущего представления - + &Hide All Layers &Скрыть все слои - + Hide all the layers of the current view Скрыть все слои текущего представления - + &Export... &Экспорт... - + Export selected part Экспорт выделенного компонента - - + + Add Bendpoint Добавить точку изгиба - + Add a bendpoint to the selected wire Добавить точку изгиба на выделенном проводе - + Convert Bendpoint to Via Преобразовать точку изгиба в переходное отверстие - + Convert the bendpoint to a via Преобразовать точку изгиба в переходное отверстие - + Convert Via to Bendpoint Преобразовать переходное отверстие в точку изгиба - + Convert the via to a bendpoint Преобразовать переходное отверстие в точку изгиба - + Actual (real world physical) size Фактический (реальный физический) размер - + 100% Size Размер 100% - + 100% (pixel) size Размер 100% (пиксел) - + Align to Grid Привязка к сетке - + Align items to grid when dragging Выравнивать компоненты по сетке при перетаскивании - + Show Grid Показать сетку - + Show the grid Показать сетку - + Set Grid Size... Установить размер сетки... - + Set the size of the grid in this view Установить размер сетки в этом представлении - + Set Background Color... Установить цвет фона... - + Set the background color of this view Установить цвет фона для данного представления - + Tips, Tricks and Shortcuts Советы, приёмы и горячие клавиши - + Parts Editor Help Справка по редактору компонентов - + Display Parts Editor help in a browser Открыть в браузере справку по редактору компонентов - + as Image как изображение - + for Production для производства - - - + + + + + + &Routing &Трассировка - - - + + + Ground Fill Заполнение землёй - + Delete Ratsnest Line Удалить исключённую линию - + Delete Wire Удалить провод - + Actual Size Фактический размер - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Невозможно автоматически определить фактический физический размер монитора, поэтому применённый в настоящее время «фактический размер» — это только предположение. Лучше всего было бы перетащить компонент линейки, а затем поместить настоящую (физическую) линейку сверху и масштабировать компонент, пока они не совпадут. - + Shift+Ctrl+A Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Выбор дорожек, в которых расположение экрана не совпадает с фактическим расположением. Только для эскизов, автотрассированных с помощью версии 0.7.10 или более ранних версий программы - + Autorouter/DRC settings... Настройки автотрассировки/проверки правил проектирования... - + Set autorouting parameters including keepout... Задать параметры автотрассировки, включая зазор... - - + + Set both copper layers clickable Установить оба медных слоя доступными для щелчка - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable Установить верхний слой меди доступным для щелчка - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable Установить нижний слой меди доступным для щелчка - + Shift+Ctrl+1 Shift+Ctrl+1 - + &Create trace from ratsnest &Создать дорожку из исключения - + Delete Minus Удалить минус - + Delete selection without attached wires Удалить выделение без присоединённых проводов - + Delete Wire up to bendpoints Удалить провод до точек изгиба - + Rotate 45° Clockwise Повернуть на 45° по часовой стрелке - + Rotate 90° Clockwise Повернуть на 90° по часовой стрелке - + Rotate 180° Повернуть на 180° - + Rotate 90° Counter Clockwise Повернуть на 90° против часовой стрелки - + Rotate 45° Counter Clockwise Повернуть на 45° против часовой стрелки - + Show Code Показать код - + Show the code (programming) view Показать окно просмотра кода (программирования) + + + Visit fritzing.org + + + + + fritzing.org + + + + + Routing + + + + Autoroute connections... Автотрассировка соединений... - + Create a trace from the ratsnest line Создать дорожку из исключённой линии - + &Create wire from ratsnest &Создать провод из исключения - + Create a wire from the ratsnest line Создать провод из исключённой линии - + Do not autoroute Не выполнять автотрассировку - + When autorouting, do not rip up this trace wire, via, or jumper item При автоматической трассировке не разрывать этот проложенный провод, переходное отверстие или перемычку - + Move to other side of the board Переместить на другую сторону платы - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Переместить выбранные дорожки на другую сторону платы (примечание: «первая» дорожка будет перемещена, а остальные перейдут на ту же сторону) - + Show unrouted Показать неразведённые - + Highlight all unrouted connectors Выделить все неразведённые разъёмы - + Select All Wires Выбрать все провода - + Select all wires Выбрать все провода - + Select All CopperFill Выбрать все заполнения медью - + Select all copper fill items Выбрать все элементы, заполненные медью - + Force Update Routing Status and Ratsnests Обновить состояние трассировки и исключения - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Пересчитать состояние трассировки и исключённых проводов (если автоматическое обновление работает неправильно) - + Select All "Don't Autoroute" Traces Выбрать все дорожки без автотрассировки - + Select All Autoroutable Traces Выбрать все дорожки с автотрассировкой - + Select all trace wires that can be changed during autorouting Выбрать все провода трассировки, которые можно изменить во время автотрассировки - + Select All Jumpers Выбрать все перемычки - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Заполнить пустые области медного слоя — заполнение будет включать все дорожки, подсоединённые к земле - + Fill empty regions of the copper layer--not including traces connected to a GROUND Заполнить пустые области медного слоя — не включая дорожки, подсоединённые к земле - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Заполнить пустые области медного слоя — заполнение будет включать все дорожки, подсоединённые к затравкам - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces Проверка загруженных дорожек - + Copper Top and Copper Bottom layers are both active Активны оба слоя меди — верхний и нижний - + Order a PCB... Заказать ПП... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Заказать ПП, созданную по вашему эскизу, в Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату, чтобы использовать автотрассировку. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Пожалуйста, выберите плату, на которой следует сделать автотрассировку. Автотрассировка может обрабатывать только одну плату за раз. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату, чтобы использовать заполнение медью или землёй. - + Please select a PCB--copper fill only works for one board at a time. Пожалуйста, выберите ПП — заполнение медью работает только для одной платы за раз. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату, чтобы удалить заполнение медью. - + Please select a PCB--ground fill operations only work on a one board at a time. Пожалуйста, выберите ПП — операции заполнения землёй работают только на одной плате за раз. - + Do you want to update now? @@ -3867,395 +3983,405 @@ Do you want to update now? Обновить сейчас? - + OK OK - + Set the grid size for %1. Установите размер сетки для %1. - + Grid Size: Размер сетки: - + in дюйм - + mm мм - + Restore Default Восстановить умолчания - + Your sketch does not have a board yet! DRC only works with a PCB. У вашего эскиза ещё нет платы! DRC (проверка правил проектирования) работает только с печатной платой. - + Please select a PCB. DRC only works on one board at a time. Выберите печатную плату. DRC (проверка правил проектирования) работает только на одной плате за раз. - + DRC Progress... Выполнение DRC (проверки правил проектирования)... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату, чтобы использовать операции по заполнению медью. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Выберите печатную плату. Операции заполнения медью работают только на одной плате за раз. - + Copper Top layer is active Активен верхний слой меди - + Copper Bottom layer is active Активен нижний слой меди - + Autorouting Progress... Прогресс автотрассировки... - + Launch %1... Запуск %1... - + No outdated parts found. All your parts are up-to-date. Устаревшие компоненты не найдены. Все ваши компоненты актуальны. - + Outdated parts Устаревшие компоненты - + Successfully updated %1 part(s). Please check all views for potential side-effects. Успешно обновлено компонентов: %1. Пожалуйста, проверьте все представления на предмет наличия возможных побочных эффектов. - + Update %1 part(s) Обновить компоненты (%1) - + &Zoom In &Увеличить - + Shell launch %1 Запуск оболочки %1 - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Файлы Fritzing (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Разделяемый Fritzing (*%2);;Компоненты Fritzing (*%3);;Каталог Fritzing (*%4);;Разделяемый каталог Fritzing (*%5) - + Convert Преобразовать - + Read-only Только чтение - + Open programming window Открыть окно программирования - + Open microcontroller programming window Открыть окно программирования микроконтроллера - + Ctrl++ Ctrl++ - + Zoom in Увеличить - + Ctrl+= Ctrl+= - + &Zoom Out &Уменьшить - + Ctrl+- Ctrl+- - + Zoom out Уменьшить - + &Fit in Window &Уместить в окне - + Ctrl+0 Ctrl+0 - + Fit in window Уместить в окне - + &Actual Size &Фактический размер - + Shift+Ctrl+0 Shift+Ctrl+0 - + &Show Breadboard &Показать макетную плату - + Ctrl+1 Ctrl+1 - + Show the breadboard view Показать представление макетной платы - + &Show Schematic Показать с&хему - + Ctrl+2 Ctrl+2 - + Show the schematic view Показать представление схемы - + &Show PCB &Показать печатную плату - + Ctrl+3 Ctrl+3 - + Show the PCB view Показать представление печатной платы - + &Minimize &Свернуть - + Ctrl+M Ctrl+M - + Minimize current window Свернуть текущее окно - + Debugger Output Отладочная информация - + Ctrl+? Ctrl+? - + Open Fritzing help Открыть справку по Fritzing - + Open Fritzing examples Открыть примеры Fritzing - + Open Parts Reference Открыть ссылку компонентов - + First Time Help Начальная справка - + &About &О программе - + Display some handy Fritzing tips and tricks Показать полезные советы и хитрости Fritzing - + Report a bug... Сообщить авторам об ошибке... - + Enable debugging log Включить журнал отладки - + &File &Файл - + &Export &Экспорт - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату для экспорта в Gerber. - + Choose a folder for exporting Выберите папку для экспорта - + Export SVG... Экспорт SVG... - + Unable to save BOM file, but the text is on the clipboard. Не удалось сохранить файл списка материалов (BOM), но текст находится в буфере обмена. - + Export Netlist... Экспорт списка соединений... - + Tidy Wires Убрать провода - + Tidy selected wires Убрать выделенные провода - + Remove copper fill Удалить заполнение медью - + Remove Bendpoint Удалить точку изгиба - + Select all jumper item parts Выбрать все компоненты-перемычки - + Select All Vias Выбрать все переходные отверстия - + Select all via parts Выбрать все компоненты — переходные отверстия - - + + &Wire Color &Цвет провода - + &Edit &Правка - + JPG... JPG... - + PNG... PNG... @@ -4264,218 +4390,217 @@ Please check all views for potential side-effects. PostScript... - + PDF... PDF... - + SVG... SVG... - + Eagle... Eagle... - + Etchable (PDF)... Рисунок травления (PDF)... - + Etchable (SVG)... Рисунок травления (SVG)... - - + + Select outdated parts Выбрать устаревшие компоненты - - + + Update selected parts Обновить выбранные компоненты - + Online Tutorials Онлайн-руководство - + Online Projects Gallery Онлайн-галерея проектов - + Online Parts Reference Онлайн-ссылка компонентов - + &Part &Компонент - + &View &Вид - + &Window &Окно - + &Help &Справка - + Sorry, "%1" has not been implemented yet К сожалению, опция «%1» ещё не реализована - - + + Copper Fill Заполнение медью - + Remove Copper Fill Удалить заполнение медью - + Remove the copper fill Удалить заполнение медью - + Autorouting... Автотрассировка... - directly loading parts - непосредственно загруженные компоненты + непосредственно загруженные компоненты - + Page Setup Установки страницы - + Undo Отменить - + Redo Вернуть - + Select a Fritzing File to Open Выбрать файл Fritzing для открытия - + &Show part label &Показать метки компонентов - + Export Bill of Materials (BoM)... Экспорт списка материалов (BoM)... - + Add a note Добавить примечание - - + + Add Note Добавить примечание - + Check for updates... Проверить обновления... - + Check whether a newer version of Fritzing is available for download Проверить доступность новой версии Fritzing для загрузки - + Select All Traces Выбрать все дорожки - + Select all trace wires Выбрать все провода трассировки - + Select all trace wires excluded from autorouting Выбрать все провода трассировки, исключённые из автотрассировки - - + + Do you want to keep the imported parts? Сохранить импортированные компоненты? - + &About Qt &О Qt - + Show Qt's about box Показать окно «О Qt» - - + + Report a but you've found in Fritzing Сообщить об ошибке в программе Fritzing - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Это позволит экспортировать ваш Fritzing-эскиз в макет EAGLE. Если вы хотели бы получить возможность экспорта в другие программы компьютерного моделирования, пожалуйста, дайте нам знать или поучаствуйте в разработке программы. - - + + Sorry! Извините! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Нет компонента с такими характеристиками. Вы можете выбирать только между существующими характеристиками - + Swapped %1 with module %2 Поменять %1 с модулем %2 @@ -4490,7 +4615,7 @@ We're working to avoid this message, and only let you choose between proper Всё равно начать? - + Raise and Lower Поднять и опустить @@ -4672,7 +4797,7 @@ Reason: %2 (errcode %3) NetLabel - + net label метка цепи @@ -4698,62 +4823,62 @@ Reason: %2 (errcode %3) Щёлкните по данному разъёму для прокладывания новой дорожки. - + Change trace layer Изменить слой дорожки - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату для заполнения медью. - + %1 Fill: please select the board you want to apply fill to. %1 заполнение: выберите плату, к которой следует применить заполнение. - + Ground Земля - + Copper Медь - + Copper fill: please select only the board you want to fill. Заполнение медью: выберите только ту плату, которую следует заполнить. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4768,93 +4893,93 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Сначала щёлкните по печатной плате — эта операция выбора работает только на одной плате за раз. - - + + Fritzing error: unable to render board svg (1). Ошибка Fritzing: не удалось обработать плату svg (1). - - - + + + Fritzing error: unable to render copper svg (1). Ошибка Fritzing: не удалось обработать медь svg (1). - + Fritzing error: unable to write copper fill (1). Ошибка Fritzing: не удалось записать заполнение медью (1). - + Fritzing error: unable to write copper fill (2). Ошибка Fritzing: не удалось записать заполнение медью (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Не удалось создать заполнение медью — вероятно, компонент не был перетащен на печатную плату. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Не удалось создать заполнение медью — возможно, компонент был перетащен на другой компонент или провод, а не на фактическую печатную плату. - + Clear ground fill seeds Очистить затравки заполнения землёй - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. У вашего эскиза ещё нет платы! Пожалуйста, добавьте печатную плату, чтобы использовать эту операцию выбора. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Не удалось преобразовать это переходное отверстие в точку изгиба, поскольку оно связано с компонентом, который находится только на нижнем слое, и другим компонентом, который находится только на верхнем слое. - + Show part silkscreen Показать шелкографию компонента - + Hide part silkscreen Скрыть шелкографию компонента - - + + Fritzing Fab Quote Ценовое предложение Fritzing Fab - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. У вашего эскиза ещё нет платы. Вы не можете произвести этот эскиз без компонента ПП. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. К сожалению, http://fab.fritzing.org не отвечает на запрос ценового предложения. Проверьте сетевое подключение и/или повторите попытку позже. - + Enter Keepout Введите зазор - + Keepout is in mils (.001 inches). @@ -4863,14 +4988,14 @@ Reason: %2 (errcode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Обратите внимание, что из-за сглаживания расстояния могут быть слишком короткими (до 2 мил), - + so you may want to increase the keepout value by that much. @@ -4879,7 +5004,7 @@ Reason: %2 (errcode %3) - + 10 mils is a good default choice. @@ -4888,7 +5013,7 @@ Reason: %2 (errcode %3) - + Enter keepout value: Введите значение зазора: @@ -4924,11 +5049,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor Редактор компонентов @@ -4943,12 +5068,12 @@ Reason: %2 (errcode %3) Осталось ещё одно последнее редактирование. - + Duplicate 'family' property not allowed Дублировать свойство «семейство» не допускается - + Duplicate 'variant' property not allowed Дублировать свойство «вариант» не допускается @@ -4968,7 +5093,7 @@ Reason: %2 (errcode %3) Продолжить работу - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Сейчас можно выйти из редактора компонентов (но только не забудьте завершить задания позже). @@ -5015,207 +5140,207 @@ Reason: %2 (errcode %3) Не удалось разобрать файл fzp %1 - + Icon View Просмотр значков - + Metadata View Просмотр метаданных - + Connectors View Просмотр разъёмов - + Show Icon Показать значок - + Ctrl+4 Ctrl+4 - + Show the icon view Показать представление значков - + Ctrl+5 Ctrl+5 - + Show the metadata view Показать представление метаданных - + Show Connectors Показать разъёмы - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' Изменить %1 на «%2» - + Change description Изменить описание - + Change tags Изменить теги - + Change properties Изменить свойства - + Change connector %1 Изменить разъём %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Файлы изображений и отпечатков (%1 %2 %3 %4 %5);;Файлы SVG (%1);;Файлы JPEG (%2);;Файлы PNG (%3);;Файлы отпечатков gEDA (%4);;Файлы модулей Kicad (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Файлы изображений (%1 %2 %3);;Файлы SVG (%1);;Файлы JPEG (%2);;Файлы PNG (%3)%4%5 - + Open Image Открыть изображение - + Copy problem Проблема копирования - + Unable to make a local copy of: '%1' Не удалось создать локальную копию: «%1» - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Вы можете использовать изображение PNG или JPG для создания своего компонента, но лучше использовать SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- PNG и JPG изображения сохраняют свою природу как растровые изображения и не выглядят хорошо при масштабировании — - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. поэтому для компонентов Fritzing лучше всего использовать PNG и JPG только в качестве заполнителей. - + Use of PNG and JPG discouraged Использование PNG и JPG не рекомендуется - - - - + + + + Conversion problem Проблема преобразования - - + + Fritzing (New) Parts Editor Редактор (новых) компонентов Fritzing - + Show Metadata Показать метаданные - + Show the connector metadata in a list view Показать метаданные разъёма в виде списка - + Blank not allowed Нельзя оставить пустым - + The value of '%1' can not be blank. Значение «%1» не может быть пустым. - + Change %1 to %2 Изменить %1 на %2 - + Must be unique Должно быть уникальным - + Variant '%1' is in use. The variant name must be unique. Вариант «%1» используется. Имя варианта должно быть уникальным. - - + + Duplicate problem Проблема дубликата - + Unable to load '%1' Не удалось загрузить «%1» - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Файл SVG «%1», похоже, был экспортирован из CorelDRAW без установки параметра «атрибуты презентации». - + Please re-export the SVG file using that setting, and try loading again. Повторно экспортируйте файл SVG с использованием этого параметра и повторите попытку загрузки. - + Fonts Шрифты - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' В настоящее время Fritzing поддерживает только шрифты OCR A и Droid — они используются вместо шрифтов в «%1» - + Unable to load image file '%1': %2 @@ -5224,9 +5349,9 @@ Reason: %2 (errcode %3) %2 - - - + + + SVG problem Проблема SVG @@ -5260,12 +5385,12 @@ Reason: %2 (errcode %3) Продолжить работу или закрыть без сохранения? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> <p>Пожалуйста, введите префикс, который поможет вам определить файлы компонентов.<br/>Имена будут иметь форму «ПРЕФИКС_%1».<br/>(Нет необходимости изменять предложенный префикс, поскольку всегда добавляется уникальный суффикс.)</p> - + This part has %n unassigned connectors Этот компонент имеет %n неназначенный разъём @@ -5274,7 +5399,7 @@ Reason: %2 (errcode %3) - + across %n views. в %n представлении. @@ -5283,7 +5408,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. Пока все разъёмы не будут назначены элементам SVG, этот компонент будет работать неправильно. @@ -5323,67 +5448,67 @@ Reason: %2 (errcode %3) Повторное использование изображения печатной платы в этом представлении - + Make only this view visible Сделать видимым только это представление - + The part will only be visible in this view and icon view Компонент будет виден только в этом представлении и в виде значка - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Эта версия редактора новых компонентов не поддерживает работу с отдельными слоями медь0 и медь1 в «%1». - + So editing may produce an invalid PCB view image Таким образом, редактирование может привести к недопустимому изображению в режиме печатной платы - + Unable to parse '%1': %2 line:%3 column:%4 Не удалось проанализировать «%1»: %2 строка: %3 столбец: %4 - + There are no copper layers defined in: %1. Слои меди не определены в: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. См. <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">это объяснение</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Это не будет проблемой в следующей версии редактора компонентов, - + but for now please modify the file according to the instructions in the link. но на данный момент, пожалуйста, измените файл в соответствии с инструкциями по ссылке. - + no schematics found in %1 не найдено схем в %1 - + schematic part компонент схемы - + no footprints found in %1 не найдено отпечатков в «%1» - + Relocate connector %1 Переместить разъём %1 @@ -5472,52 +5597,52 @@ Reason: %2 (errcode %3) Не удалось загрузить «%1». Закройте редактор компонентов без сохранения и повторите попытку. - + Unable to load image file '%1' Не удалось загрузить файл изображения «%1» - + Filename prefix Префикс имени файла - + Sketch Change Warning Предупреждение об изменении эскиза - + The open sketch '%1' uses the part you are editing. Открытый эскиз «%1» использует компонент, который вы редактируете. - + Saving this part will make a change to the sketch that cannot be undone. Сохранение этого компонента приведёт к изменению эскиза, которое нельзя будет отменить. - + The open sketches Открытые эскизы - + '%1', «%1» - + and '%1' и «%1» - + Saving this part will make a change to these sketches that cannot be undone. Сохранение этого компонента приведёт к изменению этих эскизов, которое нельзя будет отменить. - + Go ahead and save? @@ -5526,102 +5651,102 @@ Go ahead and save? Продолжить и сохранить? - + Save Сохранить - + Cancel Отменить - + Move terminal point Переместить конечную точку - + Remove connector Удалить разъём - + Remove %1 connectors Удалить разъёмы (%1) - + Save "%1" Сохранить «%1» - + Do you want to save the changes you made in the part "%1"? Сохранить изменения, внесённые в компонент «%1»? - + Your changes will be lost if you don't save them. Ваши изменения будут утеряны, если вы их не сохраните. - + untitled part безымянный компонент - + Unable to load fzp from %1 Не удалось загрузить fzp из %1 - + Unable to create new connector--you may have to start over. Не удалось создать новый разъём — возможно, вам придётся начать всё заново. - + Add connector Добавить разъём - + Add %1 connectors Добавить разъёмы (%1) - + Remove internal connection from '%1' Удалить внутреннее соединение из «%1» - + Change all connectors to %1 Изменить все разъёмы на %1 - + Unable to parse '%1' Не удалось разобрать «%1» - + Change to %1 Изменить на %1 - + Make only %1 view visible Сделать видимым только представление %1 - + Internal connections are very messed up. Внутренние соединения очень запутаны. - + Add internal connection from '%1' to '%2' Добавить внутреннее соединение из «%1» в «%2» @@ -6372,12 +6497,12 @@ Note: this warning will not be repeated during this session. Поведение колеса мыши - + Command Command - + Control Ctrl @@ -6433,57 +6558,65 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (нажмите для изменения...) - + Clear Settings Очистить настройки - + Platform Support Поддержка платформ - + <b>%1</b> <b>%1</b> - + Location: Расположение: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Необходимо установить <a href='%1'>%2</a> (версия %3 или новее) . - + Select a programmer (executable) for %1 Выберите файл программы (исполняемый) для %1 - + Connected Highlight Подсветка соединённых - + Unconnected Highlight Подсветка несоединённых - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6492,7 +6625,7 @@ Alt or %1 key = zoom клавиша Alt или %1 = увеличение - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6501,22 +6634,22 @@ shift key swaps scroll axis клавиша Shift меняет ось прокрутки - + Curvy vs. straight wires Извилистые против прямых проводов - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Когда вы нажимаете кнопку мыши и перетаскиваете провод или ножку компонента (в отличие от разъёма или точки изгиба), следует изменить кривизну провода (или ножки) или вытащить новую точку изгиба? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Этот флажок устанавливает поведение по умолчанию. Вы можете вернуться к другому поведению, удерживая клавишу Ctrl (Mac: клавиша Command) при перетаскивании. - + Curvy wires and legs Извилистые провода и ножки @@ -6845,12 +6978,12 @@ shift key swaps scroll axis Подсветка соединённых цветом - + Unconnected highlight color Подсветка несоединённых цветом - + Clear all saved settings and close this dialog immediately. Очистить все сохранённые настройки и немедленно закрыть это диалоговое окно. @@ -6860,12 +6993,12 @@ shift key swaps scroll axis Это действие не удаляет файлы; оно восстанавливает настройки по умолчанию. - + There is no undo for this action, and no further warning!!!! Отменить это действие невозможно, дальнейших предупреждений не будет!!! - + Clear Settings Очистить настройки @@ -6885,12 +7018,12 @@ shift key swaps scroll axis Выбрать все дорожки с автотрассировкой - + Convert to Via Преобразовать в переходное отверстие - + Convert Via to Bendpoint Преобразовать переходное отверстие в точку изгиба @@ -6927,7 +7060,6 @@ shift key swaps scroll axis - Fritzing Fritzing @@ -6985,21 +7117,21 @@ shift key swaps scroll axis просмотр печатной платы - - - + + + Part Компонент - - - + + + Wire Провод - + Set Grid Size Установить размер сетки @@ -7114,43 +7246,43 @@ Fritzing по-прежнему работает, но вы не сможете Представление схемы - + Error reading file %1: %2. Ошибка чтения файла %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Изменить ножку %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer Слой «%1» - - + + Bring forward Переместить вперёд - + Send backward Переместить назад - + Bring to front Переместить на передний план @@ -7165,7 +7297,7 @@ Fritzing по-прежнему работает, но вы не сможете Соединить провод - + Select locked parts Выбрать заблокированные компоненты @@ -7299,18 +7431,18 @@ Fritzing по-прежнему работает, но вы не сможете Примечания - + Trace wires Провода трассировки - + Ratsnest wires Исключённые провода - - + + Select all %1 Выбрать все %1 @@ -7412,7 +7544,7 @@ is already there, we won't add it again, right? Прогресс файла... - + Select outdated parts Выбрать устаревшие компоненты @@ -7587,12 +7719,12 @@ is already there, we won't add it again, right? сбой преобразования SVG 2: %1 %2 %3 - + Copying file %1 Копирование файла %1 - + File %1 already exists: it won't be overwritten Файл %1 уже существует: он не может быть перезаписан @@ -7856,9 +7988,13 @@ is already there, we won't add it again, right? Н/Д - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - Папка компонентов «%1» была изменена — она не находится в главной ветви (%2). %3 + Папка компонентов «%1» была изменена — она не находится в главной ветви (%2). %3 + + + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + @@ -7881,48 +8017,52 @@ is already there, we won't add it again, right? В папке компонентов «%1» есть нечитаемые файлы. %2 - + Unable to open parts folder '%1' for update. %2 Не удалось открыть папку компонентов «%1» для обновления. %2 - + Parts folder repo '%1' is empty. %2 Папка репозитория компонентов «%1» пуста. %2 - + Unable to determine network site for '%1'. %2 Не удалось определить сетевой сайт для «%1». %2 - + Unable to access network site for '%1'. %2 Не удалось получить доступ к сетевому сайту для «%1». %2 - + Unable to retrieve network references for '%1'. %2 Не удалось получить сетевые ссылки для «%1». %2 - + + Unable to retrieve the network reference for '%1'#%2. %3 + + + Unable to retrieve master network reference for '%1'. %2 - Не удалось получить ссылку на главную сеть для «%1». %2 + Не удалось получить ссылку на главную сеть для «%1». %2 - - + + Regenerating parts database Восстановление базы данных компонентов - + Unable to find parts git repository Не удалось найти git-репозиторий компонентов - + Unable to find parts git repository HEAD Не удалось найти HEAD git-репозитория компонентов @@ -8229,17 +8369,17 @@ is already there, we won't add it again, right? Ruler - + width ширина - + &cm &см - + &in &дюйм @@ -8247,33 +8387,33 @@ is already there, we won't add it again, right? S2S - + Failed loading '%1', %2 line:%3 col:%4 Ошибка загрузки «%1», %2 строка: %3 столбец: %4 - + Schematic not found for '%1' Схема не найдена для «%1» - - + + Unable to load schematic '%1' for '%2' Не удалось загрузить схему «%1» для «%2» - + Schematic '%1' is already using the 0.1inch standard. Схема «%1» уже использует стандарт 0,1 дюйма. - + Missing connector %1 in '%2' schematic of '%3' Отсутствует разъём %1 в схеме «%2» из «%3» - + Failed loading schematic '%1', %2 line:%3 col:%4 Ошибка загрузки схемы «%1», %2 строка: %3 столбец: %4 @@ -8405,82 +8545,82 @@ is already there, we won't add it again, right? загрузка завершена - + %1 %2 %1 %2 - + %1 %2 items %1 %2 элементы - + Select All Выделить все - + Deselect Снять выделение - + Add %1 Добавить %1 - + Move %2 (%1) Переместить %2 (%1) - + Move %2 items (%1) Переместить %2 элементов (%1) - - + + Select %1 Выбрать %1 - - + + Select %1 items Выбрать %1 элементов - - + + Disconnect Отсоединить - + Change Изменить - - + + Connect Соединить - - + + to %1 c %1 - + Create and connect wire Создать и подключить провод - + Rotate %2 (%1) Повернуть %2 (%1) @@ -8500,57 +8640,57 @@ is already there, we won't add it again, right? Двойной щелчок - + Delete ratsnest Удалить исключение - + from %1 из %1 - + Move leg of Переместить ножку - + Change leg curvature for %1. Изменить кривизну ножек для %1. - + Change leg bendpoint for %1. Изменить точку изгиба ножки для %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Это похоже на попытку создать дорожку через слои. Это обстоятельство не должно возникать: обратитесь к разработчикам. - + Create and connect %1 Создать и подключить %1 - + wire провод - + trace дорожка - + Flip %2 (%1) Отразить %2 (%1) @@ -8580,74 +8720,74 @@ is already there, we won't add it again, right? Изменить цвет проводов (%1) на %2 - + Resize ruler to %1 %2 Изменить размер линейки на %1 %2 - + test connectors проверка разъёмов - + Change Resistance from %1 to %2 Изменить сопротивление с %1 на %2 - - + + Change %1 from %2 to %3 Изменить %1 с %2 на %3 - - + + Resize board to %1 %2 Изменить размер платы на %1 %2 - + Create wire from Ratsnest Создать провод из исключения - + Disconnect all wires from %1 Отключить все провода от %1 - + Disconnect all wires from %1 items Отключить все провода от %1 элементов - + Change image from %1 to %2 Изменить изображение с %1 на %2 - + change pin labels изменить метки выводов - + Unrouted connections are highlighted in yellow. Неразведённые соединения выделяются жёлтым цветом. - + There are no unrouted connections Нет неразведённых соединений - + Unrouted connections Неразведённые соединения - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8656,17 +8796,17 @@ Note: you can also trigger this display by mousing down on the routing status te Примечание: вы также можете запустить этот экран, щёлкнув по тексту состояния трассировки в строке состояния. - + Part '%1' not found in sketch Компонент «%1» не найден в эскизе - + Add %1 parts Добавить компоненты (%1) - + Deselect all Отменить выделение всего @@ -8691,7 +8831,7 @@ Note: you can also trigger this display by mousing down on the routing status te %1 метку «%2» - + Selection Выделение @@ -8802,22 +8942,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage напряжение - + label метка - + Net labels Метки цепей - + Net labels cannot be blank Метки цепей не могут быть пустыми @@ -8945,9 +9085,8 @@ Note: you can also trigger this display by mousing down on the routing status te Чтобы отредактировать метку компонента, дважды щёлкните по ней или используйте виджет ввода текста в окне инспектора. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Чтобы отобразить различные свойства на метке компонента, а также повернуть её или изменить шрифт, щёлкните по метке правой кнопкой мыши. + Чтобы отобразить различные свойства на метке компонента, а также повернуть её или изменить шрифт, щёлкните по метке правой кнопкой мыши. @@ -9069,6 +9208,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. В режиме «Представление макетной платы» или «Представление печатной платы», чтобы добавить кривую в провод или гибкую ножку, перетащите её, удерживая клавишу Ctrl (Mac: клавиша Command). В настройках вы можете установить, являются ли кривые провода стандартными. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9483,93 +9627,68 @@ Note: you can also trigger this display by mousing down on the routing status te The Fritzing Creator Kit is out of Stock. For Updates please visit the fritzing.blog Комплект разработчика Fritzing отсутствует. Для получения обновлений посетите сайт fritzing.blog - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab — это простой и доступный сервис для производства профессиональных печатных плат по вашим эскизам Fritzing. - + produce your first pcb now >> создайте свою первую печатную плату сейчас >> - + Order your PCB now. Закажите свою печатную плату сейчас. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Проекты - + Blog Блог - + Fritzing News. Новости Fritzing. - + Fritzing Projects. Проекты Fritzing. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Последние эскизы не найдены - + Unable to reach blog.fritzing.org Не удалось связаться с blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9578,17 +9697,17 @@ Note: you can also trigger this display by mousing down on the routing status te Не удалось связаться с friting.org/projects - + Tip of the Day: Полезный совет: - + All Tips Все советы - + Next Tip Следующий совет diff --git a/translations/fritzing_sk.ts b/translations/fritzing_sk.ts index 0704160bf..721928c72 100644 --- a/translations/fritzing_sk.ts +++ b/translations/fritzing_sk.ts @@ -8,47 +8,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 na kód a CreativeCommons:BY-SA na zvyšok - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing vytvorili: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -57,209 +57,210 @@ Bryant Mairs, Uleshka Asher, a Daniel Tzschentke. - Special thanks goes out to: - Zvláštne poďakovanie patrí: + Zvláštne poďakovanie patrí: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzimu, Ayah Bdeirovi, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrelul Bishopovi, Davidovi Cuartiellesovi, Fabianovi Hemmertovi, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrathovi, Jeffu Hoefsovi, Tomu Hulbertovi, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tomovi Igoevi, Hans-Peterovi Kadelovi, Tillovi Savelkoulovi, - + Jan Sieber, Yaniv Steiner, Olaf Val, Janovi Sieberovi, Yanivovi Steinerovi, Olafovi Vaolovi, - + Michaela Vieser and Julia Werner. Michaele Vieserovej a Julii Wernerovej. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing bolo možné vytvoriť s financovaním - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, sponzor Designu - + Department of Bauhaus-University Weimar, Oddelenie Bauhaus univerzity Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, anonymný darca, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - Special thanks goes out as well to all the students - Zvláštne poďakovanie patrí taktiež všetkým študentom + Zvláštne poďakovanie patrí taktiež všetkým študentom - and alpha testers who were brave enough to give - a alfa testerom, ktorí mali odvahu sa + a alfa testerom, ktorí mali odvahu sa - Fritzing a test spin. - pustiť do kolotoča testov Fritzingu. + pustiť do kolotoča testov Fritzingu. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -806,7 +807,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -814,17 +815,17 @@ Use the file? ConnectorItem - + Add bendpoint Pridať bod zlomu - + Straighten curve Vyrovnať krivku - + Remove bendpoint Odstrániť bod zlomu @@ -1273,6 +1274,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1299,12 +1364,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1414,7 +1479,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size veľkosť otvoru @@ -1902,7 +1967,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate Otočiť @@ -1918,7 +1983,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute Automaticky routovať @@ -1939,7 +2004,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note Pridať poznámku @@ -1960,19 +2025,19 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - + + Specify a file name Zadajte názov súboru - + Change image to %2 - - + + Fritzing (*%1) Fritzing (*%1) @@ -1980,76 +2045,83 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable Nejde exportovať %1 ako zdieľaný - + Fritzing Part (*%1) Fritzing součástka (*%1) - + Unable to export %1 to shareable sketch Nejde exportovať %1 do zdielaného návrhu - - + + Do you want to keep the imported parts? Prajete si zachovať importované súčiastky? - + No connections to route Žiadne prepojky k routovaniu - + Routing completed Routing dokončený - + Routing completed using %n jumper part(s) Routing dokončený s použitím %n prepojky @@ -2058,17 +2130,17 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unrouted connections - + There are no unrouted connections in this view. - + %1 of %2 nets routed - %n connector(s) still to be routed %1 z %2 routovaných prepojov - %n prepojka, ktorá bude ešte routovaná @@ -2154,141 +2226,167 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + %1 - [%2] %1 - [%2] - + No copper top layer Žiadna medená horná vrstva - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Na jednostrannej doske nie je horná medená vrstva (meď 1) k dispozícii. Prepnite dosku na obojstrannú alebo zvoľte spodnú medenú vrstvu (meď 0). - - + + Sorry! Prepáčte! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Súčiastka s touto charakteristikou neexistuje. Pracujeme na vyhnutí sa tejto správe a práve Vám neostáva iné než zvoliť medzi vlastnosťami, ktoré existujú - + No exactly matching part found; Fritzing chose the closest match. Nebola nájdená presná zhodná súčiastka; Fritzing vybral súčiastku s najbližšími vlastnosťami. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 Prepnúť %1 s modulom %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. SVG %1 neobsahuje vrstvu '%2'. Ďalšie informácie o tom, ako vytvoriť vlastný obrazec dosky nájdete v kurze na <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 načítanie %1 - + Loading... Načítanie... - + new sketch nový návrh - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' Zálohovať '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Váš návrh dosiaľ neobsahuje dosku! Pre úspešný export do Gerber pridajte PCB. - + Choose a folder for exporting Vybrať zložku pre export @@ -2348,7 +2446,7 @@ Pracujeme na vyhnutí sa tejto správe a práve Vám neostáva iné než zvoliť - + Cancel Zrušiť @@ -2369,153 +2467,152 @@ Pracujeme na vyhnutí sa tejto správe a práve Vám neostáva iné než zvoliť Exportovanie... - + Unable to save %1 Nejde uložiť %1 - + Cannot print to %1 Nejde tlačiť na %1 - + Cannot write file %1: %2. Nejde zapísať súbor %1: %2. - + Saved '%1' Uložiť '%1' - + Select a Fritzing File to Open Vybrať súbor Fritzing pre otvorenie - + Cannot find file %1. Nejde nájsť súbor %1. - + Cannot read file 1 %1: %2. Nejde čítať súbor 1 %1: %2. - - + + File '%1' not found Súbor '%1' nenájdený - directly loading parts - priame načítanie súčiastok + priame načítanie súčiastok - + loading %1 (model) načítanie %1 (model) - + loading %1 (breadboard) načítanie %1 (montážna doska) - + loading %1 (pcb) načítanie %1 (pcb) - + loading %1 (schematic) načítanie %1 (schéma) - + New Nový - + Ctrl+N Ctrl+N - + Create a new sketch Vytvoří nový návrh - + &Open... &Otvoriť... - + Ctrl+O Ctrl+O - + &Save &Uložiť - + Ctrl+S Ctrl+S - - + + Save the current sketch Uloží aktuálny návrh - + &Save As... &Uložiť ako... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Zdieľať online... - + Post a project to the Fritzing website Pošle projekt na webové stránky Fritzing - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image Exportuje viditeľnú oblasť aktuálneho návrhu ako JPG obrázok - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image Exportuje viditeľnú oblasť aktuálneho návrhu ako PNG obrázok @@ -2528,92 +2625,92 @@ Pracujeme na vyhnutí sa tejto správe a práve Vám neostáva iné než zvoliť Exportuje viditeľnú oblasť aktuálneho návrhu ako PostScript obrázok - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image Exportuje viditeľnú oblasť aktuálneho návrhu ako PDF obrázok - + SVG... SVG... - + Export the current sketch as an SVG image Exportuje aktuálny návrh ako SVG obrázok - + List of parts (&Bill of Materials)... Zoznam súčiastok (&Súpiska materiálu)... - + Save a Bill of Materials (BoM)/Shopping List as text Uloží súpis materiálov (BoM)/Nákupný zoznam ako text - + XML Netlist... XML Netlist... - + Save a netlist in XML format Uloží netlist v XML formáte - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Exportuje aktuálny návrh do Eagle CAD - + Etchable (PDF)... Leptateľné (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) Exportuje aktuálny návrh do PDF pre DIY výrobu PCB (fotocesta) - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Export the current sketch to SVG for DIY PCB production (photoresist) Exportuje aktuálny návrh do SVG pre DIY výrobu PCB (fotocesta) - + Sketch exported to Gerber Návrh exportovaný do Gerber @@ -2623,1413 +2720,1431 @@ Pracujeme na vyhnutí sa tejto správe a práve Vám neostáva iné než zvoliť Textový súbor BoM (*.html) - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Exportuje aktuálny návrh do Extended Gerber formátu (RS-274X) pre profesionálnú výrobu PCB - + Etchable (SVG)... Leptateľné (SVG)... - + &Print... &Tlač... - + Ctrl+P Ctrl+P - + Print the current view Vytlačí aktuálny pohľad - + Shell launch %1 Shell spustil %1 - + throw test exception vlož testovaciu výnimku - + throw a fake exception to see what happens Vloží falošnú výnimku, aby bylo vidieť čo sa stane - + &Quit &Ukončiť - + Ctrl+Q Ctrl+Q - + Quit the application Ukončí aplikáciu - + &Open Example &Otvoriť príklad - + All Všetko - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: nejde načítať príklad s id='%1' - + &Open Recent Files &Otvoriť nedávne súbory - + &%1 %2 &%1 %2 - + Undo Späť - + Redo Dopredu - + &Cut &Vyňať - + Cut selection Vyjme výber - + &Copy &Kopírovať - + Copy selection Kopíruje vybrané - + &Paste &Vložiť - + Paste clipboard contents Vloží obsah schránky - + Paste in Place Vložiť na miesto - + Paste clipboard contents in place Vloží obsah schránky na miesto - + &Duplicate &Duplikovať - + Ctrl+D Ctrl+D - + Duplicate selection Duplikuje výber - + &Delete &Vymazať - + Delete selection Vymaže výber - + &Select All &Vybrať všetko - + Select all elements Vyberie všetky prvky - + &Deselect &Zrušiť výber - + Deselect Zruší výber - - + + Add Note Pridať poznámku - + &Preferences... &Predvoľby... - - + + Show the application's about box Zobrazí okno O programu - + &Edit &Upraviť - + &Add to bin... &Pridať do zásobniku... - + Add selected part to bin Pridá vybranú súčiastku do zásobniku - + Disconnect All Wires Odpojí všetky prepojky - + Disconnect all wires connected to this connector Odpojí všetky prepojky od tejto špičky - + Update InfoView on hover Aktualizuje InfoView pri prechode - + Export Normalized SVG Exportuje normalizované SVG - + Export 1000 dpi SVG of this part in this view Exportuje 1000 dpi SVG tejto súčiastky v tomto zobrazení - + Export Normalized Flattened SVG Exportuje normalizované zlúčené SVG - + Export 1000 dpi Flattened SVG of this part in this view Exportuje 1000 dpi zlučený SVG tejto súčiastky v tomto zobrazení - + Rotate the selected parts by 90 degrees clockwise Otočí vybrané súčiastky o 90 stupňov vpravo - + Rotate the selected parts by 180 degrees Otočí vybrané súčástky o 180 stupňov - + Rotate current selection 90 degrees counter clockwise Otočí aktuálny výber o 90 stupňov vľavo - + Rotate current selection 45 degrees counter clockwise Otočí aktuálny výber o 45 stupňov vľavo - + Rotate current selection 45 degrees clockwise Otočí aktuálny výber o 45 stupňov vpravo - + Convert - + Read-only - + &Flip Horizontal &Preklopiť vodorovne - + Flip current selection horizontally Preklopí aktuálny výber vodorovne - + &Flip Vertical &Preklopiť zvisle - + Flip current selection vertically Preklopí aktuálny výber zvisle - + Bring to Front Presunúť dopredu - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Prenesie vybraný(é) objekt(y) vpred v ich vrstve - + Bring Forward Posunúť dopredu - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Posunie vybraný(é) objekt(y) vpred v ich vrstve - + Send Backward Posunúť vzad - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Posunie vybraný objekt(y) vzad vo svojej vrstve - + Send to Back Presunúť dozadu - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Presunie vybraný objekt(y) dozadu vo svojej vrstve - + Lock Part Uzamknúť súčiastku - + Prevent a part from being moved Zabráni presunu súčiastky - + Select All Locked Parts Vybrať všetky uzamknuté súčiastky - + Select all parts that can't be moved Vyberie všetky súčiastky, ktoré nemôžu byť presunuté - + &Show All Layers &Zobraziť všetky vrstvy - + Show all the available layers for the current view Zobrazí všetky dostupné vrstvy pre aktuálne zobrazenie - + &Hide All Layers &Skryť všetky vrstvy - + Hide all the layers of the current view Skryje všetky vrstvy aktuálneho zobrazenia - + &Show part label &Zobraziť popis súčiastky - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + &Export... &Exportovať... - + Export selected part Exportuje vybranú súčiastku - - + + Add Bendpoint Pridať bod zlomu - + Add a bendpoint to the selected wire Pridá bod zlomu vybranej propojky - + Straighten Curve Vyrovnať krivku - + Straighten the curve of the selected wire Vyrovná krivku vybranej prepojky - - + + Select outdated parts Vybrať neaktuálne súčiastky - - + + Update selected parts Aktualizovať vybrané súčiastky - + Open programming window Otvoriť programátorske okno - + Open microcontroller programming window Otvorí programátorské okno mikroprocesoru - + &Zoom In &Zväčšiť - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Ctrl++ Ctrl++ - + Zoom in Zväčšiť - + Ctrl+= Ctrl+= - + &Zoom Out &Zmenšiť - + Ctrl+- Ctrl+- - + Zoom out Zmenšiť - + &Fit in Window &Prispôsobiť oknu - + Ctrl+0 Ctrl+0 - + Fit in window Prispôsobí oknu - + &Actual Size &Aktuálna veľkosť - + Actual (real world physical) size Aktuálna (skutočná fyzická) veľkosť - + 100% Size 100% Veľkosť - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size 100% (pixlov) veľkosť - + Align to Grid Prichytiť k mriežke - + Align items to grid when dragging Pri pretiahnutí prichytí položky k mriežke - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Show Grid - + Show the grid - + Ctrl+5 Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - + + Visit fritzing.org + + + + + fritzing.org + + + + Display First Time Help - - - + + + + + + &Routing - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + + + + Routing + + + + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Select All Wires - + Select all wires - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Generating %1 fill... - + ground - + copper - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Do you want to update now? - + unable to find replacement for %1. nejde nájsť náhradu pre %1. - + &Show Breadboard &Zobraziť montážnu dosku - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Show/hide the label for the selected parts - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Find part in sketch... - + Search for parts in a sketch by matching text - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+1 Ctrl+1 - + Show the breadboard view Zobrazí pohľad na montážnu dosku - + &Show Schematic &Zobraziť schému - + Ctrl+2 Ctrl+2 - + Show the schematic view Zobrazí pohľad na schému - + &Show PCB &Zobraziť PCB - + Ctrl+3 Ctrl+3 - + Show the PCB view Zobrazí pohľad na PCB - + Ctrl+4 Ctrl+4 - + Show Parts Bin Icon View Zobraziť súčiastky zásobniku ako ikony - + Display the parts bin in an icon view Zobrazí zásobnik súčiastok ako ikony - + Show Parts Bin List View Zobraziť súčiastky zásobniku ako zoznam - + Display the parts bin in a list view Zobrazí zásobnik súčiastok ako zoznam - + &Minimize &Minimalizovať - + Ctrl+M Ctrl+M - + Minimize current window Minimalizuje aktuálne okno - + Debugger Output Výstup debuggeru - + Online Tutorials Online výuka - + Ctrl+? Ctrl+? - + Open Fritzing help Otvorí nápovedu Fritzingu - Donate to Fritzing - Podporte Fritzing + Podporte Fritzing - Open Fritzing donation web page - Otvorte web stránku daru pre Fritzing + Otvorte web stránku daru pre Fritzing - + Online Projects Gallery Online galéria projektov - + Open Fritzing examples Otvorte Fritzing príklady - + Online Parts Reference Online referencie súčiastok - + Open Parts Reference Otvorte referencie súčiastok - + First Time Help Prvá nápoveda - + Check for updates... Kontrola aktualizácie... - + Check whether a newer version of Fritzing is available for download Skontroluje, či nie je k stiahnutiu novšia verzia Fritzingu - + &About &O programe - + Tips, Tricks and Shortcuts Tipy, triky a klávesové skratky - + Display some handy Fritzing tips and tricks Zobrazí niektoré užitočné tipy a triky Fritzingu - + &About Qt &O Qt - + Show Qt's about box Zobrazí okno o Qt's - + Report a bug... Nahlásiť chybu... - - + + Report a but you've found in Fritzing Nahlási chybu, ktorú ste našli vo Fritzingu - + Enable debugging log Povoliť debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File &Súbor - + &Export &Exportovať - + as Image ako obrázok - + for Production pre výrobu - + &Part &Súčiastka - + Raise and Lower Riadenie - + Ctrl+Shift+V - + Rotate 45° Clockwise Otočiť o 135° doprava {135�?} {45°?} - + Rotate 90° Clockwise Otočiť o 135° doprava {135�?} {90°?} - + Rotate 180° Otočiť o 180° {180�?} {180°?} - + Rotate 90° Counter Clockwise Otočiť o 45° doľava {45�?} {90°?} - + Rotate 45° Counter Clockwise Otočiť o 45° doľava {45�?} {45°?} - + Align - + &View &Zobrazenie - + &Window &Okno - - - + + + Ground Fill Zemniaca výplň - + &Help &Nápoveda - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line Vymazať prepojovaciu čiaru - + Delete Wire Vymazať prepojku - + Hide part label Skryť popis súčiastky - + Show part label - + Show part silkscreen - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Autoroute connections... - + Shift+Ctrl+A Shift+Ctrl+A - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Shift+Ctrl+3 Shift+Ctrl+3 - + Shift+Ctrl+2 Shift+Ctrl+2 - + Shift+Ctrl+1 Shift+Ctrl+1 - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -4038,7 +4153,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4047,423 +4162,433 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Do not autoroute Nepredvádzať autoroutovanie - + When autorouting, do not rip up this trace wire, via, or jumper item Pri autoroutingu sa neznačí tento prepojovací spoj, priechod alebo prepojku - + Move to other side of the board Presunút na druhú stranu dosky - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Presunúť vybrané spoje na druhú stranu dosky (Pozn.: "prvá" stopa bude presunutá a ostatné budú nasledovať na rovnakú stranu) - + Show unrouted - + Highlight all unrouted connectors - + Select All CopperFill Vybrať všetky medené výplne - + Select all copper fill items Vyberie všetky položky medenej výplne - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select all jumper item parts Vybrať všetky položky prepojok súčiastok - + Select All Vias Vybrať všetky priechodky - + Select all via parts Vyberie všetky priechodky súčiastok - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Vyplní prázdne oblasti medenej vrstvy--vrátane všetkých spojov pripojených k ZEMI - + Fill empty regions of the copper layer--not including traces connected to a GROUND Vyplní prázdné oblasti medenej vrstvy--s výnimkou všetkých spojov pripojených k ZEMI - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces - + OK OK - + Set the grid size for %1. Nastaviť veľkosť mriežky pre %1. - + Grid Size: Veľkost mriežky: - + in palce - + mm mm - + Restore Default Obnoviť východzie - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + Delete Vymazať - + Page Setup Nastavenie stránky - + Sorry, "%1" has not been implemented yet Prepáčte, funkcia %1 nebola doposiaľ implementovaná - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Táto funkcia čoskoro poskytne export návrhu Fritzing do EAGLE PCB software. Pokiaľ by ste chceli mať viac exportov do svojich obľúbených nástrojov EDA, prosím dajte nám vedieť alebo nám prispejte. - + Export SVG... Exportovať SVG... - + Export Bill of Materials (BoM)... Export súpisky materiálu (BoM)... - + Unable to save BOM file, but the text is on the clipboard. Nejde uložiť súbor BOM, ale text je uložený v schránke. - + Export Netlist... Export netlistu... - - + + Set both copper layers clickable Nastaví obe medené vrstvy klikateľné - - + + Set copper top layer clickable Nastaví hornú medenú vrstvu klikateľnú - - + + Set copper bottom layer clickable Nastaví spodnú medenú vrstvu klikateľnú - + Select All Traces Vybrať všetky spoje - + Select all trace wires Vyberie všetky spoje - + Force Update Routing Status and Ratsnests Prevedenie aktualizácie routingu a prepojení - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Prepočítať stav routingu a prepojenia prepojok (v prípade, že autoaktualizácia nepracuje správne) - + Select all trace wires excluded from autorouting Vyberie všetky spoje vyňaté z autoroutingu - + Select All Jumpers Vybrať všetky prepojky - + Tidy Wires Usporiadať prepoje - + Tidy selected wires Usporiada vybrané prepoje - - + + Copper Fill Medená výplň - + Remove Copper Fill Odstrániť medenú výplň - + Remove the copper fill Odstráni medenú výplň - + Copper Top and Copper Bottom layers are both active Obe medené vrstvy, horná a spodná, sú aktivne - + Order a PCB... Objednať PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Objednať PCB vytvorené z Vášho návrhu - vo výbornom Fritzing Fab - + Copper Top layer is active Horná medená vrstva je aktívna - + Copper Bottom layer is active Spodná medená vrstva je aktívna - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... Autorouting... - + Autorouting Progress... Prebieha autorouting... - + jumpers - + copperfill - + vias - + Remove Bendpoint Odstrániť bod zlomu - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill Odstrániť medenú výplň - - + + &Wire Color &Farba prepojky - + Launch %1... Spustiť %1... - + No outdated parts found. All your parts are up-to-date. Neboli nájdené žiadne neaktuálne súčiastky. Všetky Vaše súčiastky sú aktuálne. - + Outdated parts Neaktuálne súčiastky - + Successfully updated %1 part(s). Please check all views for potential side-effects. Úspešne aktualizovaných %1 súčiastok. Skontrolujte všetky pohľady pre potenciálne vedľajšie účinky. - + Update %1 part(s) Aktualizácia %1 súčiastok @@ -4645,7 +4770,7 @@ Dôvod: %2 (chyb.kód %3) NetLabel - + net label @@ -4672,8 +4797,8 @@ Dôvod: %2 (chyb.kód %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4683,176 +4808,176 @@ Dôvod: %2 (chyb.kód %3) Kliknite na tento pin pre vytiahnutie nového spoja. - + Change trace layer Zmeniť vrstvu spoja - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Váš návrh ešte neobsahuje dosku! Pridajte PCB, aby bolo možné použiť medenú výplň. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). Chyba Fritzingu: Nejde renderovať dosku v SVG (1). - - - + + + Fritzing error: unable to render copper svg (1). Chyba Fritzingu: Nejde renderovať meď v SVG (1). - + Fritzing error: unable to write copper fill (1). Chyba Fritzingu: Nejde zapísať medenú výplň (1). - + Fritzing error: unable to write copper fill (2). Chyba Fritzingu: Nejde zapísať medenú výplň (2). - + Copper fill: please select only the board you want to fill. - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Nejde vytvoriť medenú výplň - pravdepodobne súčiastka nebola vložená na PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Nejde vytvoriť medenú výplň - súčiastka bola pravdepodobne vložená na inú časť alebo prepoj skôr než aktuálny PCB. - + Clear ground fill seeds @@ -4888,11 +5013,11 @@ Dôvod: %2 (chyb.kód %3) - - - - - + + + + + Parts Editor Editor súčiastok @@ -4907,12 +5032,12 @@ Dôvod: %2 (chyb.kód %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4932,7 +5057,7 @@ Dôvod: %2 (chyb.kód %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4979,216 +5104,216 @@ Dôvod: %2 (chyb.kód %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 Ctrl+4 - + Show the icon view - + Ctrl+5 Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Súbory obrázkov & patic (%1 %2 %3 %4 %5);;SVG súbory (%1);;JPEG súbory (%2);;PNG súbory (%3);;súbory gEDA patic (%4);;súbory Kicad modulov (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Súbory obrázkov (%1 %2 %3);;SVG súbory (%1);;JPEG súbory (%2);;PNG súbory (%3)%4%5 - + Open Image Otvoriť obrázok - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem Problém konverzie - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5220,12 +5345,12 @@ Dôvod: %2 (chyb.kód %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5234,7 +5359,7 @@ Dôvod: %2 (chyb.kód %3) - + across %n views. @@ -5243,7 +5368,7 @@ Dôvod: %2 (chyb.kód %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5283,67 +5408,67 @@ Dôvod: %2 (chyb.kód %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 v %1 nenájdená žiadna schéma - + schematic part schéma súčiastky - + no footprints found in %1 v %1 nenájdená žiadna pätica - + Relocate connector %1 @@ -5430,154 +5555,154 @@ Dôvod: %2 (chyb.kód %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save Uložiť - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" Uložiť "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector Pridať konektor - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6341,27 +6466,27 @@ Note: this warning will not be repeated during this session. Správanie kolieska myši - + Clear Settings - + Command Príkaz - + Control Riadenie - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. @@ -6402,52 +6527,60 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (kliknúť pre zmenu...) - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 Vyberte programátor (spustiteľný) pre %1 - + Connected Highlight Zvýraznenie prepojených - + Unconnected Highlight Zvýraznenie neprepojených - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6456,7 +6589,7 @@ klávesa SHIFT prepne posun osy Klávesa Alt alebo klávesa %1 = zväčšenie - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6465,12 +6598,12 @@ klávesa SHIFT přepne posun osy Klávesa Alt alebo klávesa %1 = posunúť - + Curvy vs. straight wires Krivky vs. rovné prepojky - + Curvy wires and legs @@ -6804,12 +6937,12 @@ Klávesa Alt alebo klávesa %1 = posunúť - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6819,12 +6952,12 @@ Klávesa Alt alebo klávesa %1 = posunúť - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6855,7 +6988,6 @@ Klávesa Alt alebo klávesa %1 = posunúť - Fritzing Fritzing @@ -6891,21 +7023,21 @@ Klávesa Alt alebo klávesa %1 = posunúť Upraviť odkaz - - - + + + Part Súčiastka - - - + + + Wire Prepojka - + Set Grid Size @@ -7108,12 +7240,12 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok. - + Convert to Via - + Convert Via to Bendpoint @@ -7129,43 +7261,43 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok.Zobrazenie schémy - + Error reading file %1: %2. Chyba čítania súboru %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Zmena pinu %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer Vrstva %1 - - + + Bring forward Posunúť dopredu - + Send backward Posunúť dozadu - + Bring to front Presunúť dopredu @@ -7180,28 +7312,28 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok.Spojiť prepojku - + Trace wires Vytvor spoj z prepoja - + Ratsnest wires Vytvor sieť spojov - - + + Select all %1 Vybrať všetky %1 - + Select outdated parts Vybrať všetky neaktuálne súčiastky - + Select locked parts Vybrať všetky uzamknuté súčiastky @@ -7376,12 +7508,12 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok.Spracovávanie súboru... - + Copying file %1 Kopírovanie súboru %1 - + File %1 already exists: it won't be overwritten Súbor %1 už existuje: nebude prepísaný @@ -7795,7 +7927,7 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7819,48 +7951,48 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8155,17 +8287,17 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok. Ruler - + width šírka - + &cm - + &in @@ -8173,33 +8305,33 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8331,87 +8463,87 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok.načítanie ukončené - + %1 %2 %1 %2 - + %1 %2 items %1 %2 položky - + Select All Vybrať všetko - + Deselect Zrušiť výber - + Add %1 Pridať %1 - + Selection Výber - + Move %2 (%1) Presunúť %2 (%1) - + Move %2 items (%1) Presuň %2 položky (%1) - - + + Select %1 Vybrať %1 - - + + Select %1 items Vybrať %1 položiek - - + + Disconnect Odpojiť - + Change Zmeniť - - + + Connect Pripojiť - - + + to %1 do %1 - + Create and connect wire Vytvoriť a pripojiť prepojku - + Rotate %2 (%1) Otočiť %2 (%1) @@ -8436,57 +8568,57 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok.Dvojklik - + Delete ratsnest Vymazať sieť prepojov - + from %1 z %1 - + Move leg of Presunúť pin - + Change leg curvature for %1. Zmeniť krivku pinu pre %1. - + Change leg bendpoint for %1. Zmeniť zlomový bod pinu pre %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Javí sa to ako pokus o vytvorenie spoja naprieč vrstvami. Táto skutočnosť by nemala vzniknúť: kontaktujte vývojárov. - + Create and connect %1 Vytvorte prepojku %1 - + wire prepojka - + trace spoj - + Flip %2 (%1) Preklopiť %2 (%1) @@ -8559,12 +8691,12 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok. - + Resize ruler to %1 %2 Zmeniť veľkosť pravítka %1 %2 - + test connectors @@ -8574,81 +8706,81 @@ Fritzing stále funguje, ale nebudete môcť zmeniť vlastnosti súčiastok.Zmeniť veľkosť popisu - + Change Resistance from %1 to %2 Zmena odporu z %1 na %2 - - + + Change %1 from %2 to %3 Zmena %1 z %2 na %3 - - + + Resize board to %1 %2 Zmeniť veľkosť dosky na %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 Odpojiť všetky prepojky od %1 - + Disconnect all wires from %1 items Odpojiť všetky prepojky od %1 položiek - + Change image from %1 to %2 Zmeniť obrázok z %1 na %2 - + change pin labels zmeniť popisy pinov - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8724,22 +8856,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage napätie - + label popisok - + Net labels - + Net labels cannot be blank @@ -8866,11 +8998,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8991,6 +9118,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9393,108 +9525,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_sl.ts b/translations/fritzing_sl.ts index 05f605d05..e9decc55a 100644 --- a/translations/fritzing_sl.ts +++ b/translations/fritzing_sl.ts @@ -12,255 +12,240 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Avtorji Fritzing so: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -803,7 +788,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -811,17 +796,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1270,6 +1255,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Prekliči + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1296,12 +1345,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1411,7 +1460,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1957,7 +2006,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1973,7 +2022,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1994,7 +2043,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2018,40 +2067,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2091,59 +2147,85 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2153,7 +2235,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2163,130 +2245,130 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2367,13 +2449,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel Prekliči - + Choose a folder for exporting @@ -2394,1173 +2476,1168 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Delete Wire - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Show Code - + Show the code (programming) view - + Align - + Move to bottom layer - + Move to top layer - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + There are %n outdated part(s) in this sketch. @@ -3570,7 +3647,7 @@ Go ahead and revert? - + We strongly recommend that you update these %n parts to the latest version. @@ -3580,909 +3657,929 @@ Go ahead and revert? - + This may result in changes to your sketch, as parts or connectors may be shifted. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Ctrl+4 - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About &O programu - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + Raise and Lower - + Ctrl+Shift+V - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Check Loaded Traces - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. @@ -4630,7 +4727,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4653,24 +4750,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4681,8 +4778,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4692,152 +4789,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5041,11 +5138,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5093,453 +5190,453 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel Prekliči - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors @@ -5549,7 +5646,7 @@ Go ahead and save? - + across %n views. @@ -5559,12 +5656,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6363,96 +6460,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6807,7 +6912,6 @@ shift key swaps scroll axis - Fritzing @@ -6878,12 +6982,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6893,12 +6997,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6923,21 +7027,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7205,18 +7309,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7226,43 +7330,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7277,22 +7381,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7605,12 +7709,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7770,7 +7874,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7794,48 +7898,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8131,17 +8235,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8149,33 +8253,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8307,142 +8411,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8542,91 +8646,91 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8703,22 +8807,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8845,11 +8949,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8970,6 +9069,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9372,108 +9476,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_sr.ts b/translations/fritzing_sr.ts index 56c15e357..01bbff894 100644 --- a/translations/fritzing_sr.ts +++ b/translations/fritzing_sr.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -794,7 +779,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -802,17 +787,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1261,6 +1246,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1287,12 +1336,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1402,7 +1451,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1952,7 +2001,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1968,7 +2017,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -2004,7 +2053,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2028,40 +2077,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2081,59 +2137,85 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2142,7 +2224,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2151,130 +2233,130 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2355,13 +2437,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2382,1969 +2464,1974 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + Delete Minus - + Delete selection without attached wires - + &Delete Wire - + Delete Wire up to bendpoints - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Ctrl+Shift+V - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+1 - + Ctrl+2 - + Ctrl+3 - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Show the breadboard view - + &Show Schematic - + Show the schematic view - + &Show PCB - + Show the PCB view - + Show Code - + Show the code (programming) view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + First Time Help - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + Raise and Lower - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Check Loaded Traces - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + There are %n outdated part(s) in this sketch. @@ -4353,7 +4440,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4362,113 +4449,123 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. @@ -4614,7 +4711,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4637,24 +4734,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4665,8 +4762,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4676,152 +4773,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5025,11 +5122,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5077,453 +5174,453 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors @@ -5532,7 +5629,7 @@ Go ahead and save? - + across %n views. @@ -5541,12 +5638,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6345,96 +6442,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6789,7 +6894,6 @@ shift key swaps scroll axis - Fritzing @@ -6850,12 +6954,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6865,12 +6969,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6905,21 +7009,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7187,18 +7291,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7208,43 +7312,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7259,22 +7363,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7587,12 +7691,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7752,7 +7856,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7776,48 +7880,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8112,17 +8216,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8130,33 +8234,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8288,142 +8392,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8521,91 +8625,91 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8681,22 +8785,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8845,7 +8949,7 @@ Note: you can also trigger this display by mousing down on the routing status te - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. + To display different properties in a part label, rotate it, or change the font, right-click the label. @@ -9350,108 +9454,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_sv.ts b/translations/fritzing_sv.ts index 7023b5725..990e7ffe8 100644 --- a/translations/fritzing_sv.ts +++ b/translations/fritzing_sv.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1888,7 +1937,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate @@ -1904,7 +1953,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -1925,7 +1974,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2018,24 +2067,25 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Specify a file name - - + + Fritzing (*%1) @@ -2043,45 +2093,52 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing - + Unable to export %1 as shareable @@ -2091,43 +2148,68 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2135,7 +2217,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2143,135 +2225,135 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting @@ -2317,7 +2399,7 @@ We're working to avoid this message, and only let you choose between proper - + Cancel @@ -2338,95 +2420,90 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Select a Fritzing File to Open - + Cannot find file %1. - + Cannot read file 1 %1: %2. - - + + File '%1' not found - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O @@ -2446,1558 +2523,1568 @@ We're working to avoid this message, and only let you choose between proper - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + Etchable (PDF)... - + Etchable (SVG)... - + &Print... - + Ctrl+P - + Print the current view - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + &Edit - + &Add to bin... - + Add selected part to bin - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Rotate the selected parts by 90 degrees clockwise - + Rotate the selected parts by 180 degrees - + Rotate current selection 90 degrees counter clockwise - + Rotate current selection 45 degrees counter clockwise - + Rotate current selection 45 degrees clockwise - + Convert - + Read-only - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Lock Part - + Prevent a part from being moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Show part label - + Ctrl+Shift+V - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + Dump all parts - + Debug dump all parts in this view - + Rotate 45° Clockwise - + Rotate 90° Clockwise - + Rotate 180° - + Rotate 90° Counter Clockwise - + Rotate 45° Counter Clockwise - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Open programming window - + Open microcontroller programming window - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + Show Code - + Show the code (programming) view - - - + + + + + + &Routing - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Select All Wires - + Select all wires - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + jumpers - + copperfill - + vias - + Do you want to update now? - + unable to find replacement for %1. - + &Show Breadboard - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Show/hide the label for the selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+1 - + Show the breadboard view - + &Show Schematic - + Ctrl+2 - + Show the schematic view - + &Show PCB - + Ctrl+3 - + Show the PCB view - + Ctrl+4 - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - + Online Projects Gallery - + Open Fritzing examples - + Online Parts Reference - + Open Parts Reference - + First Time Help - + Check for updates... - + Test Connectors - + Connect all connectors to a single test part - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File - + &Export - + as Image - + for Production - + &Part - + Raise and Lower - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View - + &Window - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Shift+Ctrl+3 - + Shift+Ctrl+2 - + Shift+Ctrl+1 - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. @@ -4005,7 +4092,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4013,421 +4100,431 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Show unrouted - + Highlight all unrouted connectors - + Select All CopperFill - + Select all copper fill items - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Check Loaded Traces - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - - + + Set both copper layers clickable - - + + Set copper top layer clickable - - + + Set copper bottom layer clickable - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Select All Traces - + Select all trace wires - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select all trace wires excluded from autorouting - + Select All Jumpers - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Shift+Ctrl+D - + Copper Top and Copper Bottom layers are both active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting... - + Autorouting Progress... - + Remove Bendpoint - + Generating %1 fill... - + ground - + copper - + Remove copper fill - - + + &Wire Color - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Outdated parts - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + Update %1 part(s) @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4632,62 +4729,62 @@ Reason: %2 (errcode %3) - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4700,120 +4797,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4849,11 +4946,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -4868,12 +4965,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4893,7 +4990,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4940,216 +5037,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5181,12 +5278,12 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors @@ -5194,7 +5291,7 @@ Reason: %2 (errcode %3) - + across %n views. @@ -5202,7 +5299,7 @@ Reason: %2 (errcode %3) - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5242,67 +5339,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5389,154 +5486,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6299,12 +6396,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6345,86 +6442,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6769,7 +6874,6 @@ shift key swaps scroll axis - Fritzing @@ -6805,12 +6909,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6820,12 +6924,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6845,21 +6949,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7060,12 +7164,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Convert to Via - + Convert Via to Bendpoint @@ -7081,43 +7185,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7132,28 +7236,28 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - - + + Select all %1 - + Select outdated parts - + Select locked parts @@ -7355,12 +7459,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,87 +8381,87 @@ Fritzing still works, but you won't be able to change parts properties. - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + Change - - + + Connect - - + + to %1 - + Create and connect wire - + Rotate %2 (%1) @@ -8382,57 +8486,57 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Flip %2 (%1) @@ -8503,12 +8607,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Resize ruler to %1 %2 - + test connectors @@ -8518,81 +8622,81 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8809,11 +8913,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8934,6 +9033,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_th.ts b/translations/fritzing_th.ts index 6107cb093..cf7148b02 100644 --- a/translations/fritzing_th.ts +++ b/translations/fritzing_th.ts @@ -31,10 +31,6 @@ Mariano Crowe, Johannes Landstorfer, - - Special thanks goes out to: - - Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -75,18 +71,6 @@ IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - - Special thanks goes out as well to all the students - - - - and alpha testers who were brave enough to give - - - - Fritzing a test spin. - - and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. @@ -188,19 +172,23 @@ - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Ukrainian: - and Kjell Morgenstern + Yelyzaveta Chyhryna - Ukrainian: + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - Yelyzaveta Chyhryna + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. @@ -1018,6 +1006,56 @@ A custom board svg typically has one or two silkscreen layers and one board laye + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + + + + Upload to Fab + + + + Upload + + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1698,10 +1736,6 @@ We're working to avoid this message, and only let you choose between proper %2. - - directly loading parts - - loading %1 (model) @@ -2558,14 +2592,6 @@ Please check all views for potential side-effects. Display the parts bin in a list view - - Donate to Fritzing - - - - Open Fritzing donation web page - - Export for PCB @@ -3535,6 +3561,46 @@ Note: if you want to update later, there are options under the 'Part' Display breadboard wires using standard color coding by length + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5079,6 +5145,10 @@ shift key swaps scroll axis Select a programmer (executable) for %1 + + %1 + + ProgramTab @@ -6018,10 +6088,6 @@ Fritzing still works, but you won't be able to change parts properties.Unable to find parts git repository HEAD - - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - - The parts folder '%1' may have been damaged (%2). %3 @@ -6058,10 +6124,6 @@ Fritzing still works, but you won't be able to change parts properties.Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 - - Error %1 @@ -6147,6 +6209,14 @@ Fritzing still works, but you won't be able to change parts properties.Fritzing requires that you make cutouts using a shape 'subtraction' or 'difference' operation in your vector graphics editor. + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -6931,10 +7001,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -7103,6 +7169,10 @@ Note: you can also trigger this display by mousing down on the routing status te When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7431,26 +7501,6 @@ Note: you can also trigger this display by mousing down on the routing status te Fritzing Fab - - Donate - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - Donate and leave a comment. - - - - Donate now - - Unable to reach fritzing.org/projects diff --git a/translations/fritzing_tr.ts b/translations/fritzing_tr.ts index 4287c5b96..9c557be68 100644 --- a/translations/fritzing_tr.ts +++ b/translations/fritzing_tr.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>Kod için GNU GPL v3 ve geri kalanlar için CreativeCommons:BY-SA - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing'i oluşturanlar: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,209 +61,210 @@ Bryant Mairs, Uleshka Asher ve Daniel Tzschentke. - Special thanks goes out to: - Teşekkürler: + Teşekkürler: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser ve Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing aşağıdaki fonlar sayesinde hayat bulabilmiştir - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, Bauhaus Tasarım Bölümü sponsorluğu, - + Department of Bauhaus-University Weimar, Weimar Üniversitesi, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, bir anonim bağışçı, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. ve her bir Fritzing Başlangıç Kiti veya Fritzing Lab'dan PCB alımı. - Special thanks goes out as well to all the students - Fritznig'e test turu atma imkanı sağlayan tüm öğrencilere + Fritznig'e test turu atma imkanı sağlayan tüm öğrencilere - and alpha testers who were brave enough to give - ve cesur alfa testçilere + ve cesur alfa testçilere - Fritzing a test spin. - ayrıca teşekkür ederiz. + ayrıca teşekkür ederiz. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -814,7 +815,7 @@ Dosya kullanılsın mı? Capacitor - + Select from the dropdown, or type in a %1 value Tıkla ve düşürden seç ya da bir %1'e yaz @@ -822,17 +823,17 @@ Dosya kullanılsın mı? ConnectorItem - + Add bendpoint Esnetme noktası ekle - + Straighten curve Eğriyi düzelt - + Remove bendpoint Esnetme noktasını kaldır @@ -1281,6 +1282,70 @@ Dosya kullanılsın mı? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + Yükle + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1307,12 +1372,12 @@ Dosya kullanılsın mı? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1428,7 +1493,7 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a Hole - + hole size delik boyutu @@ -1914,7 +1979,7 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a MainWindow - + Rotate Döndür @@ -1930,7 +1995,7 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a - + Autoroute Otomatik yönlendir @@ -1951,7 +2016,7 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a - + Add a note Not ekle @@ -2051,24 +2116,25 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a Paylaşılabilir '%1' açılamıyor: %2 - + Unable to open shareable part '%1': %2 Paylaşılabilir eleman '%1' açılamıyor: %2 - + + Unable to load part from '%1' '%1' konumundan parça yüklenemiyor - - + + Specify a file name Bir dosya adı belirtin - - + + Fritzing (*%1) Fritzing (*%1) @@ -2076,45 +2142,52 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable %1 dışa paylaşılabilir olarak aktarılamıyor @@ -2124,186 +2197,211 @@ Ayrıca konnektör üzerine sağ tıklanarak 'Ayarla Toprak Dolgu Tanecik&a '%1' herhangi bir Çizime rastlanmadı - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Fritzing Part (*%1) Fritzing Parçası (*%1) - + Unable to export %1 to shareable sketch '%1' paylaşılabilir çizime aktarılamıyor - + MainWindow::moveToPartsFolder mainwindow missing AnaPencere::ElemanlarDosyasınaTaşı ana pencere yok - + There is already a part with id '%1' loaded into Fritzing. Hali hazırda '%1' isimli eleman Fritzing'e yüklenmiş durumda. - - + + Do you want to keep the imported parts? İçe aktarılmış elemanları saklamak istiyor musunuz? - + No connections to route Yönlendirme için bağlantı yok - + Routing completed Yönlendirme tamamlandı - + Routing completed using %n jumper part(s) Yönlendirme %n jumper eleman(lar)ı kullanılarak tamamlandı - + %1 of %2 nets routed - %n connector(s) still to be routed %1 bağlantıdan %2 kadarı yönlendirildi %n bağlayıcı halen yönlendirilmeyi bekliyor - + %1 - [%2] %1 - [%2] - + No copper top layer Bakır üst katman yok - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Bakır üst (bakır 1) katmanı tek taraflı board'da mevcut değil. Lütfen board'u çift taraflı olarak değiştirin ya da bakır alt (bakır 0) katmanını seçin. - - + + Sorry! Özür Dileriz! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Bu özellikte bir parça yok. Bu mesajı engellemek için çalışıyoruz ve size varolan özelliklerden birini seçme imkanı sunuyoruz - + No exactly matching part found; Fritzing chose the closest match. Tam olarak eşleşen bir eleman bulunamadı; Fritzing en yakın eşleşmeyi seçti. - + Change to single layer pcb Tek katmanlı baskılı devreye çevir - + Change to two layer pcb Çift katmanlı baskılı devreye çevir - + Swapped %1 with module %2 %2 %1 modülü ile yer değiştirdi - + Change image to %2 Resmi %2'ye çevir - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Svg %1'de bir %2 katmanı bulunmuyor.Özel bir board oluşturmanın nasıl yapılacağına dair bilgi için linkte bulunan öğretici notlara bakabilirsiniz <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 %1 yükleniyor - + Loading... Yükleniyor... - + new sketch yeni çizim - + Schematic conversion Şematik dönüştürme - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Bu çizimi kaydetmek onu yeni şematik grafik standardına dönüştürecektir. Devam edilsin ve dönüştürülsün mü? - + Backing up '%1' '%1' yedekleniyor - + Fritzing uncompressed (*%1) - + Unrouted connections Yönlendirilmemiş bağlantılar - + There are no unrouted connections in this view. Bu görünümde yönlendirilmemiş bir bağlantı yok. - + (x,y)=(%1, %2) %3 (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (genişlik, yükseklik)=(%3, %4) %5 - + Code Kod - + Welcome Hoş Geldiniz - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Çiziminizin henüz bir board'u yok! Lütfen Gerber'e aktarmak için bir Baskı Devre ekleyin. - + Choose a folder for exporting Dışa aktarmak için bir dosya seçin @@ -2353,7 +2451,7 @@ Bu mesajı engellemek için çalışıyoruz ve size varolan özelliklerden birin - + Cancel İptal Et @@ -2374,97 +2472,96 @@ Bu mesajı engellemek için çalışıyoruz ve size varolan özelliklerden birin Dışa aktarılıyor... - + Unable to save %1 %1 kaydedilemiyor - + Cannot print to %1 %1 yazıdırılamıyor - + Cannot write file %1: %2. %1 dosyasına yazılamadı: %2. - + Saved '%1' '%1' kaydedildi - + Select a Fritzing File to Open Açmak için bir Fritzing Dosyası Seçin - + Cannot find file %1. %1 dosyası bulunamadı. - + Cannot read file 1 %1: %2. Dosya okunamadı 1 %1: %2. - - + + File '%1' not found '%1' dosyası bulunamadı - directly loading parts - elemanları direk olarak yüklüyor + elemanları direk olarak yüklüyor - + loading %1 (model) %1 (model)'i yüklüyor - + loading %1 (breadboard) %1 yükleniyor (deneysel devre tahtası) - + loading %1 (pcb) %1 (pcb)'yi yüklüyor - + loading %1 (schematic) %1 (şematik)'i yüklüyor - + New Yeni - + Ctrl+N Ctrl+N - + Create a new sketch Yeni bir çizim oluştur - + &Open... &Aç... - + Ctrl+O Ctrl+O @@ -2484,58 +2581,58 @@ Bu mesajı engellemek için çalışıyoruz ve size varolan özelliklerden birin Asitli oyma işlemi için dışa aktar aynı anda yalnızca bir kartı dışa aktarabilir -- Lütfen dışa aktarmak istediğiniz kartı seçin. - + &Save &Kaydet - + Ctrl+S Ctrl+S - - + + Save the current sketch Mevcut çizimi kaydet - + &Save As... &Farklı Kaydet... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... İnternet üzerinden paylaş... - + Post a project to the Fritzing website Projenizi Fritzing'in internet sitesine gönderin - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image Mevcut çizimin görünen kısımlarını JPG resmi olarak dışa aktar - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image Mevcut çizimin görünen kısımlarını PNG resmi olarak dışa aktar @@ -2548,825 +2645,828 @@ Bu mesajı engellemek için çalışıyoruz ve size varolan özelliklerden birin Mevcut çizimin görünen kısımlarını PostScript resmi olarak dışa aktar - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image Mevcut çizimin görünen kısımlarını PDF resmi olarak dışa aktar - + SVG... SVG... - + Export the current sketch as an SVG image Mevcut çizimi SVG olarak dışa aktar - + List of parts (&Bill of Materials)... Elemanların Listesi (&Malzemelerin Maliyeti)... - + Save a Bill of Materials (BoM)/Shopping List as text Malzemelerin Maliyeti ni (BoM)/Alışveriş Listesi text olarak kaydet - + XML Netlist... XML Netlist... - + Save a netlist in XML format Bir netlisti XML biçiminde kaydet - + SPICE Netlist... SPICE Netlist... - + Save a netlist in SPICE format Bir netlist'i SICE biçiminde kaydet - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Mevcut çizimi Eagle CAD'e aktar - + Extended Gerber (RS-274X)... Genişletilmiş Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Mevcut çizimi profesyonel Baskı Devre üretimi için Genişletilmiş Gerber (RS-274X) biçimine aktar - + Export SPICE Netlist... SPICE Netlist olarak dışa aktar... - + Gerber export can only handle one board at a time--please select the board you want to export. Gerber dışa aktarımı aynı anda sadece bir board için uygulanabilir--lütfen aktarmak istediğiniz tek bir board'u seçin. - + Sketch exported to Gerber Çizim Gerber'e aktarıldı - + Export the current sketch to PDF for DIY PCB production (photoresist) Mevcut çizimi Kendin Yap yöntemi ile Baskı Devre Üretimi (fotorezistör) için PDF biçimine aktar - + Export the current sketch to SVG for DIY PCB production (photoresist) Mevcut çizimi Kendin Yap Baskı Devre Yöntemi (fotorezistör) için SVG biçiminde dışa aktar - + Etchable (PDF)... Asitle Oluklanabilir Baskı Devre (PDF)... - + Etchable (SVG)... Asitle Oluklanabilir Baskı Devre (SVG)... - + &Print... &Yazdır... - + Ctrl+P Ctrl+P - + Print the current view Mevcut görünümü yazdır - + Shell launch %1 Kabuk kodu çalıştır %1 - + throw test exception İstisna test başlat - + throw a fake exception to see what happens Ne olduğunu görmek için sahte bir istisna başlat - + &Quit &Çık - + Ctrl+Q Ctrl+Q - + Quit the application Uygulama'dan Çık - + &Open Example &Örnek Aç - + All Hepsi - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' AnaPencere::Menüyüİndeksledoldur:'%1' isimli örneği yükeleme başarısız - + &Open Recent Files &Mevcut Dosyaları Aç - + &%1 %2 &%1 %2 - + Undo Geri Al - + Redo Tekrar Yap - + &Cut &Kes - + Cut selection Seçimi kes - + &Copy &Kopyala - + Copy selection Seçimi kopyala - + &Paste &Yapıştır - + Paste clipboard contents Panodaki ögeleri yapıştır - + Paste in Place Belirli bir yere Yapıştır - + Paste clipboard contents in place Panodaki ögeleri belirli bir Yere yapıştır - + &Duplicate &İkiz Oluştur - + Ctrl+D Ctrl+D - + Duplicate selection Seçimin ikizini oluştur - + &Delete &Sil - + Delete selection Seçimi sil - + &Select All &Tümünü Seç - + Select all elements Tüm elemanları seç - + &Deselect &Seçimi serbest bırak - + Deselect Seçimi serbest bırak - - + + Add Note Not Ekle - + &Preferences... &Tercihler... - - + + Show the application's about box Uygulama ile ilgili kutuyu göster - + &Edit &Düzenle - + &Add to bin... &Kovaya ekle... - + Add selected part to bin Seçilmiş elemanı kovaya ekle - + Disconnect All Wires Tüm Kabloları Sök - + Disconnect all wires connected to this connector Bu bağlayıcıya bağlı tüm kabloları sök - + Update InfoView on hover Bilgi Penceresini güncelle - + Export Normalized SVG Normalize edilmiş SVG'yi güncelle - + Export 1000 dpi SVG of this part in this view Bu parçayı bu görünümde 1000 dpi SVG olarak dışa aktar - + Export Normalized Flattened SVG Normalleştirilmiş Basıklaştırılmış SVG olarak dışa aktar - + Export 1000 dpi Flattened SVG of this part in this view Bu parçayı bu görünümde basıklaştırılmış 1000 dpi SVG olarak dışa aktar - + Rotate the selected parts by 90 degrees clockwise Seçili elemanları saat yönünde 90 derece döndür - + Rotate the selected parts by 180 degrees Seçili elemanları 180 derece döndür - + Rotate current selection 90 degrees counter clockwise Mevcut seçimi saat yönünün tersine 90 derece döndür - + Rotate current selection 45 degrees counter clockwise Mevcut seçimi saat yönünün tersine 45 derece döndür - + Rotate current selection 45 degrees clockwise Mevcut seçimi saat yönünde 45 derece döndür - + Convert Dönüştür - + Read-only Salt-okunur - + &Flip Horizontal &Yatay Çevir - + Flip current selection horizontally Mevcut seçimi yatay çevir - + &Flip Vertical &Dikey Çevir - + Flip current selection vertically Mevcut seçimi dikey olarak çevir - + Bring to Front Öne Çıkar - + Shift+Ctrl+] In turkish keyboards its needed to press also to Alt button to write "]" this need to be taken into account in order to avoid confusion Shift+Ctrl+] - + Bring selected object(s) to front of their layer Seçili nesne(ler)i katmanlarının önüne çıkar - + Bring Forward İlerlet - + Ctrl+] In turkish keyboards its needed to press also to Alt button to write "]" this need to be taken into account in order to avoid confusion Ctrl+] - + Bring selected object(s) forward in their layer Seçili nesne(ler)i kendi katmanlarında ilerlet - + Send Backward Geriye gönder - + Ctrl+[ In turkish keyboards its needed to press also to Alt button to write "]" this need to be taken into account in order to avoid confusion Ctrl+[ - + Send selected object(s) back in their layer Seçili nesneleri kendi katmanlarında arkaya gönder - + Send to Back Arkaya Gönder - + Shift+Ctrl+[ In turkish keyboards its needed to press also to Alt button to write "]" this need to be taken into account in order to avoid confusion Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Seçili nesne(ler)i kendi katmanlarında arakaya gönder - + Lock Part Elemanı Kilitle - + Prevent a part from being moved Elemanın yerini sabitle - + Select All Locked Parts Tüm kilitli elemanları seç - + Select all parts that can't be moved Tüm sabit elemanları seç - + &Show All Layers &Tüm katmanları göster - + Show all the available layers for the current view Mevcut görünüm için uygun tüm katmanları göster - + &Hide All Layers &Tüm katmanları gizle - + Hide all the layers of the current view Mevcut görünümün tüm katmanlarını gizle - + &Show part label &Parça etiketini göster - + Ctrl+Shift+V Ctrl+Shift+V - + Delete Minus Eksi Sil - + Delete selection without attached wires Ekli kablolar olmadan seçimi sil - + Delete Wire up to bendpoints Eğim noktalarına kadar kabloyu sil - + Dump all parts Tüm parçaları dök - + Debug dump all parts in this view Bu görünümdeki tüm parçaların döküm hata ayıklaması - + Rotate 45° Clockwise Saat Yönünde 135� Döndür {45°?} - + Rotate 90° Clockwise Saat Yönünde 135� Döndür {90°?} - + Rotate 180° 180� döndür {180°?} - + Rotate 90° Counter Clockwise Saatin ters yönünde 45� döndür {90°?} - + Rotate 45° Counter Clockwise Saatin ters yönünde 45� döndür {45°?} - + &Export... &Dışa aktar... - + Export selected part Seçili elemanı dışa aktar - - + + Add Bendpoint Esnetme noktası ekle - + Add a bendpoint to the selected wire Seçili kabloya esnetme noktası ekle - + Convert Bendpoint to Via Esnetme noktasını Geçite çevir - + Convert the bendpoint to a via Bu esnetme noktasını geçite çevir - + Convert Via to Bendpoint Dirsek noktasına çevir - + Convert the via to a bendpoint Geçiti bir esnetme noktasına çevir - + Straighten Curve Eğriyi Düzleştir - + Straighten the curve of the selected wire Seçili kablonun eğriliğini düzleştir - - + + Select outdated parts Zamanı geçmiş elemanları seç - - + + Update selected parts Seçili elemanları güncelle - + Open programming window Programlama penceresini aç - + Open microcontroller programming window Mikroiişlemci programlama penceresini aç - + &Zoom In &Yakınlaştır - + Ctrl++ Ctrl++ - + Zoom in Yakınlaştır - + Ctrl+= Ctrl+= - + &Zoom Out &Uzaklaştır - + Ctrl+- Ctrl+- - + Zoom out Uzaklaştır - + &Fit in Window &Pencereye Sığdır - + Ctrl+0 Ctrl+0 - + Fit in window Pencereye sığdır - + &Actual Size &Gerçek Boyut - + Actual (real world physical) size Gerçek (fiziksel) boyut - + 100% Size 100% Boyut - + Shift+Ctrl+0 Shift Ctrl+0 - + 100% (pixel) size 100%(piksel) boyutu - + Align to Grid Izgaraya göre Hizala - + Align items to grid when dragging Nesneri sürüklerken ızgaraya göre hizala - + Ctrl+5 Ctrl+5 - + &Show Welcome &Hoş Geldiniz Ekranını Göster - + Show the welcome view Hoş geldiniz ekranını göster - + Show Code Kodu Göster - + Show the code (programming) view Kodu programlama görünümünde göster - - - + + + + + + &Routing &Yönlendirme - + &Create trace from ratsnest &Yumaktan hat oluştur - + Create a trace from the ratsnest line Çizgi yumaklarından hat oluştur - + &Create wire from ratsnest &Yumaktan kablo oluştur - + Create a wire from the ratsnest line Çizgi yumağından kablo oluştur - + Select All Wires Tüm Kabloları Seç - + Select all wires Tüm kabloları seç - + Fill empty regions of the copper layer--not including traces connected to a GROUND TOPRAĞA bağlı hatları içermeyecek şekilde bakır katmanın boş bölgelerini doldur - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Üreticilere bağlı hatlar da dahil olmak üzere bakır katmanın boş olan bölgelerini doldur - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Ekran konumu gerçek konumuyla eşleşmeyen tüm hatları seç .Sadece sürüm 0.7.10 ve daha öncesinde Otomatik yönlendirilimiş çizimler için gereklidir - + Autorouter/DRC settings... Oto-Yönlendirme/Tasarım Kuralları kontrolü ayarları... - + Set autorouting parameters including keepout... Uzak tutma dahil Otomatik yönlendirme parametrelerini ayarla... - + jumpers Atlayıcı - + copperfill bakır dolgu - + vias geçitler - + Do you want to update now? @@ -3375,29 +3475,29 @@ Do you want to update now? Şimdi güncellemek istiyor musunuz? - + unable to find replacement for %1. %1 yerine geçebilecek bir şey bulunamıyor. - + &Show Breadboard &Deneysel Devre Tahtasını Göster - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Fritzing Dosyaları (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Firtzing Paylaşılabilir (*%2);;Fritzing Elemanı (*%3);;Fritzing Kovası (*%4);;Fritzing Paylaşılabilir Kovası (*%5) - + Revert? Geri Döndürülsün mü? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3406,619 +3506,634 @@ Go ahead and revert? Devam et ve geri döndür? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Bir Fritzing çizimi aç (.fzz, .fz) veya bir Fritzing paçası yükle (.fzpz) veya Fritzing parçası bin yükle (.fzb, .fzbz) - + Revert Geri Döndür - + Reload the sketch Çizimi tekrar yükle - + &Delete Wire &Kabloyu Sil - + Edit (new parts editor) Düzenle (Yeni eleman düzenleyici) - + Open the new parts editor on an existing part Varolan bir eleman üzerinden Yeni Eleman Düzenleyici'yi aç - + Align Left Sola Hizala - + Align selected items at the left Seçilen ögeleri sola hizala - + Align Horizontal Center Yatay Olarak Ortaya Hizala - + Align selected items at the horizontal center Seçilen ögeleri yatay olarak ortaya hizala - + Align Right Sağa Hizala - + Align selected items at the right Seçilen ögeleri sağa hizala - + Align Top Yukarı Hizala - + Align selected items at the top Seçilen ögeleri yukarı hizala - + Align Vertical Center Dikey Ortaya Hizala - + Align selected items at the vertical center Seçilen ögeleri dikey ortaya hizala - + Align Bottom Aşağı Hizala - + Align selected items at the bottom Seçilen ögeleri aşağı hizala - + Sticky Yapışkan - + If a "sticky" part is moved, parts on top of it are also moved "Yapışkan" bir elemanın yeri değiştirildiğinde, onun üzerine bağlı elemanların da yerleri değişir - + Show/hide the label for the selected parts Seçili elemanların etiketlerini Göster/Gizle - + Find part in sketch... Çizimde elemanı bul... - + Search for parts in a sketch by matching text Yazım eşleştirmeyi kullanarak çizimdeki elemanları ara - - + + Hide part silkscreen Elemanın serigrafisini gizle - + Hide/show the silkscreen layer for only this part Yalnızca bu eleman için serigrafiyi Gizle/Göster - + Show Grid Izgarayı Göster - + Show the grid Izagarayı göster - + Set Grid Size... Izgaranın Boyutunu Ayarla... - + Set the size of the grid in this view Bu görünüm için ızgaranın sıklığını ayarla - + Set Background Color... Arka Plan Rengini Ayarla... - + Set the background color of this view Bu görünüm için arka plan rengini seç - + Ctrl+1 Ctrl+1 - + Show the breadboard view Deneysel devre tahtası görünümünü göster - + &Show Schematic &Şematiği Göster - + Ctrl+2 Ctrl+2 - + Show the schematic view Şematik görünümü göster - + &Show PCB &Baskı Devreyi Göster - + Ctrl+3 Ctrl+3 - + Show the PCB view Baskı Devre görünümünü göster - + Ctrl+4 Ctrl+4 - + Show Parts Bin Icon View Parça Kovasını Simge Olarak Göster - + Display the parts bin in an icon view Elemanlar kısmını küçük resim halinde görüntüle - + Show Parts Bin List View Parça Kovasını Liste Görünümünde Göster - + Display the parts bin in a list view Elemanları listelenmiş olarak görüntüle - + &Minimize &Küçült - + Ctrl+M Ctrl+M - + Minimize current window Mevcut pencereyi küçült - + Debugger Output It is also known as debugging in Turkish but it also has a turkish translation that most of the people now thats why ı wrote the english one too Hata Ayıklayıcı Çıktısı - + Online Tutorials Çevrim İçi Ders Notları - + Ctrl+? Ctrl+? - + Open Fritzing help Fritzing Yardımı Aç - Donate to Fritzing - Fritzing'e Bağış Yap + Fritzing'e Bağış Yap - Open Fritzing donation web page - Fritzing bağış web sitesini ziyaret et + Fritzing bağış web sitesini ziyaret et - + Online Projects Gallery Çevrimiçi Proje Galerisi - + Open Fritzing examples Fritzing Örneklerini Aç - + Online Parts Reference Çevrimiçi Parça Özellikleri - + Open Parts Reference Parça Özelliklerini Aç - + First Time Help Başlangıç Yardımı - + Check for updates... Güncellemeleri Takip Et... - + Test Connectors Bağlantı Elemanlarını Test Et - + Connect all connectors to a single test part Tüm bağlayıcıları tek bir deneme parçasına bağla - + Check whether a newer version of Fritzing is available for download Fritzing'in yeni bir sürümünün indirmek için uygun olup olmadığını kontrol et - + &About &Hakkında - + Tips, Tricks and Shortcuts Öneriler, Kurnazlıklar ve Kısayollar - + Display some handy Fritzing tips and tricks Kullanışlı birkaç Fritzing tavsiyesini ve numarasını görüntüşe - + Display First Time Help Başlangıç Yardımını Görüntüle - + &About Qt &Qt Hakkında - + Show Qt's about box Qt'nin "Hakkında" kutusunu göster - + Report a bug... Bir hata raporla.... - - + + Report a but you've found in Fritzing Fritzing'te bulduğun bir hata raporla - + Enable debugging log Hata ayıkla kaydını etkinleştir - + Parts Editor Help Parça Düzenleyici Yardımı - + Display Parts Editor help in a browser Parça Düzenleyici yardımını yeni bir tarayıcıda görüntüle - + &File &Dosya - + &Export &Dışa Aktar - + as Image Resim olarak - + for Production Üretim için - + &Part &Parça - + Raise and Lower Yükselt ve Alçalt - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align Hizala - + &View &Göster - + &Window &Pencere - - - + + + Ground Fill Toprak Dolgusu - + &Help &Yardım - + Move to bottom layer En alt katmana taşı - + Move to top layer Üst katmana taşı - + Delete Ratsnest Line Yumaklanmış Hattı Sil - + Delete Wire Kabloyu Sil - + Hide part label Parça etiketini gizle - + Show part label Parça etiketini göster - + Show part silkscreen Parçanın serigrafisini göster - + Delete Sil - + top and bottom üst ve alt - + bottom alt - + top üst - + Ground Fill (%1) Zemin Dolgusu (%1) - + Copper Fill (%1) Bakır Dolgusu (%1) - + Actual Size Gerçek Boyut - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Monitor'un fiziksel boyutunu otomatik olarak belirlemek olası görünmüyor bu nedenle hali hazırda uygulanmış olan 'gerçek boyut' görünümü sadece bir tahmin.Yapabileceğiniz en iyi eylem cetvel kısmından bir cetvel seçip sürüklemek ve gerçek (fiziksel) bir cetvelinizi bu cetvelle tam olarak eşleşinceye kadar yakınlaştırmak. - + Page Setup Sayfa Ayarları - + Sorry, "%1" has not been implemented yet Üzgünüz, '%1' henüz kullanılamıyor + + + Routing + + + + Autoroute connections... Bağlantıları Oto-Yönlendir... - + Shift+Ctrl+A Shift+Ctrl+A - + Set Ground Fill Keepout... Toprak Dolgusu Uzak Tutma Mesafesini Ayarla... - + Set the minimum distance between ground fill and traces or connectors Toprak dolgusu ve hatlar ya da konnektörler arasında en kısa mesafeyi ayarla - + Design Rules Check (DRC) Tasarım Kuralları Kontrolü (DRC) - + Highlights any parts that are too close together for safe board production Güvenli bir board üretimi için birbirine çok yakın olan elemanları vurgular - + Fritzing Fab Quote... Fritzing Fab Teklifi... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Baskı devreyi bu çizimden Fritzing Fab'ta üretmek ne kadara mal olabilir - - + + View from below Aşağıdan görünüm - - + + View the PCB from the bottom layers upwards Baskılı devreyi alt katmanları üstte olacak şekilde görüntüle - + View from above Yukarıdan görünüm - + View the PCB from the top layers downwards Baskılı devreyi üst katmanları altta olacak şekilde görüntüle - + Shift+Ctrl+3 Shift+Ctrl+3 - + Shift+Ctrl+2 Shift+Ctrl+2 - + Shift+Ctrl+1 Shift Ctrl+1 - + Schematic view update Şematik görünüm güncellemesi - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -4027,29 +4142,29 @@ Devam et ve geri döndür? - + Would you like to convert '%1' to the new standard now or open the file read-only? '%1' dosyasını yeni standarda şimdi güncellemek mi yoksa salt okunur açmak mı istersiniz? - + The conversion process will not modify '%1', until you save the file. Dönüşüm süreci '%1' dosyasını siz kaydedene kadar değiştirmeyecektir. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Parça görünümlerinin çoğunun boyutu değiştiğinden şematik görünümde parçaları ve bağlantıları yeniden düzenlemeniz gerekli. İzleri temizlemek için Otomatik Yönlendiriciyi kullanabilirsiniz. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Özel parçaların dönüştürülmeyeceğini unutmayın. 'Dikdörtgen' şematik resimlerin dönüştürülmesi için Parça Düzenleyici'de kullanabileceğiniz bir araç bulunmaktadır. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -4058,437 +4173,447 @@ Note: if you want to update later, there are options under the 'Part' Not: ileride güncellemek isterseniz 'Parça' menüsünde eskimiş parçaları teker teker düzenleyebileceğiniz seçenekler mevcuttur. - + There are %n outdated part(s) in this sketch. Bu çizimde %n adet eski parça bulunmaktadır. - + We strongly recommend that you update these %n parts to the latest version. Bu %n parçayı son sürüme güncellemenizi öneriyoruz. - + This may result in changes to your sketch, as parts or connectors may be shifted. Parçalar veya bağlayıcılar kaymış olabileceğinden çiziminizin son hali değişmiş olabilir. - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + %1 background %1 arkaplan - + Enter Text Metin Girişi - + Text will match part label, description, title, etc. Enter text to search for: Yazı parça etiketi, açıklaması, başlığı, vb. eşleştirilecektir. Aramak için metin girin: - + Search Ara - + No parts matched search term '%1'. '%1' ile ilgili hiçbir sonuç bulunamadı. - + Do not autoroute Oto-Yönlendirme Yapma - + When autorouting, do not rip up this trace wire, via, or jumper item Oto-Yönlendirme yaparken, bu hat kablosunu, geçiti, ya da atlayıcıyı(jumper) yırtma - + Move to other side of the board Board diğer tarafına geç - + Show unrouted Yönlendirilmemişleri Göster - + Highlight all unrouted connectors Yönlendirilmemiş tüm konnektörleri vurgula - + Select All CopperFill Tüm Bakır Dolguyu Seç - + Select all copper fill items Tüm bakır dolgu nesnelerini seç - + Select All "Don't Autoroute" Traces Tüm "Oto-Yönlendirme Yapma" Hatlarını Seç - + Select All Autoroutable Traces Tüm Oto-Yönledirilebilir Hatları Seç - + Select all trace wires that can be changed during autorouting Oto-Yönlendirme sırasında değişebilecek tüm hat kablolarını seç - + Select all jumper item parts Tüm atlayıcı nesneleri seç - + Select All Vias Tüm Geçitleri Seç - + Select all via parts Tüm geçit elemanlarını seç - + Check Loaded Traces Yüklenmiş Hatları Kontrol Et - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Çiziminiz henüz bir board içermiyor! Lütfen Oto-Yönlendiriciyi kullanabilmek için bir Baskı Devre ekleyin. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Lütfen Oto-Yönlendirmek istediğiniz board'u seçiniz. Oto-Yönlendirici aynı anda yalnızca bir boar'u yönlendirebilir. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Çiziminiz henüz bir board içermiyor! Lütfen toprak dolgulama ya da bakır dolgulamayı kullanabilmek için bir Baskı Devre ekleyin. - + Please select a PCB--copper fill only works for one board at a time. Lütfen tek bir Baskı Devre seçiniz--bakır dolgulama aynı anda yalnızca bir board için yapılabilmekte. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Çiziminiz henüz bir board içermiyor! Lütfen bakır dolguyu çıkarmak için bir Baskı Devre ekleyin. - + Please select a PCB--ground fill operations only work on a one board at a time. Lütfen tek bir Baskı Devre seçin--toprak dolgulama işlemi tek seferde yalnızca bir kart için yapılabilir. - + OK Tamam - + Set the grid size for %1. Izgara aralığı %1 için ayarlansın. - + Grid Size: Izgara Boyutu: - + in inç - + mm mm - + Restore Default Varsayılana Dön - + Your sketch does not have a board yet! DRC only works with a PCB. Çiziminiz henüz bir kart içermiyor! Tasarım kuralları kontrolü sadece bir Baskı Devre ile yapılabilir. - + Please select a PCB. DRC only works on one board at a time. Lütfen tek bir Baskı Devre seçin. DRC tek seferde yalnızca bir kart ile çalışabilir. - + DRC Progress... Tasarım Kural Kontrolü İlerliyor... - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. Çiziminiz henüz bir kart içermiyor! Lütfen bakır dolgu işlemleri yapabilmek için bir Baskı Devre ekleyin. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Lütfen tek bir Baskı Devre seçin. Bakır dolgu işlemleri tek seferde yalnızca bir kart için yapılabilir. - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Bu yakın bir zamanda Fritzing çizminizin EAGLE düzenleme yazılımına aktarılmasını sağlayacak. Eğer favori Elektronik Tasarım Otomasyonlarınızı içeren daha fazla dışa aktarma seçeneği istiyorsanız bizi bilgilendirin ya da katkılarınızı paylaşın. - + Export SVG... SVG'yi Dışa Aktar... - + Export Bill of Materials (BoM)... Malzeme Maliyetlerini(BoM) Dışa Aktar... - + Unable to save BOM file, but the text is on the clipboard. BOM dosyası kaydedilemiyor, ancak ilgili yazı panoya aktarıldı. - + Export Netlist... Netlist'i Dışa Aktar... - - + + Set both copper layers clickable Her iki bakır katmanı da tıklanabilir yap - - + + Set copper top layer clickable Üst bakır katmanı tıklanabilir yap - - + + Set copper bottom layer clickable Alt bakır katmanı tıklanabilir yap - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Seçili hatları board'un diğer tarafına aktar (not: 'ilk' hat aktarılacak geriye kalanlari aynı tarafı takip edecek) - + Select All Traces Tüm Hatları Seç - + Select all trace wires Tüm hat kablolarını seç - + Force Update Routing Status and Ratsnests Yönlendirme Durumlarını ve Yumakları Zorla Güncelle - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Yönlendirme durumunu ve yumak kabloları tekrar hesapla (oto-güncelleme doğru çalışmadığı durumlarda) - + Select all trace wires excluded from autorouting Oto-Yönlendirme yapılmamış tüm hat kablolarını seç - + Select All Jumpers Tüm Atlayıcıları Seç - + Tidy Wires Kabloları Düzle - + Tidy selected wires Seçili kabloları düzle - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Bakır katmanın boş bölgelerini doldur--doldurma işlemi TOPRAĞA bağlı tğm hatları içerecektir - - + + Copper Fill Bakır Dolgu - + Remove Copper Fill Bakır Dolguyu Çıkart - + Remove the copper fill Bakır dolguyu çıkar - + Choose Ground Fill Seed(s)... Toprak Dolgu Tanelerini Seç... - + Set Ground Fill Seed Toprak Dolgu Tanesi Ayarla - + Treat this connector and its connections as a 'ground' during ground fill. Bu konnektörü ve bağlantıları toprak dolgulama işlemi sırasında 'toprak' olarak algıla. - + Clear Ground Fill Seeds Toprak Dolgu Tanelerini Temizle - + Clear ground fill seeds--enable copper fill only. Toprak dolgu tanelerini temizle--sadece bakır dolguyu etkinleştir. - + Shift+Ctrl+D Shift+Ctrl+D - + Copper Top and Copper Bottom layers are both active Bakır Üst ve Bakır Alt katmanlarının her ikisi de aktif - + Order a PCB... Bir Baskı Devre Sipariş Et... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Çiziminizden oluşturulmuş bir Baskı Devre'yi --müthiş Fritzing Fab'ten sipraiş et - + Copper Top layer is active Bakır Üst katman aktif - + Copper Bottom layer is active Bakır Alt katman aktif - + Autorouting... Oto-Yönlendiriliyor... - + Autorouting Progress... Oto-Yönlendirme İlerliyor... - + Remove Bendpoint Esnetme Noktasını çıkar - + Generating %1 fill... %1 dolgusu oluşturuluyor... - + ground toprak - + copper bakır - + Remove copper fill Bakıt dolguyu çıkar - - + + &Wire Color &Kablo Rengi - + Launch %1... %1 Başlatılsın - + No outdated parts found. All your parts are up-to-date. Süresi geçmiş herhangi bir parça bulunamadı. Tüm parçalarınız güncel. - + Outdated parts Süresi geçmiş parçalar - + Successfully updated %1 part(s). Please check all views for potential side-effects. %1 parçanın güncellemesi başarılı. Tüm görünümleri olası yan etkiler için kontrol edin. - + Update %1 part(s) %1 parçayı güncelle @@ -4666,7 +4791,7 @@ Neden: '%2' (hatakodu %3) NetLabel - + net label ağ etiketi @@ -4692,62 +4817,62 @@ Neden: '%2' (hatakodu %3) Konnektörden yeni bir hat çıkarmak için üzerine tıklayın. - + Change trace layer Hat katmanını değiştirin - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Çiziminizin henüz bir kartı yok! Lütfen bakır dolguyu kullanabilmek için bir Baskı Devre ekleyin. - + %1 Fill: please select the board you want to apply fill to. %1 Dolgu: lütfen dolguyu uygulamak istediğiniz kartı seçin. - + Ground Toprak - + Copper Bakır - + Copper fill: please select only the board you want to fill. Bakır dolgu: lütfen yalnızca doldurmak istediğiniz kartı seçin. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4762,93 +4887,93 @@ Neden: '%2' (hatakodu %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Önce lütfen bir Baskı Devrenin üzerine tıklayın--bu işlem aynı anda yalnızca bir board için uygulanabilir. - - + + Fritzing error: unable to render board svg (1). Fritzing hatası: board svg işlenemiyor (1). - - - + + + Fritzing error: unable to render copper svg (1). Fritzing hatası: bakır svg işlenemiyor (1). - + Fritzing error: unable to write copper fill (1). Fritzing hatası: bakır dolgu yazılamıyor (1). - + Fritzing error: unable to write copper fill (2). Fritzing hatası: bakır dolgu yazılamıyor (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Bakır dolgu oluşturulamıyor--büyük bir olasılıkla eleman Baskı Devre üzerine yerleştirilmemiş. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Bakır dolgu oluşturulamıyor--büyük bir olasılıkla eleman Baskı Devrenin üzerine yerleştirilmesi gerekirken başka bir elemanın ya da kablonun üzerine yerleştirilmiş. - + Clear ground fill seeds Toprak dolgu tanelerini temizle - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Çiziminizin henüz bir kartı yok! Seçimi kullanabilmek için lütfen bir Baskı Devre ekleyin. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Bu geçit bir esnetme noktasına çevrilemedi çünkü bir ucu sadece üst katmandaki bir elemana bağlı iken diğer ucu sadece alt katmandaki bir elemana bağlı. - + Show part silkscreen Elemana ait serigrafiyi göster - + Hide part silkscreen Parçaya ait serigrafiyi gizle - - + + Fritzing Fab Quote Fritzing Fab Teklifi - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. Çiziminizin henüz bir board'u yok. Bu çizimi Baskı Devre kısmı olmadan üretemezsiniz. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. Üzgünüz http://fab.fritzing.org adresi teklif isteğine cevap veremiyor. Ağ bağlantınızı kontrol edin ve/veya daha sonra yeniden deneyin. - + Enter Keepout Aralık Tanımla - + Keepout is in mils (.001 inches). @@ -4857,14 +4982,14 @@ Neden: '%2' (hatakodu %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Üst üste gelme probleminden dolayı, 2 mils'e kadar olan mesafeler çok yakın olarak tanımlanır - + so you may want to increase the keepout value by that much. @@ -4873,7 +4998,7 @@ Neden: '%2' (hatakodu %3) - + 10 mils is a good default choice. @@ -4882,7 +5007,7 @@ Neden: '%2' (hatakodu %3) - + Enter keepout value: Aralık değeri girin: @@ -4918,11 +5043,11 @@ Neden: '%2' (hatakodu %3) - - - - - + + + + + Parts Editor Parça Düzenleyici @@ -4937,12 +5062,12 @@ Neden: '%2' (hatakodu %3) Hala askıda olan son bir düzenleme var. - + Duplicate 'family' property not allowed 'Aile'yi çoğaltma izni yok - + Duplicate 'variant' property not allowed 'Türev' çoğaltma izni yok @@ -4962,7 +5087,7 @@ Neden: '%2' (hatakodu %3) Çalışmaya devam et - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Atamaları daha sonra bitirmeye hatırlarsanız, şimdi Eleman Düzenleyici'den çıkabilirsiniz. @@ -5009,207 +5134,207 @@ Neden: '%2' (hatakodu %3) %1 fzp dosyası ayrıştırılamıyor - + Icon View Simge Görünümü - + Metadata View Üst Veri Görünümü - + Connectors View Bağlayıcı Görünümü - + Show Icon Simgeyi Göster - + Ctrl+4 Ctrl+4 - + Show the icon view Simge görünümünü göster - + Ctrl+5 Ctrl+5 - + Show the metadata view Üstveri görünümünü göster - + Show Connectors Bağlayıcıları Göster - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' %1 yerine %2 değiştir - + Change description Açıklamayı değiştir - + Change tags Etiketleri değiştir - + Change properties Özellikleri değiştir - + Change connector %1 %1 konnektörünü değiştir - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Resim & Ayakizi Dosyaları (%1 %2 %3 %4 %5);;SVG Dosyaları (%1);;JPEG Dosyaları (%2);;PNG Dosyaları(%3);;gEDA Ayakizi Dosyaları (%4);;Kicad Modül Dosyaları (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Resim Dosyaları (%1 %2 %3);;SVG Dosyaları (%1);;JPEG Dosyaları (%2);;PNG Dosyaları(%3)%4%5 - + Open Image Resmi Aç - + Copy problem Kopyalama problemi - + Unable to make a local copy of: '%1' '%1''in yerel bir kopyası yapılamıyor - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Parçalarınızı inşa etmek için PNG ve JPG resimlerini kullanabilirsiniz ancak bir SVG kullanmak daha iyi olacaktır. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- PNG ve JPG dosyaları bitmap olan doğalarını kaybetmiyorlar ve ölçeklendirildiklerinde güzel görünmüyorlar-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. bu nedenle Fritzing elemanları için PNG ve JPG'yi yalnızca yer tutucu olarak kullanmak en iyisi olacaktır. - + Use of PNG and JPG discouraged PNG ve JPG kullanımı önerilmez - - - - + + + + Conversion problem Dönüştürme problemi - - + + Fritzing (New) Parts Editor Fritzin (Yeni) Eleman Düzenleyici - + Show Metadata Üstveriyi Göster - + Show the connector metadata in a list view Konnektör üstverisini liste görünümünde göster - + Blank not allowed Boşluk bırakılamaz - + The value of '%1' can not be blank. '%1' değeri boş bırakılamaz. - + Change %1 to %2 %1 yerine %2 dönüştürülsün - + Must be unique Özgün olmalı - + Variant '%1' is in use. The variant name must be unique. Türev '%1' kullanımda. Türev'in ismi özgün olmalı. - - + + Duplicate problem Çoğaltma problemi - + Unable to load '%1' '%1' yüklenemiyor - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. '%1' SVG dosyası CorelDRAW'dan 'tanıtım ayarları' ayarlanmadan aktarılmış görünüyor. - + Please re-export the SVG file using that setting, and try loading again. Lütfen SVG dosyasını ilgili ayarı kullanarak tekrar dışa aktarın ve daha sonra tekrar yüklemeyi deneyin. - + Fonts Yazım Karakterleri - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' Fritzing şu anda yalnızca OCRA ve Droid yazı karakterlerini destekliyor--'%1'.içindeki yazı tipleri yerine bunlar kullanılmıştır - + Unable to load image file '%1': %2 @@ -5218,9 +5343,9 @@ Neden: '%2' (hatakodu %3) %2 - - - + + + SVG problem SVG problemi @@ -5254,26 +5379,26 @@ Neden: '%2' (hatakodu %3) Çalışmaya devam etmek istiyor musunuz yoksa kaydetmeden çıkacak mısınız? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors Bu elemanın %n atanmamış konnektörü var - + across %n views. %n görünüm genelinde. - + Until all connectors are assigned to SVG elements, the part will not work correctly. Tüm bağlantılar SVG nesnesine atanana kadar parça doğru olarak çalışmayacak. @@ -5313,67 +5438,67 @@ Neden: '%2' (hatakodu %3) Baskı Devre resmini bu görünümde tekrar kullan - + Make only this view visible Sadece bu görünümü görünebilir yap - + The part will only be visible in this view and icon view Parça yalnızca bu görünümde simge olarak görülebilecek - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Eleman Düzenleyicinin bu sürümü '%1' üzeirndeki ayrık bakır0 ve bakır1 katmanlarını desteklemiyor. - + So editing may produce an invalid PCB view image Bu nedenle düzenleme uygun olmayan bir Baskı Devre resminin oluşmasına neden olabilir - + Unable to parse '%1': %2 line:%3 column:%4 '%1' çözümlenemiyor: %2 satır:%3 sütun:%4 - + There are no copper layers defined in: %1. %1 üzerinde tanımlı bir bakır katman yok. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Bu <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">açıklamaya</a> bakın. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Bu, eleman düzenleyicinin diğer sürümünde bir probleme neden olmayacaktır, - + but for now please modify the file according to the instructions in the link. ancak şimdi lütfen dosyayı linkteki yönergeleri kullanarak modifiye edin. - + no schematics found in %1 %1'de bir herhangi şematik bulunamadı - + schematic part şematik elemanı - + no footprints found in %1 %1'de bir herhangi bir ayakizi bulunamadı - + Relocate connector %1 %1 konnektörünü tekrar yerleştir @@ -5462,52 +5587,52 @@ Neden: '%2' (hatakodu %3) '%1' yüklenemiyor.Lütfen eleman düzenleyiciyi kaydetmeden kapatıp tekrar deneyin. - + Unable to load image file '%1' Resim dosyası '%1' yüklenemiyor - + Filename prefix Dosya adı ön eki - + Sketch Change Warning Çizim Değişikliği Uyarısı - + The open sketch '%1' uses the part you are editing. Açık olan çizim '%1' şu an da düzenlemekte olduğunuz elemanı içermekte. - + Saving this part will make a change to the sketch that cannot be undone. Bu elemanı kaydetmek çizimde telafi edilemeyecek bir değişikliğe yol açacaktır. - + The open sketches Açık çizimler - + '%1', '%1', - + and '%1' ve '%1' - + Saving this part will make a change to these sketches that cannot be undone. Bu elemanı kaydetmek bu çizimlerde telafisi olmayan değişikliklere yol açacaktır. - + Go ahead and save? @@ -5516,102 +5641,102 @@ Go ahead and save? Devam edip kaydedilsin mi? - + Save Kaydet - + Cancel İptal - + Move terminal point Uç noktasını hareket ettir - + Remove connector Konnektörü çıkart - + Remove %1 connectors %1 konnektörlerini çıkar - + Save "%1" "%1" olarak kaydet - + Do you want to save the changes you made in the part "%1"? "%1" üzerinde yaptığınız değişiklikleri kaydetmek istiyor musunuz? - + Your changes will be lost if you don't save them. Değişiklikleriniz onları kaydetmezseniz kaybolacak. - + untitled part isimsiz parça - + Unable to load fzp from %1 fzp %1 üzerinden yüklenemiyor - + Unable to create new connector--you may have to start over. Yeni bir bağlayıcı oluşturulamıyor--yeniden başlamanız gerekebilir. - + Add connector Bağlayıcı ekle - + Add %1 connectors %1 bağlayıcı ekle - + Remove internal connection from '%1' '%1' üzerinden iç bağlantıyı çıkar - + Change all connectors to %1 Tüm bağlayıcıları %1 haline getir - + Unable to parse '%1' '%1' ayrıştırılamadı - + Change to %1 %1 olarak değiştir - + Make only %1 view visible Sadece %1 görünsün - + Internal connections are very messed up. İç bağlantılar oldukça karışık. - + Add internal connection from '%1' to '%2' '%1' ile '%2' arasına bir iç bağlantı ekle @@ -6378,12 +6503,12 @@ Not:Bu uyarı bu bölüm boyunca tekrar edilmeyecektir. Fare Tekerleği Davranışı - + Command Komut - + Control Kontrol @@ -6424,57 +6549,65 @@ Not:Bu uyarı bu bölüm boyunca tekrar edilmeyecektir. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (değiştirmek için tıklayın...) - + Clear Settings Ayarları Temizle - + Platform Support Platform Desteği - + <b>%1</b> <b>%1</b> - + Location: Konum: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Sürüm %3 veya daha yeni <a href='%1'>%2</a> kurulu olmalıdır. - + Select a programmer (executable) for %1 %1 için bir programcı (çalıştırılabilir) seçin - + Connected Highlight Bağlanmış Vurgu - + Unconnected Highlight Bağlanmamış Vurgu - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6483,7 +6616,7 @@ shift tuşu ilerleme eksenini değiştirir Alt ya da %1 tuşu = yakınlaştır - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6492,22 +6625,22 @@ Alt ya da %1 tuşu = ilerle shift tuşu ilerleme eksenini değiştirir - + Curvy vs. straight wires Eğri kablolar düz kablolara karşı - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Fareyi aşağıya doğru itip bir kablo ya da bir elemanın ayağı üzerinde sürüklediğinizde (bir konnektör ya da bir esnetme noktasına karşın) kablonun (ya da ayağın) eğriliğini değiştirmek ya da yeni bir esnetme noktası sürüklemek ister misiniz? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Bu kontrol kutusu varsayılan davranışı ayarlar. Sürüklerken kontrol(Ctrl) tuşuna basılı tutarak (Maclerde:Kommut tuşu(Command)) normal ayarlarınıza dönüş yapabilirsiniz. - + Curvy wires and legs Kıvrımlı kablolar ve bacaklar @@ -6846,12 +6979,12 @@ shift tuşu ilerleme eksenini değiştirir Bağlanmış vurgu rengi - + Unconnected highlight color Bağlanmamış vurgu rengi - + Clear all saved settings and close this dialog immediately. Kaydetilmiş tüm ayarları temizle ve bu diyaloğu acilen kapat. @@ -6861,12 +6994,12 @@ shift tuşu ilerleme eksenini değiştirir Bu işlem herhangi dosyayı silmez; sadece ayarları tekrar varsayılan şekline geri çevirir. - + There is no undo for this action, and no further warning!!!! Bu işlem geri çevrilemez, daha fazla uyarı yok!!!! - + Clear Settings Ayarları Temizle @@ -6892,7 +7025,6 @@ shift tuşu ilerleme eksenini değiştirir - Fritzing Fritzing @@ -6936,21 +7068,21 @@ shift tuşu ilerleme eksenini değiştirir Link'i düzenle - - - + + + Part Eleman - - - + + + Wire Kablo - + Set Grid Size Izgaranın Sıklığını Ayarla @@ -7161,12 +7293,12 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Tüm Oto-Yönledirilebilir Hatları Seç - + Convert to Via Geçite çevir - + Convert Via to Bendpoint Geçiti Esnetme Noktasına çevir @@ -7182,43 +7314,43 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Şematik Görünüm - + Error reading file %1: %2. %1: %2 dosyasını okuma hatası. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 %1,%2'nin ayaklarını değiştir - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 Katmanı - - + + Bring forward İlerlet - + Send backward Gerilet - + Bring to front Öne Çıkar @@ -7233,28 +7365,28 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Kabloları Birleştir - + Trace wires Hat kablolar - + Ratsnest wires Yumak kablolar - - + + Select all %1 Tüm %1 seçilsin - + Select outdated parts Zamanı geçmiş elemanları seç - + Select locked parts Kilitli parçaları seç @@ -7456,12 +7588,12 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Dosya İlerliyor... - + Copying file %1 %1 dosyası kopyalanıyor - + File %1 already exists: it won't be overwritten %1 dosyası zaten mevcut: üstüne yazılmayacak @@ -7843,7 +7975,7 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7867,48 +7999,48 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8217,17 +8349,17 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Ruler - + width genişlik - + &cm - + &in @@ -8235,33 +8367,33 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin S2S - + Failed loading '%1', %2 line:%3 col:%4 '%1' yüklemesi başarısız oldu, %2 satır:%3 sütun:%4 - + Schematic not found for '%1' '%1' için şema bulunamadı - - + + Unable to load schematic '%1' for '%2' '%2' için '%1' şeması yüklenemedi - + Schematic '%1' is already using the 0.1inch standard. '%1' şeması zaten 0.1 inç standardını kullanıyor. - + Missing connector %1 in '%2' schematic of '%3' '%3' şemasının '%2' elemanının %1 bağlantısı eksik - + Failed loading schematic '%1', %2 line:%3 col:%4 '%1' şeması yüklenemedi, %2 satır:%3 sütun:%4 @@ -8393,87 +8525,87 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin yükleme tamamlandı - + %1 %2 %1 %2 - + %1 %2 items %1 %2 öğeleri - + Select All Tümünü Seç - + Deselect Seçmeyi Bırak - + Add %1 %1 Ekle - + Selection Seçim - + Move %2 (%1) %2 taşınsın (%1) - + Move %2 items (%1) %2 ögelerini taşı (%1) - - + + Select %1 %1 ögesini seç - - + + Select %1 items %1 ögeyi seç - - + + Disconnect Bağlantıyı Kes - + Change Değiştir - - + + Connect Bağla - - + + to %1 %1 için - + Create and connect wire Kablo oluştur ve bağla - + Rotate %2 (%1) %2 ögesini döndür (%1) @@ -8498,58 +8630,58 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Çift-tık - + Delete ratsnest Yumağı sil - + from %1 %1 ögesinden - + Move leg of there is no special of word in turkish its used as suffix generally Ayağını taşı - + Change leg curvature for %1. %1 için ayak eğikliğini değiştir. - + Change leg bendpoint for %1. %1 için ayak esnetme noktasını değiştir. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Bu katmanlar arası bir hat oluşturma girişimi gibi görünüyor. Bu durumlar ortaya çıkmamalı: lütfen geliştiricilerle iletişime geçin. - + Create and connect %1 %1 oluştur ve bağla - + wire kablo - + trace hat - + Flip %2 (%1) %2 döndürülsün (%1) @@ -8618,12 +8750,12 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin - + Resize ruler to %1 %2 Cetveli %1 %2 tekrar ölçeklendir - + test connectors bağlayıcıları test et @@ -8633,64 +8765,64 @@ Fritzing hala çalışıyor ancak elemanın özelliklerini değiştiremeyeceksin Notu Tekrar Ölçeklendir - + Change Resistance from %1 to %2 Direnç değerini %1 yerine %2 yap - - + + Change %1 from %2 to %3 %1 değerini %2 yerine %3 yap - - + + Resize board to %1 %2 Kartı %1 %2 yeniden ölçeklendir - + Create wire from Ratsnest Yumaktan kablo oluştur - + Disconnect all wires from %1 Tüm kabloların %1 bağlantılarını kes - + Disconnect all wires from %1 items %1 ögelerinden tüm kablo bağlantılarını kes - + Change image from %1 to %2 Görüntüyü %1 yerine %2 yap - + change pin labels pin etiketlerini değiştir - + Unrouted connections are highlighted in yellow. Yönlendirilmemiş bağlantılar sarı ile vurgulanmıştır. - + There are no unrouted connections Yönlendirilmemiş bağlantı yok - + Unrouted connections Yönlendirilmemiş bağlantılar - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8699,17 +8831,17 @@ Note: you can also trigger this display by mousing down on the routing status te Not: Bu görüntüyü fareyi durum çubuğundaki yönlendirme durumu metni üzerinde aşağı kaydırarak da tetikleyebilirsiniz. - + Part '%1' not found in sketch '%1' elemanı çizimde bulunamadı - + Add %1 parts %1 parça ekle - + Deselect all Tümünü seçmeyi bırak @@ -8785,22 +8917,22 @@ Not: Bu görüntüyü fareyi durum çubuğundaki yönlendirme durumu metni üzer SymbolPaletteItem - + voltage gerilim - + label etiket - + Net labels Ağ etiketleri - + Net labels cannot be blank Ağ etiketleri boş bırakılamaz @@ -8928,9 +9060,8 @@ Not: Bu görüntüyü fareyi durum çubuğundaki yönlendirme durumu metni üzer Bir parça etiketini düzenlemek için üzerine çift tıklayın veya denetim penceresinde metin girdisi alanını kullanın. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Bir parça etiketinde çeşitli özellikleri görüntülemek, döndürmek veya yazı tipini değiştirmek için etikete sağ tıklayın. + Bir parça etiketinde çeşitli özellikleri görüntülemek, döndürmek veya yazı tipini değiştirmek için etikete sağ tıklayın. @@ -9052,6 +9183,11 @@ Not: Bu görüntüyü fareyi durum çubuğundaki yönlendirme durumu metni üzer In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. Deneysel Devre Tahtası veya Baskılı Devre görünümünde bir kabloya veya bükülebilir bacağa eğim vermek için Control (Mac: Command) tuşunu basılı tutun. Eğimli kabloları Tercihler alanından varsayılan olarak ekleyebilirsiniz. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9462,93 +9598,68 @@ Not: Bu görüntüyü fareyi durum çubuğundaki yönlendirme durumu metni üzer Fritzing CreatorKit Fritzing Oluşturma Seti - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab, Fritzing çizimlerinizden profesyonel Baskılı Devreler üretmek için kullanabileceğiniz kolay ve ekonomik bir hizmettir. - + produce your first pcb now >> ilk baskılı devrenizi şimdi üretin >> - + Order your PCB now. Baskılı Devrenizi sipariş edin. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Projeler - + Blog Günlük - + Fritzing News. Fritzing Haberleri. - + Fritzing Projects. Fritzing Projeleri. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Hiç çizim bulunamadı - + Unable to reach blog.fritzing.org blog.fritzing.org adresine ulaşılamıyor - + Unable to reach fritzing.org/projects @@ -9557,17 +9668,17 @@ Not: Bu görüntüyü fareyi durum çubuğundaki yönlendirme durumu metni üzer friting.org/projects adresine ulaşılamıyor - + Tip of the Day: Günün İpucu: - + All Tips Tüm İpuçları - + Next Tip Sonraki İpucu diff --git a/translations/fritzing_uk.ts b/translations/fritzing_uk.ts index 7c3d09078..79effd7ae 100644 --- a/translations/fritzing_uk.ts +++ b/translations/fritzing_uk.ts @@ -8,47 +8,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 на код та CreativeCommons:BY-SA на решту - + <b>2007-%1 Fritzing</b> <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing створено: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, професором Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -57,147 +57,161 @@ Bryant Mairs, Uleshka Asher, and Daniel Tzschentke. - Special thanks goes out to: - Особлива подяка: + Особлива подяка: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser та Julia Werner. - + Thanks for the translations go out to: Подяка за переклад: - + Yuelin and Ninjia Yuelin and Ninjia - + Chinese (Traditional): Китайська (традиційна): - + Robert Lee Robert Lee - + Hiroshi Suzuki Hiroshi Suzuki - + Jinbuhm Kim Jinbuhm Kim - + Spanish: Іспанська: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: Італійська: - + Portuguese (European): Португальська (европейська): - + Portuguese (Brazilian): Португальська (бразильська): - + Chinese (Simplified): Китайська (спрощена): - + Japanese: Японська: - + Russian: Російська: - + Dutch: Нідерландська: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: Чеська: - + Korean: Корейська: - + Slovak: Словацька: - + Greek: Грецька: - + French: Французька: - + Turkish: Турецька: - + Bulgarian: Болгарська: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> Версія %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> @@ -206,64 +220,59 @@ <a href="https://www.fritzing.org">www.fritzing.org</a> - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - and Kjell Morgenstern - та Kjell Morgenstern + та Kjell Morgenstern - + Ukrainian: Українська: - + Yelyzaveta Chyhryna Єлизавета Чигрина - + Fritzing is made possible with funding from the Створення Fritzing стало можливим завдяки фінансуванню - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, підтримці дизайнерського - + Department of Bauhaus-University Weimar, факультету веймарського університету Баухаус, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, анонімному дарувальнику, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. і завдяки кожній купівлі набору Fritzing Starter та друкованих плат Fritzing Fab. - Special thanks goes out as well to all the students - Окрема подяка також всім студентам + Окрема подяка також всім студентам - and alpha testers who were brave enough to give - та альфа тестувальникам, які були досить хоробрими, щоб провести + та альфа тестувальникам, які були досить хоробрими, щоб провести - Fritzing a test spin. - тестовий прогін Fritzing. + тестовий прогін Fritzing. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -816,7 +825,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value Оберіть з випадного переліку, або введіть значення %1 @@ -824,17 +833,17 @@ Use the file? ConnectorItem - + Add bendpoint Додати опорну точку - + Straighten curve Випрямити криву - + Remove bendpoint Видалити опорну точку @@ -1287,6 +1296,70 @@ Use the file? Відновлення бази даних деталей... + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + Скасувати + + + + Upload to Fab + + + + + Upload + Завантажити + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1313,12 +1386,12 @@ Use the file? FolderUtils - + Moving your custom parts Переміщення ваших виготовлених деталей - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> <p>Ваші виготовлені на замовлення деталі та набори переміщуються із прихованої папки даних програми у вашу папку з документами fritzing у <br/><br/><em>%1</em><br/><br/>Ми сподіваємось полегшити їх пошук і редагування вручну. </p> @@ -1434,7 +1507,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size розмір отвору @@ -1991,7 +2064,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate Обернути @@ -2007,7 +2080,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute Розведення @@ -2043,7 +2116,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note Примітка @@ -2067,40 +2140,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Frizting @@ -2120,59 +2200,85 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Не вдалось відкрити спільне '%1': %2 - + Unable to open shareable part '%1': %2 Не вдалось відкрити спільну деталь '%1': %2 - + + Unable to load part from '%1' Не вдалось завантажити деталь з '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name Вкажіть ім’я файлу - + Fritzing Part (*%1) Деталь Fritzing (*%1) - + Unable to export %1 to shareable sketch Не вдалось експортувати %1 до спільного нарису - + MainWindow::moveToPartsFolder mainwindow missing ГоловнеВікно::переміститиДоПапкиДеталей головневікно відсутнє - + There is already a part with id '%1' loaded into Fritzing. Деталь з ідентифікатором '%1' вже було завантажено до Fritzing. - - + + Do you want to keep the imported parts? Бажаєте зберегти імпортовані деталі? - + No connections to route Відсутнє з’єднання з доріжкою - + Routing completed Розведення завершено - + Routing completed using %n jumper part(s) Розведення завершено завдяки %n перемичці @@ -2181,7 +2287,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed %1 з %2 ланцюжок розведено — ще %n контакт потребує розведення @@ -2190,131 +2296,131 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] %1 — [%2] - + No copper top layer Верхній шар не мідний - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. Верхній мідний шар (copper 1) неможливий на односторонній платі. Будь ласка, зробіть плату двосторонньою, або оберіть нижній мідний шар (copper 0). - - + + Sorry! Вибачте! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Немає деталей з такими озаками. Ми працюємо над тим, щоб уникнути цього повідомлення, і дозволити обирати лише ті властивості, що справді існують - + No exactly matching part found; Fritzing chose the closest match. Немає повністю відповідних деталей; Fritzing обрав найближчий відповідник. - + Change to single layer pcb Змінити на односторонню плату - + Change to two layer pcb Змінити на двосторонню плату - + Swapped %1 with module %2 Поміняти %1 з вузлом %2 - + Change image to %2 Змінити зображення на %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. У SVG %1 відсутній шар '%2'. Для отримання додаткової інформації про створення власних обрисів плат, дивіться підручник <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 завантажується %1 - + Loading... Завантаження... - + new sketch новий нарис - + Schematic conversion Схема перетворення - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? Збереження цього нарису потребує його перетворення у новий графічний стандарт схем. Продовжити перетворення? - + Backing up '%1' Резервне копіювання '%1' - - + + Fritzing (*%1) Fritzing (*%1) - + Fritzing uncompressed (*%1) Нестисненний Fritzing (*%1) - + Unrouted connections Нерозведені з’єднання - + There are no unrouted connections in this view. На цьому виді немає нерозведених з’єднань. - + (x,y)=(%1, %2) %3 (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code Код - + Welcome Ласкаво просимо @@ -2399,13 +2505,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel Скасувати - + Choose a folder for exporting Обрати теку для експорту @@ -2426,85 +2532,85 @@ We're working to avoid this message, and only let you choose between proper Експорт... - + Unable to save %1 Не вдалось зберегти %1 - + Cannot print to %1 Неможливо надрукувати %1 - + Cannot write file %1: %2. Неможливо записати файл %1: %2. - + Saved '%1' Збереження '%1' - + Unable to export %1 as shareable Не вдалось експортувати %1 як спільне - + &Save Зберегти (&S) - + Ctrl+S Ctrl+S - - + + Save the current sketch Зберегти поточний нарис - + &Save As... Зберегти як (&S)... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Поширити в мережі... - + Post a project to the Fritzing website Опублікувати проект на сторінці Fritzing - + JPG... JPG... - + Export the visible area of the current sketch as a JPG image Експортувати видиму частину поточного нарису як зображення JPG - + PNG... PNG... - + Export the visible area of the current sketch as a PNG image Експортувати видиму частину поточного нарису як зображення PNG @@ -2517,184 +2623,184 @@ We're working to avoid this message, and only let you choose between proper Експортувати видиму частину поточного нарису як зображення PostScript - + PDF... PDF... - + Export the visible area of the current sketch as a PDF image Експортувати видиму частину поточного нарису як зображення PDF - + SVG... SVG... - + Export the current sketch as an SVG image Експортувати поточний нарис як зображення SVG - + List of parts (&Bill of Materials)... перелік деталей (опис матеріалів) (&B)... - + Save a Bill of Materials (BoM)/Shopping List as text Зберегти опис матеріалів/перелік покупок у вигляді тексту - + XML Netlist... таблицю з’єднань XML... - + Save a netlist in XML format Зберегти таблицю з’єднань у форматі XML - + SPICE Netlist... таблицю з’єднань SPICE... - + Save a netlist in SPICE format Зберегти таблицю з’єднань у форматі SPICE - + Eagle... Eagle... - + Export the current sketch to Eagle CAD Експортувати поточний нарис до Eagle CAD - + Extended Gerber (RS-274X)... Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production Експортувати поточний нарис до Extended Gerber (RS-274X), для професійного виготовлення ДП - + Etchable (PDF)... Витравка (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) Експортувати поточний нарис до PDF, для саморобного виробництва ДП (фоторезист) - + Etchable (SVG)... Витравка (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) Експортувати поточний нарис до SVG, для саморобного виробництва ДП (фоторезист) - + &Print... Друкувати (&P)... - + Ctrl+P Ctrl+P - + Print the current view Надрукувати поточний вид - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Це скоро дозволить експортувати ваші нариси Fritzing до EAGLE. Якщо ви бажаєте отримати більше варіантів експорту до ваших улюблених АПЕВ — будь ласка, сповістіть нас, або зробіть свій внесок. - + Export SVG... Експорт SVG... - + Export Bill of Materials (BoM)... Експорт опису матеріалів... - + Unable to save BOM file, but the text is on the clipboard. Не вдалось зберегти файл опису матеріалів, але текст у буфері обміну. - + Export SPICE Netlist... Експорт SPICE Netlist... - + Export Netlist... Експорт Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. Ваш нарис не містить плати! Будь ласка, додайте ДП для експорту у Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. Експорт у Gerber можливий лише для однієї плати в один момент часу — будь ласка, оберіть плату для експорту. - + Sketch exported to Gerber Нарис експортується у Gerber - + Select a Fritzing File to Open Виберіть файл Fritzing для відкривання - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Файли Fritzing (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Спільне (*%2);;Fritzing Деталь (*%3);;Fritzing Набір (*%4);;Fritzing Спільний набір (*%5) - + Cannot find file %1. Неможливо знайти файл %1. - + Cannot read file 1 %1: %2. Неможливо прочитати файл 1 %1: %2. - + Revert? Повернути? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -2703,1653 +2809,1670 @@ Go ahead and revert? Продовжити і розвернути? - - + + File '%1' not found Файл '%1 не знайдено - + Convert Перетворити - + Read-only Лише для читання - directly loading parts - безпосередньо завантажені деталі + безпосередньо завантажені деталі - + loading %1 (model) завантажується %1 (макет) - + loading %1 (breadboard) завантажується %1 (монтажна плата) - + loading %1 (pcb) завантажується %1 (друкована плата) - + loading %1 (schematic) завантажується %1 (схема) - + New Створити - + Ctrl+N Ctrl+N - + Create a new sketch Створити новий нарис - + &Open... Відкрити (&O)... - + Ctrl+O Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Відкрити нарис Fritzing (.fzz, .fz), або завантажити деталь Fritzing (.fzpz), або набір деталей Fritzing (.fzb, .fzbz) - + Revert Перевідкрити - + Reload the sketch Перезавантажити нарис - + Shell launch %1 Запуск оболонки %1 - + throw test exception створити тест винятків - + throw a fake exception to see what happens створити підробний виняток, щоб побачити що відбувається - + &Quit Вихід (&Q) - + Ctrl+Q Ctrl+Q - + Quit the application Вихід із програми - + &Open Example Приклади (&O) - + All Різне - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' ГоловнеВікно::заповнитиМенюЗІнексом::неможливо завантажити приклад з ідентифікатором='%1' - + &Open Recent Files Останні файли (&O) - + &%1 %2 &%1 %2 - + Undo Відмінити - + Redo Повернути - + &Cut Вирізати (&C) - + Cut selection Вирізати вибране - + &Copy Копіювати (&C) - + Copy selection Копіювати вибране - + &Paste Вставити (&P) - + Paste clipboard contents Вставити вміст буфера обміну - + Paste in Place Вставити на місце - + Paste clipboard contents in place Вставити вміст буфера обміну на місце - + &Duplicate Дублювати (&D) - + Ctrl+D Ctrl+D - + Duplicate selection Дублювати вибране - + &Delete Видалити (&D) - + Delete selection Видалити вибране - + Delete Minus Видалити деталь без провідника - + Delete selection without attached wires Видалити вибране без підключених провідників - + &Delete Wire Видалити провідник (&D) - + Delete Wire up to bendpoints Видалити провідник до опорних точок - + &Select All Вибрати все (&S) - + Select all elements Вибрати всі складові - + &Deselect Зняти виділення (&D) - + Deselect Зняти виділення - - + + Add Note Додати примітку - + &Preferences... Уподобання (&P)... - - + + Show the application's about box Показати вікно Про програму - + Edit (new parts editor) Редагувати (новий Редактор деталей) - + Open the new parts editor on an existing part Відкрити новий Редактор деталей на існуючій деталі - + &Add to bin... Додати до набору (&A)... - + Add selected part to bin Додати виділену деталь до набору - + Disconnect All Wires Відключити всі провідники - + Disconnect all wires connected to this connector Відключити всі сполучення до цього роз’єму - + Update InfoView on hover Оновити Вид інформації при наведенні - + Export Normalized SVG Експортувати упорядкований SVG - + Export 1000 dpi SVG of this part in this view Експорт 1000 т/дюйм SVG деталі у цьому виді - + Export Normalized Flattened SVG Експорт упорядкованого злитого SVG - + Export 1000 dpi Flattened SVG of this part in this view Експорт 1000 т/дюйм злитого SVG у цій деталі у цьому виді - + Dump all parts Скинути всі деталі - + Debug dump all parts in this view Налагодити скидання всіх деталей у цьому виді - + Test Connectors Перевірити роз’єми - + Connect all connectors to a single test part Підключити всі роз’єми до випробуваної деталі - + Rotate current selection 45 degrees clockwise Обернути вибране на 45 градусів за годинником - + Rotate the selected parts by 90 degrees clockwise Обернути вибране на 90 градусів проти годинника - + Rotate the selected parts by 180 degrees Обернути вибране на 180 градусів - + Rotate current selection 90 degrees counter clockwise Обернути вибране на 90 градусів проти годинника - + Rotate current selection 45 degrees counter clockwise Обернути вибране на 45 градусів проти годинника - + &Flip Horizontal Віддзеркалити горизонтально (&F) - + Flip current selection horizontally Віддзеркалити вибране по горизонталі - + &Flip Vertical Віддзеркалити вертикально (&F) - + Flip current selection vertically Віддзеркалити вибране по вертикалі - + Bring to Front Підняти наверх - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Перемістити вибраний об’єкт(и) наверх цього шару - + Bring Forward Підняти вище - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Посунути вибраний об’єкт(и) вище у цьому шарі - + Send Backward Опустити нижче - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Посунути вибраний об’єкт(и) нижче у цьому шарі - + Send to Back Опустити наниз - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Перемістити вибраний об’єкт(и) наниз цього шару - + Align Left Вирівняти по лівому краю - + Align selected items at the left Вирівняти вибрані об’єкти по лівому краю - + Align Horizontal Center Вирівняти горизонтально по центру - + Align selected items at the horizontal center Вирівняти вибрані об’єкти горизонтально по центру - + Align Right Вирівняти по правому краю - + Align selected items at the right Вирівняти вибрані об’єкти по правому краю - + Align Top Вирівняти по верхньому краю - + Align selected items at the top Вирівняти вибрані об’єкти по верхньому краю - + Align Vertical Center Вирівняти вертикально по центру - + Align selected items at the vertical center Вирівняти вибрані об’єкти вертикально по центру - + Align Bottom Вирівняти по нижньому краю - + Align selected items at the bottom Вирівняти вибрані об’єкти по нижньому краю - + Lock Part Заблокувати деталь - + Prevent a part from being moved Запобігти переміщенню деталі - + Sticky Приліпити - + If a "sticky" part is moved, parts on top of it are also moved Якщо "липку" деталь посунути, пов’язані з нею деталі також перемістяться - + Select All Locked Parts Вибрати всі заблоковані деталі - + Select all parts that can't be moved Вибрати всі деталі, що не можуть бути переміщеними - + &Show part label Показати позначку деталі (&S) - + Show/hide the label for the selected parts Показати/приховати позначку вибраних деталей - + &Export... Експортувати (&E)... - + Export selected part Експортувати виділену деталь - - + + Add Bendpoint Додати опорну точку - + Add a bendpoint to the selected wire Додати опорну точку до вибраного провідника - + Convert Bendpoint to Via Перетворити опорну точку на отвір - + Convert the bendpoint to a via Перетворити опорну точку на отвір - + Convert Via to Bendpoint Перетворити отвір на опорну точку - + Convert the via to a bendpoint Перетворити отвір на опорну точку - + Straighten Curve Вирівняти вигин - + Straighten the curve of the selected wire Вирівняти вигин виділеного провідника - - + + Select outdated parts Вибрати застаріли деталі - - + + Update selected parts Оновити вибрані деталі - + Find part in sketch... Знайти деталь у нарисі... - + Search for parts in a sketch by matching text Шукати деталі у нарисі за текстом - + Open programming window Відкрити вікно програмування - + Open microcontroller programming window Відкрити вікно програмування мікроконтролера - - + + Hide part silkscreen Приховати деталь шару позначок - + Hide/show the silkscreen layer for only this part Приховати/показати шар позначок лише для цієї деталі - + &Zoom In Наблизити (&Z) - + Ctrl++ Ctrl++ - + Zoom in Наблизити - + Ctrl+= Ctrl+= - + &Zoom Out Віддалити (&Z) - + Ctrl+- Ctrl+- - + Zoom out Віддалити - + &Fit in Window Припасувати до вікна (&F) - + Ctrl+0 Ctrl+0 - + Fit in window Припасувати до вікна - + &Actual Size Дійсний розмір (&A) - + Actual (real world physical) size Дійсний (справжній) розмір - + 100% Size 100% розмір - + Shift+Ctrl+0 Shift+Ctrl+0 - + 100% (pixel) size 100% (піксельний) розмір - + Align to Grid Вирівняти за сіткою - + Align items to grid when dragging Вирівнювати деталі за сіткою при перетягуванні - + Show Grid Показати сітку - + Show the grid Показати сітку - + Set Grid Size... Задати розмір сітки... - + Set the size of the grid in this view Задати розмір сітки у цьому виді - + Set Background Color... Задати колір тла... - + Set the background color of this view Задати колір тла у цьому виді - + Ctrl+1 Ctrl+1 - + Ctrl+2 Ctrl+2 - + Ctrl+3 Ctrl+3 - + Ctrl+4 Ctrl+4 - + Ctrl+5 Ctrl+5 - + &Show Welcome Показати вікно вітання (&S) - + Show the welcome view Показати вікно вітання - + &Show Breadboard Показати МП (&S) - + Show the breadboard view Показати вид монтажної плати - + &Show Schematic Показати Схему (&S) - + Show the schematic view Показати вид схеми - + &Show PCB Показати ДП (&S) - + Show the PCB view Показати вид друкованої плати - + Show Code Показати Код - + Show the code (programming) view Показати вид коду (програмування) - + Show Parts Bin Icon View У вигляді значків - + Display the parts bin in an icon view Показати набір деталей у вигляді значків - + Show Parts Bin List View У вигляді переліку - + Display the parts bin in a list view Показати набір деталей у вигляді переліку - + &Show All Layers Показати всі шари (&S) - + Show all the available layers for the current view Показати всі наявні шари поточного виду - + &Hide All Layers Приховати всі шари (&H) - + Hide all the layers of the current view Приховати всі шари поточного виду - + &Minimize Згорнути (&M) - + Ctrl+M Ctrl+M - + Minimize current window Згорнути поточне вікно - + Debugger Output Зневаджувальна інформація - + Online Tutorials Поради в мережі - + Ctrl+? Ctrl+? - + Open Fritzing help Відкрити довідку Fritzing - Donate to Fritzing - Віддячити Fritzing + Віддячити Fritzing - Open Fritzing donation web page - Відкрити сторінку віддячення Fritzing + Відкрити сторінку віддячення Fritzing - + Online Projects Gallery Галерея проектів у мережі - + Open Fritzing examples Відкрити приклади Fritzing - + Online Parts Reference Деталі в мережі - + Open Parts Reference Відкрити посилання на деталі - + Check for updates... Перевірити оновлення... - + Check whether a newer version of Fritzing is available for download Перевірити наявність нових версій Fritzing - + &About Про програму (&A) - + Tips, Tricks and Shortcuts Поради, рекомендації та швидкі клавіші - + Display some handy Fritzing tips and tricks Показати деякі поради та рекомендації Fritzing - + First Time Help Перша допомога - + Display First Time Help Показати швидку довідку - + &About Qt Про Qt (&A) - + Show Qt's about box Показати вікно Про Qt - + Report a bug... Повідомити про помилку... - - + + Report a but you've found in Fritzing Повідомити про знайдену помилку у Fritzing - + Enable debugging log Увімкнути журнал зневадження - + Parts Editor Help Довідка Редактора деталей - + Display Parts Editor help in a browser Показати довідку Редактора деталей у переглядачі - + &File Файл (&F) - + &Export Експортувати (&E) - + as Image як зображення - + for Production для виготовлення - + &Edit Редагування (&E) - + &Part Деталь (&P) - + Raise and Lower Підняти та опустити - + Ctrl+Shift+V Ctrl+Shift+V - + Rotate 45° Clockwise Повернути на 135° за годинником {135�?} {45°?} - + Rotate 90° Clockwise Повернути на 135° за годинником {135�?} {90°?} - + Rotate 180° Повернути на 180° {180�?} {180°?} - + Rotate 90° Counter Clockwise Повернути на 45° проти годинника {45�?} {90°?} - + Rotate 45° Counter Clockwise Повернути на 45° проти годинника {45�?} {45°?} - + Regenerate parts database ... Відновити базу даних деталей ... - + Regenerate the parts database (should only be used if your parts database is broken) Відновити базу даних деталей (використовувати тільки якщо ваша база даних деталей зламана) - + Color Breadboard Wires By Length Колір дротів монтажної плати за довжиною - + Display breadboard wires using standard color coding by length Відобразити дроти монтажної плати, використовуючи стандартне кольорове кодування за довжиною - + + Visit fritzing.org + + + + + fritzing.org + + + + Align Вирівняти - + &View Вид (&V) - + &Window Вікно (&W) - - - + + + + + + &Routing Розведення (&R) - - - + + + Ground Fill Заповнення - + &Help Довідка (&H) - + Move to bottom layer Перемістити на нижній шар - + Move to top layer Перемістити на верхній шар - + Delete Ratsnest Line Видалити лінію навісного монтажу - + Delete Wire Видалити провідник - + Hide part label Приховати позначку деталі - + Show part label Показати позначку деталі - + Show part silkscreen Показати шар позначкок деталі - + Delete Видалити - + top and bottom верх та низ - + bottom низ - + top верх - + Ground Fill (%1) Заповнення зі спільним заземлення (%1) - + Copper Fill (%1) Мідне заповнення (%1) - + Actual Size Дійсний розмір - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Немає можливості автоматично визначити дійсний розмір монітора, тому 'дійсний розмір' є лише припущенням. Але ви можете розмістити справжню лінійку поверх віртуальної, і скорегувати розмір останньої. - + Page Setup Установки сторінки - + Sorry, "%1" has not been implemented yet На жаль, "%1" ще не реалізовано + + + Routing + + + + Autoroute connections... Розвести з’єднання... - + Shift+Ctrl+A Shift+Ctrl+A - + &Create trace from ratsnest Створити доріжку з навісного монтажу (&C) - + Create a trace from the ratsnest line Створити доріжку з лінії навісного монтажу - + &Create wire from ratsnest Створити провідник з навісного монтажу (&C) - + Create a wire from the ratsnest line Створити провідник з лінії навісного монтажу - + Do not autoroute Не розводити - + When autorouting, do not rip up this trace wire, via, or jumper item При саморозведенні не розривати цю доріжку, отвір чи перемичку - + Move to other side of the board Перемістити на інший бік плати - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Перемістити вибрані доріжки на другий бік плати (увага: коли 'перша' доріжка переміститься, решта перейдуть за нею) - + Show unrouted Показати нерозведене - + Highlight all unrouted connectors Підсвітити всі нерозведені роз’єми - + Select All Traces Вибрати всі доріжки - + Select all trace wires Вибрати всі провідні доріжки - + Select All Wires Вибрати всі провідники - + Select all wires Вибрати всі провідники - + Select All CopperFill Вибрати все мідне заповнення - + Select all copper fill items Вибрати всі елементи мідного заповнення - + Force Update Routing Status and Ratsnests Примусово оновити стан розведення та навісний монтаж - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) Перерахувати стан розведення та провідників навісного монтажу (у разі, якщо самооновлення не працює належним чином) - + Select All "Don't Autoroute" Traces Вибрати всі "не саморозвідні" доріжки - + Select all trace wires excluded from autorouting Вибрати всі провідні доріжки, виключені з саморозведення - + Select All Autoroutable Traces Вибрати всі саморозвідні доріжки - + Select all trace wires that can be changed during autorouting Вибрати всі провідні доріжки, які можна змінити саморозведенням - + Select All Jumpers Вибрати всі перемички - + Select all jumper item parts Вибрати всі перемички деталей - + Select All Vias Вибрати всі отвори - + Select all via parts Вибрати всі отвори деталей - + Tidy Wires Прибрати провідники - + Tidy selected wires Прибрати вибрані провідники - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND Заповнити порожню площу мідного шару — разом із доріжками, сполученими з заземленням - - + + Copper Fill Мідне заповнення - + Fill empty regions of the copper layer--not including traces connected to a GROUND Заповнити порожню площю мідного шару — за виключенням доріжок, що сполучені із заземленням - + Remove Copper Fill Видалити мідне заповнення - + Remove the copper fill Видалити мідне заповнення - + Choose Ground Fill Seed(s)... Вибрати затравку(ки) спільного заземлення... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds Заповнити порожню площу мідного шару — разом із доріжками, сполученими з затравками - + Set Ground Fill Seed Задати затравки спільного заземлення - + Treat this connector and its connections as a 'ground' during ground fill. Розглядати цей роз’єм та ці з’єднання як 'землю' під час заповнення зі спільним заземленням. - + Clear Ground Fill Seeds Очистити затравки спільного заземлення - + Clear ground fill seeds--enable copper fill only. Очистити затравки спільного заземлення — дозволити лише заповнення міддю. - + Set Ground Fill Keepout... Задати проміжок для спільного заземлення... - + Set the minimum distance between ground fill and traces or connectors Задати найменшу відстань між заповненням зі спільним заземленням та доріжками або роз’ємами - + Design Rules Check (DRC) Перевірка проектних норм (ППН) - + Highlights any parts that are too close together for safe board production Підсвітити деталі, що знаходяться надто близько одна до одної для надійного виробництва плати - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces Перевірити завантажені доріжки - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Вибрати доріжки, розташування яких на екрані не відповідає дійсному розташуванню. Необхідне лише для версії 0.7.10, та більш давніх - + Autorouter/DRC settings... Налаштування саморозведення та ППН... - + Set autorouting parameters including keepout... Задати параметри саморозведення, включно з проміжками... - + Fritzing Fab Quote... Цитати Fritzing Fab... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Скільки буде коштувати виготовлення друкованої плати з цього нарису на виробництві Fritzing - - + + View from below Вид знизу - - + + View the PCB from the bottom layers upwards Вигляд друкованої плати знизу - + View from above Вид зверху - + View the PCB from the top layers downwards Вигляд друкованої плати зверху - - + + Set both copper layers clickable Зробити обидва мідні шари натискними - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable Зробити верхній мідний шар натискним - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable Зробити нижній мідний шар натискним - + Shift+Ctrl+1 Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active Зробити верхній та нижній мідні шари активними - + Copper Top layer is active Верхній мідний шар активний - + Copper Bottom layer is active Нижній мідний шар активний - + Order a PCB... Замовити друковану плату... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Замовити друковану плату, створену з вашого нарису — від неймовірної Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Ваш нарис не містить плати! Будь ласка, додайте ДП для використання саморозведення. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Будь ласка, виберіть плату для саморозведення. Саморозведення можливе лише для однієї плати за раз. - + Autorouting... Саморозведення... - + Autorouting Progress... Здійснюється саморозведення... - + jumpers перемички - + copperfill мідне заповнення - + vias отвори - + Remove Bendpoint Видалити опорні точки - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Ваш нарис не містить плати! Будь ласка, додайте ДП для використання заповнення із заземленям, або мідного заповнення. - + Please select a PCB--copper fill only works for one board at a time. Будь ласка, оберіть ДП — обробка мідного заповнення можлива лише для однієї плати в один момент часу. - + Generating %1 fill... Створення %1 заповнення... - + ground заземленого - + copper мідного - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Ваш Нарис не містить плати! Будь ласка, додайте ДП для видалення мідного заповнення. - + Please select a PCB--ground fill operations only work on a one board at a time. Будь ласка, оберіть ДП — обробка заповнення зі спільним заземленням можлива лише для однієї плати в один момент часу. - + Remove copper fill Видалити мідне заповнення - - + + &Wire Color Колір провідника (&W) - + Schematic view update Оновити вид схеми - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -4358,41 +4481,41 @@ Go ahead and revert? - + Would you like to convert '%1' to the new standard now or open the file read-only? Ви бажаєте перетворити '%1' у новий стандарт зараз, чи відкрити файл лише для читання? - + The conversion process will not modify '%1', until you save the file. Перетворення не змінить '%1', доки ви не збережете файл. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Вам доведеться переставити деталі та з’єднання у виді схеми, коли розміри зображень деяких деталей беду змінено. Розгляньте можливість використання саморозведення для очищення доріжок. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Зверніть увагу, що жодну саморобну деталь не буде перетворено. Інструмент для перетворення 'прямокутних' зображень схем доступний у редакторі деталей. - + Launch %1... Запуск %1... - + No outdated parts found. All your parts are up-to-date. Не знайдено застарілих деталей. Всі ваші деталі сучасні. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -4401,12 +4524,12 @@ Note: if you want to update later, there are options under the 'Part' Увага: якщо ви бажаєте оновити пізніше, є опція у меню 'Деталь' для роботи з застарілими відособлено. - + Outdated parts Застарілі деталі - + There are %n outdated part(s) in this sketch. У нарисі є %n застаріла деталь. @@ -4415,7 +4538,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. Ми наполегливо радимо вам оновити цю %n деталь до останньої версії. @@ -4424,12 +4547,12 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. Це може призвести до змін у нарисі, оскільки деталі чи роз’єми можуть бути посунуті. - + Do you want to update now? @@ -4438,103 +4561,113 @@ Do you want to update now? Ви бажаєте оновити зараз? - + unable to find replacement for %1. не вдалось знайти заміну для %1. - + Update %1 part(s) Оновлення %1 деталі(-ей) - + Successfully updated %1 part(s). Please check all views for potential side-effects. Завершено оновлення %1 деталі(ей). Будь ласка, перевірте всі види для виявлення можливих побічних наслідків. - + OK Погодитись - + Set the grid size for %1. Задати розмір сітки %1. - + Grid Size: Розмір сітки: - + in дюйм - + mm мм - + Restore Default Відновити за замовчанням - + Your sketch does not have a board yet! DRC only works with a PCB. Ваш нарис не містить плати! Перевірка проектних норм працює лише з ДП. - + Please select a PCB. DRC only works on one board at a time. Будь ласка, оберіть ДП. ППН працює лише з однією ДП в один момент часу. - + DRC Progress... Здійснюється ППН... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. Ваш нарис не містить плати! Будь ласка, додайте ДП для використання мідного заповнення. - - + + Please select a PCB. Copper fill operations only work on one board at a time. Будь ласка, оберіть ДП. Мідне заповнення працює лише з однією платою в один момент часу. - + %1 background %1, тло - + Enter Text Введіть текст - + Text will match part label, description, title, etc. Enter text to search for: Текст має відповідати позначці деталі, опису, назві тощо. Введіть текст для пошуку за: - + Search Пошук - + No parts matched search term '%1'. Жодна деталь не відповідає умовам пошуку '%1'. @@ -4681,7 +4814,7 @@ Reason: %2 (errcode %3) NetLabel - + net label позначка ланцюжка @@ -4704,24 +4837,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing @@ -4732,8 +4865,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Будь ласка, оберіть спочатку ДП — ця опція працює лише з однією платою одночасно. @@ -4743,33 +4876,33 @@ Reason: %2 (errcode %3) Натисніть на цей з’єднувач, для того щоб витягнути нову доріжку. - + Change trace layer Змініть шар доріжки - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Ваш нарис не містить плати! Будь ласка, додайте ДП для створення мідного заповнення. - + %1 Fill: please select the board you want to apply fill to. %1 Заповнення: будь ласка, оберіть платну, яку ви бажаєте заповнити. - + Ground Заземлення - + Copper Мідь - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4778,92 +4911,92 @@ Reason: %2 (errcode %3) - - + + Fritzing error: unable to render board svg (1). Помилка Fritzing: не вдалось відобразити плату SVG (1). - - - + + + Fritzing error: unable to render copper svg (1). Помилка Fritzing: не вдалось відобразити мідне заповнення SVG (1). - + Fritzing error: unable to write copper fill (1). Помилка Fritzing: не вдалось відрисувати мідне заповнення (1). - + Fritzing error: unable to write copper fill (2). Помилка Fritzing: не вдалось відрисувати мідне заповнення (2). - + Copper fill: please select only the board you want to fill. Мідне заповнення: будь ласка, оберіть плату яку ви бажаєте заповнити. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Не вдалось створити мідне заповнення — імовірно деталь не знаходиться на ДП. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Не вдалось створити мідне заповнення — можливо, деталь було скинуто на іншу деталь або провідник, а не до ДП. - + Clear ground fill seeds Очистити затравки спільного заземлення - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Ваш нарис не містить плати! Будь ласка, додайте ДП для використовування обраної операції. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Не вдалось перетворити цю опорну точку, оскільки сполучення до деталі є лише на нижньому шарі, а інша деталь є лише на верхньому шарі. - + Show part silkscreen Показати деталі на шарі позначок - + Hide part silkscreen Приховати деталі на шарі позначок - - + + Fritzing Fab Quote Поради Fritzing Fab - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. Ваш нарис не містить плати! Ви не можете створити цей нарис без ДП. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. На жаль, http://fab.fritzing.org не відповідає на запит. Будь ласка, перевірте ваше підключення до мережі, та спробуйте ще раз. - + Enter Keepout Введіть проміжок - + Keepout is in mils (.001 inches). @@ -4872,14 +5005,14 @@ Reason: %2 (errcode %3) - + Note that due to aliasing, distances may be too short by up to 2 mils Зверніть увагу на те, що відстані до 2 мілів (0,05 мм) можуть призвести до накладання, - + so you may want to increase the keepout value by that much. @@ -4888,7 +5021,7 @@ Reason: %2 (errcode %3) - + 10 mils is a good default choice. @@ -4897,7 +5030,7 @@ Reason: %2 (errcode %3) - + Enter keepout value: Введіть значення проміжку: @@ -5104,11 +5237,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor Редактор деталей @@ -5158,229 +5291,229 @@ Reason: %2 (errcode %3) Не вдалось розібрати файл FZP %1 - - + + Fritzing (New) Parts Editor Редактор деталей Fritzing (новий) - + Icon View Вигляд Значок - + Metadata View Вид Метадата - + Connectors View Вид З’єднувачів - + Show Icon Показати значки - + Ctrl+4 Ctrl+4 - + Show the icon view Показати у вигляді значка - + Show Metadata Показати метадані - + Ctrl+5 Ctrl+5 - + Show the metadata view Показати у вигляді метадати - + Show Connectors Показати з’єднувачі - + Ctrl+6 Ctrl+6 - + Show the connector metadata in a list view Показати метадату з’єднувача у вигляді переліку - + Make only this view visible Зробити видимим лише цей вид - + The part will only be visible in this view and icon view Деталь буде видно лише в цьому виді і у виді значків - + Blank not allowed Пустота не допускається - + The value of '%1' can not be blank. Значення '%1' не може бути порожнім. - + Change %1 to %2 Змінити %1 на %2 - + Must be unique Має бути унікальним - + Variant '%1' is in use. The variant name must be unique. Варіант '%1' вже використовується. Назва варіанту має бути унікальною. - + Change description Змінити опис - + Change %1 to '%2' Змінити %1 на '%2' - + Change tags Змінити ключові слова - - + + Duplicate problem Проблема дублювання - + Duplicate 'family' property not allowed Не допускається дублювання властивості 'сімейство' - + Duplicate 'variant' property not allowed Не допускається дублювання властивості 'варіант' - + Change properties Змінити властивості - + Change connector %1 Змінити з’єднувач %1 - - - + + + SVG problem Проблема з SVG - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Це версія нового Редактора деталей не працює з окремими шарами мідь0 та мідь1 у '%1'. - + So editing may produce an invalid PCB view image Таким чином, редагування може призвести до неприпустимого вигляду ДП - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Файли зображень та опорних поверхонь (%1 %2 %3 %4 %5);;файли SVG (%1);;файли JPEG (%2);;файли PNG (%3);;файли опорної поверхні gEDA (%4);;файли Kicad Module (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 Файли зображень (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image Відкрити зображення - - - - + + + + Conversion problem Проблема перетворення - + Unable to load '%1' Не вдалось завантажити '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Схоже що SVG файл '%1' був експортований з CorelDRAW без встановлення опції 'presentation attributes'. - + Please re-export the SVG file using that setting, and try loading again. Будь ласка, ще раз експортуйте SVG файл, використовуючи це налаштування, і спробуйте завантажити його знову. - + Fonts Шрифти - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' На даний момент Fritzing підтримує лише OCRA та Droid шрифти — вони були замінені в '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Ви можете використовувати PNG або JPG зображення для побудови своєї деталі, але краще використовувати SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- PNG та JPG є растровими зображеннями, і будуть не дуже добре виглядати при зміні розміру-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. тому для деталей Fritzing краще використовувати PNG та JPG лише як заповнювачі. - + Use of PNG and JPG discouraged Використання PNG та JPG бентежить @@ -5393,7 +5526,7 @@ Reason: %2 (errcode %3) %2 - + Unable to load image file '%1': %2 @@ -5402,112 +5535,112 @@ Reason: %2 (errcode %3) %2 - + Unable to load image file '%1' Не вдалось завантажити файл зображення '%1' - + Unable to parse '%1': %2 line:%3 column:%4 Не вдалось розібрати '%1': %2 рядок:%3 стовпчик:%4 - + There are no copper layers defined in: %1. Немає мідних шарів у: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Дивіться <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">це пояснення</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/>Це не буде проблемою в наступному випуску Редактора деталей, - + but for now please modify the file according to the instructions in the link. але зараз, будь ласка, змініть файл відповідно до інструкції за посиланням. - + Copy problem Проблема копіювання - + Unable to make a local copy of: '%1' Не вдалось створити локальну копію: '%1' - + no schematics found in %1 не знайдено схеми у %1 - + schematic part схема деталі - + no footprints found in %1 не знайдено опорних поверхонь у %1 - + Relocate connector %1 Перемістити з’єднувач %1 - + Filename prefix Приросток імені файлу - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> <p>Будь ласка, введіть приросток, який допоможе вам ідентифікувати файли деталей.<br/>Імена файлів матимуть форму 'PREFIX_%1'.<br/>(Не потрібно змінювати запропонований приросток, оскільки унікальний суфікс завжди додається.)</p> - + Sketch Change Warning Попередження зміни нариса - + The open sketch '%1' uses the part you are editing. Відкритий нарис '%1' використовує редаговану деталь. - + Saving this part will make a change to the sketch that cannot be undone. Збереження цієї деталі внесе у нарис зміни, які неможливо буде скасувати. - + The open sketches Відкритий нарис - + '%1', '%1', - + and '%1' та '%1' - + Saving this part will make a change to these sketches that cannot be undone. Збереження цієї деталі внесе у нариси зміни, які неможливо буде скасувати. - + Go ahead and save? @@ -5516,107 +5649,107 @@ Go ahead and save? Продовжити і зберегти? - + Save Зберегти - + Cancel Скасувати - + Move terminal point Перемістити кінцеву точку - + Remove connector Видалити з’єднувач - + Remove %1 connectors Видалити %1 з’єднувачів - + Save "%1" Зберегти "%1" - + Do you want to save the changes you made in the part "%1"? Бажаєте зберегти внесені зміни у деталі "%1"? - + Your changes will be lost if you don't save them. Зміни буде втрачено, якщо ви не збережете їх. - + untitled part деталь без назви - + Unable to load fzp from %1 Не вдалось завантажити FZP з %1 - + Unable to create new connector--you may have to start over. Не вдалось створити новий з’єднувач — можливо вам доведеться почати спочатку. - + Add connector Додати з’єднувач - + Add %1 connectors Додати %1 з’єднувачів - + Internal connections are very messed up. Внутрішні з’єднання надто заплутані. - + Remove internal connection from '%1' Видалити внутрішнє з’єднання з '%1' - + Add internal connection from '%1' to '%2' Додати внутрішнє з’єднання з '%1' до '%2' - + Change all connectors to %1 Змінити всі з’єднувачі на %1 - + Unable to parse '%1' Не вдалось розібрати '%1' - + Change to %1 Змінити на %1 - + Make only %1 view visible Зробити видимим лише вид %1 - + This part has %n unassigned connectors Деталь має %n непризначений з’єднувач @@ -5625,7 +5758,7 @@ Go ahead and save? - + across %n views. через %n вид. @@ -5634,12 +5767,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. Доки всі з’єднувачі не призначені до елементів SVG, деталь не буде працювати правильно. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Можете спокійно вийти з Редактора деталей, просто не забудьте закінчити роботу пізніше. @@ -6441,67 +6574,75 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (натисніть для зміни...) - + Clear Settings Скинути налаштування - + Platform Support Підтримка платформи - + <b>%1</b> <b>%1</b> - + Location: Положення: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Вам необхідно встановити <a href='%1'>%2</a> (версії %3 або новіші). - + Select a programmer (executable) for %1 Оберіть програматор (виконуваний файл) для %1 - + Connected Highlight Підсвітити з’єднані - + Unconnected Highlight Підсвітити роз’єднані - + Command Команда - + Control Контроль - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6510,7 +6651,7 @@ Shift = змінити вісь прокручування Alt або %1 = збільшення - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6519,22 +6660,22 @@ Alt або %1 = прокручування Shift = змінити вісь прокручування - + Curvy vs. straight wires Звивисті або прямі лінії - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? При натисканні кнопки миші і перетягуванні доріжки або ніжки деталі (роз’єму або опорної точки) ви бажаєте змінити кривизну доріжки (ніжки), чи створити нову опорну точку? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Цей прапорець задає поведінку за замовчуванням. Поведінку можна змінити, натиснувши Ctrl (у MacOS: Command) під час перетягування. - + Curvy wires and legs Звивисті лінії та ніжки @@ -6889,7 +7030,6 @@ Shift = змінити вісь прокручування - Fritzing Fritzing @@ -6950,12 +7090,12 @@ Shift = змінити вісь прокручування Підсвітити сполучення - + Unconnected highlight color Підсвітити не сполучені деталі - + Clear all saved settings and close this dialog immediately. Очистити всі збережені налаштування і негайно закрити цей діалог. @@ -6965,12 +7105,12 @@ Shift = змінити вісь прокручування Ця дія не видаляє файли — вона відновлює значення вподобань по замовчанню. - + There is no undo for this action, and no further warning!!!! Цю дію неможливо скасувати, і більше попереджень не буде!!!! - + Clear Settings Очистити налаштування @@ -7013,21 +7153,21 @@ Shift = змінити вісь прокручування Файл '%1' лише для читання; будь ласка, оберіть іншу назву. - - - + + + Part Деталь - - - + + + Wire Провідник - + Set Grid Size Задати розмір сітки @@ -7306,18 +7446,18 @@ Fritzing продовжує роботу, але ви не зможете змі Вибрати всі доріжки, що можна саморозвести - - + + Select all %1 Вибрати все %1 - + Convert to Via Перетворити на отвір - + Convert Via to Bendpoint Перетворити отвір на опорну точку @@ -7327,43 +7467,43 @@ Fritzing продовжує роботу, але ви не зможете змі схема - + Error reading file %1: %2. Помилка читання файлу %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Змінити ніжку %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer Шар %1 - - + + Bring forward Підняти вище - + Send backward Опустити нижче - + Bring to front Підняти наверх @@ -7378,22 +7518,22 @@ Fritzing продовжує роботу, але ви не зможете змі Сполучити провідник - + Trace wires Розвести провідники - + Ratsnest wires Провідники навісного монтажу - + Select outdated parts Вибрати застарілі деталі - + Select locked parts Вибрати заблоковані деталі @@ -7710,12 +7850,12 @@ Fritzing продовжує роботу, але ви не зможете змі Папка програми%1 не знайдена - + Copying file %1 Копіювання файлу %1 - + File %1 already exists: it won't be overwritten Файл %1 вже існує: його не можна перезаписати @@ -7874,9 +8014,13 @@ Fritzing продовжує роботу, але ви не зможете змі Недоступно - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - Папка деталей '%1' змінена--її немає у головній гілці (%2). %3 + Папка деталей '%1' змінена--її немає у головній гілці (%2). %3 + + + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + @@ -7899,48 +8043,52 @@ Fritzing продовжує роботу, але ви не зможете змі У папці деталей '%1' є файли, які не можна прочитати. %2 - + Unable to open parts folder '%1' for update. %2 Не вдається відкрити папку деталей '%1' для оновлення. %2 - + Parts folder repo '%1' is empty. %2 Репозиторій папки деталей '%1' порожній. %2 - + Unable to determine network site for '%1'. %2 Неможливо визначити мережевий сайт для '%1'. %2 - + Unable to access network site for '%1'. %2 Не вдається отримати доступ до мережевого сайту для '%1'. %2 - + Unable to retrieve network references for '%1'. %2 Неможливо отримати мережеві посилання для '%1'. %2 - + + Unable to retrieve the network reference for '%1'#%2. %3 + + + Unable to retrieve master network reference for '%1'. %2 - Неможливо отримати головну мережеву посилання для '%1'. %2 + Неможливо отримати головну мережеву посилання для '%1'. %2 - - + + Regenerating parts database Відновлення бази даних деталей - + Unable to find parts git repository Неможливо знайти частини сховища git - + Unable to find parts git repository HEAD Неможливо знайти частини сховища git HEAD @@ -8251,17 +8399,17 @@ Fritzing продовжує роботу, але ви не зможете змі Ruler - + width ширина - + &cm &см - + &in &дм @@ -8269,33 +8417,33 @@ Fritzing продовжує роботу, але ви не зможете змі S2S - + Failed loading '%1', %2 line:%3 col:%4 Не вдалось завантажити '%1', %2 рядок:%3 стовпчик:%4 - + Schematic not found for '%1' Не знайдено схему для '%1' - - + + Unable to load schematic '%1' for '%2' Не вдалось завантажити схему '%1' для '%2' - + Schematic '%1' is already using the 0.1inch standard. Схема '%1' використовує 0,1 дюймовий стандарт. - + Missing connector %1 in '%2' schematic of '%3' Відсутній роз’єм %1 у '%2' схеми '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 Помилка завантаження схеми '%1', %2 рядок:%3 стовпчик:%4 @@ -8427,142 +8575,142 @@ Fritzing продовжує роботу, але ви не зможете змі завантаження завершено - + Delete ratsnest Видалити навісний монтаж - + %1 %2 %1 %2 - + %1 %2 items %1 %2 предмети - + Select All Виділити все - + Deselect Зняти виділення - + Add %1 Додати %1 - + Selection Вибір - + Move %2 (%1) Перемістити %2 (%1) - + Move %2 items (%1) Перемістити %2 предмети (%1) - - + + Select %1 Вибрати %1 - - + + Select %1 items Вибрати %1 предмети - - + + Disconnect Відключити - + from %1 від %1 - + Move leg of Перемістити ніжку - - + + Connect Підключити - - + + to %1 до %1 - + Change leg curvature for %1. Змінити кривизну ніжки для %1. - + Change leg bendpoint for %1. Змінити опорну точку ніжки для %1. - + Change Змінити - + Create and connect wire Створити та під’єднати дріт - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Це схоже на спробу провести доріжку між шарами. Так не має бути: будь ласка, зв’яжіться із розробниками. - + Create and connect %1 Створити та під’єднати %1 - + wire провідник - + trace доріжка - + Rotate %2 (%1) Повернути %2 (%1) - + Flip %2 (%1) Розвернути %2 (%1) @@ -8660,69 +8808,69 @@ Fritzing продовжує роботу, але ви не зможете змі Змінити розмір примітки - + Change Resistance from %1 to %2 Змінити Опір з %1 на %2 - - + + Change %1 from %2 to %3 Змінити %1 з %2 на %3 - + Resize ruler to %1 %2 Змінити розмір керувача на %1 %2 - - + + Resize board to %1 %2 Змінити розмір плати на %1 %2 - + Create wire from Ratsnest Створити дріт з наівсного монтажу - + Disconnect all wires from %1 Від’єднати всі дроти від %1 - + Disconnect all wires from %1 items Від’єднати всі дроти з %1 предметів - + Change image from %1 to %2 Змінити зображення з %1 на %2 - + change pin labels змінити позначки штирка - + Unrouted connections are highlighted in yellow. Нерозведені з’єднання буде виділено жовтим кольором. - + There are no unrouted connections Тут немає нерозведених з’єднань - + Unrouted connections Нерозведені з’єднання - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8731,22 +8879,22 @@ Note: you can also trigger this display by mousing down on the routing status te Увага: ви можете викликати це повідомлення, клацнувши мишею на стані розведення у рядку стану. - + Part '%1' not found in sketch Деталь '%1' не знайдено у нарисі - + Add %1 parts Додати %1 деталі - + Deselect all Зняти виділення з усього - + test connectors перевірити з’єднання @@ -8824,22 +8972,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage напруга - + label позначка - + Net labels Позначка ланцюжка - + Net labels cannot be blank Позначки ланцюжка не можуть бути пустими @@ -8987,9 +9135,13 @@ Note: you can also trigger this display by mousing down on the routing status te Для редагування позначки двічі клацніть по ній, або використовуйте текстовий пристосунок у вікні Інспектора. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Для відображення різних властивостей на позначках, а також для їх обертання або зміни шрифта, клацніть по позначці правою кнопкою. + Для відображення різних властивостей на позначках, а також для їх обертання або зміни шрифта, клацніть по позначці правою кнопкою. + + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + @@ -9499,92 +9651,87 @@ Note: you can also trigger this display by mousing down on the routing status te Fritzing CreatorKit - Donate - Пожертвувати + Пожертвувати - Fritzing development needs you - Розробці Fritzing потрібні Ви + Розробці Fritzing потрібні Ви - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - Розробка та обслуговування програмного забезпечення - це велика робота. Без вашої підтримки це неможливо продовжувати. + Розробка та обслуговування програмного забезпечення - це велика робота. Без вашої підтримки це неможливо продовжувати. - Donate and leave a comment. - Пожертвувати та залишити коментар. + Пожертвувати та залишити коментар. - Donate now - Пожертвувати зараз + Пожертвувати зараз - + Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab — це проста та зручна послуга зі створення професійних друкованих плат із ваших нарисів Fritzing. - + produce your first pcb now >> виготовити вашу першу друковану плату >> - + Order your PCB now. Замовити друковану плату зараз. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Проекти - + Blog Блог - + Fritzing News. Новини Fritzing. - + Fritzing Projects. Проекти Fritzing. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Немає останніх нарисів - + Unable to reach blog.fritzing.org Немає доступу до blog.fritzing.org - + Unable to reach fritzing.org/projects Неможливо перейти до fritzing.org/projects @@ -9593,17 +9740,17 @@ Note: you can also trigger this display by mousing down on the routing status te Немає доступу до friting.org/projects - + Tip of the Day: Порада дня: - + All Tips Всі поради - + Next Tip Наступна порада diff --git a/translations/fritzing_ur.ts b/translations/fritzing_ur.ts index 30d2fb623..73104be7d 100644 --- a/translations/fritzing_ur.ts +++ b/translations/fritzing_ur.ts @@ -4,255 +4,240 @@ AboutBox - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -793,7 +778,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -801,17 +786,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1260,6 +1245,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1286,12 +1335,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1401,7 +1450,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1950,7 +1999,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Rotate @@ -1966,7 +2015,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute @@ -2002,7 +2051,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note @@ -2026,40 +2075,47 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing @@ -2079,59 +2135,85 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + + Specify a file name - + Fritzing Part (*%1) - + Unable to export %1 to shareable sketch - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - - + + Do you want to keep the imported parts? - + No connections to route - + Routing completed - + Routing completed using %n jumper part(s) @@ -2139,7 +2221,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 of %2 nets routed - %n connector(s) still to be routed @@ -2147,130 +2229,130 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist - + No exactly matching part found; Fritzing chose the closest match. - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - - + + Fritzing (*%1) - + Fritzing uncompressed (*%1) - + Unrouted connections - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2351,13 +2433,13 @@ We're working to avoid this message, and only let you choose between proper - + Cancel - + Choose a folder for exporting @@ -2378,1969 +2460,1974 @@ We're working to avoid this message, and only let you choose between proper - + Unable to save %1 - + Cannot print to %1 - + Cannot write file %1: %2. - + Saved '%1' - + Unable to export %1 as shareable - + &Save - + Ctrl+S - - + + Save the current sketch - + &Save As... - + Shift+Ctrl+S - + Share online... - + Post a project to the Fritzing website - + JPG... - + Export the visible area of the current sketch as a JPG image - + PNG... - + Export the visible area of the current sketch as a PNG image - + PDF... - + Export the visible area of the current sketch as a PDF image - + SVG... - + Export the current sketch as an SVG image - + List of parts (&Bill of Materials)... - + Save a Bill of Materials (BoM)/Shopping List as text - + XML Netlist... - + Save a netlist in XML format - + SPICE Netlist... - + Save a netlist in SPICE format - + Eagle... - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Etchable (PDF)... - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Etchable (SVG)... - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... - + Ctrl+P - + Print the current view - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. - + Export SVG... - + Export Bill of Materials (BoM)... - + Unable to save BOM file, but the text is on the clipboard. - + Export SPICE Netlist... - + Export Netlist... - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Select a Fritzing File to Open - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Cannot find file %1. - + Cannot read file 1 %1: %2. - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - - + + File '%1' not found - + Convert - + Read-only - - directly loading parts - - - - + loading %1 (model) - + loading %1 (breadboard) - + loading %1 (pcb) - + loading %1 (schematic) - + New - + Ctrl+N - + Create a new sketch - + &Open... - + Ctrl+O - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + Shell launch %1 - + throw test exception - + throw a fake exception to see what happens - + &Quit - + Ctrl+Q - + Quit the application - + &Open Example - + All - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' - + &Open Recent Files - + &%1 %2 - + Undo - + Redo - + &Cut - + Cut selection - + &Copy - + Copy selection - + &Paste - + Paste clipboard contents - + Paste in Place - + Ctrl+Shift+V - + Paste clipboard contents in place - + &Duplicate - + Ctrl+D - + Duplicate selection - + &Delete - + Delete selection - + Delete Minus - + Delete selection without attached wires - + &Delete Wire - + Delete Wire up to bendpoints - + &Select All - + Select all elements - + &Deselect - + Deselect - - + + Add Note - + &Preferences... - - + + Show the application's about box - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Disconnect All Wires - + Disconnect all wires connected to this connector - + Update InfoView on hover - + Export Normalized SVG - + Export 1000 dpi SVG of this part in this view - + Export Normalized Flattened SVG - + Export 1000 dpi Flattened SVG of this part in this view - + Dump all parts - + Debug dump all parts in this view - + Test Connectors - + Connect all connectors to a single test part - + Rotate 45° Clockwise - + Rotate current selection 45 degrees clockwise - + Rotate 90° Clockwise - + Rotate the selected parts by 90 degrees clockwise - + Rotate 180° - + Rotate the selected parts by 180 degrees - + Rotate 90° Counter Clockwise - + Rotate current selection 90 degrees counter clockwise - + Rotate 45° Counter Clockwise - + Rotate current selection 45 degrees counter clockwise - + &Flip Horizontal - + Flip current selection horizontally - + &Flip Vertical - + Flip current selection vertically - + Bring to Front - + Shift+Ctrl+] - + Bring selected object(s) to front of their layer - + Bring Forward - + Ctrl+] - + Bring selected object(s) forward in their layer - + Send Backward - + Ctrl+[ - + Send selected object(s) back in their layer - + Send to Back - + Shift+Ctrl+[ - + Send selected object(s) to the back of their layer - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + Lock Part - + Prevent a part from being moved - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Select All Locked Parts - + Select all parts that can't be moved - + &Show part label - + Show/hide the label for the selected parts - + &Export... - + Export selected part - - + + Add Bendpoint - + Add a bendpoint to the selected wire - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - + Straighten Curve - + Straighten the curve of the selected wire - - + + Select outdated parts - - + + Update selected parts - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + &Zoom In - + Ctrl++ - + Zoom in - + Ctrl+= - + &Zoom Out - + Ctrl+- - + Zoom out - + &Fit in Window - + Ctrl+0 - + Fit in window - + &Actual Size - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 - + 100% (pixel) size - + Align to Grid - + Align items to grid when dragging - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+1 - + Ctrl+2 - + Ctrl+3 - + Ctrl+4 - + Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard - + Show the breadboard view - + &Show Schematic - + Show the schematic view - + &Show PCB - + Show the PCB view - + Show Code - + Show the code (programming) view - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - + &Show All Layers - + Show all the available layers for the current view - + &Hide All Layers - + Hide all the layers of the current view - + &Minimize - + Ctrl+M - + Minimize current window - + Debugger Output - + Online Tutorials - + Ctrl+? - + Open Fritzing help - - Donate to Fritzing + + Online Projects Gallery - - Open Fritzing donation web page + + Open Fritzing examples - - Online Projects Gallery + + Online Parts Reference - - Open Fritzing examples + + Open Parts Reference - - Online Parts Reference + + Visit fritzing.org - - Open Parts Reference + + fritzing.org - + Check for updates... - + Check whether a newer version of Fritzing is available for download - + &About - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks - + First Time Help - + Display First Time Help - + &About Qt - + Show Qt's about box - + Report a bug... - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + Raise and Lower - + Align - + &Add to bin... - + Add selected part to bin - + &File - + &Export - + as Image - + for Production - + &Edit - + &Part - + &View - + &Window - - - + + + + + + &Routing - - - + + + Ground Fill - + &Help - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + Delete - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup - + Sorry, "%1" has not been implemented yet + + + Routing + + + + Autoroute connections... - + Shift+Ctrl+A - + &Create trace from ratsnest - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Show unrouted - + Highlight all unrouted connectors - + Select All Traces - + Select all trace wires - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select all trace wires excluded from autorouting - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Tidy Wires - + Tidy selected wires - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - - + + Copper Fill - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Remove Copper Fill - + Remove the copper fill - + Choose Ground Fill Seed(s)... - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Shift+Ctrl+D - + Check Loaded Traces - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - - + + Set both copper layers clickable - + Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 - + Copper Top and Copper Bottom layers are both active - + Copper Top layer is active - + Copper Bottom layer is active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Autorouting... - + Autorouting Progress... - + jumpers - + copperfill - + vias - + Remove Bendpoint - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Generating %1 fill... - + ground - + copper - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Remove copper fill - - + + &Wire Color - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Launch %1... - + No outdated parts found. All your parts are up-to-date. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + Outdated parts - + There are %n outdated part(s) in this sketch. @@ -4348,7 +4435,7 @@ Note: if you want to update later, there are options under the 'Part' - + We strongly recommend that you update these %n parts to the latest version. @@ -4356,113 +4443,123 @@ Note: if you want to update later, there are options under the 'Part' - + This may result in changes to your sketch, as parts or connectors may be shifted. - + Do you want to update now? - + unable to find replacement for %1. - + Update %1 part(s) - + Successfully updated %1 part(s). Please check all views for potential side-effects. - + OK - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. @@ -4606,7 +4703,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4629,24 +4726,24 @@ Reason: %2 (errcode %3) - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing @@ -4657,8 +4754,8 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. @@ -4668,152 +4765,152 @@ Reason: %2 (errcode %3) - + Change trace layer - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Please designate one or more ground fill seeds before doing a ground fill. - - + + Fritzing error: unable to render board svg (1). - - - + + + Fritzing error: unable to render copper svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Copper fill: please select only the board you want to fill. - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -5017,11 +5114,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor @@ -5069,453 +5166,453 @@ Reason: %2 (errcode %3) - - + + Fritzing (New) Parts Editor - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 - + Show the icon view - + Show Metadata - + Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 - + Show the connector metadata in a list view - + Make only this view visible - + The part will only be visible in this view and icon view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - + Change description - + Change %1 to '%2' - + Change tags - - + + Duplicate problem - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed - + Change properties - + Change connector %1 - - - + + + SVG problem - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image - - - - + + + + Conversion problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - + Unable to load image file '%1': %2 - + Unable to load image file '%1' - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + Copy problem - + Unable to make a local copy of: '%1' - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 - + Filename prefix - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save - + Cancel - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector - + Add %1 connectors - + Internal connections are very messed up. - + Remove internal connection from '%1' - + Add internal connection from '%1' to '%2' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + This part has %n unassigned connectors @@ -5523,7 +5620,7 @@ Go ahead and save? - + across %n views. @@ -5531,12 +5628,12 @@ Go ahead and save? - + Until all connectors are assigned to SVG elements, the part will not work correctly. - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -6335,96 +6432,104 @@ Note: this warning will not be repeated during this session. - + + + + %1 + + + + + %1 (click to change...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight - + Unconnected Highlight - + Command - + Control - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6779,7 +6884,6 @@ shift key swaps scroll axis - Fritzing @@ -6840,12 +6944,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6855,12 +6959,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6895,21 +6999,21 @@ shift key swaps scroll axis - - - + + + Part - - - + + + Wire - + Set Grid Size @@ -7182,18 +7286,18 @@ Fritzing still works, but you won't be able to change parts properties. - - + + Select all %1 - + Convert to Via - + Convert Via to Bendpoint @@ -7203,43 +7307,43 @@ Fritzing still works, but you won't be able to change parts properties. - + Error reading file %1: %2. - + %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 - + %1 Layer - - + + Bring forward - + Send backward - + Bring to front @@ -7254,22 +7358,22 @@ Fritzing still works, but you won't be able to change parts properties. - + Trace wires - + Ratsnest wires - + Select outdated parts - + Select locked parts @@ -7582,12 +7686,12 @@ Fritzing still works, but you won't be able to change parts properties. - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7742,7 +7846,7 @@ Fritzing still works, but you won't be able to change parts properties. - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7766,48 +7870,48 @@ Fritzing still works, but you won't be able to change parts properties. - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8101,17 +8205,17 @@ Fritzing still works, but you won't be able to change parts properties. Ruler - + width - + &cm - + &in @@ -8119,33 +8223,33 @@ Fritzing still works, but you won't be able to change parts properties. S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8277,142 +8381,142 @@ Fritzing still works, but you won't be able to change parts properties. - + Delete ratsnest - + %1 %2 - + %1 %2 items - + Select All - + Deselect - + Add %1 - + Selection - + Move %2 (%1) - + Move %2 items (%1) - - + + Select %1 - - + + Select %1 items - - + + Disconnect - + from %1 - + Move leg of - - + + Connect - - + + to %1 - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Change - + Create and connect wire - + Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Rotate %2 (%1) - + Flip %2 (%1) @@ -8508,91 +8612,91 @@ Fritzing still works, but you won't be able to change parts properties. - + Change Resistance from %1 to %2 - - + + Change %1 from %2 to %3 - + Resize ruler to %1 %2 - - + + Resize board to %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 - + Disconnect all wires from %1 items - + Change image from %1 to %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all - + test connectors @@ -8667,22 +8771,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage - + label - + Net labels - + Net labels cannot be blank @@ -8831,7 +8935,7 @@ Note: you can also trigger this display by mousing down on the routing status te - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. + To display different properties in a part label, rotate it, or change the font, right-click the label. @@ -9336,108 +9440,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip diff --git a/translations/fritzing_vi.ts b/translations/fritzing_vi.ts index 9079bf53f..c074465a3 100644 --- a/translations/fritzing_vi.ts +++ b/translations/fritzing_vi.ts @@ -12,47 +12,47 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>GNU GPL v3 cho mã lập trình và CreativeCommons:BY-SA cho các phần còn lại - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: Fritzing được tạo ra bởi: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, @@ -61,209 +61,210 @@ Bryant Mairs, Uleshka Asher, and Daniel Tzschentke. - Special thanks goes out to: - Đặc biệt gửi lời cảm ơn tới: + Đặc biệt gửi lời cảm ơn tới: - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, Durrel Bishopl, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the Fritzing được tạo ra với tài chính đến từ - + MWFK Brandenburg, the sponsorship of the Design MWFK Brandenburg, nhà tài trợ của việc Thiết Kế - + Department of Bauhaus-University Weimar, Khoa Bauhaus-Đại học Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, IxDS, một nhà tài trợ vô danh, Paralax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. và từ mỗi người mua một Fritzing Starter Kit hoặc một PCB từ Fritzing Fab. - Special thanks goes out as well to all the students - Đặc biệt cảm ơn tới tất cả các sinh viên + Đặc biệt cảm ơn tới tất cả các sinh viên - and alpha testers who were brave enough to give - và những thử nghiệm viên phiên bản alpha những người đầy lòng can đảm để giúp + và những thử nghiệm viên phiên bản alpha những người đầy lòng can đảm để giúp - Fritzing a test spin. - Fritzing được thử nghiệm. + Fritzing được thử nghiệm. <br /><br /><br /><br /><br /><br /><br /><br /> @@ -812,7 +813,7 @@ Sử dụng file này? Capacitor - + Select from the dropdown, or type in a %1 value chọn từ thực đơn thả xuống, hoặc nhập vào một giá trị %1 @@ -820,17 +821,17 @@ Sử dụng file này? ConnectorItem - + Add bendpoint Thêm bendpoint - + Straighten curve Làm thẳng đường nối - + Remove bendpoint Gỡ bỏ bendpoint @@ -1279,6 +1280,70 @@ Sử dụng file này? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + + + + + Upload to Fab + + + + + Upload + Tải lên + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1305,12 +1370,12 @@ Sử dụng file này? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1426,7 +1491,7 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách Hole - + hole size kích thước lỗ @@ -1911,7 +1976,7 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách MainWindow - + %1 of %2 nets routed - %n connector(s) still to be routed %1 of %2 nets routed - %n connection still to be routed @@ -1919,7 +1984,7 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách - + Rotate Xoay @@ -1930,7 +1995,7 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách - + Autoroute Tự động đi dây @@ -1946,19 +2011,19 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách Lưu %1 - + Unable to export %1 as shareable Không xuất %1 như có thể chia sẽ được - - + + Specify a file name Xác định một tên file - - + + Fritzing (*%1) Fritzing (*%1) @@ -1966,50 +2031,57 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 to shareable sketch Không thể xuất %1 thành sketch có thể chia sẽ được - + Fritzing Part (*%1) Linh kiện fritzing (* %1) @@ -2118,89 +2190,114 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách Không thể mở '%1': %2 có thể chia sẽ được - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + Unable to open shareable part '%1': %2 Không thể mở linh kiện có thể chia sẽ được '%1': %2 - + No connections to route Không có kết nối nào để đi dây - + Routing completed Đã hoàn thành đi dây - + Routing completed using %n jumper part(s) Đi dây hoàn thành bằng cách sử dụng %n jumper - + Change to single layer pcb Chuyển sang mạch in đơn lớp - + Change to two layer pcb Đổi sang mạch in 2 lớp - + Change image to %2 Thay đổi hình ảnh sang %2 - + Schematic conversion Chuyển đổi sơ đồ nguyên lý - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Fritzing uncompressed (*%1) - + Unrouted connections Các đường nối chưa được đi dây - + There are no unrouted connections in this view. - + (x,y)=(%1, %2) %3 (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 (x, y)=(%1, %2) (rộng, cao)=(%3, %4) %5 - + Code Code - + Welcome Chào mừng - + %1 - [%2] %1 - [%2] @@ -2210,57 +2307,58 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách Không sketch nào được tìm thấy trong %1 - + + Unable to load part from '%1' Không thể tải linh kiện từ %1 - + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - + No exactly matching part found; Fritzing chose the closest match. - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 đang tải %1 - + Loading... Đang tải... - + new sketch Sketch mới - + Backing up '%1' Đang sao lưu '%1' @@ -2325,81 +2423,81 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách Đang xuất ra... - + Unable to save %1 Không thể lưu %1 - + Cannot print to %1 Không thể in tới %1 - + Cannot write file %1: %2. Không thể ghi file %1: %2. - + Saved '%1' Đã lưu '%1' - + Cannot find file %1. Không thể tìm thấy file %1. - + Cannot read file 1 %1: %2. Không thể đọc được file 1 %1: %2. - + loading %1 (model) đang tải %1 (mẫu) - + loading %1 (breadboard) đang tải %1 (breadboard) - + loading %1 (pcb) đang tải %1 (pcb) - + loading %1 (schematic) đang tải %1 (sơ đồ nguyên lý) - + Create a new sketch Tạo sketch mới - + &Open... &Mở... - + Ctrl+O Ctrl+O - + Export the visible area of the current sketch as a JPG image xuất vùng nhìn thấy của sketch hiện tại thành một file ảnh JPG - + Export the visible area of the current sketch as a PNG image Xuất vùng nhìn thấy của sketch hiện tại thành một file ảnh PNG @@ -2408,27 +2506,27 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách xuất vùng nhìn thấy của sketch hiện tại thành một file ảnh PostScript - + Export the visible area of the current sketch as a PDF image xuất vùng nhìn thấy của sketch hiện tại thành một file ảnh PDF - + Export the current sketch as an SVG image Xuất sketch hiện tại thành một file ảnh SVG - + Save a Bill of Materials (BoM)/Shopping List as text Lưu danh sách các vật liệu (BoM)/Danh sách mua sắm dưới dạng văn bản - + &Open Recent Files &Mở các file gần đây - + &Open Example &Mở ví dụ @@ -2439,714 +2537,712 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách - + Cancel Hủy bỏ - - + + File '%1' not found File '%1' không tìm thấy - + New Mới - + Ctrl+N Ctrl+N - + &Save &Lưu - + Ctrl+S Ctrl+S - - + + Save the current sketch Lưut sketch hiện tại - + &Save As... &Lưu thành... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... Chia sẽ trực tuyến... - + Post a project to the Fritzing website Xuất một dự án lên website Fritzing - + List of parts (&Bill of Materials)... Danh sách lninh kiện(&Danh sách nguyên vật liệu)... - + XML Netlist... XML Netlist... - + Save a netlist in XML format Lưu một netlist dưới định dạng XML - + SPICE Netlist... - + Save a netlist in SPICE format - + Export the current sketch to Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... &In... - + Ctrl+P Ctrl+P - + Print the current view In màn hình hiện tại - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + throw test exception - + throw a fake exception to see what happens - + &Quit &Thoát - + Ctrl+Q Ctrl+Q - + Quit the application Thoát khỏi ứng dụng - + All Tất cả - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: không thể tải ví dụ có='%1' - + &%1 %2 &%1 %2 - + &Cut &Cắt - + Cut selection Cắt phần được chọn - + &Copy &Copy - + Copy selection Copy phần được chọn - + &Paste &Dán - + Paste clipboard contents Dán nội dung clipboard - + Paste in Place Dán tại chỗ - + Paste clipboard contents in place Dán nội dung clipboard vào vị trí - + &Duplicate &Trùng lặp - + Ctrl+D Ctrl+D - + Duplicate selection Lựa chọn trùng lặp - + &Delete &Xóa - + Delete selection Xoá bỏ mục được chọn - + &Select All &Chọn tất cả - + Select all elements Chọn tất cả các yếu tố - + &Deselect &Bỏ chọn - + Deselect Bỏ chọn - + &Preferences... &Tùy chọn... - - + + Show the application's about box Hiển thị hộp thoại giới thiệu của chương trình - + &Add to bin... &Thêm vào bin... - + Add selected part to bin Thêm linh kiện đã chọn vào bin - + Disconnect All Wires Ngắt tất cả các dây - + Ctrl+Shift+V Ctrl+Shift+V - + Disconnect all wires connected to this connector Ngắt tất cả các dây kết nối với kết nối này - + Update InfoView on hover Cập Nhật InfoView lơ lửng - + Export Normalized SVG Xuất khẩu SVG chuẩn hoá - + Export 1000 dpi SVG of this part in this view Xuất khẩu SVG 1000 dpi của linh kiện này trong chế độ xem này - + Export Normalized Flattened SVG Xuất khẩu SVG phẳng đã được chuẩn hoá - + Export 1000 dpi Flattened SVG of this part in this view Xuất ra SVG phẳng 1000dpi của linh kiện này trong chế độ xem này - + Dump all parts - + Debug dump all parts in this view - + Test Connectors Kiểm tra các mối nối - + Connect all connectors to a single test part Kết nối tất cả kết nối với một linh kiện thử nghiệm đơn - + Align Left Căn trái - + Align selected items at the left Sắp xếp các mục đã chọn ở phía bên trái - + Align Horizontal Center Sắp xếp theo chiều ngang trung tâm - + Align selected items at the horizontal center Sắp xếp các khoản mục đã chọn tại Trung tâm nằm ngang - + Align Right Căn phải - + Align selected items at the right Sắp xếp các khoản mục đã chọn về bên phải - + Align Top Căn trên - + Align selected items at the top Sắp xếp các mục đã chọn nằm bên trên - + Align Vertical Center Sắp xếp theo chiều dọc trung tâm - + Align selected items at the vertical center Sắp xếp các khoản mục đã chọn tại Trung tâm chiều dọc - + Align Bottom Căn dưới - + Align selected items at the bottom Sắp xếp các mục đã chọn nằm dưới đáy - + Lock Part Khóa linh kiện - + Prevent a part from being moved Ngăn chặn không cho một linh kiện di chuyển - + Select All Locked Parts Chọn tất cả các linh kiện bị khóa - + Select all parts that can't be moved Chọn tất cả các linh kiện không thể di chuyển - + Show/hide the label for the selected parts Hiển thị/ẩn nhãn cho các linh kiện đã chọn - + Straighten Curve Làm thẳng đường cong - + Straighten the curve of the selected wire Làm thẳng đường cong của dây đã chọn - + Find part in sketch... Tìm linh kiện trong sketch... - + Search for parts in a sketch by matching text Tìm linh kiện trong sketch bằng từ khóa - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + Ctrl+4 Ctrl+4 - + Ctrl+5 - + &Show Welcome &Hiển thị Chào mừng - + Show the welcome view Hiển thị giao diện Chào mừng - + Show Parts Bin Icon View Hiển thị giao diện biểu tượng Khoang Linh kiện - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - Donate to Fritzing - Đóng góp cho Fritzing + Đóng góp cho Fritzing - Open Fritzing donation web page - Mở trang web tài trợ cho Fritzing + Mở trang web tài trợ cho Fritzing - + Display First Time Help Hiển thị Trợ giúp Lần đầu - + Align Sắp xếp - + Move to bottom layer Di chuyển sang lớp đáy - + Move to top layer Di chuyển đến lớp đầu - + Hide part label Ẩn nhãn linh kiện - + Show part label Hiển thị nhãn linh kiện - + Show part silkscreen Hiển thị silkscreen linh kiện - + Delete Xóa - + top and bottom Mặt trên và mặt dưới - + bottom Mặt dưới - + top mặt trên - + Ground Fill (%1) Đổ mát (%1) - + Copper Fill (%1) Đổ đồng (%1) - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed Thiết lập Đổ mát - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) Design Rules Check (DRC) Kiểm tra quy tắc thiết kế(DRC) - + Highlights any parts that are too close together for safe board production - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab Để sản xuất một PCB từ sketch này với Fritzing Fab sẽ mất bao nhiêu tiền - - + + View from below Xem từ dưới lên - - + + View the PCB from the bottom layers upwards Nhìn mạch in từ lớp đáy nhìn lên - + View from above Xem từ trên xuống - + View the PCB from the top layers downwards Nhìn mạch in từ lớp mặt nhìn xuống - + jumpers chân cắm - + copperfill phủ đồng - + vias - + Generating %1 fill... Đang tạo ra %1 đổ đồng... - + ground mát - + copper đồng - + Schematic view update Kiểu xem Sơ đồ nguyên lý cập nhật - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. @@ -3155,29 +3251,29 @@ Cũng có thể chọn một kết nối như là một đổ mát bằng cách - + Would you like to convert '%1' to the new standard now or open the file read-only? Bạn có muốn chuyển đổi '%1' thành tiêu chuẩn mới ngay bây giờ hoặc mở tệp chỉ-đọc? - + The conversion process will not modify '%1', until you save the file. Quá trình chuyển đổi sẽ không thay đổi '%1', cho đến khi bạn lưu file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. Bạn sẽ phải sắp xếp lại các linh kiện và các kết nối trong kiểu xem sơ đồ nguyên lý, vì các kích thước của hầu hết các hình ảnh linh kiện sẽ thay đổi. Xem xét sử dụng Autorouter để làm sạch các dấu vết. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. Lưu ý rằng bất kỳ linh kiện tùy chỉnh nào cũng sẽ không được chuyển đổi. Một công cụ để chuyển đổi các hình ảnh sơ đồ nguyên lý 'hình chữ nhật' là có sẵn trong Trình soạn thảo Linh kiện. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. @@ -3186,88 +3282,88 @@ Note: if you want to update later, there are options under the 'Part' Lưu ý: nếu bạn muốn cập nhật sau đó, có những lựa chọn trong menu 'Linh kiện' để đối phó riêng với từng linh kiện lỗi thời. - + There are %n outdated part(s) in this sketch. Có %n linh kiện đã lỗi thời trong sketch này. - + We strongly recommend that you update these %n parts to the latest version. Chúng tôi mạnh mẽ khuyến cáo bạn nên cập nhật %n linh kiện này tới phiên bản mới nhất. - + This may result in changes to your sketch, as parts or connectors may be shifted. Điều này có thể dẫn đến những thay đổi đối với sketch của bạn, như các linh kiện hoặc kết nối có thể bị dịch chuyển. - + unable to find replacement for %1. không thể tìm thấy các thay thế cho %1. - + %1 background %1 hình nền - + Enter Text Nhập vào ký tự - + Text will match part label, description, title, etc. Enter text to search for: Văn bản sẽ ăn khớp với nhãn, mô tả, tiêu đề, v.v. của linh kiện. Nhập văn bản để tìm kiếm cho: - + Search Tìm kiếm - + No parts matched search term '%1'. Không có linh kiện nào phù hợp với cụm từ tìm kiếm '%1'. - + Rotate the selected parts by 90 degrees clockwise Xoay các linh kiện đã chọn 90 độ theo chiều kim đồng hồ - + Rotate the selected parts by 180 degrees Xoay các linh kiện được chọn 180 độ - + Rotate current selection 90 degrees counter clockwise Xoay hiện lựa chọn hiện tại 90 độ theo chiều kim đồng hồ - + Rotate current selection 45 degrees counter clockwise Xoay lựa chọn hiện tại 45 độ theo chiều kim đồng hồ - + Rotate current selection 45 degrees clockwise Xoay lựa chọn hiện tại 45 độ theo chiều kim đồng hồ - + Revert? Trở lại? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? @@ -3276,581 +3372,601 @@ Go ahead and revert? Đi tiếp và trở lại? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) Mở một sketch Fritzing (.fzz, .fz), hay tải một linh kiện Fritzing (.fzpz), hoặc một khoang linh kiện Fritzing (.fzb, .fzbz) - + Revert Trở lại - + Reload the sketch Tải lại sketch - + &Delete Wire &Xóa dây - + Edit (new parts editor) Chỉnh sửa (trình biên tập linh kiện mới) - + Open the new parts editor on an existing part Mở trình soạn thảo linh kiện mới trên một linh kiện đã có - + &Flip Horizontal &Lật ngang - + Flip current selection horizontally Lật lựa chọn hiện tại theo chiều ngang - + &Flip Vertical &Lật theo chiều dọc - + Flip current selection vertically Lật lựa chọn hiện tại theo chiều dọc - + Bring to Front Mang ra trước - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer Mang các đối tượng được chọn đưa lên mặt trước của lớp - + Bring Forward Mang lên đầu - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer Mang các đối tượng được chọn đưa lên mặt đầu của lớp - + Send Backward Ẩn ra sau - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer Mang các đối tượng được chọn đưa ra mặt sau của lớp - + Send to Back Ẩn ra sau - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer Gửi (các) đối tượng được chọn ra mặt sau của lớp - + Sticky Dính - + If a "sticky" part is moved, parts on top of it are also moved Nếu một linh kiện "dính" bị di chuyển, các linh kiện trên đầu của nó cũng bị di chuyển theo - + &Show All Layers &Hiển thị tất cả các lớp - + Show all the available layers for the current view Hiển thị tất cả các lớp có sẵn cho giao diện hiện thời - + &Hide All Layers &Ẩn tất cả các lớp - + Hide all the layers of the current view Ẩn tất cả các lớp của kiểu xem hiện tại - + &Export... &Xuất ra... - + Export selected part Xuất ra linh kiện đã chọn - - + + Add Bendpoint Thêm điểm dán - + Add a bendpoint to the selected wire Thêm điểm dán vào dây đã chọn - + Convert Bendpoint to Via Chuyển đổi Bendpoint sang Via - + Convert the bendpoint to a via Chuyển đổi bendpoint này sang một via - + Convert Via to Bendpoint Chuyển đổi Via sang Bendpoint - + Convert the via to a bendpoint Chuyển đổi via này sang một bendpoint - + Actual (real world physical) size Kích thước thực tế (kích thước thật ngoài đời) - + 100% Size 100% Kích thước - + 100% (pixel) size 100% (pixel) kích thước - + Align to Grid Sắp xếp thành lưới - + Align items to grid when dragging Sắp xếp các mục thành lưới khi kéo - + Show Grid Hiển thị lưới - + Show the grid Hiển thị lưới - + Set Grid Size... Đặt kích thước lưới... - + Set the size of the grid in this view Thiết lập kích thước lưới trong dạng xem này - + Set Background Color... Thiết lập màu nền... - + Set the background color of this view Thiết lập màu nền của kiểu xem này - + Tips, Tricks and Shortcuts Lời khuyên, thủ thuật và các phím tắt - + Parts Editor Help Trợ giúp chỉnh sửa chân linh kiện - + Display Parts Editor help in a browser Hiển thị Trợ giúp Chỉnh sửa chân linh kiện trong một trình duyệt - + as Image thành Hình ảnh - + for Production cho sản xuất - - - + + + + + + &Routing &Đi dây - - - + + + Ground Fill Đổ mát - + Delete Ratsnest Line Xóa dây ratsnest - + Delete Wire Xóa dây - + Actual Size Kích thước thực tế - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. Dường như không thể tự động xác định kích thước vật lý thực tế của màn hình, do đó, 'kích thước thực tế' như thực thi hiện tại chỉ là suy đoán. Tốt nhất là bạn sẽ phải kéo ra một dụng cụ cây thước, sau đó đặt một cây thước thực (vật lý) trên đầu và phóng to cho đến khi chúng ăn khớp với nhau. - + Shift+Ctrl+A Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier Chọn bất kỳ dấu vết nào nơi vị trí màn hình không phù hợp với vị trí thực tế. Chỉ cần thiết cho các sketch nào được autoroute với phiên bản 0.7.10 hoặc trước đó - + Autorouter/DRC settings... Các thiết lập Autorouter/DRC... - + Set autorouting parameters including keepout... Đặt các tham số autorouting trong đó có vùng giới hạn... - - + + Set both copper layers clickable - + Shift+Ctrl+3 Shift+Ctrl+3 - - + + Set copper top layer clickable - + Shift+Ctrl+2 Shift+Ctrl+2 - - + + Set copper bottom layer clickable - + Shift+Ctrl+1 Shift+Ctrl+1 - + &Create trace from ratsnest - + Delete Minus - + Delete selection without attached wires Xoá bỏ mục được chọn mà không có dây kèm theo - + Delete Wire up to bendpoints - + Rotate 45° Clockwise Xoay 135 độ theo chiều kim đồng hồ {45°?} - + Rotate 90° Clockwise Xoay 135 độ theo chiều kim đồng hồ {90°?} - + Rotate 180° Xoay 180 độ {180°?} - + Rotate 90° Counter Clockwise Xoay 45 độ ngược chiều kim đồng hồ {90°?} - + Rotate 45° Counter Clockwise Xoay 45 độ ngược chiều kim đồng hồ {45°?} - + Show Code Hiển thị Code - + Show the code (programming) view Hiển thị code (lập trình) + + + Visit fritzing.org + + + + + fritzing.org + + + + + Routing + + + + Autoroute connections... Tự động đi dây... - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute Không autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item Khi đang autorout, không dỡ dây dấu vết, via, hoặc jumper này - + Move to other side of the board Di chuyển sang mặt bên kia của board - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) Di chuyển các dấu vết đã chọn sang mặt bên kia của board(Ghi chú: dấu vết đầu tiên sẽ bị di chuyển và những dấu còn lại sẽ theo cùng bên) - + Show unrouted Hiện unrouted - + Highlight all unrouted connectors Tô sáng tất cả các kết nối chưa đi dây - + Select All Wires Chọn tất cả các dây - + Select all wires Chọn tất cả các dây - + Select All CopperFill Chọn tất cả CopperFill - + Select all copper fill items Chọn tất cả mục đổ đồng - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select All Jumpers Chọn tất cả jumper - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D Shift+Ctrl+D - + Check Loaded Traces - + Copper Top and Copper Bottom layers are both active - + Order a PCB... Đặt hàng một mạch in... - + Order a PCB created from your sketch--from fabulous Fritzing Fab Đặt hàng một mạch in được tạo từ sketch của bạn--từ chương trình Fritzing - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. Sketch của bạn không có boarrd nào cả! Xin thêm một mạch in để sử dụng tính năng tự động đi dây. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. Xin chọn board mạch mà bạn muốn tự động đi dây. Chương trình tự động đi dây chỉ xử lý được duy nhất một board tại một thời điểm. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. Sketch của bạn chưa có một boarrd nào cả! Xin thêm một mạch in đẻ sử dụng tính năng phủ đổng hoặc phủ mát. - + Please select a PCB--copper fill only works for one board at a time. Xin chọn một mạch in--tính năng phủ đồng chỉ làm việc được cho một boarrd trong một thời điểm làm việc. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. Sketch của bạn không có board mạch nào cả! Hãy thêm một mạch in để gở bỏ lớp đổ đồng. - + Please select a PCB--ground fill operations only work on a one board at a time. Xin chọn một mạch in--tính năng phủ mát chỉ làm việc được cho một board trong một thời điểm làm việc. - + Do you want to update now? @@ -3859,613 +3975,622 @@ Do you want to update now? Bạn có muốn cập nhật bây giờ không? - + OK OK - + Set the grid size for %1. Thiết lập kích cỡ lưới cho %1. - + Grid Size: Kích cỡ lưới: - + in trong - + mm mm - + Restore Default Phục hồi mặc định - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting Progress... Đang tiến hành autorout... - + Launch %1... Khởi động %1... - + No outdated parts found. All your parts are up-to-date. Không có linh kiện lỗi thời nào được tìm thấy. Tất cả các linh kiện của bạn đều được Cập Nhật. - + Outdated parts Linh kiện lỗi thời - + Successfully updated %1 part(s). Please check all views for potential side-effects. Cập nhật thành công %1 linh kiện. Hãy kiểm tra tất cả các kiểu xem để kiểm tra các tác dụng phụ có thể xảy ra. - + Update %1 part(s) Cập nhật %1 linh kiện - + &Zoom In &Phóng to - + Shell launch %1 - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) Các file Fritzing (*%1 *%2 *%3 *%4 *%5); Fritzing (*%1); Fritzing có thể chia sẽ (*%2); Linh kiện Fritzing (*%3); Fritzing Bin (*%4); Fritzing Shareable Bin (*%5) - + Convert - + Read-only - + Open programming window Mở cửa sổ chương trình - + Open microcontroller programming window Mở cửa sổ lập trình vi điều khiển - + Ctrl++ Ctrl++ - + Zoom in Phóng to - + Ctrl+= Ctrl+= - + &Zoom Out &Thu nhỏ - + Ctrl+- Ctrl+- - + Zoom out Thu nhỏ - + &Fit in Window &Mở rộng toàn cửa sổ - + Ctrl+0 Ctrl+0 - + Fit in window Mở rộng toàn cửa sổ - + &Actual Size &Kích thước thực tế - + Shift+Ctrl+0 Shift+Ctrl+0 - + &Show Breadboard &Hiển thị Breadboard - + Ctrl+1 Ctrl+1 - + Show the breadboard view Hiển thị kiểu xem breadboard - + &Show Schematic &Hiển thị kiểu xem Sơ đồ nguyên lý - + Ctrl+2 Ctrl+2 - + Show the schematic view Hiển thị kiểu xem sơ đồ nguyên lý - + &Show PCB - + Ctrl+3 Ctrl+3 - + Show the PCB view - + &Minimize - + Ctrl+M Ctrl+M - + Minimize current window - + Debugger Output - + Ctrl+? Ctrl+? - + Open Fritzing help Mở Trợ giúp của Fritzing - + Open Fritzing examples Mở các ví dụ của Fritzing - + Open Parts Reference Mở tham khảo của các linh kiện - + First Time Help Trợ giúp lần đầu - + &About &Giới thiệu - + Display some handy Fritzing tips and tricks Hiển thị một vài mẹo vặt của Fritzing - + Report a bug... Báo cáo một lỗi ... - + Enable debugging log - + &File &File - + &Export &Xuất - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. - + Choose a folder for exporting - + Export SVG... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... - + Tidy Wires - + Tidy selected wires - + Remove copper fill - + Remove Bendpoint - + Select all jumper item parts - + Select All Vias - + Select all via parts - - + + &Wire Color - + &Edit - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... - + Etchable (SVG)... - - + + Select outdated parts Chọn các linh kiện lỗi thời - - + + Update selected parts - + Online Tutorials - + Online Projects Gallery Thư viện các dự án trực tuyến - + Online Parts Reference Tham khảo các linh kiện trực tuyến - + &Part &Linh kiện - + &View &Xem - + &Window &Cửa sổ - + &Help &Trợ giúp - + Sorry, "%1" has not been implemented yet Xin lỗi, "%1" chưa được thực thi - - + + Copper Fill Phủ đồng - + Remove Copper Fill Gỡ bỏ lớp phủ đồng - + Remove the copper fill Gỡ bỏ lớp phủ đồng - + Autorouting... Tự động đi dây đồng... - directly loading parts - tải trực tiếp các linh kiện + tải trực tiếp các linh kiện - + Page Setup Cài đặt trang - + Undo Hoàn tác - + Redo Trở lại - + Select a Fritzing File to Open Chọn một file Fritzing để Mở - + &Show part label &Hiển thị nhãn linh kiện - + Export Bill of Materials (BoM)... Bill of Materials: danh sách nguyên vật liệu Xuất ra Danh sách Nguyên vật liệu (BoM)... - + Add a note Thêm một ghi chú - - + + Add Note Thêm nút - + Check for updates... Kiểm tra cập nhật... - + Check whether a newer version of Fritzing is available for download Kiểm tra xem một phiên bản mới hơn của Fritzing đã sẵn sàng để tải về hay chưa - + Select All Traces Chọn tất cả các dấu vết - + Select all trace wires Chọn tất cả các dây dấu vết - + Select all trace wires excluded from autorouting Chọn tất cả các dây dấu vết bị loại trừ từ autorouting - - + + Do you want to keep the imported parts? Bạn có muốn giữ các linh kiện đã nhập vào? - + &About Qt &Giới thiệu về Qt - + Show Qt's about box Hiển thị hộp thoại giới thiệu về Qt - - + + Report a but you've found in Fritzing Báo cáo một ngoại lệ mà bạn đã tìm thấy trong Fritzing - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. Điều này sẽ sớm cung cấp một bản xuất của sketch Fritzing của bạn sang phần mềm layout EAGLE. Nếu bạn muốn có thêm các bản xuất tới công cụ thiết kế vi mạch yêu thích của bạn, xin vui lòng cho chúng tôi biết, hoặc có thể đóng góp cùng chúng tôi. - - + + Sorry! Xin lỗi! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist Không có linh kiện nào có những đặc điểm. Chúng tôi đang nỗ lực để tránh thông báo này, và chỉ cho phép bạn lựa chọn giữa các thuộc tính đã tồn tại - + Swapped %1 with module %2 Đổi chỗ %1 với mô-đun %2 @@ -4480,7 +4605,7 @@ Chúng tôi đang nỗ lực để tránh thông báo này, và chỉ cho phép Bạn có muốn tiếp tục bằng mọi giá không? - + Raise and Lower Nâng cao và Giảm thấp @@ -4658,7 +4783,7 @@ Nguyên nhân: %2 (mã lỗi:%3) NetLabel - + net label nhãn lưới @@ -4684,62 +4809,62 @@ Nguyên nhân: %2 (mã lỗi:%3) Nhấp vào kết nối này để kéo ra một dấu vết mới. - + Change trace layer Thay đổi dấu vết lớp - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. Sketch của bạn chưa có boarrd nào cả! Xin vui lòng thêm một PCB để sử dụng chức năng đổ đồng. - + %1 Fill: please select the board you want to apply fill to. %1 điền: vui lòng chọn board mà bạn muốn áp dụng để đổ đồng. - + Ground Mát - + Copper Đồng - + Copper fill: please select only the board you want to fill. Đổ đồng: vui lòng chọn board mà bạn muốn đổ đồng. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4752,106 +4877,106 @@ Nguyên nhân: %2 (mã lỗi:%3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. Đầu tiên, xin vui lòng click vào một PCB--thao tác lựa chọn này chỉ có hiệu lực trên một boarrd tại một thời điểm. - - + + Fritzing error: unable to render board svg (1). Fritzing lỗi: không thể để hiển thị svg của board (1). - - - + + + Fritzing error: unable to render copper svg (1). Fritzing lỗi: không thể để hiển thị svg đồng (1). - + Fritzing error: unable to write copper fill (1). Fritzing lỗi: không thể ghi lớp phủ đồng (1). - + Fritzing error: unable to write copper fill (2). Fritzing lỗi: không thể ghi lớp phủ đồng (1). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. Không thể tạo lớp đổ đồng- có lẽ là linh kiện đã không được đặt lên PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. Không thể tạo lớp đổ đồng--có thể linh kiện đã bị thả vào vào một linh kiện hoặc dây khác chứ không phải là PCB thực sự. - + Clear ground fill seeds Xóa các seed đổ mát - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. Sketch của bạn chưa có board nào cả! Xin vui lòng thêm một PCB để sử dụng thao tác lựa chọn này. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. Không thể chuyển đổi via này thành bendpoint một vì nó được kết nối với một linh kiện mà là chỉ nằm trên lớp đáy cùng và một linh kiện khác mà chỉ trên lớp trên cùng. - + Show part silkscreen Hiển thị silkscreen linh kiện - + Hide part silkscreen - - + + Fritzing Fab Quote Fritzing Fab báo - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. Xin lỗi, http://fab.fritzing.org không đáp ứng yêu cầu. Xin kiểm tra lại kết nối của bạn và/hoặc thử lại sau. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. @@ -4860,7 +4985,7 @@ Nguyên nhân: %2 (mã lỗi:%3) - + 10 mils is a good default choice. @@ -4869,7 +4994,7 @@ Nguyên nhân: %2 (mã lỗi:%3) - + Enter keepout value: Nhập giá trị keepout: @@ -4905,11 +5030,11 @@ Nguyên nhân: %2 (mã lỗi:%3) - - - - - + + + + + Parts Editor Chỉnh sửa linh kiện @@ -4924,12 +5049,12 @@ Nguyên nhân: %2 (mã lỗi:%3) Có một chỉnh sửa cuối cùng đang chờ. - + Duplicate 'family' property not allowed Thuộc tính trùng lặp 'họ' không được phép - + Duplicate 'variant' property not allowed Thuộc tính 'biến' không được phép trùng lặp @@ -4949,7 +5074,7 @@ Nguyên nhân: %2 (mã lỗi:%3) Tiếp tục làm việc - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. Thoát khỏi Trình biên tập Linh kiện ngay bây giờ cũng tốt, miễn là bạn nhớ để hoàn thành các bài tập sau đó. @@ -4996,207 +5121,207 @@ Nguyên nhân: %2 (mã lỗi:%3) Không thể phân tích file fzp %1 - + Icon View Xem biểu tượng - + Metadata View Xem siêu dữ liệu - + Connectors View Xem Kết nối - + Show Icon Xem biểu tượng - + Ctrl+4 Ctrl+4 - + Show the icon view Hiển thị xem biểu tượng - + Ctrl+5 Ctrl+5 - + Show the metadata view Hiển thị xem biểu tượng - + Show Connectors Hiển thị các kết nối - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' Thay đổi %1 sang '%2' - + Change description Thay đổi mô tả - + Change tags Thay đổi các tag - + Change properties Thay đổi các thuộc tính - + Change connector %1 Thay đổi kết nối %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) Hình ảnh & Tập tin Footprint(%1 %2 %3 %4 %5); Tập tin SVG (%1); Tập tin JPEG (%2); Tập tinPNG (%3); tập tin Footprint gEDA (%4); File Mô-đun Kicad (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 File hình ảnh (%1 %2 %3); Tập tin SVG (%1); file JPEG (%2); File PNG (%3)%4%5 - + Open Image Mở hình ảnh - + Copy problem Copy vấn đề - + Unable to make a local copy of: '%1' Không thể tạo bản sao vị trí của: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. Bạn có thể sử dụng một hình ảnh PNG hoặc JPG để xây dựng linh kiện của bạn, nhưng là tốt hơn là sử dụng một SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- Các hình ảnh PNG và JPG giữ lại bản chất của chúng như là các ảnh bitmap và nhìn không được tốt khi thu nhỏ-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. Vì vậy đối với các linh kiện Fritzing, tốt nhất là chỉ sử dụng định dạng PNG và JPG cho phần giữ chỗ. - + Use of PNG and JPG discouraged Sử dụng PNG và hạn chế JPG - - - - + + + + Conversion problem Vấn đề chuyển đổi - - + + Fritzing (New) Parts Editor Trình biên tập Linh kiện Fritzing (sản phẩm mới) - + Show Metadata Xem siêu dữ liệu - + Show the connector metadata in a list view Hiển thị siêu dữ liệu kết nối trong một chế độ xem danh sách - + Blank not allowed Không được để khoảng trống - + The value of '%1' can not be blank. Giá trị của '%1' không thể trống. - + Change %1 to %2 Thay đổi %1 sang '%2' - + Must be unique Phải là duy nhất - + Variant '%1' is in use. The variant name must be unique. Phiên bản '%1' đang được sử dụng. Tên biến thể phải là duy nhất. - - + + Duplicate problem Vấn đề trùng lặp - + Unable to load '%1' Không thể tải '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. Tập tin SVG '%1' dường như đã được xuất từ CorelDRAW mà không có thiết lập các 'thuộc tính trình bày'. - + Please re-export the SVG file using that setting, and try loading again. Xin vui lòng tái xuất các tập tin SVG bằng cách sử dụng cài đặt đó và thử tải một lần nữa. - + Fonts Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' Fritzing hiện thời chỉ hỗ trợ phông chữ OCRA và Droid--2 phông này đã được thay thế cho các phông chữ trong '%1' - + Unable to load image file '%1': %2 @@ -5205,9 +5330,9 @@ Nguyên nhân: %2 (mã lỗi:%3) %2 - - - + + + SVG problem vấn đề SVG @@ -5241,26 +5366,26 @@ Nguyên nhân: %2 (mã lỗi:%3) Bạn có muốn tiếp tục làm việc hoặc đóng mà không cần lưu lại? - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors Linh kiện này có %n kết nối không xác định - + across %n views. qua %n lượt xem. - + Until all connectors are assigned to SVG elements, the part will not work correctly. Cho đến khi tất cả kết nối được chỉ định cho các thành phần SVG, linh kiện sẽ không làm việc một cách chính xác. @@ -5300,67 +5425,67 @@ Nguyên nhân: %2 (mã lỗi:%3) Tái sử dụng hình ảnh PCB trong dạng xem này - + Make only this view visible Làm cho chỉ dạng xem này là có thể nhìn thấy - + The part will only be visible in this view and icon view Linh kiện này sẽ chỉ được nhìn thấy trong dạng xem và biểu tượng xem này - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. Phiên bản này của Trình biên tập Linh kiện mới có thể không liên quan với việc tách riêng các lớp đồng0 và lớp đồng1 trong '%1'. - + So editing may produce an invalid PCB view image Vì vậy việc chỉnh sửa có thể tạo ra một ảnh xem PCB không hợp lệ - + Unable to parse '%1': %2 line:%3 column:%4 Không thể phân tích cú pháp '%1': %2 dòng: %3 cột: %4 - + There are no copper layers defined in: %1. Không có lớp đồng nào được xác định trong: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. Xem <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/"> lời giải thích này</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, <br/><br/> Điều này sẽ không là vấn đề trong bản phát hành tiếp theo của Trình biên tập Linh kiện, - + but for now please modify the file according to the instructions in the link. nhưng bây giờ xin vui lòng sửa đổi tập tin này theo hướng dẫn trong liên kết. - + no schematics found in %1 không có sơ đồ nào được tìm thấy trong %1 - + schematic part Sơ đồ linh kiện - + no footprints found in %1 không có footprint nào được tìm thấy trong %1 - + Relocate connector %1 Di dời kết nối %1 @@ -5449,52 +5574,52 @@ Nguyên nhân: %2 (mã lỗi:%3) Không thể tải '%1'. Hãy đóng trình biên tập linh kiện mà không cần lưu và thử lại. - + Unable to load image file '%1' Không thể tải tập tin hình ảnh '%1' - + Filename prefix Tiền tố tên tập tin - + Sketch Change Warning Cảnh báo Thay đổi Sketch - + The open sketch '%1' uses the part you are editing. sketch đang mở '%1' sử dụng linh kiện mà bạn đang chỉnh sửa. - + Saving this part will make a change to the sketch that cannot be undone. Lưu linh kiện này sẽ khiến thay đổi sketch và không thể hoàn tác lại được. - + The open sketches Các sketch đang mở - + '%1', '%1', - + and '%1' và '%1' - + Saving this part will make a change to these sketches that cannot be undone. Lưu linh kiện này sẽ làm một thay đổi đối với những sketch này mà không thể được hoàn tác. - + Go ahead and save? @@ -5503,102 +5628,102 @@ Go ahead and save? Tiếp tục và lưu lại? - + Save Lưu - + Cancel Hủy bỏ - + Move terminal point Di chuyển điểm cuối - + Remove connector Gỡ bỏ kết nối - + Remove %1 connectors Gỡ bỏ %1 kết nối - + Save "%1" Lưu "%1" - + Do you want to save the changes you made in the part "%1"? Bạn có muốn lưu những thay đổi mà bạn đã thực hiện trong linh kiện "%1" không? - + Your changes will be lost if you don't save them. Các thay đổi của bạn sẽ bị mất nếu bạn không lưu chúng lại. - + untitled part linh kiện chưa đặt tên - + Unable to load fzp from %1 Không thể tải fzp từ %1 - + Unable to create new connector--you may have to start over. Không thể tạo kết nối mới - bạn có thể phải bắt đầu lại. - + Add connector Thêm kết nối - + Add %1 connectors Thêm %1 kết nối - + Remove internal connection from '%1' Loại bỏ kết nối nội bộ từ '%1' - + Change all connectors to %1 Thay đổi tất cả kết nối với %1 - + Unable to parse '%1' Không thể phân tích cú pháp '%1' - + Change to %1 Thay đổi sang %1 - + Make only %1 view visible Thiết lập chỉ kiểu xem %1 là có thể nhìn thấy - + Internal connections are very messed up. Các kết nối nội bộ rất lộn xộn. - + Add internal connection from '%1' to '%2' Thêm kết nối nội bộ từ '% 1' đến '%2' @@ -6349,12 +6474,12 @@ Lưu ý: cảnh báo này sẽ không được lặp đi lặp lại trong phiê Hành vi bánh xe Chuột - + Command Lệnh - + Control Điều khiển @@ -6410,57 +6535,65 @@ Lưu ý: cảnh báo này sẽ không được lặp đi lặp lại trong phiê - + + + + %1 + %1 + + + + %1 (click to change...) %1 (nhấp chuột để thay đổi...) - + Clear Settings Xóa Cài đặt - + Platform Support Hỗ trợ nền tảng - + <b>%1</b> <b>%1</b>d - + Location: Vị trí: - + ... ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. Bạn cần phải cài đặt <a href='%1'> %2</a> (Phiên bản %3 hoặc mới hơn). - + Select a programmer (executable) for %1 Chọn một chương trình lập trình (thực thi) cho %1 - + Connected Highlight Đánh dấu đã kết nối - + Unconnected Highlight Đánh dấu chưa kết nối - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom @@ -6469,7 +6602,7 @@ phím shift hoán đổi trục cuộn Alt hoặ phím %1 = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis @@ -6478,22 +6611,22 @@ Alt hoặc phím%1 = cuộn phím shift hoán đổi trục cuộn - + Curvy vs. straight wires dây cong so với dây thẳng - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? Khi bạn nhấp chuột và kéo một dây hoặc chân của một linh kiện (trái ngược với một kết nối hoặc một bendpoint) bạn có muốn thay đổi độ cong của dây (hoặc chân) hoặc kéo ra một bendpoint mới? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. Hộp kiểm này đặt hành vi mặc định. Bạn có thể chuyển đổi về hành vi không mặc định bằng cách giữ phím Control (Mac: phím Command) khi bạn kéo. - + Curvy wires and legs Uốn cong dây và chân @@ -6822,12 +6955,12 @@ phím shift hoán đổi trục cuộn Tô màu làm nổi bật kết nối - + Unconnected highlight color Tô màu làm nổi bật chưa kết nối - + Clear all saved settings and close this dialog immediately. Xóa tất cả các cài đặt đã lưu và đóng hộp thoại này ngay lập tức. @@ -6837,12 +6970,12 @@ phím shift hoán đổi trục cuộn Hành động này không xóa bất kỳ file nào; nó sẽ hồi phục các cài đặt về giá trị mặc định của chúng. - + There is no undo for this action, and no further warning!!!! Không có hoàn tác nào cho hành động này, và không có cảnh báo nào khác!!!! - + Clear Settings Xóa các cài đặt @@ -6862,12 +6995,12 @@ phím shift hoán đổi trục cuộn Chọn tất cả các dấu vết có thể đi dây - + Convert to Via Chuyển đổi thành Via - + Convert Via to Bendpoint Chuyển đổi Via sang Bendpoint @@ -6904,7 +7037,6 @@ phím shift hoán đổi trục cuộn - Fritzing Fritzing @@ -6958,21 +7090,21 @@ phím shift hoán đổi trục cuộn xem mạch in - - - + + + Part Linh kiện - - - + + + Wire Nối dây - + Set Grid Size Đặt kích thước lưới @@ -7086,43 +7218,43 @@ Fritzing vẫn hoạt động, nhưng bạn không thể thay đổi được th Xem sơ đồ nguyên lý - + Error reading file %1: %2. Lỗi đọc file %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 Thay chân của %1, %2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer Lớp %1 - - + + Bring forward Mang lên đầu - + Send backward Ẩn ra sau - + Bring to front Mang ra trước @@ -7137,7 +7269,7 @@ Fritzing vẫn hoạt động, nhưng bạn không thể thay đổi được th Nối dây - + Select locked parts Chọn các linh kiện bị khóa @@ -7271,18 +7403,18 @@ Fritzing vẫn hoạt động, nhưng bạn không thể thay đổi được th Ghi chú - + Trace wires Dò dây - + Ratsnest wires dây dẫn chưa chạy đồng - - + + Select all %1 Chọn tất cả %1 @@ -7384,7 +7516,7 @@ is already there, we won't add it again, right? File đang xử lý... - + Select outdated parts Chọn các linh kiện lỗi thời @@ -7559,12 +7691,12 @@ is already there, we won't add it again, right? thất bại trong chuyển đổi svg 2: %1 %2 %3 - + Copying file %1 Đang sao chép file %1 - + File %1 already exists: it won't be overwritten Tập tin% 1 đã tồn tại: sẽ không ghi đè lên nó được @@ -7829,7 +7961,7 @@ is already there, we won't add it again, right? - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7853,48 +7985,48 @@ is already there, we won't add it again, right? - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8199,17 +8331,17 @@ is already there, we won't add it again, right? Ruler - + width chiều rộng - + &cm - + &in @@ -8217,33 +8349,33 @@ is already there, we won't add it again, right? S2S - + Failed loading '%1', %2 line:%3 col:%4 Tải không thành công '%1', %2 dòng: % 3 cộtl: % 4 - + Schematic not found for '%1' Không tìm thấy sơ đồ nguyên lý cho %1 - - + + Unable to load schematic '%1' for '%2' Không thể tải sơ đồ nguyên lý %1 cho %2 - + Schematic '%1' is already using the 0.1inch standard. Sơ đồ nguyên lý %1 đã sử dụng tiêu chuẩn 0,1inch. - + Missing connector %1 in '%2' schematic of '%3' Thiếu kết nối %1 trong '%2' sơ đồ nguyên lý '% 3' - + Failed loading schematic '%1', %2 line:%3 col:%4 Không thể tải sơ đồ nguyên lý '%1', %2 dòng: % 3 cột: % 4 @@ -8375,82 +8507,82 @@ is already there, we won't add it again, right? đã tải xong - + %1 %2 %1 %2 - + %1 %2 items khoản mục %1 %2 - + Select All Chọn tất cả - + Deselect Bỏ chọn - + Add %1 Thêm %1 - + Move %2 (%1) Di chuyển %2(%1) - + Move %2 items (%1) Di chuyển %2 mục (%1) - - + + Select %1 Chọn %1 - - + + Select %1 items Chọn %1 mục - - + + Disconnect Ngắt kết nối - + Change Thay đổi - - + + Connect Kết nối - - + + to %1 tới %1 - + Create and connect wire Tạo và nối dây - + Rotate %2 (%1) Xoay %2 (%1) @@ -8470,57 +8602,57 @@ is already there, we won't add it again, right? Nhấn đúp - + Delete ratsnest Xóa ratsnest - + from %1 từ %1 - + Move leg of Di chuyển chân của - + Change leg curvature for %1. Thay đổi độ cong chân cho %1. - + Change leg bendpoint for %1. Thay đổi chân bendpoint cho %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. Điều này có vẻ giống một nỗ lực để tạo ra một dấu vết trên các lớp. Trường hợp này sẽ phát sinh: xin vui lòng liên hệ với các nhà phát triển. - + Create and connect %1 Tạo và kết nối %1 - + wire dây - + trace vết - + Flip %2 (%1) Lật %2(%1) @@ -8550,74 +8682,74 @@ is already there, we won't add it again, right? Thay đổi màu sắc của %1 dây tới %2 - + Resize ruler to %1 %2 Thay đổi kích thước của thước về %1 %2 - + test connectors Kiểm tra các mối nối - + Change Resistance from %1 to %2 Thay đổi điện trở từ %1 đến %2 - - + + Change %1 from %2 to %3 Thay đổi %1 từ %2 tới %3 - - + + Resize board to %1 %2 Thay đổi kích thước board đến% 1% 2 - + Create wire from Ratsnest Tạo dây từ Ratsnest - + Disconnect all wires from %1 Ngắt kết nối tất cả các dây từ 1% - + Disconnect all wires from %1 items Ngắt kết nối tất cả các dây từ mục 1% - + Change image from %1 to %2 Thay đổi hình ảnh từ %1 tới %2 - + change pin labels thay đổi nhãn chân - + Unrouted connections are highlighted in yellow. Các mối nối chưa được đi dây sẽ được làm nổi bằng màu vàng. - + There are no unrouted connections Không có kết nối nào được đi dây cả - + Unrouted connections Các đường nối chưa được đi dây - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. @@ -8626,17 +8758,17 @@ Note: you can also trigger this display by mousing down on the routing status te Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo chuột xuống trên dòng chữ trạng thái đi dây trên thanh trạng thái. - + Part '%1' not found in sketch Linh kiện '%1' không được tìm thấy trong sketch - + Add %1 parts Thêm %1 linh kiện - + Deselect all Bỏ chọn tất cả @@ -8661,7 +8793,7 @@ Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo ch %1 nhãn '%2' - + Selection Chọn @@ -8766,22 +8898,22 @@ Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo ch SymbolPaletteItem - + voltage điện áp - + label nhãn - + Net labels Nhãn net - + Net labels cannot be blank nhãn net không thể để trống @@ -8909,9 +9041,8 @@ Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo ch Để chỉnh sửa một nhãn linh kiện, nhấp đúp vào nó, hoặc sử dụng widget nhập văn bản trong cửa sổ kiểm tra. - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - Để hiển thị các thuộc tính khác nhau trong một nhãn linh kiện, cũng như xoay nó, hoặc thay đổi phông chữ, bấm chuột phải vào nhãn. + Để hiển thị các thuộc tính khác nhau trong một nhãn linh kiện, cũng như xoay nó, hoặc thay đổi phông chữ, bấm chuột phải vào nhãn. @@ -9033,6 +9164,11 @@ Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo ch In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. Trong chế độ xem Breadboard hoặc PCB, để thêm một đường cong một dây hoặc chân dán, kéo chuột kết hợp với giữ phím Control(Mac: Command). Bạn có thể thiết lập cho dù là dây cong là mặc định trong Tuỳ chọn. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9443,93 +9579,68 @@ Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo ch Fritzing CreatorKit Fritzing CreatorKit - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. Fritzing Fab là một dịch vụ dễ dàng và giá cả phải chăng để sản xuất chuyên nghiệp các board mạch in từ phác thảo Fritzing của bạn. - + produce your first pcb now >> sản xuất pcb đầu tiên của bạn ngay bây giờ >> - + Order your PCB now. Đặt hàng PCB của bạn ngay bây giờ. - + <a href='%1'><img src='%2'/></a> <a href='%1'><img src='%2'/></a> - + Projects Các dự án - + Blog Blog - + Fritzing News. Tin tức Fritzing. - + Fritzing Projects. Các dự án Fritzing. - + <a href='%1'><img src='%2' /></a> <a href='%1'><img src='%2' /></a> - + No recent sketches found Không có sketch nào gần đây được tìm thấy - + Unable to reach blog.fritzing.org không thể truy cập blog.fritzing.org - + Unable to reach fritzing.org/projects @@ -9538,17 +9649,17 @@ Lưu ý: bạn cũng có thể kích hoạt màn hình này bằng cách kéo ch Không thể truy cập friting.org/projects - + Tip of the Day: Mẹo vặt ngày nay: - + All Tips Tất cả các mẹo vặt - + Next Tip Mẹo tiếp theo diff --git a/translations/fritzing_zh_cn.ts b/translations/fritzing_zh_cn.ts index 30412cb76..4120b7e12 100644 --- a/translations/fritzing_zh_cn.ts +++ b/translations/fritzing_zh_cn.ts @@ -37,7 +37,7 @@ Special thanks goes out to: - 特别感谢: + 特别感谢: Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, @@ -79,18 +79,6 @@ IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - - Special thanks goes out as well to all the students - - - - and alpha testers who were brave enough to give - - - - Fritzing a test spin. - - and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. @@ -192,19 +180,23 @@ - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, + Ukrainian: - and Kjell Morgenstern + Yelyzaveta Chyhryna - Ukrainian: + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern - Yelyzaveta Chyhryna + Special thanks go out to: + + + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. @@ -1025,6 +1017,56 @@ A custom board svg typically has one or two silkscreen layers and one board laye + + FabUploadDialog + + Fritzing Fab Upload + + + + Get your board fabricated this week! + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + Cancel + 取消 + + + Upload to Fab + + + + Upload + + + + Import + + + + Uploading... + + + + + FabUploadProgress + + Fritzing + Fritzing + + + Could not connect to Fritzing fab. + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1716,7 +1758,7 @@ We're working to avoid this message, and only let you choose between proper directly loading parts - 直接载入元件 + 直接载入元件 loading %1 (model) @@ -2586,11 +2628,11 @@ Please check all views for potential side-effects. Donate to Fritzing - 捐赠Fritzing + 捐赠Fritzing Open Fritzing donation web page - 打开Fritzing捐赠网址 + 打开Fritzing捐赠网址 Export for PCB @@ -3575,6 +3617,46 @@ Note: if you want to update later, there are options under the 'Part' Display breadboard wires using standard color coding by length + + Local part '%1' incomplete, only '%2' layers. + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + Could not copy subfile '%1' to '%2' + + + + Local part '%1' incomplete, subfile not found '%2' + + + + Unable to open local part '%1' + + + + Visit fritzing.org + + + + fritzing.org + + + + Routing + + + + Fritzing Fab Upload + + + + Please first save your project in order to upload it. + + MazeRouter @@ -5139,6 +5221,10 @@ shift键转换滚动轴 Select a programmer (executable) for %1 为%1选择一个程序(可执行) + + %1 + %1 + ProgramTab @@ -6089,10 +6175,6 @@ Fritzing仍然在工作,但不能改变元件的属性. Unable to find parts git repository HEAD - - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 - - The parts folder '%1' may have been damaged (%2). %3 @@ -6129,10 +6211,6 @@ Fritzing仍然在工作,但不能改变元件的属性. Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 - - Error %1 @@ -6218,6 +6296,14 @@ Fritzing仍然在工作,但不能改变元件的属性. Fritzing requires that you make cutouts using a shape 'subtraction' or 'difference' operation in your vector graphics editor. + + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 + + + + Unable to retrieve the network reference for '%1'#%2. %3 + + QShortcut @@ -7007,10 +7093,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -7179,6 +7261,10 @@ Note: you can also trigger this display by mousing down on the routing status te When using the Fritzing Fab Service, If there are empty areas of the PCB that you do not want filled with copper, use the copper-blocker part. This resizable part will mask out copper fill in the rectangle it covers. + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + TraceWire @@ -7507,26 +7593,6 @@ Note: you can also trigger this display by mousing down on the routing status te Fritzing Fab - - Donate - - - - Fritzing development needs you - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - Donate and leave a comment. - - - - Donate now - - Unable to reach fritzing.org/projects diff --git a/translations/fritzing_zh_tw.ts b/translations/fritzing_zh_tw.ts index dcb7d36d0..d67dc3383 100644 --- a/translations/fritzing_zh_tw.ts +++ b/translations/fritzing_zh_tw.ts @@ -8,255 +8,240 @@ <a href="http://www.fritzing.org">www.fritzing.org</a> - + <b>GNU GPL v3 on the code and CreativeCommons:BY-SA on the rest <b>程式碼版權為 GNU GPL v3, 其他部分版權為 CreativeCommons:BY-SA - + <b>2007-%1 Fritzing</b> - + Fritzing is made by: - + Prof. Reto Wettach, Andr&eacute; Kn&ouml;rig, Myriel Milicevic, - + Zach Eveland, Dirk van Oosterbosch, - + Jonathan Cohen, Marcus Paeschke, Omer Yosha, - + Travis Robertson, Stefan Hermann, Brendan Howell, - + Mariano Crowe, Johannes Landstorfer, - + Jenny Chowdhury, Lionel Michel, Fabian Althaus, Jannis Leidel, - - Special thanks goes out to: - - - - + Jussi &Auml;ngeslev&auml;, Massimo Banzi, Ayah Bdeir, - + Durrell Bishop, David Cuartielles, Fabian Hemmert, - + Gero Herkenrath, Jeff Hoefs, Tom Hulbert, - + Tom Igoe, Hans-Peter Kadel, Till Savelkoul, - + Jan Sieber, Yaniv Steiner, Olaf Val, - + Michaela Vieser and Julia Werner. - + Thanks for the translations go out to: - + Yuelin and Ninjia - + Chinese (Traditional): - + Robert Lee - + Hiroshi Suzuki - + Jinbuhm Kim - + Spanish: - + + Special thanks go out to all the students and alpha testers who were brave enough to give Fritzing a test spin. + + + + Italian: - + Portuguese (European): - + Portuguese (Brazilian): - + Chinese (Simplified): - + Japanese: - + Russian: - + Dutch: - + + Bryant Mairs, Uleshka Asher, Daniel Tzschentke, and Kjell Morgenstern + + + + + Special thanks go out to: + + + + Czech: - + Korean: - + Slovak: - + Greek: - + French: - + Turkish: - + Bulgarian: - + Version %1.%2.%3 <br><small>(%4%5 %6) %7 [Qt %8]</small> - - Bryant Mairs, Uleshka Asher, Daniel Tzschentke, - - - - - and Kjell Morgenstern - - - - + Ukrainian: - + Yelyzaveta Chyhryna - + Fritzing is made possible with funding from the - + MWFK Brandenburg, the sponsorship of the Design - + Department of Bauhaus-University Weimar, - + IxDS, an anonymous donor, Parallax, Picaxe, Sparkfun, - + and from each purchase of a Fritzing Starter Kit or a PCB from Fritzing Fab. - - - Special thanks goes out as well to all the students - - - - - and alpha testers who were brave enough to give - - - - - Fritzing a test spin. - - AutorouteProgressDialog @@ -796,7 +781,7 @@ Use the file? Capacitor - + Select from the dropdown, or type in a %1 value @@ -804,17 +789,17 @@ Use the file? ConnectorItem - + Add bendpoint - + Straighten curve - + Remove bendpoint @@ -1263,6 +1248,70 @@ Use the file? + + FabUploadDialog + + + Fritzing Fab Upload + + + + + Get your board fabricated this week! + + + + + Upload it now to get a preview rendered by AISLER. Review, and if you like it, order it and get it manufactured in two days. + + + + + + Cancel + 取消 + + + + Upload to Fab + + + + + Upload + + + + + Import + + + + + Uploading... + + + + + FabUploadProgress + + + + + Fritzing + Fritzing + + + + Could not connect to Fritzing fab. + + + + + Error processing the project. The factory says: %1 + + + FirstTimeHelpDialog @@ -1289,12 +1338,12 @@ Use the file? FolderUtils - + Moving your custom parts - + <p>Your custom-made parts and bins are moved from the hidden app data folder to your fritzing documents folder at <br/><br/><em>%1</em><br/><br/>This way we hope to make it easier for you to find and edit them manually.</p> @@ -1404,7 +1453,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin Hole - + hole size @@ -1890,7 +1939,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin MainWindow - + Rotate 旋轉 @@ -1906,7 +1955,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Autoroute 自動佈線 @@ -1927,7 +1976,7 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Add a note 增加註解 @@ -1948,14 +1997,14 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - + + Specify a file name 設定檔名 - - + + Fritzing (*%1) Fritzing (*%1) @@ -1963,93 +2012,100 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - - - - - + + + + + + + + + + + + - - - - - - - - - - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + + + + + + + + + + Fritzing Fritzing - + Unable to export %1 as shareable 無法將 %1 匯出成分享格式 - + Fritzing Part (*%1) Fritzing 元件(*%1) - + Unable to export %1 to shareable sketch %1 無法匯出成為分享式草圖 - - + + Do you want to keep the imported parts? 保留匯入的元件? - + No connections to route 無連接線路可佈線 - + Routing completed 佈線完成 - + Routing completed using %n jumper part(s) - + Unrouted connections - + There are no unrouted connections in this view. - + %1 of %2 nets routed - %n connector(s) still to be routed %1 of %2 線路佈線完成 - %n 個連接器等待佈線中 @@ -2133,135 +2189,161 @@ It is also possible to choose a connector as a ground fill seed by right-clickin - + Unable to open shareable part '%1': %2 - + + Unable to load part from '%1' - + + Local part '%1' incomplete, only '%2' layers. + + + + + View '%1' should be prefixed with '%2/'. Trying to continue. + + + + + Could not copy subfile '%1' to '%2' + + + + + Local part '%1' incomplete, subfile not found '%2' + + + + + Unable to open local part '%1' + + + + MainWindow::moveToPartsFolder mainwindow missing - + There is already a part with id '%1' loaded into Fritzing. - + %1 - [%2] %1 - [%2] - + No copper top layer - + The copper top (copper 1) layer is not available on a one-sided board. Please switch the board to double-sided or choose the copper bottom (copper 0) layer. - - + + Sorry! 抱歉! - + No part with those characteristics. We're working to avoid this message, and only let you choose between properties that do exist 找不到特性完全一樣的元件, 正嘗試避免這訊息,現在只能讓您從現存的屬性中選取 - + No exactly matching part found; Fritzing chose the closest match. 找不到完全一樣的元件,Fritzing 將選個較接近的。 - + Change to single layer pcb - + Change to two layer pcb - + Swapped %1 with module %2 將 %1 置換為模組 %2 - + Change image to %2 - + Svg %1 is missing a '%2' layer. For more information on how to create a custom board shape, see the tutorial at <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. Svg檔 %1 還缺 '%2' 層,如何建立自定的板子大小,詳情請參考(教學手冊) <a href='http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/'>http://fritzing.org/learning/tutorials/designing-pcb/pcb-custom-shape/</a>. - + loading %1 - + Loading... - + new sketch - + Schematic conversion - + Saving this sketch will convert it to the new schematic graphics standard. Go ahead and convert? - + Backing up '%1' - + Fritzing uncompressed (*%1) - + (x,y)=(%1, %2) %3 - + (x, y)=(%1, %2) (width, height)=(%3, %4) %5 - + Code - + Welcome @@ -2311,7 +2393,7 @@ We're working to avoid this message, and only let you choose between proper - + Cancel 取消 @@ -2332,132 +2414,131 @@ We're working to avoid this message, and only let you choose between proper 正在匯出... - + Unable to save %1 無法儲存 %1 - + Cannot print to %1 無法列印到 %1 - + Cannot write file %1: %2. 無法寫入檔案 %1: %2. - + Saved '%1' '%1' 已儲存 - + Select a Fritzing File to Open 選取要開啟的 Fritzing 檔 - + Cannot find file %1. 找不到檔案 %1. - + Cannot read file 1 %1: %2. 無法讀檔 1 %1: %2. - directly loading parts - 直接載入元件 + 直接載入元件 - + loading %1 (model) 載入 %1 (模組) - + loading %1 (breadboard) 載入 %1 (麵包板) - + loading %1 (pcb) 載入 %1 (PCB) - + loading %1 (schematic) 載入 %1 (概要圖) - + JPG... - + PNG... - + PDF... - + SVG... - + Eagle... - + Etchable (PDF)... - + Etchable (SVG)... - + New - - + + File '%1' not found - + Ctrl+N - + Create a new sketch 建立新草圖 - + &Open... 開啟 (&O) - + Ctrl+O Ctrl+O @@ -2477,48 +2558,48 @@ We're working to avoid this message, and only let you choose between proper - + &Save 存檔 (&S) - + Ctrl+S Ctrl+S - - + + Save the current sketch 儲存草圖 - + &Save As... 另存新檔 (&S)... - + Shift+Ctrl+S Shift+Ctrl+S - + Share online... 線上分享... - + Post a project to the Fritzing website 在 Fritzing 官網,發佈一個專案 - + Export the visible area of the current sketch as a JPG image 匯出草圖的可見區域為 JPG 圖檔 - + Export the visible area of the current sketch as a PNG image 匯出草圖的可見區域為 PNG 圖檔 @@ -2527,1918 +2608,1938 @@ We're working to avoid this message, and only let you choose between proper 匯出草圖的可見區域為 PostScript 圖檔 - + Export the visible area of the current sketch as a PDF image 匯出草圖的可見區域為 PDF 圖檔 - + Export the current sketch as an SVG image 匯出草圖為 SVG 圖檔 - + List of parts (&Bill of Materials)... 列出元件清單 (&BOM) - + Save a Bill of Materials (BoM)/Shopping List as text 儲存元件清單(BOM)/採購清單為存文字檔 - + XML Netlist... XML 巢狀清單 - + Save a netlist in XML format 以 XML 格式儲存巢狀清單 - + SPICE Netlist... - + Save a netlist in SPICE format - + Export the current sketch to Eagle CAD 草圖匯出為 Eagle CAD - + Extended Gerber (RS-274X)... - + Export the current sketch to Extended Gerber format (RS-274X) for professional PCB production - + Export the current sketch to PDF for DIY PCB production (photoresist) - + Export the current sketch to SVG for DIY PCB production (photoresist) - + &Print... 列印 (&P) - + Ctrl+P Ctrl+P - + Print the current view 列印目前檢視 - + Export SPICE Netlist... - + Gerber export can only handle one board at a time--please select the board you want to export. - + Sketch exported to Gerber - + Shell launch %1 啟動 Shell - + throw test exception - + throw a fake exception to see what happens - + &Quit 離開 - + Ctrl+Q Ctrl+Q - + Quit the application 關閉程式 - + &Open Example 開啟範例 (&O) - + All 全部 - + MainWindow::populateMenuWithIndex: couldn't load example with id='%1' MainWindow::populateMenuWithIndex: 無法載入 id='%1' 的範例 - + &Open Recent Files 最近開啟的檔案 (&O) - + &%1 %2 &%1 %2 - + Undo 復原 - + Redo 重作 - + &Cut 剪下 (&C) - + Cut selection 剪下選取區塊 - + &Copy 複製(&C) - + Copy selection 複製選取區塊 - + &Paste 貼上 (&P) - + Paste clipboard contents 貼上剪貼簿內容 - + Paste in Place - + Paste clipboard contents in place - + &Duplicate 複製 (&D) - + Ctrl+D Ctrl+D - + Duplicate selection 複製選取 - + &Delete 刪除 (&D) - + Delete selection 刪除選取 - + Delete Minus - + Delete selection without attached wires - + Delete Wire up to bendpoints - + &Select All 全選 (&S) - + Select all elements 全選所有元件 - + &Deselect 取消選取 (&D) - + Deselect 取消選取 - - + + Add Note 新增註解 - + &Preferences... 喜好設定 (&P) - - + + Show the application's about box 顯示程式關於對話視窗 - + Show/hide the label for the selected parts - + Show Code - + Show the code (programming) view - + &Edit 編輯 (&E) - + &Add to bin... 加入元件庫 (&A) - + Add selected part to bin 所選元件加入元件庫 - + Disconnect All Wires Disconnect 所有線路 - + Disconnect all wires connected to this connector Disconnect 連接此元件的所有線路 - + Update InfoView on hover 在鼠標翻轉時,更新訊息視窗 - + Export Normalized SVG 匯出正規化的 SVG - + Export 1000 dpi SVG of this part in this view 以 1000 dpi SVG 匯出本元件 - + Export Normalized Flattened SVG 匯出正規扁平化的 SVG - + Export 1000 dpi Flattened SVG of this part in this view 以 1000 dpi SVG 匯出正規扁平化的本元件 - + Lock Part - + Prevent a part from being moved - + Select All Locked Parts - + Select all parts that can't be moved - + Straighten Curve - + Straighten the curve of the selected wire - + Show Parts Bin Icon View - + Display the parts bin in an icon view - + Show Parts Bin List View - + Display the parts bin in a list view - - Donate to Fritzing - - - - - Open Fritzing donation web page - - - - - - + + + + + + &Routing - + Shift+Ctrl+A - + Select any traces where the screen location doesn't match the actual location. Only needed for sketches autorouted with version 0.7.10 or earlier - + Autorouter/DRC settings... - + Set autorouting parameters including keepout... - + Shift+Ctrl+3 Shift+Ctrl+3 - + Shift+Ctrl+2 Shift+Ctrl+2 - + Shift+Ctrl+1 Shift+Ctrl+1 - + &Create trace from ratsnest - + Autoroute connections... - + Create a trace from the ratsnest line - + &Create wire from ratsnest - + Create a wire from the ratsnest line - + Do not autoroute - + When autorouting, do not rip up this trace wire, via, or jumper item - + Move to other side of the board - + Select All Wires - + Select all wires - + Select All CopperFill - + Select all copper fill items - + Select All "Don't Autoroute" Traces - + Select All Autoroutable Traces - + Select all trace wires that can be changed during autorouting - + Select all jumper item parts - + Select All Vias - + Select all via parts - + Fill empty regions of the copper layer--fill will include all traces connected to a GROUND - + Fill empty regions of the copper layer--not including traces connected to a GROUND - + Fill empty regions of the copper layer--fill will include all traces connected to the seeds - + Shift+Ctrl+D - + jumpers - + copperfill - + vias - + Do you want to update now? - + unable to find replacement for %1. - + Delete - + Fritzing Files (*%1 *%2 *%3 *%4 *%5);;Fritzing (*%1);;Fritzing Shareable (*%2);;Fritzing Part (*%3);;Fritzing Bin (*%4);;Fritzing Shareable Bin (*%5) - + Convert - + Read-only - + Rotate the selected parts by 90 degrees clockwise 所選元件,順時針旋轉 90° - + Rotate the selected parts by 180 degrees 所選元件,旋轉 180° - + Rotate current selection 90 degrees counter clockwise 所選部分,逆時針旋轉 90° - + &Flip Horizontal 水平翻轉 (&F) - + Flip current selection horizontally 水平翻轉所選部分 - + &Flip Vertical 垂直翻轉(&F) - + Flip current selection vertically 垂直翻轉所選部分 - + Bring to Front 置於最前排 - + Shift+Ctrl+] Shift+Ctrl+] - + Bring selected object(s) to front of their layer 所選部分,置於所在層的最前排 - + Bring Forward 向前一排 - + Ctrl+] Ctrl+] - + Bring selected object(s) forward in their layer 所選部分,於所在層的向前移動一排 - + Send Backward 向後一排 - + Ctrl+[ Ctrl+[ - + Send selected object(s) back in their layer 所選部分,於所在層的向後移動一排 - + Send to Back 置於最後一排 - + Shift+Ctrl+[ Shift+Ctrl+[ - + Send selected object(s) to the back of their layer 所選部分,於所在層的移到最後一排 - + 100% (pixel) size - + Report a bug... - + &Show All Layers 顯示所有層 (&S) - + Rotate current selection 45 degrees counter clockwise 目前選取部分,逆時針旋轉 90° {45 ?} - + Rotate current selection 45 degrees clockwise - + Revert? - + This operation can not be undone--you will lose all of your changes. Go ahead and revert? - + Open a Fritzing sketch (.fzz, .fz), or load a Fritzing part (.fzpz), or a Fritzing parts bin (.fzb, .fzbz) - + Revert - + Reload the sketch - + &Delete Wire - + Edit (new parts editor) - + Open the new parts editor on an existing part - + Sticky - + If a "sticky" part is moved, parts on top of it are also moved - + Show all the available layers for the current view 顯示本檢視所有可用層 - + &Hide All Layers 隱藏所有層 (&H) - + Hide all the layers of the current view 隱藏本檢視所有層 - + &Show part label 顯示元件標頭 - + Dump all parts - + Debug dump all parts in this view - + Align Left - + Align selected items at the left - + Align Horizontal Center - + Align selected items at the horizontal center - + Align Right - + Align selected items at the right - + Align Top - + Align selected items at the top - + Align Vertical Center - + Align selected items at the vertical center - + Align Bottom - + Align selected items at the bottom - + &Export... 匯出 (&E) - + Export selected part 匯出所選元件 - - + + Add Bendpoint 新增彎曲點 - + Add a bendpoint to the selected wire 在選取的線路上,新增彎曲點 - + Convert Bendpoint to Via - + Convert the bendpoint to a via - + Convert Via to Bendpoint - + Convert the via to a bendpoint - - + + Select outdated parts 選取過時的元件 - - + + Update selected parts 更新選取的元件 - + Find part in sketch... - + Search for parts in a sketch by matching text - + Open programming window - + Open microcontroller programming window - - + + Hide part silkscreen - + Hide/show the silkscreen layer for only this part - + &Zoom In 放大 (&Z) - + Ctrl++ Ctrl++ - + Zoom in 放大 - + Ctrl+= Ctrl+= - + &Zoom Out 縮小 (&Z) - + Ctrl+- Ctrl+- - + Zoom out 縮小 - + &Fit in Window 與視窗同寬 (&F) - + Ctrl+0 Ctrl+0 - + Fit in window 與視窗同寬 - + &Actual Size 實際大小(&A) - + Actual (real world physical) size - + 100% Size - + Shift+Ctrl+0 Shift+Ctrl+0 - + Align to Grid - + Align items to grid when dragging - + Show Grid - + Show the grid - + Set Grid Size... - + Set the size of the grid in this view - + Set Background Color... - + Set the background color of this view - + Ctrl+5 Ctrl+5 - + &Show Welcome - + Show the welcome view - + &Show Breadboard 顯示麵包版 (&S) - + Ctrl+1 Ctrl+1 - + Show the breadboard view 顯示麵包版檢視 - + &Show Schematic 顯示概要圖 (&S) - + Ctrl+2 Ctrl+2 - + Show the schematic view 顯示概要圖檢視 - + &Show PCB 顯示 PCB (&S) - + Ctrl+3 Ctrl+3 - + Show the PCB view 顯示 PCB 檢視 - + Ctrl+4 Ctrl+4 - + &Minimize 最小化 (&M) - + Ctrl+M Ctrl+M - + Minimize current window 最小化目前視窗 - + Debugger Output Debugger 輸出 - + Online Tutorials 線上教學 - + Ctrl+? Ctrl+? - + Open Fritzing help 開啟 Fritzing 輔助說明 - + Online Projects Gallery 線上專案展覽室 - + Open Fritzing examples 開啟 Fritzing 範例 - + Online Parts Reference 線上元件參考說明 - + Open Parts Reference 開啟元件參考說明 - + First Time Help 首次輔助說明 - + Check for updates... 版本更新檢查... - + Test Connectors - + Connect all connectors to a single test part - + Check whether a newer version of Fritzing is available for download Fritzing 新版本下載檢查 - + &About 關於(&A) - + Tips, Tricks and Shortcuts - + Display some handy Fritzing tips and tricks 顯示 Fritzing 好用的提示與技巧 - + Display First Time Help - + &About Qt 關於 Qt(&A) - + Show Qt's about box 顯示關於 Qt 的對話視窗 - - + + Report a but you've found in Fritzing - + Enable debugging log - + Parts Editor Help - + Display Parts Editor help in a browser - + &File 檔案 (&F) - + &Export 匯出 (&E) - + as Image - + for Production - + &Part 元件 (&P) - + Raise and Lower 提高/降低 - + Ctrl+Shift+V - + Rotate 45° Clockwise 順時針旋轉 90° {135°?} {135�?} {45°?} - + Rotate 90° Clockwise 順時針旋轉 90° {135°?} {135�?} {90°?} - + Rotate 180° 旋轉 180° {180�?} {180°?} - + Rotate 90° Counter Clockwise 逆時針旋轉 90° {45°?} {45�?} {90°?} - + Rotate 45° Counter Clockwise 逆時針旋轉 90° {45°?} {45�?} {45°?} - + Regenerate parts database ... - + Regenerate the parts database (should only be used if your parts database is broken) - + Color Breadboard Wires By Length - + Display breadboard wires using standard color coding by length - + + Visit fritzing.org + + + + + fritzing.org + + + + Align - + &View 檢視 (&V) - + &Window 視窗 (&W) - - - + + + Ground Fill - + &Help 說明 (&H) - + Move to bottom layer - + Move to top layer - + Delete Ratsnest Line - + Delete Wire - + Hide part label - + Show part label - + Show part silkscreen - + top and bottom - + bottom - + top - + Ground Fill (%1) - + Copper Fill (%1) - + Actual Size - + It doesn't seem to be possible to automatically determine the actual physical size of the monitor, so 'actual size' as currently implemented is only a guess. Your best bet would be to drag out a ruler part, then place a real (physical) ruler on top and zoom until they match up. - + Page Setup 版面設定 - + Sorry, "%1" has not been implemented yet 抱歉, "%1" 尚為完成喔!! - + + + + Routing + + + + Show unrouted - + Highlight all unrouted connectors - + Set Ground Fill Keepout... - + Set the minimum distance between ground fill and traces or connectors - + Design Rules Check (DRC) - + Highlights any parts that are too close together for safe board production - + Check Loaded Traces - + Fritzing Fab Quote... - + How much would it could to produce a PCB from this sketch with Fritzing Fab - - + + View from below - - + + View the PCB from the bottom layers upwards - + View from above - + View the PCB from the top layers downwards - + Your sketch does not have a board yet! Please add a PCB in order to use the autorouter. - + Please select the board you want to autoroute. The autorouter can only handle one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to use ground or copper fill. - + Please select a PCB--copper fill only works for one board at a time. - + Your sketch does not have a board yet! Please add a PCB in order to remove copper fill. - + Please select a PCB--ground fill operations only work on a one board at a time. - + Schematic view update - + There is a new graphics standard for schematic-view part images, beginning with version 0.8.6. - + Would you like to convert '%1' to the new standard now or open the file read-only? - + The conversion process will not modify '%1', until you save the file. - + You will have to rearrange parts and connections in schematic view, as the sizes of most part images will have changed. Consider using the Autorouter to clean up traces. - + Note that any custom parts will not be converted. A tool for converting 'rectangular' schematic images is available in the Parts Editor. - + Note: if you want to update later, there are options under the 'Part' menu for dealing with outdated parts individually. - + There are %n outdated part(s) in this sketch. - + We strongly recommend that you update these %n parts to the latest version. - + This may result in changes to your sketch, as parts or connectors may be shifted. - + OK 確定 - + Set the grid size for %1. - + Grid Size: - + in - + mm - + Restore Default - + Your sketch does not have a board yet! DRC only works with a PCB. - + Please select a PCB. DRC only works on one board at a time. - + DRC Progress... - - + + Fritzing Fab Upload + + + + + Please first save your project in order to upload it. + + + + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill operations. - - + + Please select a PCB. Copper fill operations only work on one board at a time. - + %1 background - + Enter Text - + Text will match part label, description, title, etc. Enter text to search for: - + Search - + No parts matched search term '%1'. - + Your sketch does not have a board yet! Please add a PCB in order to export to Gerber. 草圖還沒有版子,請先增加一個 PCB 版,才能匯出到 Gerber。 - + Choose a folder for exporting 請選取要匯出的資料夾 - + This will soon provide an export of your Fritzing sketch to the EAGLE layout software. If you'd like to have more exports to your favourite EDA tool, please let us know, or contribute. 即要將您的 Fritzing 草圖匯出給 EAGLE 佈署軟體,如果您常用的 EDA 工具,需要我們提供更多不同格式的匯出,歡迎您告知我們,更歡迎您貢獻力量。 - + Export SVG... 匯出 SVG... - + Export Bill of Materials (BoM)... 匯出 BOM ... - + Unable to save BOM file, but the text is on the clipboard. - + Export Netlist... 匯出巢狀列表... - - + + Set both copper layers clickable - - + + Set copper top layer clickable - - + + Set copper bottom layer clickable - + Move selected traces to the other side of the board (note: the 'first' trace will be moved and the rest will follow to the same side) - + Select All Traces 選取所有徑跡 - + Select all trace wires 選取所有徑跡線路 - + Force Update Routing Status and Ratsnests - + Recalculate routing status and ratsnest wires (in case the auto-update isn't working correctly) - + Select all trace wires excluded from autorouting 選取所有徑跡的線路,不自動佈線 - + Select All Jumpers - + Tidy Wires 整理線路 - + Tidy selected wires 整理選取的線路 - - + + Copper Fill 銅線充填 - + Remove Copper Fill 移除銅層充填 - + Remove the copper fill 移除銅層充填 - + Choose Ground Fill Seed(s)... - + Set Ground Fill Seed - + Treat this connector and its connections as a 'ground' during ground fill. - + Clear Ground Fill Seeds - + Clear ground fill seeds--enable copper fill only. - + Copper Top and Copper Bottom layers are both active - + Order a PCB... - + Order a PCB created from your sketch--from fabulous Fritzing Fab - + Copper Top layer is active - + Copper Bottom layer is active - + Autorouting... 自動佈線... - + Autorouting Progress... - + Remove Bendpoint 移除轉彎點 - + Generating %1 fill... - + ground - + copper - + Remove copper fill 移除銅層充填 - - + + &Wire Color 線路顏色 (&W) - + Launch %1... 啟動 %1... - + No outdated parts found. All your parts are up-to-date. 沒有發現舊元件! 您目前所使用的都是最新的元件。 - + Outdated parts 舊元件 - + Successfully updated %1 part(s). Please check all views for potential side-effects. %1 個元件更新成功。 請檢查所有檢視,是否產生副作用! - + Update %1 part(s) 更新第 %1 個元件 @@ -4616,7 +4717,7 @@ Reason: %2 (errcode %3) NetLabel - + net label @@ -4642,62 +4743,62 @@ Reason: %2 (errcode %3) 點擊此連接器來拖曳出一條新徑跡。 - + Change trace layer - - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + Fritzing Fritzing - - + + Your sketch does not have a board yet! Please add a PCB in order to use copper fill. 草圖還沒有版子,請先增加一個 PCB 版,才能使用銅層充填。 - + %1 Fill: please select the board you want to apply fill to. - + Ground - + Copper - + Copper fill: please select only the board you want to fill. - + Please designate one or more ground fill seeds before doing a ground fill. @@ -4710,120 +4811,120 @@ Reason: %2 (errcode %3) - - + + Please click on a PCB first--this selection operation only works for one board at a time. - - + + Fritzing error: unable to render board svg (1). Fritzing 錯誤: 無法產製版子 svg (1). - - - + + + Fritzing error: unable to render copper svg (1). Fritzing 錯誤: 無法產製銅 svg (1). - + Fritzing error: unable to write copper fill (1). - + Fritzing error: unable to write copper fill (2). - + Unable to create copper fill--probably the part wasn't dropped onto the PCB. - + Unable to create copper fill--possibly the part was dropped onto another part or wire rather than the actual PCB. - + Clear ground fill seeds - - + + Your sketch does not have a board yet! Please add a PCB in order to use this selection operation. - + Unable to convert this via to a bendpoint because it is connected to a part that is only on the bottom layer and another part that is only on the top layer. - + Show part silkscreen - + Hide part silkscreen - - + + Fritzing Fab Quote - + Your sketch does not have a board yet. You cannot fabricate this sketch without a PCB part. - + Sorry, http://fab.fritzing.org is not responding to the quote request. Please check your network connection and/or try again later. - + Enter Keepout - + Keepout is in mils (.001 inches). - + Note that due to aliasing, distances may be too short by up to 2 mils - + so you may want to increase the keepout value by that much. - + 10 mils is a good default choice. - + Enter keepout value: @@ -4859,11 +4960,11 @@ Reason: %2 (errcode %3) - - - - - + + + + + Parts Editor 元件編輯器 @@ -4878,12 +4979,12 @@ Reason: %2 (errcode %3) - + Duplicate 'family' property not allowed - + Duplicate 'variant' property not allowed @@ -4903,7 +5004,7 @@ Reason: %2 (errcode %3) - + Exiting the Parts Editor now is fine, as long as you remember to finish the assignments later. @@ -4950,216 +5051,216 @@ Reason: %2 (errcode %3) - + Icon View - + Metadata View - + Connectors View - + Show Icon - + Ctrl+4 Ctrl+4 - + Show the icon view - + Ctrl+5 Ctrl+5 - + Show the metadata view - + Show Connectors - + Ctrl+6 Ctrl+6 - + Change %1 to '%2' - + Change description - + Change tags - + Change properties - + Change connector %1 - + Image & Footprint Files (%1 %2 %3 %4 %5);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3);;gEDA Footprint Files (%4);;Kicad Module Files (%5) - + Image Files (%1 %2 %3);;SVG Files (%1);;JPEG Files (%2);;PNG Files (%3)%4%5 - + Open Image 開啟圖檔 - + Unable to load image file '%1': %2 - + Copy problem - + Unable to make a local copy of: '%1' - + You may use a PNG or JPG image to construct your part, but it is better to use an SVG. - + PNG and JPG images retain their nature as bitmaps and do not look good when scaled-- - + so for Fritzing parts it is best to use PNG and JPG only as placeholders. - + Use of PNG and JPG discouraged - - - - + + + + Conversion problem - - + + Fritzing (New) Parts Editor - + Show Metadata - + Show the connector metadata in a list view - + Blank not allowed - + The value of '%1' can not be blank. - + Change %1 to %2 - + Must be unique - + Variant '%1' is in use. The variant name must be unique. - - + + Duplicate problem - + Unable to load '%1' - + The SVG file '%1' appears to have been exported from CorelDRAW without the 'presentation attributes' setting. - + Please re-export the SVG file using that setting, and try loading again. - + Fonts - + Fritzing currently only supports OCRA and Droid fonts--these have been substituted in for the fonts in '%1' - - - + + + SVG problem @@ -5191,26 +5292,26 @@ Reason: %2 (errcode %3) - + <p>Please enter a prefix to help you identify the part files.<br/>The file names will have the form 'PREFIX_%1'.<br/>(It is not necessary to change the proposed prefix, since a unique suffix is always added.)</p> - + This part has %n unassigned connectors - + across %n views. - + Until all connectors are assigned to SVG elements, the part will not work correctly. @@ -5250,67 +5351,67 @@ Reason: %2 (errcode %3) - + Make only this view visible - + The part will only be visible in this view and icon view - + This version of the new Parts Editor can not deal with separate copper0 and copper1 layers in '%1'. - + So editing may produce an invalid PCB view image - + Unable to parse '%1': %2 line:%3 column:%4 - + There are no copper layers defined in: %1. - + See <a href="http://fritzing.org/learning/tutorials/creating-custom-parts/providing-part-graphics/">this explanation</a>. - + <br/><br/>This will not be a problem in the next release of the Parts Editor, - + but for now please modify the file according to the instructions in the link. - + no schematics found in %1 - + schematic part - + no footprints found in %1 - + Relocate connector %1 @@ -5397,154 +5498,154 @@ Reason: %2 (errcode %3) - + Unable to load image file '%1' - + Filename prefix - + Sketch Change Warning - + The open sketch '%1' uses the part you are editing. - + Saving this part will make a change to the sketch that cannot be undone. - + The open sketches - + '%1', - + and '%1' - + Saving this part will make a change to these sketches that cannot be undone. - + Go ahead and save? - + Save 存檔 - + Cancel 取消 - + Move terminal point - + Remove connector - + Remove %1 connectors - + Save "%1" 存檔 "%1" - + Do you want to save the changes you made in the part "%1"? - + Your changes will be lost if you don't save them. - + untitled part - + Unable to load fzp from %1 - + Unable to create new connector--you may have to start over. - + Add connector 新增連接器 - + Add %1 connectors - + Remove internal connection from '%1' - + Change all connectors to %1 - + Unable to parse '%1' - + Change to %1 - + Make only %1 view visible - + Internal connections are very messed up. - + Add internal connection from '%1' to '%2' @@ -6293,12 +6394,12 @@ Note: this warning will not be repeated during this session. - + Command - + Control @@ -6354,86 +6455,94 @@ Note: this warning will not be repeated during this session. - + + + + %1 + %1 + + + + %1 (click to change...) %1 (按一下變更...) - + Clear Settings - + Platform Support - + <b>%1</b> - + Location: - + ... - + You need to have <a href='%1'>%2</a> (version %3 or newer) installed. - + Select a programmer (executable) for %1 - + Connected Highlight 反白連接部分 - + Unconnected Highlight 反白未連接部分 - + no keys down = scroll shift key swaps scroll axis Alt or %1 key = zoom - + no keys down = zoom Alt or %1 key = scroll shift key swaps scroll axis - + Curvy vs. straight wires - + When you mouse-down and drag on a wire or the leg of a part (as opposed to a connector or a bendpoint) do you want to change the curvature of the wire (or leg) or drag out a new bendpoint? - + This checkbox sets the default behavior. You can switch back to the non-default behavior by holding down the Control key (Mac: Command key) when you drag. - + Curvy wires and legs @@ -6772,12 +6881,12 @@ shift key swaps scroll axis - + Unconnected highlight color - + Clear all saved settings and close this dialog immediately. @@ -6787,12 +6896,12 @@ shift key swaps scroll axis - + There is no undo for this action, and no further warning!!!! - + Clear Settings @@ -6818,7 +6927,6 @@ shift key swaps scroll axis - Fritzing Fritzing @@ -6854,21 +6962,21 @@ shift key swaps scroll axis 編輯連結 - - - + + + Part 元件 - - - + + + Wire 線路 - + Set Grid Size @@ -7066,12 +7174,12 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 - + Convert to Via - + Convert Via to Bendpoint @@ -7087,43 +7195,43 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。概要圖檢視 - + Error reading file %1: %2. - + %1 %2,%3 %4 %1 %2,%3 %4 - + Change leg of %1,%2 - + %1 %2 %3 %1 %2 %3 - + %1 Layer %1 層 - - + + Bring forward 提前一排 - + Send backward 後退一排 - + Bring to front 提到最前排 @@ -7138,28 +7246,28 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。加入導線 - + Trace wires 徑跡導線 - + Ratsnest wires 鼠巢導線 - - + + Select all %1 選取全部的 %1 - + Select outdated parts 選取過時元件 - + Select locked parts @@ -7488,12 +7596,12 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 - + Copying file %1 - + File %1 already exists: it won't be overwritten @@ -7758,7 +7866,7 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 - The parts folder '%1' has been changed--it is not in the master branch (%2). %3 + The parts folder '%1' has been changed--it is not in a supported branch (%2). %3 @@ -7782,48 +7890,48 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 - + Unable to open parts folder '%1' for update. %2 - + Parts folder repo '%1' is empty. %2 - + Unable to determine network site for '%1'. %2 - + Unable to access network site for '%1'. %2 - + Unable to retrieve network references for '%1'. %2 - - Unable to retrieve master network reference for '%1'. %2 + + Unable to retrieve the network reference for '%1'#%2. %3 - - + + Regenerating parts database - + Unable to find parts git repository - + Unable to find parts git repository HEAD @@ -8116,17 +8224,17 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 Ruler - + width - + &cm - + &in @@ -8134,33 +8242,33 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 S2S - + Failed loading '%1', %2 line:%3 col:%4 - + Schematic not found for '%1' - - + + Unable to load schematic '%1' for '%2' - + Schematic '%1' is already using the 0.1inch standard. - + Missing connector %1 in '%2' schematic of '%3' - + Failed loading schematic '%1', %2 line:%3 col:%4 @@ -8292,87 +8400,87 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。載入完成 - + %1 %2 %1 %2 - + %1 %2 items %1 %2 項 - + Select All 全選 - + Deselect 全不選 - + Add %1 增加 %1 - + Selection 選取 - + Move %2 (%1) 移動 %2 (%1) - + Move %2 items (%1) 移動 %2 項 (%1) - - + + Select %1 選 %1 - - + + Select %1 items 選 %1 項 - - + + Disconnect 斷開 - + Change 變更 - - + + Connect 連接 - - + + to %1 到 %1 - + Create and connect wire 建立並連接導線 - + Rotate %2 (%1) 旋轉 %2 (%1) @@ -8397,57 +8505,57 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。雙擊 - + Delete ratsnest - + from %1 - + Move leg of - + Change leg curvature for %1. - + Change leg bendpoint for %1. - + Fritzing Fritzing - + This seems like an attempt to create a trace across layers. This circumstance should not arise: please contact the developers. - + Create and connect %1 - + wire - + trace - + Flip %2 (%1) @@ -8516,12 +8624,12 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。 - + Resize ruler to %1 %2 尺規大小調為 %1 %2 {1 %2?} - + test connectors @@ -8531,81 +8639,81 @@ Fritzing 還可以運作,但此時,您無法變更元件的屬性。大小變更註解 - + Change Resistance from %1 to %2 電阻由 %1 變為 %2 - - + + Change %1 from %2 to %3 - - + + Resize board to %1 %2 將板子大小變為 %1 %2 - + Create wire from Ratsnest - + Disconnect all wires from %1 %1 的導線全部斷開 - + Disconnect all wires from %1 items %1 項的導線全部斷開 - + Change image from %1 to %2 變更圖檔 %1 為 %2 - + change pin labels - + Unrouted connections are highlighted in yellow. - + There are no unrouted connections - + Unrouted connections - + %1 Note: you can also trigger this display by mousing down on the routing status text in the status bar. - + Part '%1' not found in sketch - + Add %1 parts - + Deselect all @@ -8679,22 +8787,22 @@ Note: you can also trigger this display by mousing down on the routing status te SymbolPaletteItem - + voltage 電壓 - + label 標頭 - + Net labels - + Net labels cannot be blank @@ -8821,11 +8929,6 @@ Note: you can also trigger this display by mousing down on the routing status te To edit a part label, double-click it, or use the text input widget in the inspector window. - - - To display different properties in a part label, as well as rotate it, or change the font, right-click the label. - - To move a part label independently from its part, select the part first--both the part and the label will be highlighted. Once the label is selected you can drag it. @@ -8946,6 +9049,11 @@ Note: you can also trigger this display by mousing down on the routing status te In Breadboard or PCB view, to add a curve to a wire or bendable leg, drag with the Control (Mac: Command) key down. You can set whether curvy wires are the default in Preferences. + + + To display different properties in a part label, rotate it, or change the font, right-click the label. + + Always lead a trace straight out of a pin. This helps to prevent short circuits. @@ -9348,108 +9456,83 @@ Note: you can also trigger this display by mousing down on the routing status te Fab - - - Donate - - - Fritzing development needs you - - - - - Software development and maintenance is a lot of work. Without your support, it is not possible to keep that up. - - - - - Donate and leave a comment. - - - - - Donate now - - - - Fritzing Fab - + Fritzing Fab is an easy and affordable service for producing professional PCBs from your Fritzing sketches. - + produce your first pcb now >> - + Order your PCB now. - + <a href='%1'><img src='%2'/></a> - + Projects - + Blog - + Fritzing News. - + Fritzing Projects. - + <a href='%1'><img src='%2' /></a> - + No recent sketches found - + Unable to reach blog.fritzing.org - + Unable to reach fritzing.org/projects - + Tip of the Day: - + All Tips - + Next Tip