diff --git a/arduino/builder/detector/detector.go b/arduino/builder/detector/detector.go index 1de2017d773..fdb60639975 100644 --- a/arduino/builder/detector/detector.go +++ b/arduino/builder/detector/detector.go @@ -669,7 +669,7 @@ type includeCacheEntry struct { // String fixdoc func (entry *includeCacheEntry) String() string { - return fmt.Sprintf("SourceFile: %s; Include: %s; IncludePath: %s", + return fmt.Sprintf(tr("SourceFile: %s; Include: %s; IncludePath: %s"), entry.Sourcefile, entry.Include, entry.Includepath) } diff --git a/arduino/discovery/discovery.go b/arduino/discovery/discovery.go index 1832f1e77d3..6c727dda9eb 100644 --- a/arduino/discovery/discovery.go +++ b/arduino/discovery/discovery.go @@ -69,7 +69,7 @@ type discoveryMessage struct { } func (msg discoveryMessage) String() string { - s := fmt.Sprintf("type: %s", msg.EventType) + s := fmt.Sprintf(tr("type: %s"), msg.EventType) if msg.Message != "" { s = tr("%[1]s, message: %[2]s", s, msg.Message) } @@ -189,7 +189,7 @@ func (disc *PluggableDiscovery) jsonDecodeLoop(in io.Reader, outChan chan<- *dis disc.incomingMessagesError = err disc.statusMutex.Unlock() close(outChan) - logrus.Errorf("stopped discovery %s decode loop: %v", disc.id, err) + logrus.Errorf(tr("stopped discovery %s decode loop: %v"), disc.id, err) } for { @@ -206,7 +206,7 @@ func (disc *PluggableDiscovery) jsonDecodeLoop(in io.Reader, outChan chan<- *dis closeAndReportError(err) return } - logrus.Infof("from discovery %s received message %s", disc.id, msg) + logrus.Infof(tr("from discovery %s received message %s"), disc.id, msg) if msg.EventType == "add" { if msg.Port == nil { closeAndReportError(errors.New(tr("invalid 'add' message: missing port"))) @@ -253,7 +253,7 @@ func (disc *PluggableDiscovery) waitMessage(timeout time.Duration) (*discoveryMe } func (disc *PluggableDiscovery) sendCommand(command string) error { - logrus.Infof("sending command %s to discovery %s", strings.TrimSpace(command), disc) + logrus.Infof(tr("sending command %s to discovery %s"), strings.TrimSpace(command), disc) data := []byte(command) for { n, err := disc.outgoingCommandsPipe.Write(data) @@ -268,7 +268,7 @@ func (disc *PluggableDiscovery) sendCommand(command string) error { } func (disc *PluggableDiscovery) runProcess() error { - logrus.Infof("starting discovery %s process", disc.id) + logrus.Infof(tr("starting discovery %s process"), disc.id) proc, err := executils.NewProcess(nil, disc.processArgs...) if err != nil { return err @@ -295,12 +295,12 @@ func (disc *PluggableDiscovery) runProcess() error { defer disc.statusMutex.Unlock() disc.process = proc disc.state = Alive - logrus.Infof("started discovery %s process", disc.id) + logrus.Infof(tr("started discovery %s process"), disc.id) return nil } func (disc *PluggableDiscovery) killProcess() error { - logrus.Infof("killing discovery %s process", disc.id) + logrus.Infof(tr("killing discovery %s process"), disc.id) if disc.process != nil { if err := disc.process.Kill(); err != nil { return err @@ -313,7 +313,7 @@ func (disc *PluggableDiscovery) killProcess() error { defer disc.statusMutex.Unlock() disc.stopSync() disc.state = Dead - logrus.Infof("killed discovery %s process", disc.id) + logrus.Infof(tr("killed discovery %s process"), disc.id) return nil } @@ -335,7 +335,7 @@ func (disc *PluggableDiscovery) Run() (err error) { if err := disc.killProcess(); err != nil { // Log failure to kill the process, ideally that should never happen // but it's best to know it if it does - logrus.Errorf("Killing discovery %s after unsuccessful start: %s", disc.id, err) + logrus.Errorf(tr("Killing discovery %s after unsuccessful start: %s"), disc.id, err) } }() @@ -415,7 +415,7 @@ func (disc *PluggableDiscovery) stopSync() { func (disc *PluggableDiscovery) Quit() { _ = disc.sendCommand("QUIT\n") if _, err := disc.waitMessage(time.Second * 5); err != nil { - logrus.Errorf("Quitting discovery %s: %s", disc.id, err) + logrus.Errorf(tr("Quitting discovery %s: %s"), disc.id, err) } disc.stopSync() disc.killProcess() diff --git a/arduino/libraries/librariesresolver/cpp.go b/arduino/libraries/librariesresolver/cpp.go index f817a68f7eb..0b0797b4564 100644 --- a/arduino/libraries/librariesresolver/cpp.go +++ b/arduino/libraries/librariesresolver/cpp.go @@ -119,20 +119,20 @@ func (resolver *Cpp) AlternativesFor(header string) libraries.List { // ResolveFor finds the most suitable library for the specified combination of // header and architecture. If no libraries provides the requested header, nil is returned func (resolver *Cpp) ResolveFor(header, architecture string) *libraries.Library { - logrus.Infof("Resolving include %s for arch %s", header, architecture) + logrus.Infof(tr("Resolving include %s for arch %s"), header, architecture) var found libraries.List var foundPriority int for _, lib := range resolver.headers[header] { libPriority := ComputePriority(lib, header, architecture) - msg := " discarded" + msg := tr(" discarded") if found == nil || foundPriority < libPriority { found = libraries.List{} found.Add(lib) foundPriority = libPriority - msg = " found better lib" + msg = tr(" found better lib") } else if foundPriority == libPriority { found.Add(lib) - msg = " found another lib with same priority" + msg = tr(" found another lib with same priority") } logrus. WithField("lib", lib.Name). @@ -149,12 +149,12 @@ func (resolver *Cpp) ResolveFor(header, architecture string) *libraries.Library // If more than one library qualifies use the "closestmatch" algorithm to // find the best matching one (instead of choosing it randomly) if best := findLibraryWithNameBestDistance(header, found); best != nil { - logrus.WithField("lib", best.Name).Info(" library with the best matching name") + logrus.WithField("lib", best.Name).Info(tr(" library with the best matching name")) return best } found.SortByName() - logrus.WithField("lib", found[0].Name).Info(" first library in alphabetic order") + logrus.WithField("lib", found[0].Name).Info(tr(" first library in alphabetic order")) return found[0] } @@ -217,7 +217,7 @@ func ComputePriority(lib *libraries.Library, header, arch string) int { // Bonus for libraries specified via --libraries flags, those libraries gets the highest priority priority += 10000 default: - panic(fmt.Sprintf("Invalid library location: %d", lib.Location)) + panic(fmt.Sprintf(tr("Invalid library location: %d"), lib.Location)) } return priority } diff --git a/arduino/monitor/monitor.go b/arduino/monitor/monitor.go index 10650dcebc3..53f26cd2301 100644 --- a/arduino/monitor/monitor.go +++ b/arduino/monitor/monitor.go @@ -69,15 +69,15 @@ type PortParameterDescriptor struct { } func (msg monitorMessage) String() string { - s := fmt.Sprintf("type: %s", msg.EventType) + s := fmt.Sprintf(tr("type: %s"), msg.EventType) if msg.Message != "" { - s = fmt.Sprintf("%[1]s, message: %[2]s", s, msg.Message) + s = fmt.Sprintf(tr("%[1]s, message: %[2]s"), s, msg.Message) } if msg.ProtocolVersion != 0 { - s = fmt.Sprintf("%[1]s, protocol version: %[2]d", s, msg.ProtocolVersion) + s = fmt.Sprintf(tr("%[1]s, protocol version: %[2]d"), s, msg.ProtocolVersion) } if msg.PortDescription != nil { - s = fmt.Sprintf("%s, port descriptor: protocol %s, %d parameters", + s = fmt.Sprintf(tr("%s, port descriptor: protocol %s, %d parameters"), s, msg.PortDescription.Protocol, len(msg.PortDescription.ConfigurationParameters)) } return s @@ -253,7 +253,7 @@ func (mon *PluggableMonitor) Describe() (*PortDescriptor, error) { // Configure sets a port configuration parameter. func (mon *PluggableMonitor) Configure(param, value string) error { - if err := mon.sendCommand(fmt.Sprintf("CONFIGURE %s %s\n", param, value)); err != nil { + if err := mon.sendCommand(fmt.Sprintf(tr("CONFIGURE %s %s\n"), param, value)); err != nil { return err } _, err := mon.waitMessage(time.Second*10, "configure") @@ -273,7 +273,7 @@ func (mon *PluggableMonitor) Open(portAddress, portProtocol string) (io.ReadWrit defer tcpListener.Close() tcpListenerPort := tcpListener.Addr().(*net.TCPAddr).Port - if err := mon.sendCommand(fmt.Sprintf("OPEN 127.0.0.1:%d %s\n", tcpListenerPort, portAddress)); err != nil { + if err := mon.sendCommand(fmt.Sprintf(tr("OPEN 127.0.0.1:%d %s\n"), tcpListenerPort, portAddress)); err != nil { return nil, err } if _, err := mon.waitMessage(time.Second*10, "open"); err != nil { diff --git a/i18n/cmd/commands/transifex/pull_transifex.go b/i18n/cmd/commands/transifex/pull_transifex.go index b8b3cdded4c..5a56a99668d 100644 --- a/i18n/cmd/commands/transifex/pull_transifex.go +++ b/i18n/cmd/commands/transifex/pull_transifex.go @@ -27,8 +27,11 @@ import ( "github.com/arduino/go-paths-helper" "github.com/spf13/cobra" + "github.com/arduino/arduino-cli/i18n" ) +var tr = i18n.Tr + var pullTransifexCommand = &cobra.Command{ Use: "pull [catalog folder]", Short: "pulls the translation files from transifex", @@ -223,7 +226,7 @@ func getDownloadURL(languageCode, downloadID string) string { case "pending": fallthrough case "processing": - fmt.Printf("Current status for language %s: %s\n", languageCode, status) + fmt.Printf(tr("Current status for language %s: %s\n"), languageCode, status) time.Sleep(backoff) backoff = backoff * 2 // Request the status again @@ -234,14 +237,14 @@ func getDownloadURL(languageCode, downloadID string) string { } os.Exit(1) } - fmt.Printf("Status request for language %s failed in an unforeseen way\n", languageCode) + fmt.Printf(tr("Status request for language %s failed in an unforeseen way\n"), languageCode) os.Exit(1) } } // download file from url and saves it in folder with the specified fileName func download(folder, fileName, url string) { - fmt.Printf("Starting download of %s\n", fileName) + fmt.Printf(tr("Starting download of %s\n"), fileName) filePath := paths.New(folder, fileName) res, err := http.DefaultClient.Get(url) @@ -257,12 +260,12 @@ func download(folder, fileName, url string) { } filePath.WriteFile(data) - fmt.Printf("Finished download of %s\n", fileName) + fmt.Printf(tr("Finished download of %s\n"), fileName) } func pullCatalog(cmd *cobra.Command, args []string) { languages := getLanguages() - fmt.Println("translations found:", languages) + fmt.Println(tr("translations found:"), languages) folder := args[0] @@ -277,5 +280,5 @@ func pullCatalog(cmd *cobra.Command, args []string) { }(lang) } wg.Wait() - fmt.Println("Translation files downloaded") + fmt.Println(tr("Translation files downloaded")) } diff --git a/i18n/data/kk_KZ.po b/i18n/data/kk_KZ.po new file mode 100644 index 00000000000..fd7a071daef --- /dev/null +++ b/i18n/data/kk_KZ.po @@ -0,0 +1,3402 @@ +# +msgid "" +msgstr "" + +#: version/version.go:53 +msgid "%[1]s %[2]s Version: %[3]s Commit: %[4]s Date: %[5]s" +msgstr "%[1]s %[2]s Version: %[3]s Commit: %[4]s Date: %[5]s" + +#: legacy/builder/fail_if_imported_library_is_wrong.go:36 +msgid "%[1]s folder is no longer supported! See %[2]s for more information" +msgstr "%[1]s folder is no longer supported! See %[2]s for more information" + +#: legacy/builder/wipeout_build_path_if_build_options_changed.go:49 +msgid "%[1]s invalid, rebuilding all" +msgstr "%[1]s invalid, rebuilding all" + +#: cli/lib/check_deps.go:102 +msgid "%[1]s is required but %[2]s is currently installed." +msgstr "%[1]s is required but %[2]s is currently installed." + +#: legacy/builder/builder_utils/utils.go:491 +msgid "%[1]s pattern is missing" +msgstr "%[1]s pattern is missing" + +#: arduino/discovery/discovery.go:75 +msgid "%[1]s, message: %[2]s" +msgstr "%[1]s, message: %[2]s" + +#: arduino/discovery/discovery.go:84 +msgid "%[1]s, port: %[2]s" +msgstr "%[1]s, port: %[2]s" + +#: arduino/discovery/discovery.go:81 +msgid "%[1]s, ports: %[2]s" +msgstr "%[1]s, ports: %[2]s" + +#: arduino/discovery/discovery.go:78 +msgid "%[1]s, protocol version: %[2]d" +msgstr "%[1]s, protocol version: %[2]d" + +#: cli/output/rpc_progress.go:64 +msgid "%s already downloaded" +msgstr "%s already downloaded" + +#: commands/upload/upload.go:615 +msgid "%s and %s cannot be used together" +msgstr "%s and %s cannot be used together" + +#: cli/output/rpc_progress.go:76 +msgid "%s downloaded" +msgstr "%s downloaded" + +#: commands/bundled_tools.go:56 +msgid "%s installed" +msgstr "%s installed" + +#: cli/lib/check_deps.go:99 +msgid "%s is already installed." +msgstr "%s is already installed." + +#: arduino/cores/packagemanager/loader.go:72 +msgid "%s is not a directory" +msgstr "%s is not a directory" + +#: arduino/cores/packagemanager/install_uninstall.go:113 +msgid "%s is not managed by package manager" +msgstr "%s is not managed by package manager" + +#: cli/lib/check_deps.go:96 +msgid "%s must be installed." +msgstr "%s must be installed." + +#: legacy/builder/ctags_runner.go:41 +msgid "%s pattern is missing" +msgstr "%s pattern is missing" + +#: commands/instances.go:846 +msgid "%s uninstalled" +msgstr "%s uninstalled" + +#: arduino/errors.go:708 +msgid "'%s' has an invalid signature" +msgstr "'%s' has an invalid signature" + +#: cli/board/listall.go:91 cli/board/search.go:89 +msgid "(hidden)" +msgstr "(hidden)" + +#: legacy/builder/print_used_libraries_if_verbose.go:34 +msgid "(legacy)" +msgstr "(legacy)" + +#: cli/lib/install.go:79 +msgid "" +"--git-url and --zip-path are disabled by default, for more information see: " +"%v" +msgstr "" +"--git-url and --zip-path are disabled by default, for more information see: " +"%v" + +#: cli/lib/install.go:82 +msgid "" +"--git-url and --zip-path flags allow installing untrusted files, use it at " +"your own risk." +msgstr "" +"--git-url and --zip-path flags allow installing untrusted files, use it at " +"your own risk." + +#: cli/updater/updater.go:70 +msgid "A new release of Arduino CLI is available:" +msgstr "A new release of Arduino CLI is available:" + +#: arduino/errors.go:244 +msgid "A programmer is required to upload" +msgstr "A programmer is required to upload" + +#: cli/core/download.go:36 cli/core/install.go:40 cli/core/uninstall.go:36 +#: cli/core/upgrade.go:38 +msgid "ARCH" +msgstr "ARCH" + +#: cli/generatedocs/generatedocs.go:80 +msgid "ARDUINO COMMAND LINE MANUAL" +msgstr "ARDUINO COMMAND LINE MANUAL" + +#: cli/usage.go:32 +msgid "Additional help topics:" +msgstr "Additional help topics:" + +#: cli/config/add.go:32 cli/config/add.go:33 +msgid "Adds one or more values to a setting." +msgstr "Adds one or more values to a setting." + +#: cli/usage.go:27 +msgid "Aliases:" +msgstr "Aliases:" + +#: cli/core/upgrade.go:68 +msgid "All the cores are already at the latest version" +msgstr "All the cores are already at the latest version" + +#: commands/instances.go:715 commands/lib/install.go:97 +msgid "Already installed %s" +msgstr "Already installed %s" + +#: legacy/builder/resolve_library.go:32 +msgid "Alternatives for %[1]s: %[2]s" +msgstr "Alternatives for %[1]s: %[2]s" + +#: legacy/builder/container_add_prototypes.go:46 +msgid "An error occurred adding prototypes" +msgstr "An error occurred adding prototypes" + +#: legacy/builder/container_find_includes.go:116 +msgid "An error occurred detecting libraries" +msgstr "An error occurred detecting libraries" + +#: cli/lib/search.go:172 +msgid "Architecture: %s" +msgstr "Architecture: %s" + +#: commands/sketch/archive.go:70 +msgid "Archive already exists" +msgstr "Archive already exists" + +#: legacy/builder/phases/core_builder.go:126 +msgid "Archiving built core (caching) in: %[1]s" +msgstr "Archiving built core (caching) in: %[1]s" + +#: cli/sketch/sketch.go:31 cli/sketch/sketch.go:32 +msgid "Arduino CLI sketch commands." +msgstr "Arduino CLI sketch commands." + +#: cli/cli.go:72 +msgid "Arduino CLI." +msgstr "Arduino CLI." + +#: cli/cli.go:73 +msgid "Arduino Command Line Interface (arduino-cli)." +msgstr "Arduino Command Line Interface (arduino-cli)." + +#: cli/board/board.go:31 cli/board/board.go:32 +msgid "Arduino board commands." +msgstr "Arduino board commands." + +#: cli/cache/cache.go:31 cli/cache/cache.go:32 +msgid "Arduino cache commands." +msgstr "Arduino cache commands." + +#: cli/lib/lib.go:31 cli/lib/lib.go:32 +msgid "Arduino commands about libraries." +msgstr "Arduino commands about libraries." + +#: cli/config/config.go:33 +msgid "Arduino configuration commands." +msgstr "Arduino configuration commands." + +#: cli/core/core.go:31 cli/core/core.go:32 +msgid "Arduino core operations." +msgstr "Arduino core operations." + +#: cli/lib/check_deps.go:56 cli/lib/install.go:125 +msgid "Arguments error: %v" +msgstr "Arguments error: %v" + +#: cli/board/attach.go:81 +msgid "Attach board error: %v" +msgstr "Attach board error: %v" + +#: cli/board/attach.go:41 cli/board/attach.go:42 cli/board/board.go:35 +msgid "Attaches a sketch to a board." +msgstr "Attaches a sketch to a board." + +#: cli/lib/search.go:163 +msgid "Author: %s" +msgstr "Author: %s" + +#: cli/lib/list.go:124 +msgid "Available" +msgstr "Available" + +#: cli/usage.go:29 +msgid "Available Commands:" +msgstr "Available Commands:" + +#: cli/upload/upload.go:63 +msgid "Binary file to upload." +msgstr "Binary file to upload." + +#: cli/board/list.go:88 cli/board/list.go:126 cli/board/listall.go:87 +#: cli/board/search.go:85 +msgid "Board Name" +msgstr "Board Name" + +#: commands/board/attach.go:94 +msgid "Board found: %s" +msgstr "Board found: %s" + +#: cli/board/details.go:119 +msgid "Board name:" +msgstr "Board name:" + +#: cli/board/details.go:121 +msgid "Board version:" +msgstr "Board version:" + +#: legacy/builder/merge_sketch_with_bootloader.go:69 +msgid "Bootloader file specified but missing: %[1]s" +msgstr "Bootloader file specified but missing: %[1]s" + +#: cli/compile/compile.go:89 +msgid "Builds of 'core.a' are saved into this path to be cached and reused." +msgstr "Builds of 'core.a' are saved into this path to be cached and reused." + +#: commands/instances.go:528 +msgid "Can't create data directory %s" +msgstr "Can't create data directory %s" + +#: arduino/errors.go:414 +msgid "Can't create sketch" +msgstr "Can't create sketch" + +#: commands/lib/download.go:61 commands/lib/download.go:64 +#: commands/lib/download.go:66 +msgid "Can't download library" +msgstr "Can't download library" + +#: commands/core/install.go:127 commands/core/uninstall.go:53 +#: commands/instances.go:754 commands/instances.go:766 +msgid "Can't find dependencies for platform %s" +msgstr "Can't find dependencies for platform %s" + +#: arduino/errors.go:427 +msgid "Can't open sketch" +msgstr "Can't open sketch" + +#: cli/config/set.go:55 +msgid "Can't set multiple values in key %v" +msgstr "Can't set multiple values in key %v" + +#: cli/arguments/arguments.go:37 +msgid "Can't use %s flags at the same time." +msgstr "Can't use %s flags at the same time." + +#: cli/config/add.go:61 cli/config/delete.go:72 cli/config/remove.go:70 +msgid "Can't write config file: %v" +msgstr "Can't write config file: %v" + +#: commands/compile/compile.go:175 +msgid "Cannot create build cache directory" +msgstr "Cannot create build cache directory" + +#: commands/compile/compile.go:151 +msgid "Cannot create build directory" +msgstr "Cannot create build directory" + +#: cli/config/init.go:97 +msgid "Cannot create config file directory: %v" +msgstr "Cannot create config file directory: %v" + +#: cli/config/init.go:106 +msgid "Cannot create config file: %v" +msgstr "Cannot create config file: %v" + +#: arduino/errors.go:671 +msgid "Cannot create temp dir" +msgstr "Cannot create temp dir" + +#: arduino/errors.go:689 +msgid "Cannot create temp file" +msgstr "Cannot create temp file" + +#: commands/debug/debug.go:67 +msgid "Cannot execute debug tool" +msgstr "Cannot execute debug tool" + +#: commands/board/attach.go:107 +msgid "Cannot export sketch metadata" +msgstr "Cannot export sketch metadata" + +#: cli/config/init.go:72 cli/config/init.go:83 +msgid "Cannot find absolute path: %v" +msgstr "Cannot find absolute path: %v" + +#: configuration/configuration.go:148 configuration/configuration.go:154 +msgid "Cannot get executable path: %v" +msgstr "Cannot get executable path: %v" + +#: commands/core/install.go:134 +msgid "Cannot install platform" +msgstr "Cannot install platform" + +#: commands/bundled_tools.go:53 +msgid "Cannot install tool %s" +msgstr "Cannot install tool %s" + +#: commands/upload/upload.go:506 +msgid "Cannot perform port reset: %s" +msgstr "Cannot perform port reset: %s" + +#: commands/core/install.go:152 +msgid "Cannot upgrade platform" +msgstr "Cannot upgrade platform" + +#: cli/lib/search.go:171 +msgid "Category: %s" +msgstr "Category: %s" + +#: cli/lib/check_deps.go:37 cli/lib/check_deps.go:38 +msgid "Check dependencies status for the specified library." +msgstr "Check dependencies status for the specified library." + +#: commands/lib/install.go:102 +msgid "Checking lib install prerequisites" +msgstr "Checking lib install prerequisites" + +#: arduino/resources/checksums.go:182 +msgid "Checksum differs from checksum in package.json" +msgstr "Checksum differs from checksum in package.json" + +#: cli/board/details.go:167 +msgid "Checksum:" +msgstr "Checksum:" + +#: cli/cache/cache.go:33 +msgid "Clean caches." +msgstr "Clean caches." + +#: cli/cli.go:125 +msgid "Comma-separated list of additional URLs for the Boards Manager." +msgstr "Comma-separated list of additional URLs for the Boards Manager." + +#: cli/board/list.go:51 +msgid "" +"Command keeps running and prints list of connected boards whenever there is " +"a change." +msgstr "" +"Command keeps running and prints list of connected boards whenever there is " +"a change." + +#: commands/debug/debug_info.go:119 commands/upload/upload.go:444 +msgid "Compiled sketch not found in %s" +msgstr "Compiled sketch not found in %s" + +#: cli/compile/compile.go:75 cli/compile/compile.go:76 +msgid "Compiles Arduino sketches." +msgstr "Compiles Arduino sketches." + +#: legacy/builder/builder.go:78 +msgid "Compiling core..." +msgstr "Compiling core..." + +#: legacy/builder/builder.go:72 +msgid "Compiling libraries..." +msgstr "Compiling libraries..." + +#: legacy/builder/phases/libraries_builder.go:132 +msgid "Compiling library \"%[1]s\"" +msgstr "Compiling library \"%[1]s\"" + +#: legacy/builder/builder.go:67 +msgid "Compiling sketch..." +msgstr "Compiling sketch..." + +#: cli/config/init.go:90 +msgid "" +"Config file already exists, use --overwrite to discard the existing one." +msgstr "" +"Config file already exists, use --overwrite to discard the existing one." + +#: cli/config/init.go:110 +msgid "Config file written to: %s" +msgstr "Config file written to: %s" + +#: cli/monitor/monitor.go:63 +msgid "Configuration of the port." +msgstr "Configuration of the port." + +#: cli/debug/debug.go:146 +msgid "Configuration options for %s" +msgstr "Configuration options for %s" + +#: commands/instances.go:853 +msgid "Configuring platform" +msgstr "Configuring platform" + +#: commands/core/install.go:167 +msgid "Configuring platform." +msgstr "Configuring platform." + +#: cli/board/list.go:184 +msgid "Connected" +msgstr "Connected" + +#: cli/monitor/monitor.go:177 +msgid "Connected to %s! Press CTRL-C to exit." +msgstr "Connected to %s! Press CTRL-C to exit." + +#: cli/board/list.go:88 cli/board/list.go:126 +msgid "Core" +msgstr "Core" + +#: cli/update/update.go:82 +msgid "Core name" +msgstr "Core name" + +#: commands/download.go:32 +msgid "Could not connect via HTTP" +msgstr "Could not connect via HTTP" + +#: commands/instances.go:369 +msgid "Could not create index directory" +msgstr "Could not create index directory" + +#: legacy/builder/phases/core_builder.go:47 +msgid "Couldn't deeply cache core build: %[1]s" +msgstr "Couldn't deeply cache core build: %[1]s" + +#: legacy/builder/phases/sizer.go:79 +msgid "Couldn't determine program size" +msgstr "Couldn't determine program size" + +#: cli/arguments/sketch.go:37 cli/lib/install.go:105 +msgid "Couldn't get current working directory: %v" +msgstr "Couldn't get current working directory: %v" + +#: cli/sketch/new.go:36 cli/sketch/new.go:37 +msgid "Create a new Sketch" +msgstr "Create a new Sketch" + +#: cli/sketch/archive.go:39 cli/sketch/archive.go:40 +msgid "Creates a zip file containing all sketch files." +msgstr "Creates a zip file containing all sketch files." + +#: cli/config/init.go:43 +msgid "" +"Creates or updates the configuration file in the data directory or custom " +"directory with the current configuration settings." +msgstr "" +"Creates or updates the configuration file in the data directory or custom " +"directory with the current configuration settings." + +#: cli/core/list.go:88 cli/core/search.go:118 +msgid "DEPRECATED" +msgstr "DEPRECATED" + +#: cli/daemon/daemon.go:174 +msgid "Daemon is now listening on %s:%s" +msgstr "Daemon is now listening on %s:%s" + +#: cli/debug/debug.go:52 +msgid "Debug Arduino sketches." +msgstr "Debug Arduino sketches." + +#: cli/debug/debug.go:53 +msgid "" +"Debug Arduino sketches. (this command opens an interactive gdb session)" +msgstr "" +"Debug Arduino sketches. (this command opens an interactive gdb session)" + +#: cli/debug/debug.go:62 +msgid "Debug interpreter e.g.: %s" +msgstr "Debug interpreter e.g.: %s" + +#: commands/debug/debug_info.go:142 +msgid "Debugging not supported for board %s" +msgstr "Debugging not supported for board %s" + +#: cli/board/details.go:123 +msgid "Debugging supported:" +msgstr "Debugging supported:" + +#: cli/monitor/monitor.go:195 +msgid "Default" +msgstr "Default" + +#: cli/cache/clean.go:31 +msgid "Delete Boards/Library Manager download cache." +msgstr "Delete Boards/Library Manager download cache." + +#: cli/cache/clean.go:32 +msgid "" +"Delete contents of the `directories.downloads` folder, where archive files " +"are staged during installation of libraries and boards platforms." +msgstr "" +"Delete contents of the `directories.downloads` folder, where archive files " +"are staged during installation of libraries and boards platforms." + +#: cli/config/delete.go:33 cli/config/delete.go:34 +msgid "Deletes a settings key and all its sub keys." +msgstr "Deletes a settings key and all its sub keys." + +#: cli/lib/search.go:179 +msgid "Dependencies: %s" +msgstr "Dependencies: %s" + +#: cli/lib/list.go:124 +msgid "Description" +msgstr "Description" + +#: legacy/builder/builder.go:59 +msgid "Detecting libraries used..." +msgstr "Detecting libraries used..." + +#: cli/board/list.go:44 +msgid "" +"Detects and displays a list of boards connected to the current computer." +msgstr "" +"Detects and displays a list of boards connected to the current computer." + +#: cli/debug/debug.go:63 +msgid "Directory containing binaries for debug." +msgstr "Directory containing binaries for debug." + +#: cli/upload/upload.go:62 +msgid "Directory containing binaries to upload." +msgstr "Directory containing binaries to upload." + +#: cli/generatedocs/generatedocs.go:45 +msgid "" +"Directory where to save generated files. Default is './docs', the directory " +"must exist." +msgstr "" +"Directory where to save generated files. Default is './docs', the directory " +"must exist." + +#: cli/completion/completion.go:45 +msgid "Disable completion description for shells that support it" +msgstr "Disable completion description for shells that support it" + +#: cli/board/list.go:185 +msgid "Disconnected" +msgstr "Disconnected" + +#: cli/daemon/daemon.go:66 +msgid "Display only the provided gRPC calls" +msgstr "Display only the provided gRPC calls" + +#: cli/lib/install.go:61 +msgid "Do not install dependencies." +msgstr "Do not install dependencies." + +#: cli/burnbootloader/burnbootloader.go:59 cli/upload/upload.go:67 +msgid "Do not perform the actual upload, just log out actions" +msgstr "Do not perform the actual upload, just log out actions" + +#: cli/daemon/daemon.go:64 +msgid "Do not terminate daemon process if the parent process dies" +msgstr "Do not terminate daemon process if the parent process dies" + +#: commands/instances.go:704 commands/instances.go:763 +#: commands/lib/download.go:58 +msgid "Downloading %s" +msgstr "Downloading %s" + +#: commands/instances.go:97 +msgid "Downloading missing tool %s" +msgstr "Downloading missing tool %s" + +#: commands/core/install.go:87 +msgid "Downloading packages" +msgstr "Downloading packages" + +#: cli/core/download.go:37 cli/core/download.go:38 +msgid "Downloads one or more cores and corresponding tool dependencies." +msgstr "Downloads one or more cores and corresponding tool dependencies." + +#: cli/lib/download.go:37 cli/lib/download.go:38 +msgid "Downloads one or more libraries without installing them." +msgstr "Downloads one or more libraries without installing them." + +#: cli/daemon/daemon.go:65 +msgid "Enable debug logging of gRPC calls" +msgstr "Enable debug logging of gRPC calls" + +#: cli/lib/install.go:63 +msgid "Enter a path to zip file" +msgstr "Enter a path to zip file" + +#: cli/lib/install.go:62 +msgid "Enter git url for libraries hosted on repositories" +msgstr "Enter git url for libraries hosted on repositories" + +#: commands/sketch/archive.go:105 +msgid "Error adding file to sketch archive" +msgstr "Error adding file to sketch archive" + +#: legacy/builder/phases/core_builder.go:132 +msgid "Error archiving built core (caching) in %[1]s: %[2]s" +msgstr "Error archiving built core (caching) in %[1]s: %[2]s" + +#: cli/sketch/archive.go:79 +msgid "Error archiving: %v" +msgstr "Error archiving: %v" + +#: commands/sketch/archive.go:93 +msgid "Error calculating relative file path" +msgstr "Error calculating relative file path" + +#: cli/cache/clean.go:46 +msgid "Error cleaning caches: %v" +msgstr "Error cleaning caches: %v" + +#: commands/compile/compile.go:280 +msgid "Error copying output file %s" +msgstr "Error copying output file %s" + +#: cli/core/search.go:66 cli/instance/instance.go:42 +#: cli/instance/instance.go:153 cli/lib/search.go:59 +msgid "Error creating instance: %v" +msgstr "Error creating instance: %v" + +#: commands/compile/compile.go:260 +msgid "Error creating output dir" +msgstr "Error creating output dir" + +#: commands/sketch/archive.go:81 +msgid "Error creating sketch archive" +msgstr "Error creating sketch archive" + +#: cli/arguments/sketch.go:51 cli/sketch/new.go:52 cli/sketch/new.go:61 +msgid "Error creating sketch: %v" +msgstr "Error creating sketch: %v" + +#: cli/board/list.go:72 cli/board/list.go:81 +msgid "Error detecting boards: %v" +msgstr "Error detecting boards: %v" + +#: cli/arguments/port.go:159 +msgid "Error discovering port: %v" +msgstr "Error discovering port: %v" + +#: cli/core/download.go:71 cli/lib/download.go:68 +msgid "Error downloading %[1]s: %[2]v" +msgstr "Error downloading %[1]s: %[2]v" + +#: commands/instances.go:474 commands/instances.go:478 +#: commands/instances.go:483 +msgid "Error downloading index '%s'" +msgstr "Error downloading index '%s'" + +#: commands/instances.go:507 commands/instances.go:513 +msgid "Error downloading index signature '%s'" +msgstr "Error downloading index signature '%s'" + +#: commands/instances.go:706 commands/instances.go:708 +msgid "Error downloading library" +msgstr "Error downloading library" + +#: commands/instances.go:383 commands/instances.go:386 +msgid "Error downloading library_index.json.gz" +msgstr "Error downloading library_index.json.gz" + +#: commands/instances.go:393 commands/instances.go:396 +msgid "Error downloading library_index.json.sig" +msgstr "Error downloading library_index.json.sig" + +#: commands/core/download.go:71 commands/core/download.go:75 +#: commands/instances.go:789 commands/instances.go:791 +msgid "Error downloading platform %s" +msgstr "Error downloading platform %s" + +#: commands/core/download.go:84 commands/core/download.go:89 +#: commands/instances.go:782 commands/instances.go:783 +msgid "Error downloading tool %s" +msgstr "Error downloading tool %s" + +#: cli/debug/debug.go:108 +msgid "Error during Debug: %v" +msgstr "Error during Debug: %v" + +#: cli/compile/compile.go:170 +msgid "Error during FQBN detection: %v" +msgstr "Error during FQBN detection: %v" + +#: cli/feedback/feedback.go:160 +msgid "Error during JSON encoding of the output: %v" +msgstr "Error during JSON encoding of the output: %v" + +#: cli/burnbootloader/burnbootloader.go:73 +#: cli/burnbootloader/burnbootloader.go:86 cli/compile/compile.go:222 +#: cli/compile/compile.go:254 cli/upload/upload.go:88 cli/upload/upload.go:94 +#: cli/upload/upload.go:111 cli/upload/upload.go:138 +msgid "Error during Upload: %v" +msgstr "Error during Upload: %v" + +#: cli/feedback/feedback.go:171 +msgid "Error during YAML encoding of the output: %v" +msgstr "Error during YAML encoding of the output: %v" + +#: cli/compile/compile.go:266 +msgid "Error during build: %v" +msgstr "Error during build: %v" + +#: cli/core/install.go:80 +msgid "Error during install: %v" +msgstr "Error during install: %v" + +#: cli/core/uninstall.go:72 +msgid "Error during uninstall: %v" +msgstr "Error during uninstall: %v" + +#: cli/core/upgrade.go:105 +msgid "Error during upgrade: %v" +msgstr "Error during upgrade: %v" + +#: commands/instances.go:402 +msgid "Error extracting library_index.json.gz" +msgstr "Error extracting library_index.json.gz" + +#: commands/upload/upload.go:441 +msgid "Error finding build artifacts" +msgstr "Error finding build artifacts" + +#: cli/debug/debug.go:95 +msgid "Error getting Debug info: %v" +msgstr "Error getting Debug info: %v" + +#: commands/sketch/archive.go:59 +msgid "Error getting absolute path of sketch archive" +msgstr "Error getting absolute path of sketch archive" + +#: cli/board/details.go:70 +msgid "Error getting board details: %v" +msgstr "Error getting board details: %v" + +#: commands/board/list.go:147 +msgid "Error getting board info from Arduino Cloud" +msgstr "Error getting board info from Arduino Cloud" + +#: commands/board/list.go:212 +msgid "Error getting board list" +msgstr "Error getting board list" + +#: arduino/builder/compilation_database.go:78 +msgid "Error getting current directory for compilation database: %s" +msgstr "Error getting current directory for compilation database: %s" + +#: commands/compile/compile.go:289 commands/lib/list.go:107 +msgid "Error getting information for library %s" +msgstr "Error getting information for library %s" + +#: cli/lib/examples.go:73 +msgid "Error getting libraries info: %v" +msgstr "Error getting libraries info: %v" + +#: cli/monitor/monitor.go:90 +msgid "Error getting port settings details: %s" +msgstr "Error getting port settings details: %s" + +#: cli/core/search.go:81 cli/instance/instance.go:46 cli/lib/search.go:73 +#: cli/update/update.go:70 +msgid "Error initializing instance: %v" +msgstr "Error initializing instance: %v" + +#: cli/lib/install.go:138 +msgid "Error installing %s: %v" +msgstr "Error installing %s: %v" + +#: cli/lib/install.go:116 +msgid "Error installing Git Library: %v" +msgstr "Error installing Git Library: %v" + +#: cli/lib/install.go:93 +msgid "Error installing Zip Library: %v" +msgstr "Error installing Zip Library: %v" + +#: commands/instances.go:810 +msgid "Error installing platform %s" +msgstr "Error installing platform %s" + +#: commands/instances.go:800 +msgid "Error installing tool %s" +msgstr "Error installing tool %s" + +#: cli/lib/list.go:76 +msgid "Error listing libraries: %v" +msgstr "Error listing libraries: %v" + +#: cli/board/listall.go:64 +msgid "Error listing boards: %v" +msgstr "Error listing boards: %v" + +#: cli/core/list.go:61 +msgid "Error listing platforms: %v" +msgstr "Error listing platforms: %v" + +#: legacy/builder/hardware_loader.go:38 +msgid "Error loading hardware platform: %[1]s" +msgstr "Error loading hardware platform: %[1]s" + +#: cli/compile/compile.go:143 +msgid "Error opening source code overrides data file: %v" +msgstr "Error opening source code overrides data file: %v" + +#: commands/compile/compile.go:270 +msgid "Error reading build directory" +msgstr "Error reading build directory" + +#: configuration/configuration.go:69 +msgid "Error reading config file: %v" +msgstr "Error reading config file: %v" + +#: commands/sketch/archive.go:75 +msgid "Error reading sketch files" +msgstr "Error reading sketch files" + +#: legacy/builder/target_board_resolver.go:30 +msgid "Error resolving FQBN" +msgstr "Error resolving FQBN" + +#: cli/lib/check_deps.go:66 +msgid "Error resolving dependencies for %[1]s: %[2]s" +msgstr "Error resolving dependencies for %[1]s: %[2]s" + +#: cli/core/upgrade.go:63 +msgid "Error retrieving core list: %v" +msgstr "Error retrieving core list: %v" + +#: cli/outdated/outdated.go:57 cli/update/update.go:77 +msgid "Error retrieving outdated cores and libraries: %v" +msgstr "Error retrieving outdated cores and libraries: %v" + +#: commands/instances.go:826 +msgid "Error rolling-back changes" +msgstr "Error rolling-back changes" + +#: commands/core/install.go:149 +msgid "Error rolling-back changes: %s" +msgstr "Error rolling-back changes: %s" + +#: commands/instances.go:532 +msgid "Error saving downloaded index %s" +msgstr "Error saving downloaded index %s" + +#: commands/instances.go:536 +msgid "Error saving downloaded index signature" +msgstr "Error saving downloaded index signature" + +#: cli/board/search.go:62 +msgid "Error searching boards: %v" +msgstr "Error searching boards: %v" + +#: cli/lib/search.go:81 +msgid "Error searching for Library: %v" +msgstr "Error searching for Library: %v" + +#: cli/core/search.go:93 +msgid "Error searching for platforms: %v" +msgstr "Error searching for platforms: %v" + +#: arduino/builder/compilation_database.go:63 +msgid "Error serializing compilation database: %s" +msgstr "Error serializing compilation database: %s" + +#: commands/board/list.go:197 commands/board/list.go:200 +#: commands/board/list.go:241 +msgid "Error starting board discoveries" +msgstr "Error starting board discoveries" + +#: cli/lib/uninstall.go:66 +msgid "Error uninstalling %[1]s: %[2]v" +msgstr "Error uninstalling %[1]s: %[2]v" + +#: commands/core/uninstall.go:81 +msgid "Error uninstalling platform %s" +msgstr "Error uninstalling platform %s" + +#: commands/core/uninstall.go:97 commands/instances.go:842 +msgid "Error uninstalling tool %s" +msgstr "Error uninstalling tool %s" + +#: cli/update/update.go:62 +msgid "Error updating core and libraries index: %v" +msgstr "Error updating core and libraries index: %v" + +#: cli/core/search.go:75 cli/core/update_index.go:52 +msgid "Error updating index: %v" +msgstr "Error updating index: %v" + +#: cli/instance/instance.go:162 +msgid "Error updating indexes: %v" +msgstr "Error updating indexes: %v" + +#: cli/lib/search.go:68 cli/lib/update_index.go:52 +msgid "Error updating library index: %v" +msgstr "Error updating library index: %v" + +#: cli/lib/upgrade.go:51 cli/lib/upgrade.go:57 +msgid "Error upgrading libraries: %v" +msgstr "Error upgrading libraries: %v" + +#: commands/core/install.go:144 commands/instances.go:821 +msgid "Error upgrading platform: %s" +msgstr "Error upgrading platform: %s" + +#: cli/upgrade/upgrade.go:63 +msgid "Error upgrading: %v" +msgstr "Error upgrading: %v" + +#: commands/instances.go:407 commands/instances.go:517 +msgid "Error verifying signature" +msgstr "Error verifying signature" + +#: legacy/builder/container_find_includes.go:364 +msgid "Error while detecting libraries included by %[1]s" +msgstr "Error while detecting libraries included by %[1]s" + +#: legacy/builder/phases/sizer.go:140 legacy/builder/phases/sizer.go:146 +msgid "Error while determining sketch size: %s" +msgstr "Error while determining sketch size: %s" + +#: arduino/builder/compilation_database.go:66 +msgid "Error writing compilation database: %s" +msgstr "Error writing compilation database: %s" + +#: commands/instances.go:416 +msgid "Error writing library_index.json" +msgstr "Error writing library_index.json" + +#: commands/instances.go:419 +msgid "Error writing library_index.json.sig" +msgstr "Error writing library_index.json.sig" + +#: cli/completion/completion.go:53 +msgid "Error: command description is not supported by %v" +msgstr "Error: command description is not supported by %v" + +#: cli/compile/compile.go:150 +msgid "Error: invalid source code overrides data file: %v" +msgstr "Error: invalid source code overrides data file: %v" + +#: cli/board/list.go:88 +msgid "Event" +msgstr "Event" + +#: cli/lib/examples.go:122 +msgid "Examples for library %s" +msgstr "Examples for library %s" + +#: cli/usage.go:28 +msgid "Examples:" +msgstr "Examples:" + +#: cli/debug/debug.go:127 +msgid "Executable to debug" +msgstr "Executable to debug" + +#: commands/debug/debug_info.go:122 commands/upload/upload.go:447 +msgid "Expected compiled sketch in directory %s, but is a file instead" +msgstr "Expected compiled sketch in directory %s, but is a file instead" + +#: cli/board/attach.go:40 cli/board/details.go:43 cli/board/list.go:88 +#: cli/board/list.go:126 cli/board/listall.go:87 cli/board/search.go:85 +msgid "FQBN" +msgstr "FQBN" + +#: cli/board/details.go:120 +msgid "FQBN:" +msgstr "FQBN:" + +#: commands/upload/upload.go:536 +msgid "Failed chip erase" +msgstr "Failed chip erase" + +#: cli/daemon/daemon.go:148 +msgid "Failed choosing port, address: %s" +msgstr "Failed choosing port, address: %s" + +#: commands/upload/upload.go:543 +msgid "Failed programming" +msgstr "Failed programming" + +#: commands/upload/upload.go:539 +msgid "Failed to burn bootloader" +msgstr "Failed to burn bootloader" + +#: commands/instances.go:127 +msgid "Failed to create data directory" +msgstr "Failed to create data directory" + +#: commands/instances.go:117 +msgid "Failed to create downloads directory" +msgstr "Failed to create downloads directory" + +#: cli/daemon/daemon.go:127 +msgid "Failed to listen on TCP port: %[1]s. %[2]s is an invalid port." +msgstr "Failed to listen on TCP port: %[1]s. %[2]s is an invalid port." + +#: cli/daemon/daemon.go:121 +msgid "Failed to listen on TCP port: %[1]s. %[2]s is unknown name." +msgstr "Failed to listen on TCP port: %[1]s. %[2]s is unknown name." + +#: cli/daemon/daemon.go:136 +msgid "Failed to listen on TCP port: %[1]s. Unexpected error: %[2]v" +msgstr "Failed to listen on TCP port: %[1]s. Unexpected error: %[2]v" + +#: cli/daemon/daemon.go:133 +msgid "Failed to listen on TCP port: %s. Address already in use." +msgstr "Failed to listen on TCP port: %s. Address already in use." + +#: commands/upload/upload.go:547 +msgid "Failed uploading" +msgstr "Failed uploading" + +#: cli/board/details.go:165 +msgid "File:" +msgstr "File:" + +#: commands/daemon/debug.go:47 +msgid "First message must contain debug request, not data" +msgstr "First message must contain debug request, not data" + +#: cli/usage.go:30 +msgid "Flags:" +msgstr "Flags:" + +#: cli/arguments/post_install.go:35 +msgid "" +"Force run of post-install scripts (if the CLI is not running interactively)." +msgstr "" +"Force run of post-install scripts (if the CLI is not running interactively)." + +#: cli/arguments/post_install.go:36 +msgid "" +"Force skip of post-install scripts (if the CLI is running interactively)." +msgstr "" +"Force skip of post-install scripts (if the CLI is running interactively)." + +#: arduino/errors.go:729 +msgid "" +"Found %d platform for reference \"%s\":\n" +"%s" +msgstr "" +"Found %d platform for reference \"%s\":\n" +"%s" + +#: cli/arguments/fqbn.go:29 +msgid "Fully Qualified Board Name, e.g.: arduino:avr:uno" +msgstr "Fully Qualified Board Name, e.g.: arduino:avr:uno" + +#: cli/debug/debug.go:141 +msgid "GDB Server path" +msgstr "GDB Server path" + +#: cli/debug/debug.go:140 +msgid "GDB Server type" +msgstr "GDB Server type" + +#: commands/debug/debug.go:173 +msgid "GDB server '%s' is not supported" +msgstr "GDB server '%s' is not supported" + +#: cli/generatedocs/generatedocs.go:38 cli/generatedocs/generatedocs.go:39 +msgid "Generates bash completion and command manpages." +msgstr "Generates bash completion and command manpages." + +#: cli/completion/completion.go:39 +msgid "Generates completion scripts" +msgstr "Generates completion scripts" + +#: cli/completion/completion.go:40 +msgid "Generates completion scripts for various shells" +msgstr "Generates completion scripts for various shells" + +#: legacy/builder/builder.go:64 +msgid "Generating function prototypes..." +msgstr "Generating function prototypes..." + +#: cli/usage.go:31 +msgid "Global Flags:" +msgstr "Global Flags:" + +#: legacy/builder/phases/sizer.go:89 +msgid "" +"Global variables use %[1]s bytes (%[3]s%%) of dynamic memory, leaving %[4]s " +"bytes for local variables. Maximum is %[2]s bytes." +msgstr "" +"Global variables use %[1]s bytes (%[3]s%%) of dynamic memory, leaving %[4]s " +"bytes for local variables. Maximum is %[2]s bytes." + +#: legacy/builder/phases/sizer.go:95 +msgid "Global variables use %[1]s bytes of dynamic memory." +msgstr "Global variables use %[1]s bytes of dynamic memory." + +#: cli/core/list.go:84 cli/core/search.go:114 cli/monitor/monitor.go:195 +#: cli/outdated/outdated.go:62 +msgid "ID" +msgstr "ID" + +#: cli/board/details.go:92 cli/board/details.go:193 +msgid "Id" +msgstr "Id" + +#: cli/board/details.go:134 +msgid "Identification properties:" +msgstr "Identification properties:" + +#: cli/compile/compile.go:116 +msgid "If set built binaries will be exported to the sketch folder." +msgstr "If set built binaries will be exported to the sketch folder." + +#: cli/core/list.go:47 +msgid "" +"If set return all installable and installed cores, including manually " +"installed." +msgstr "" +"If set return all installable and installed cores, including manually " +"installed." + +#: cli/lib/list.go:53 +msgid "Include built-in libraries (from platforms and IDE) in listing." +msgstr "Include built-in libraries (from platforms and IDE) in listing." + +#: cli/sketch/archive.go:51 +msgid "Includes %s directory in the archive." +msgstr "Includes %s directory in the archive." + +#: cli/core/list.go:84 cli/lib/list.go:124 +msgid "Installed" +msgstr "Installed" + +#: commands/instances.go:729 commands/lib/install.go:113 +msgid "Installed %s" +msgstr "Installed %s" + +#: cli/outdated/outdated.go:62 cli/outdated/outdated.go:72 +#: cli/update/update.go:82 cli/update/update.go:92 +msgid "Installed version" +msgstr "Installed version" + +#: commands/bundled_tools.go:49 commands/instances.go:712 +#: commands/lib/install.go:93 +msgid "Installing %s" +msgstr "Installing %s" + +#: commands/core/install.go:110 +msgid "Installing platform %s" +msgstr "Installing platform %s" + +#: cli/core/install.go:41 cli/core/install.go:42 +msgid "Installs one or more cores and corresponding tool dependencies." +msgstr "Installs one or more cores and corresponding tool dependencies." + +#: cli/lib/install.go:48 cli/lib/install.go:49 +msgid "Installs one or more specified libraries into the system." +msgstr "Installs one or more specified libraries into the system." + +#: legacy/builder/container_find_includes.go:388 +msgid "Internal error in cache" +msgstr "Internal error in cache" + +#: arduino/errors.go:300 +msgid "Invalid '%[1]s' property: %[2]s" +msgstr "Invalid '%[1]s' property: %[2]s" + +#: cli/cli.go:268 +msgid "" +"Invalid Call : should show Help, but it is available only in TEXT mode." +msgstr "" +"Invalid Call : should show Help, but it is available only in TEXT mode." + +#: commands/board/attach.go:66 +msgid "Invalid Device URL format" +msgstr "Invalid Device URL format" + +#: arduino/errors.go:62 +msgid "Invalid FQBN" +msgstr "Invalid FQBN" + +#: arduino/errors.go:80 +msgid "Invalid URL" +msgstr "Invalid URL" + +#: commands/instances.go:193 +msgid "Invalid additional URL: %v" +msgstr "Invalid additional URL: %v" + +#: cli/core/download.go:58 cli/core/install.go:66 cli/core/uninstall.go:55 +#: cli/core/upgrade.go:81 cli/lib/download.go:56 cli/lib/uninstall.go:55 +msgid "Invalid argument passed: %v" +msgstr "Invalid argument passed: %v" + +#: legacy/builder/phases/sizer.go:165 +msgid "Invalid data size regexp: %s" +msgstr "Invalid data size regexp: %s" + +#: commands/board/attach.go:76 +msgid "Invalid device port type provided" +msgstr "Invalid device port type provided" + +#: legacy/builder/phases/sizer.go:171 +msgid "Invalid eeprom size regexp: %s" +msgstr "Invalid eeprom size regexp: %s" + +#: arduino/errors.go:48 +msgid "Invalid instance" +msgstr "Invalid instance" + +#: cli/core/upgrade.go:87 +msgid "Invalid item %s" +msgstr "Invalid item %s" + +#: arduino/errors.go:98 +msgid "Invalid library" +msgstr "Invalid library" + +#: httpclient/httpclient_config.go:44 +msgid "Invalid network.proxy '%[1]s': %[2]s" +msgstr "Invalid network.proxy '%[1]s': %[2]s" + +#: cli/cli.go:229 +msgid "Invalid option for --log-level: %s" +msgstr "Invalid option for --log-level: %s" + +#: cli/cli.go:246 +msgid "Invalid output format: %s" +msgstr "Invalid output format: %s" + +#: commands/instances.go:450 commands/instances.go:524 +msgid "Invalid package index in %s" +msgstr "Invalid package index in %s" + +#: cli/core/uninstall.go:61 +msgid "Invalid parameter %s: version not allowed" +msgstr "Invalid parameter %s: version not allowed" + +#: commands/board/list.go:58 +msgid "Invalid pid value: '%s'" +msgstr "Invalid pid value: '%s'" + +#: commands/monitor/monitor.go:127 +msgid "Invalid recipe in platform.txt" +msgstr "Invalid recipe in platform.txt" + +#: legacy/builder/phases/sizer.go:155 +msgid "Invalid size regexp: %s" +msgstr "Invalid size regexp: %s" + +#: arduino/errors.go:116 +msgid "Invalid version" +msgstr "Invalid version" + +#: commands/board/list.go:55 +msgid "Invalid vid value: '%s'" +msgstr "Invalid vid value: '%s'" + +#: cli/compile/compile.go:111 +msgid "" +"Just produce the compilation database, without actually compiling. All build" +" commands are skipped except pre* hooks." +msgstr "" +"Just produce the compilation database, without actually compiling. All build" +" commands are skipped except pre* hooks." + +#: cli/lib/list.go:42 +msgid "LIBNAME" +msgstr "LIBNAME" + +#: cli/lib/check_deps.go:36 cli/lib/install.go:47 +msgid "LIBRARY" +msgstr "LIBRARY" + +#: cli/lib/download.go:36 cli/lib/examples.go:43 cli/lib/search.go:43 +#: cli/lib/uninstall.go:36 +msgid "LIBRARY_NAME" +msgstr "LIBRARY_NAME" + +#: cli/core/list.go:84 +msgid "Latest" +msgstr "Latest" + +#: legacy/builder/phases/libraries_builder.go:89 +msgid "Library %[1]s has been declared precompiled:" +msgstr "Library %[1]s has been declared precompiled:" + +#: commands/lib/uninstall.go:37 +msgid "Library %s is not installed" +msgstr "Library %s is not installed" + +#: arduino/errors.go:348 +msgid "Library '%s' not found" +msgstr "Library '%s' not found" + +#: legacy/builder/fail_if_imported_library_is_wrong.go:45 +msgid "" +"Library can't use both '%[1]s' and '%[2]s' folders. Double check in '%[3]s'." +msgstr "" +"Library can't use both '%[1]s' and '%[2]s' folders. Double check in '%[3]s'." + +#: arduino/errors.go:464 +msgid "Library install failed" +msgstr "Library install failed" + +#: commands/lib/install.go:123 commands/lib/install.go:133 +msgid "Library installed" +msgstr "Library installed" + +#: cli/outdated/outdated.go:72 cli/update/update.go:92 +msgid "Library name" +msgstr "Library name" + +#: cli/lib/search.go:169 +msgid "License: %s" +msgstr "License: %s" + +#: legacy/builder/builder.go:83 +msgid "Linking everything together..." +msgstr "Linking everything together..." + +#: cli/board/listall.go:40 cli/board/search.go:39 +msgid "" +"List all boards that have the support platform installed. You can search\n" +"for a specific board if you specify the board name" +msgstr "" +"List all boards that have the support platform installed. You can search\n" +"for a specific board if you specify the board name" + +#: cli/board/listall.go:39 cli/board/search.go:38 +msgid "List all known boards and their corresponding FQBN." +msgstr "List all known boards and their corresponding FQBN." + +#: cli/board/list.go:43 +msgid "List connected boards." +msgstr "List connected boards." + +#: cli/compile/compile.go:94 +msgid "" +"List of custom build properties separated by commas. Or can be used multiple" +" times for multiple properties." +msgstr "" +"List of custom build properties separated by commas. Or can be used multiple" +" times for multiple properties." + +#: cli/compile/compile.go:108 +msgid "" +"List of custom libraries dir paths separated by commas. Or can be used " +"multiple times for multiple libraries dir paths." +msgstr "" +"List of custom libraries dir paths separated by commas. Or can be used " +"multiple times for multiple libraries dir paths." + +#: cli/compile/compile.go:106 +msgid "" +"List of paths to libraries root folders. Libraries set this way have top " +"priority in case of conflicts. Can be used multiple times for different " +"libraries." +msgstr "" +"List of paths to libraries root folders. Libraries set this way have top " +"priority in case of conflicts. Can be used multiple times for different " +"libraries." + +#: cli/lib/list.go:55 +msgid "List updatable libraries." +msgstr "List updatable libraries." + +#: cli/core/list.go:46 +msgid "List updatable platforms." +msgstr "List updatable platforms." + +#: cli/board/board.go:33 +msgid "Lists all connected boards." +msgstr "Lists all connected boards." + +#: cli/outdated/outdated.go:38 +msgid "Lists cores and libraries that can be upgraded" +msgstr "Lists cores and libraries that can be upgraded" + +#: commands/instances.go:207 commands/instances.go:218 +#: commands/instances.go:320 +msgid "Loading index file: %v" +msgstr "Loading index file: %v" + +#: commands/instances.go:329 +msgid "Loading libraries: %v" +msgstr "Loading libraries: %v" + +#: cli/lib/list.go:124 +msgid "Location" +msgstr "Location" + +#: legacy/builder/phases/sizer.go:130 +msgid "Low memory available, stability problems may occur." +msgstr "Low memory available, stability problems may occur." + +#: cli/lib/search.go:164 +msgid "Maintainer: %s" +msgstr "Maintainer: %s" + +#: cli/arguments/port.go:54 cli/board/list.go:50 +msgid "Max time to wait for port discovery, e.g.: 30s, 1m" +msgstr "Max time to wait for port discovery, e.g.: 30s, 1m" + +#: cli/cli.go:109 +msgid "" +"Messages with this level and above will be logged. Valid levels are: %s" +msgstr "" +"Messages with this level and above will be logged. Valid levels are: %s" + +#: legacy/builder/fail_if_imported_library_is_wrong.go:40 +msgid "Missing '%[1]s' from library in %[2]s" +msgstr "Missing '%[1]s' from library in %[2]s" + +#: arduino/errors.go:152 +msgid "Missing FQBN (Fully Qualified Board Name)" +msgstr "Missing FQBN (Fully Qualified Board Name)" + +#: arduino/errors.go:206 +msgid "Missing port" +msgstr "Missing port" + +#: arduino/errors.go:182 arduino/errors.go:194 +msgid "Missing port protocol" +msgstr "Missing port protocol" + +#: arduino/errors.go:232 +msgid "Missing programmer" +msgstr "Missing programmer" + +#: legacy/builder/phases/sizer.go:159 +msgid "Missing size regexp" +msgstr "Missing size regexp" + +#: arduino/errors.go:400 +msgid "Missing sketch path" +msgstr "Missing sketch path" + +#: arduino/errors.go:281 +msgid "Monitor '%s' not found" +msgstr "Monitor '%s' not found" + +#: cli/monitor/monitor.go:143 +msgid "Monitor port settings:" +msgstr "Monitor port settings:" + +#: legacy/builder/print_used_and_not_used_libraries.go:45 +msgid "Multiple libraries were found for \"%[1]s\"" +msgstr "Multiple libraries were found for \"%[1]s\"" + +#: cli/board/details.go:193 cli/core/list.go:84 cli/core/search.go:114 +#: cli/lib/list.go:124 cli/outdated/outdated.go:62 +msgid "Name" +msgstr "Name" + +#: cli/lib/search.go:143 +msgid "Name: \"%s\"" +msgstr "Name: \"%s\"" + +#: cli/outdated/outdated.go:62 cli/outdated/outdated.go:72 +#: cli/update/update.go:82 cli/update/update.go:92 +msgid "New version" +msgstr "New version" + +#: cli/board/list.go:116 +msgid "No boards found." +msgstr "No boards found." + +#: cli/lib/examples.go:107 +msgid "No libraries found." +msgstr "No libraries found." + +#: cli/lib/list.go:116 +msgid "No libraries installed." +msgstr "No libraries installed." + +#: cli/lib/search.go:127 +msgid "No libraries matching your search." +msgstr "No libraries matching your search." + +#: cli/lib/search.go:138 +msgid "" +"No libraries matching your search.\n" +"Did you mean...\n" +msgstr "" +"No libraries matching your search.\n" +"Did you mean...\n" + +#: arduino/errors.go:220 +msgid "No monitor available for the port protocol %s" +msgstr "No monitor available for the port protocol %s" + +#: cli/core/search.go:124 +msgid "No platforms matching your search." +msgstr "No platforms matching your search." + +#: commands/board/attach.go:92 +msgid "No supported board found at %s" +msgstr "No supported board found at %s" + +#: cli/lib/list.go:114 +msgid "No updates available." +msgstr "No updates available." + +#: commands/upload/upload.go:496 +msgid "No upload port found, using %s as fallback" +msgstr "No upload port found, using %s as fallback" + +#: arduino/errors.go:367 +msgid "No valid dependencies solution found" +msgstr "No valid dependencies solution found" + +#: legacy/builder/phases/sizer.go:120 +msgid "Not enough memory; see %[1]s for tips on reducing your footprint." +msgstr "Not enough memory; see %[1]s for tips on reducing your footprint." + +#: legacy/builder/print_used_and_not_used_libraries.go:48 +msgid "Not used: %[1]s" +msgstr "Not used: %[1]s" + +#: cli/board/details.go:164 +msgid "OS:" +msgstr "OS:" + +#: cli/board/details.go:128 +msgid "Official Arduino board:" +msgstr "Official Arduino board:" + +#: cli/monitor/monitor.go:54 cli/monitor/monitor.go:55 +msgid "Open a communication port with a board." +msgstr "Open a communication port with a board." + +#: cli/board/details.go:176 +msgid "Option:" +msgstr "Option:" + +#: cli/compile/compile.go:98 +msgid "" +"Optional, can be: %s. Used to tell gcc which warning level to use (-W flag)." +msgstr "" +"Optional, can be: %s. Used to tell gcc which warning level to use (-W flag)." + +#: cli/compile/compile.go:112 +msgid "Optional, cleanup the build folder and do not use any cached build." +msgstr "Optional, cleanup the build folder and do not use any cached build." + +#: cli/compile/compile.go:109 +msgid "" +"Optional, optimize compile output for debugging, rather than for release." +msgstr "" +"Optional, optimize compile output for debugging, rather than for release." + +#: cli/compile/compile.go:100 +msgid "Optional, suppresses almost every output." +msgstr "Optional, suppresses almost every output." + +#: cli/compile/compile.go:99 cli/upload/upload.go:65 +msgid "Optional, turns on verbose mode." +msgstr "Optional, turns on verbose mode." + +#: cli/compile/compile.go:117 +msgid "" +"Optional. Path to a .json file that contains a set of replacements of the " +"sketch source code." +msgstr "" +"Optional. Path to a .json file that contains a set of replacements of the " +"sketch source code." + +#: commands/daemon/monitor.go:72 +msgid "OutputRate in Null monitor must be a float64" +msgstr "OutputRate in Null monitor must be a float64" + +#: cli/compile/compile.go:96 +msgid "" +"Override a build property with a custom value. Can be used multiple times " +"for multiple properties." +msgstr "" +"Override a build property with a custom value. Can be used multiple times " +"for multiple properties." + +#: cli/config/init.go:57 +msgid "Overwrite existing config file." +msgstr "Overwrite existing config file." + +#: cli/core/download.go:36 cli/core/install.go:40 cli/core/uninstall.go:36 +#: cli/core/upgrade.go:38 +msgid "PACKAGER" +msgstr "PACKAGER" + +#: cli/board/details.go:144 +msgid "Package URL:" +msgstr "Package URL:" + +#: cli/board/details.go:143 +msgid "Package maintainer:" +msgstr "Package maintainer:" + +#: cli/board/details.go:142 +msgid "Package name:" +msgstr "Package name:" + +#: cli/board/details.go:146 +msgid "Package online help:" +msgstr "Package online help:" + +#: cli/board/details.go:145 +msgid "Package website:" +msgstr "Package website:" + +#: cli/lib/search.go:166 +msgid "Paragraph: %s" +msgstr "Paragraph: %s" + +#: cli/cli.go:113 +msgid "Path to the file where logs will be written." +msgstr "Path to the file where logs will be written." + +#: cli/compile/compile.go:92 +msgid "" +"Path where to save compiled files. If omitted, a directory will be created " +"in the default temporary path of your OS." +msgstr "" +"Path where to save compiled files. If omitted, a directory will be created " +"in the default temporary path of your OS." + +#: commands/upload/upload.go:477 +msgid "Performing 1200-bps touch reset on serial port %s" +msgstr "Performing 1200-bps touch reset on serial port %s" + +#: commands/core/install.go:73 +msgid "Platform %s already installed" +msgstr "Platform %s already installed" + +#: commands/core/install.go:177 +msgid "Platform %s installed" +msgstr "Platform %s installed" + +#: commands/core/uninstall.go:85 +msgid "Platform %s uninstalled" +msgstr "Platform %s uninstalled" + +#: arduino/errors.go:385 +msgid "Platform '%s' is already at the latest version" +msgstr "Platform '%s' is already at the latest version" + +#: arduino/errors.go:329 +msgid "Platform '%s' not found" +msgstr "Platform '%s' not found" + +#: cli/board/search.go:85 +msgid "Platform ID" +msgstr "Platform ID" + +#: cli/board/details.go:152 +msgid "Platform URL:" +msgstr "Platform URL:" + +#: cli/board/details.go:151 +msgid "Platform architecture:" +msgstr "Platform architecture:" + +#: cli/board/details.go:150 +msgid "Platform category:" +msgstr "Platform category:" + +#: cli/board/details.go:157 +msgid "Platform checksum:" +msgstr "Platform checksum:" + +#: cli/board/details.go:153 +msgid "Platform file name:" +msgstr "Platform file name:" + +#: cli/board/details.go:149 +msgid "Platform name:" +msgstr "Platform name:" + +#: cli/board/details.go:155 +msgid "Platform size (bytes):" +msgstr "Platform size (bytes):" + +#: arduino/errors.go:136 +msgid "" +"Please specify an FQBN. Multiple possible ports detected on port %s with " +"protocol %s" +msgstr "" +"Please specify an FQBN. Multiple possible ports detected on port %s with " +"protocol %s" + +#: cli/board/list.go:88 cli/board/list.go:126 +msgid "Port" +msgstr "Port" + +#: cli/monitor/monitor.go:164 cli/monitor/monitor.go:171 +msgid "Port closed:" +msgstr "Port closed:" + +#: arduino/errors.go:558 +msgid "Port monitor error" +msgstr "Port monitor error" + +#: legacy/builder/phases/libraries_builder.go:99 +#: legacy/builder/phases/libraries_builder.go:107 +msgid "Precompiled library in \"%[1]s\" not found" +msgstr "Precompiled library in \"%[1]s\" not found" + +#: cli/board/details.go:44 +msgid "Print details about a board." +msgstr "Print details about a board." + +#: cli/compile/compile.go:88 +msgid "Print preprocessed code to stdout instead of compiling." +msgstr "Print preprocessed code to stdout instead of compiling." + +#: cli/cli.go:107 +msgid "Print the logs on the standard output." +msgstr "Print the logs on the standard output." + +#: cli/config/dump.go:31 +msgid "Prints the current configuration" +msgstr "Prints the current configuration" + +#: cli/config/dump.go:32 +msgid "Prints the current configuration." +msgstr "Prints the current configuration." + +#: arduino/errors.go:262 +msgid "Programmer '%s' not found" +msgstr "Programmer '%s' not found" + +#: cli/board/details.go:92 +msgid "Programmer name" +msgstr "Programmer name" + +#: cli/arguments/programmer.go:29 +msgid "Programmer to use, e.g: atmel_ice" +msgstr "Programmer to use, e.g: atmel_ice" + +#: cli/board/details.go:193 +msgid "Programmers:" +msgstr "Programmers:" + +#: arduino/errors.go:314 +msgid "Property '%s' is undefined" +msgstr "Property '%s' is undefined" + +#: cli/board/list.go:126 +msgid "Protocol" +msgstr "Protocol" + +#: cli/lib/search.go:176 +msgid "Provides includes: %s" +msgstr "Provides includes: %s" + +#: cli/config/remove.go:32 cli/config/remove.go:33 +msgid "Removes one or more values from a setting." +msgstr "Removes one or more values from a setting." + +#: commands/instances.go:722 commands/lib/install.go:106 +msgid "Replacing %[1]s with %[2]s" +msgstr "Replacing %[1]s with %[2]s" + +#: cli/board/details.go:161 +msgid "Required tool:" +msgstr "Required tool:" + +#: cli/daemon/daemon.go:56 +msgid "Run as a daemon on port: %s" +msgstr "Run as a daemon on port: %s" + +#: cli/monitor/monitor.go:64 +msgid "Run in silent mode, show only monitor input and output." +msgstr "Run in silent mode, show only monitor input and output." + +#: cli/daemon/daemon.go:57 +msgid "" +"Running as a daemon the initialization of cores and libraries is done only " +"once." +msgstr "" +"Running as a daemon the initialization of cores and libraries is done only " +"once." + +#: legacy/builder/phases/core_builder.go:48 +msgid "Running normal build of the core..." +msgstr "Running normal build of the core..." + +#: cli/compile/compile.go:90 +msgid "Save build artifacts in this directory." +msgstr "Save build artifacts in this directory." + +#: cli/core/search.go:50 +msgid "Search for a core in Boards Manager using the specified keywords." +msgstr "Search for a core in Boards Manager using the specified keywords." + +#: cli/core/search.go:49 +msgid "Search for a core in Boards Manager." +msgstr "Search for a core in Boards Manager." + +#: cli/lib/search.go:45 +msgid "Search for one or more libraries data (case insensitive search)." +msgstr "Search for one or more libraries data (case insensitive search)." + +#: cli/lib/search.go:44 +msgid "Searches for one or more libraries data." +msgstr "Searches for one or more libraries data." + +#: commands/board/attach.go:109 +msgid "Selected fqbn: %s" +msgstr "Selected fqbn: %s" + +#: cli/lib/search.go:165 +msgid "Sentence: %s" +msgstr "Sentence: %s" + +#: commands/download.go:63 +msgid "Server responded with: %s" +msgstr "Server responded with: %s" + +#: cli/config/set.go:33 cli/config/set.go:34 +msgid "Sets a setting value." +msgstr "Sets a setting value." + +#: cli/config/init.go:55 cli/config/init.go:56 +msgid "Sets where to save the configuration file." +msgstr "Sets where to save the configuration file." + +#: cli/monitor/monitor.go:195 +msgid "Setting" +msgstr "Setting" + +#: cli/config/delete.go:62 cli/config/validate.go:49 +msgid "Settings key doesn't exist" +msgstr "Settings key doesn't exist" + +#: cli/core/search.go:55 +msgid "Show all available core versions." +msgstr "Show all available core versions." + +#: cli/compile/compile.go:87 +msgid "Show all build properties used instead of compiling." +msgstr "Show all build properties used instead of compiling." + +#: cli/monitor/monitor.go:62 +msgid "Show all the settings of the communication port." +msgstr "Show all the settings of the communication port." + +#: cli/board/listall.go:48 cli/board/search.go:47 +msgid "Show also boards marked as 'hidden' in the platform" +msgstr "Show also boards marked as 'hidden' in the platform" + +#: cli/board/details.go:52 +msgid "Show full board details" +msgstr "Show full board details" + +#: cli/board/details.go:45 +msgid "" +"Show information about a board, in particular if the board has options to be" +" specified in the FQBN." +msgstr "" +"Show information about a board, in particular if the board has options to be" +" specified in the FQBN." + +#: cli/lib/search.go:50 +msgid "Show library names only." +msgstr "Show library names only." + +#: cli/board/details.go:53 +msgid "Show list of available programmers" +msgstr "Show list of available programmers" + +#: cli/debug/debug.go:64 +msgid "" +"Show metadata about the debug session instead of starting the debugger." +msgstr "" +"Show metadata about the debug session instead of starting the debugger." + +#: cli/update/update.go:46 +msgid "Show outdated cores and libraries after index update" +msgstr "Show outdated cores and libraries after index update" + +#: cli/lib/list.go:43 +msgid "Shows a list of installed libraries." +msgstr "Shows a list of installed libraries." + +#: cli/lib/list.go:44 +msgid "" +"Shows a list of installed libraries.\n" +"\n" +"If the LIBNAME parameter is specified the listing is limited to that specific\n" +"library. By default the libraries provided as built-in by platforms/core are\n" +"not listed, they can be listed by adding the --all flag." +msgstr "" +"Shows a list of installed libraries.\n" +"\n" +"If the LIBNAME parameter is specified the listing is limited to that specific\n" +"library. By default the libraries provided as built-in by platforms/core are\n" +"not listed, they can be listed by adding the --all flag." + +#: cli/core/list.go:40 cli/core/list.go:41 +msgid "Shows the list of installed platforms." +msgstr "Shows the list of installed platforms." + +#: cli/lib/examples.go:44 +msgid "Shows the list of the examples for libraries." +msgstr "Shows the list of the examples for libraries." + +#: cli/lib/examples.go:45 +msgid "" +"Shows the list of the examples for libraries. A name may be given as " +"argument to search a specific library." +msgstr "" +"Shows the list of the examples for libraries. A name may be given as " +"argument to search a specific library." + +#: cli/version/version.go:39 +msgid "" +"Shows the version number of Arduino CLI which is installed on your system." +msgstr "" +"Shows the version number of Arduino CLI which is installed on your system." + +#: cli/version/version.go:38 +msgid "Shows version number of Arduino CLI." +msgstr "Shows version number of Arduino CLI." + +#: cli/board/details.go:166 +msgid "Size (bytes):" +msgstr "Size (bytes):" + +#: legacy/builder/fail_if_buildpath_equals_sketchpath.go:42 +msgid "" +"Sketch cannot be located in build path. Please specify a different build " +"path" +msgstr "" +"Sketch cannot be located in build path. Please specify a different build " +"path" + +#: cli/sketch/new.go:65 +msgid "Sketch created in: %s" +msgstr "Sketch created in: %s" + +#: legacy/builder/phases/sizer.go:115 +msgid "Sketch too big; see %[1]s for tips on reducing it." +msgstr "Sketch too big; see %[1]s for tips on reducing it." + +#: legacy/builder/phases/sizer.go:83 +msgid "" +"Sketch uses %[1]s bytes (%[3]s%%) of program storage space. Maximum is %[2]s" +" bytes." +msgstr "" +"Sketch uses %[1]s bytes (%[3]s%%) of program storage space. Maximum is %[2]s" +" bytes." + +#: cli/arguments/sketch.go:61 +msgid "" +"Sketches with .pde extension are deprecated, please rename the following " +"files to .ino:" +msgstr "" +"Sketches with .pde extension are deprecated, please rename the following " +"files to .ino:" + +#: legacy/builder/phases/linker.go:35 +msgid "Skip linking of final executable." +msgstr "Skip linking of final executable." + +#: commands/upload/upload.go:470 +msgid "Skipping 1200-bps touch reset: no serial port selected!" +msgstr "Skipping 1200-bps touch reset: no serial port selected!" + +#: legacy/builder/builder_utils/utils.go:437 +msgid "Skipping archive creation of: %[1]s" +msgstr "Skipping archive creation of: %[1]s" + +#: legacy/builder/builder_utils/utils.go:256 +msgid "Skipping compile of: %[1]s" +msgstr "Skipping compile of: %[1]s" + +#: legacy/builder/container_find_includes.go:335 +msgid "Skipping dependencies detection for precompiled library %[1]s" +msgstr "Skipping dependencies detection for precompiled library %[1]s" + +#: commands/instances.go:859 +msgid "Skipping platform configuration" +msgstr "Skipping platform configuration" + +#: commands/core/install.go:173 +msgid "Skipping platform configuration." +msgstr "Skipping platform configuration." + +#: legacy/builder/recipe_runner.go:54 +msgid "Skipping: %[1]s" +msgstr "Skipping: %[1]s" + +#: arduino/serialutils/serialutils.go:133 +msgid "TOUCH: error during reset: %s" +msgstr "TOUCH: error during reset: %s" + +#: cli/daemon/daemon.go:62 +msgid "The TCP port the daemon will listen to" +msgstr "The TCP port the daemon will listen to" + +#: cli/cli.go:124 +msgid "The custom config file (if not specified the default will be used)." +msgstr "The custom config file (if not specified the default will be used)." + +#: cli/config/add.go:52 +msgid "" +"The key '%[1]v' is not a list of items, can't add to it.\n" +"Maybe use '%[2]s'?" +msgstr "" +"The key '%[1]v' is not a list of items, can't add to it.\n" +"Maybe use '%[2]s'?" + +#: cli/config/remove.go:52 +msgid "" +"The key '%[1]v' is not a list of items, can't remove from it.\n" +"Maybe use '%[2]s'?" +msgstr "" +"The key '%[1]v' is not a list of items, can't remove from it.\n" +"Maybe use '%[2]s'?" + +#: cli/cli.go:115 cli/cli.go:120 +msgid "The output format for the logs, can be: %s" +msgstr "The output format for the logs, can be: %s" + +#: legacy/builder/phases/libraries_builder.go:147 +msgid "The platform does not support '%[1]s' for precompiled libraries." +msgstr "The platform does not support '%[1]s' for precompiled libraries." + +#: cli/lib/upgrade.go:34 +msgid "" +"This command upgrades an installed library to the latest available version. " +"Multiple libraries can be passed separated by a space. If no arguments are " +"provided, the command will upgrade all the installed libraries where an " +"update is available." +msgstr "" +"This command upgrades an installed library to the latest available version. " +"Multiple libraries can be passed separated by a space. If no arguments are " +"provided, the command will upgrade all the installed libraries where an " +"update is available." + +#: cli/outdated/outdated.go:39 +msgid "" +"This commands shows a list of installed cores and/or libraries\n" +"that can be upgraded. If nothing needs to be updated the output is empty." +msgstr "" +"This commands shows a list of installed cores and/or libraries\n" +"that can be upgraded. If nothing needs to be updated the output is empty." + +#: commands/bundled_tools.go:44 commands/core/install.go:80 +#: commands/instances.go:773 +msgid "Tool %s already installed" +msgstr "Tool %s already installed" + +#: commands/core/uninstall.go:101 +msgid "Tool %s uninstalled" +msgstr "Tool %s uninstalled" + +#: commands/debug/debug.go:134 +msgid "Toolchain '%s' is not supported" +msgstr "Toolchain '%s' is not supported" + +#: cli/debug/debug.go:135 +msgid "Toolchain custom configurations" +msgstr "Toolchain custom configurations" + +#: cli/debug/debug.go:129 +msgid "Toolchain path" +msgstr "Toolchain path" + +#: cli/debug/debug.go:130 +msgid "Toolchain prefix" +msgstr "Toolchain prefix" + +#: cli/debug/debug.go:128 +msgid "Toolchain type" +msgstr "Toolchain type" + +#: cli/burnbootloader/burnbootloader.go:58 +msgid "Turns on verbose mode." +msgstr "Turns on verbose mode." + +#: cli/board/list.go:88 cli/board/list.go:126 +msgid "Type" +msgstr "Type" + +#: cli/lib/search.go:173 +msgid "Types: %s" +msgstr "Types: %s" + +#: cli/board/details.go:168 +msgid "URL:" +msgstr "URL:" + +#: legacy/builder/phases/core_builder.go:128 +msgid "" +"Unable to cache built core, please tell %[1]s maintainers to follow %[2]s" +msgstr "" +"Unable to cache built core, please tell %[1]s maintainers to follow %[2]s" + +#: configuration/configuration.go:126 +msgid "Unable to get Documents Folder: %v" +msgstr "Unable to get Documents Folder: %v" + +#: configuration/configuration.go:101 +msgid "Unable to get Local App Data Folder: %v" +msgstr "Unable to get Local App Data Folder: %v" + +#: configuration/configuration.go:89 configuration/configuration.go:114 +msgid "Unable to get user home dir: %v" +msgstr "Unable to get user home dir: %v" + +#: cli/cli.go:215 +msgid "Unable to open file for logging: %s" +msgstr "Unable to open file for logging: %s" + +#: commands/core/uninstall.go:77 commands/lib/uninstall.go:39 +msgid "Uninstalling %s" +msgstr "Uninstalling %s" + +#: commands/core/uninstall.go:93 +msgid "Uninstalling %s, tool is no more required" +msgstr "Uninstalling %s, tool is no more required" + +#: commands/instances.go:838 +msgid "Uninstalling %s: tool is no more required" +msgstr "Uninstalling %s: tool is no more required" + +#: cli/core/uninstall.go:37 cli/core/uninstall.go:38 +msgid "" +"Uninstalls one or more cores and corresponding tool dependencies if no " +"longer used." +msgstr "" +"Uninstalls one or more cores and corresponding tool dependencies if no " +"longer used." + +#: cli/lib/uninstall.go:37 cli/lib/uninstall.go:38 +msgid "Uninstalls one or more libraries." +msgstr "Uninstalls one or more libraries." + +#: cli/board/list.go:158 +msgid "Unknown" +msgstr "Unknown" + +#: arduino/errors.go:166 +msgid "Unknown FQBN" +msgstr "Unknown FQBN" + +#: cli/update/update.go:40 +msgid "Updates the index of cores and libraries" +msgstr "Updates the index of cores and libraries" + +#: cli/update/update.go:41 +msgid "Updates the index of cores and libraries to the latest versions." +msgstr "Updates the index of cores and libraries to the latest versions." + +#: cli/core/update_index.go:36 +msgid "Updates the index of cores to the latest version." +msgstr "Updates the index of cores to the latest version." + +#: cli/core/update_index.go:35 +msgid "Updates the index of cores." +msgstr "Updates the index of cores." + +#: cli/lib/update_index.go:36 +msgid "Updates the libraries index to the latest version." +msgstr "Updates the libraries index to the latest version." + +#: cli/lib/update_index.go:35 +msgid "Updates the libraries index." +msgstr "Updates the libraries index." + +#: commands/instances.go:455 commands/instances.go:481 +#: commands/instances.go:511 +msgid "Updating index: %s" +msgstr "Updating index: %s" + +#: commands/instances.go:382 +msgid "Updating index: library_index.json.gz" +msgstr "Updating index: library_index.json.gz" + +#: commands/instances.go:392 +msgid "Updating index: library_index.json.sig" +msgstr "Updating index: library_index.json.sig" + +#: commands/instances.go:795 +msgid "Updating platform %s" +msgstr "Updating platform %s" + +#: commands/core/upgrade.go:55 +msgid "Upgrade doesn't accept parameters with version" +msgstr "Upgrade doesn't accept parameters with version" + +#: cli/upgrade/upgrade.go:43 +msgid "Upgrades installed cores and libraries to latest version." +msgstr "Upgrades installed cores and libraries to latest version." + +#: cli/upgrade/upgrade.go:42 +msgid "Upgrades installed cores and libraries." +msgstr "Upgrades installed cores and libraries." + +#: cli/lib/upgrade.go:33 +msgid "Upgrades installed libraries." +msgstr "Upgrades installed libraries." + +#: cli/core/upgrade.go:39 cli/core/upgrade.go:40 +msgid "Upgrades one or all installed platforms to the latest version." +msgstr "Upgrades one or all installed platforms to the latest version." + +#: commands/core/install.go:114 +msgid "Upgrading platform %[1]s with %[2]s" +msgstr "Upgrading platform %[1]s with %[2]s" + +#: cli/upload/upload.go:50 +msgid "Upload Arduino sketches." +msgstr "Upload Arduino sketches." + +#: cli/upload/upload.go:51 +msgid "" +"Upload Arduino sketches. This does NOT compile the sketch prior to upload." +msgstr "" +"Upload Arduino sketches. This does NOT compile the sketch prior to upload." + +#: cli/arguments/port.go:46 +msgid "Upload port address, e.g.: COM3 or /dev/ttyACM2" +msgstr "Upload port address, e.g.: COM3 or /dev/ttyACM2" + +#: commands/upload/upload.go:494 +msgid "Upload port found on %s" +msgstr "Upload port found on %s" + +#: cli/arguments/port.go:50 +msgid "Upload port protocol, e.g: serial" +msgstr "Upload port protocol, e.g: serial" + +#: cli/compile/compile.go:101 +msgid "Upload the binary after the compilation." +msgstr "Upload the binary after the compilation." + +#: cli/burnbootloader/burnbootloader.go:48 +msgid "Upload the bootloader on the board using an external programmer." +msgstr "Upload the bootloader on the board using an external programmer." + +#: cli/burnbootloader/burnbootloader.go:47 +msgid "Upload the bootloader." +msgstr "Upload the bootloader." + +#: cli/compile/compile.go:228 cli/upload/upload.go:117 +msgid "" +"Uploading to specified board using %s protocol requires the following info:" +msgstr "" +"Uploading to specified board using %s protocol requires the following info:" + +#: cli/usage.go:26 +msgid "Usage:" +msgstr "Usage:" + +#: cli/usage.go:33 +msgid "Use %s for more information about a command." +msgstr "Use %s for more information about a command." + +#: legacy/builder/print_used_and_not_used_libraries.go:46 +msgid "Used: %[1]s" +msgstr "Used: %[1]s" + +#: arduino/libraries/librariesmanager/install.go:68 +#: arduino/libraries/librariesmanager/install.go:84 +#: arduino/libraries/librariesmanager/install.go:106 +#: arduino/libraries/librariesmanager/install.go:190 +msgid "User directory not set" +msgstr "User directory not set" + +#: legacy/builder/target_board_resolver.go:43 +msgid "Using board '%[1]s' from platform in folder: %[2]s" +msgstr "Using board '%[1]s' from platform in folder: %[2]s" + +#: legacy/builder/container_find_includes.go:347 +msgid "Using cached library dependencies for file: %[1]s" +msgstr "Using cached library dependencies for file: %[1]s" + +#: legacy/builder/target_board_resolver.go:44 +msgid "Using core '%[1]s' from platform in folder: %[2]s" +msgstr "Using core '%[1]s' from platform in folder: %[2]s" + +#: legacy/builder/print_used_libraries_if_verbose.go:44 +msgid "Using library %[1]s at version %[2]s in folder: %[3]s %[4]s" +msgstr "Using library %[1]s at version %[2]s in folder: %[3]s %[4]s" + +#: legacy/builder/print_used_libraries_if_verbose.go:38 +msgid "Using library %[1]s in folder: %[2]s %[3]s" +msgstr "Using library %[1]s in folder: %[2]s %[3]s" + +#: legacy/builder/phases/core_builder.go:105 +msgid "Using precompiled core: %[1]s" +msgstr "Using precompiled core: %[1]s" + +#: legacy/builder/phases/libraries_builder.go:96 +#: legacy/builder/phases/libraries_builder.go:104 +msgid "Using precompiled library in %[1]s" +msgstr "Using precompiled library in %[1]s" + +#: legacy/builder/builder_utils/utils.go:254 +#: legacy/builder/builder_utils/utils.go:460 +msgid "Using previously compiled file: %[1]s" +msgstr "Using previously compiled file: %[1]s" + +#: cli/core/download.go:36 cli/core/install.go:40 +msgid "VERSION" +msgstr "VERSION" + +#: cli/lib/check_deps.go:36 cli/lib/install.go:47 +msgid "VERSION_NUMBER" +msgstr "VERSION_NUMBER" + +#: cli/monitor/monitor.go:195 +msgid "Values" +msgstr "Values" + +#: cli/burnbootloader/burnbootloader.go:57 cli/compile/compile.go:103 +#: cli/upload/upload.go:64 +msgid "Verify uploaded binary after the upload." +msgstr "Verify uploaded binary after the upload." + +#: cli/core/search.go:114 +msgid "Version" +msgstr "Version" + +#: cli/lib/search.go:174 +msgid "Versions: %s" +msgstr "Versions: %s" + +#: commands/core/install.go:169 +msgid "WARNING cannot configure platform: %s" +msgstr "WARNING cannot configure platform: %s" + +#: commands/instances.go:855 +msgid "WARNING: cannot run post install: %s" +msgstr "WARNING: cannot run post install: %s" + +#: legacy/builder/warn_about_arch_incompatible_libraries.go:39 +msgid "" +"WARNING: library %[1]s claims to run on %[2]s architecture(s) and may be " +"incompatible with your current board which runs on %[3]s architecture(s)." +msgstr "" +"WARNING: library %[1]s claims to run on %[2]s architecture(s) and may be " +"incompatible with your current board which runs on %[3]s architecture(s)." + +#: commands/upload/upload.go:483 +msgid "Waiting for upload port..." +msgstr "Waiting for upload port..." + +#: legacy/builder/add_build_board_property_if_missing.go:36 +msgid "" +"Warning: Board %[1]s doesn't define a %[2]s preference. Auto-set to: %[3]s" +msgstr "" +"Warning: Board %[1]s doesn't define a %[2]s preference. Auto-set to: %[3]s" + +#: legacy/builder/warn_about_platform_rewrites.go:40 +msgid "" +"Warning: platform.txt from core '%[1]s' contains deprecated %[2]s, " +"automatically converted to %[3]s. Consider upgrading this core." +msgstr "" +"Warning: platform.txt from core '%[1]s' contains deprecated %[2]s, " +"automatically converted to %[3]s. Consider upgrading this core." + +#: commands/upload/upload.go:379 +msgid "" +"Warning: tool '%s' is not installed. It might not be available for your OS." +msgstr "" +"Warning: tool '%s' is not installed. It might not be available for your OS." + +#: cli/lib/search.go:167 +msgid "Website: %s" +msgstr "Website: %s" + +#: cli/compile/compile.go:104 +msgid "" +"When specified, VID/PID specific build properties are used, if board " +"supports them." +msgstr "" +"When specified, VID/PID specific build properties are used, if board " +"supports them." + +#: cli/config/init.go:42 +msgid "Writes current configuration to a configuration file." +msgstr "Writes current configuration to a configuration file." + +#: cli/config/init.go:45 +msgid "" +"Writes current configuration to the configuration file in the data " +"directory." +msgstr "" +"Writes current configuration to the configuration file in the data " +"directory." + +#: cli/config/set.go:77 +msgid "Writing config file: %v" +msgstr "Writing config file: %v" + +#: cli/arguments/arguments.go:37 +msgid "and" +msgstr "and" + +#: arduino/resources/checksums.go:80 +msgid "archive hash differs from hash in index" +msgstr "archive hash differs from hash in index" + +#: arduino/libraries/librariesmanager/install.go:137 +msgid "archive is not valid: multiple files found in zip file top level" +msgstr "archive is not valid: multiple files found in zip file top level" + +#: cli/sketch/archive.go:38 +msgid "archivePath" +msgstr "archivePath" + +#: legacy/builder/preprocess_sketch.go:103 +msgid "arduino-preprocessor pattern is missing" +msgstr "arduino-preprocessor pattern is missing" + +#: commands/upload/upload.go:640 +msgid "autodetect build artifact: %s" +msgstr "autodetect build artifact: %s" + +#: commands/upload/upload.go:625 +msgid "binary file not found in %s" +msgstr "binary file not found in %s" + +#: arduino/cores/packagemanager/package_manager.go:189 +msgid "board %s not found" +msgstr "board %s not found" + +#: commands/board/list.go:42 +msgid "board not found" +msgstr "board not found" + +#: cli/board/listall.go:38 cli/board/search.go:37 +msgid "boardname" +msgstr "boardname" + +#: arduino/discovery/discovery.go:312 arduino/discovery/discovery.go:335 +#: arduino/discovery/discovery.go:357 arduino/discovery/discovery.go:382 +#: arduino/discovery/discovery.go:401 arduino/discovery/discovery.go:424 +msgid "calling %[1]s: %[2]w" +msgstr "calling %[1]s: %[2]w" + +#: arduino/cores/status.go:123 arduino/cores/status.go:150 +msgid "can't find latest release of %s" +msgstr "can't find latest release of %s" + +#: commands/instances.go:263 +msgid "can't find latest release of tool %s" +msgstr "can't find latest release of tool %s" + +#: arduino/sketch/sketch.go:105 +msgid "can't find main Sketch file in %s" +msgstr "can't find main Sketch file in %s" + +#: arduino/cores/packagemanager/loader.go:820 +msgid "can't find pattern for discovery with id %s" +msgstr "can't find pattern for discovery with id %s" + +#: executils/output.go:52 +msgid "can't retrieve standard error stream: %s" +msgstr "can't retrieve standard error stream: %s" + +#: executils/output.go:34 +msgid "can't retrieve standard output stream: %s" +msgstr "can't retrieve standard output stream: %s" + +#: legacy/builder/resolve_library.go:34 +msgid "candidates" +msgstr "candidates" + +#: commands/upload/upload.go:582 commands/upload/upload.go:589 +msgid "cannot execute upload tool: %s" +msgstr "cannot execute upload tool: %s" + +#: arduino/resources/install.go:39 +msgid "checking local archive integrity" +msgstr "checking local archive integrity" + +#: legacy/builder/wipeout_build_path_if_build_options_changed.go:85 +#: legacy/builder/wipeout_build_path_if_build_options_changed.go:89 +msgid "cleaning build path" +msgstr "cleaning build path" + +#: cli/cli.go:74 +msgid "command" +msgstr "command" + +#: arduino/monitor/monitor.go:149 +msgid "command '%[1]s' failed: %[2]s" +msgstr "command '%[1]s' failed: %[2]s" + +#: arduino/discovery/discovery.go:316 arduino/discovery/discovery.go:339 +#: arduino/discovery/discovery.go:361 arduino/discovery/discovery.go:386 +#: arduino/discovery/discovery.go:405 arduino/discovery/discovery.go:428 +msgid "command failed: %s" +msgstr "command failed: %s" + +#: arduino/discovery/discovery.go:314 arduino/discovery/discovery.go:318 +#: arduino/discovery/discovery.go:337 arduino/discovery/discovery.go:341 +#: arduino/discovery/discovery.go:359 arduino/discovery/discovery.go:363 +#: arduino/discovery/discovery.go:384 arduino/discovery/discovery.go:388 +#: arduino/discovery/discovery.go:403 arduino/discovery/discovery.go:426 +#: arduino/discovery/discovery.go:430 arduino/monitor/monitor.go:146 +#: arduino/monitor/monitor.go:152 +msgid "communication out of sync, expected '%[1]s', received '%[2]s'" +msgstr "communication out of sync, expected '%[1]s', received '%[2]s'" + +#: arduino/resources/checksums.go:76 +msgid "computing hash: %s" +msgstr "computing hash: %s" + +#: commands/upload/upload.go:697 +msgid "could not find a valid build artifact" +msgstr "could not find a valid build artifact" + +#: arduino/cores/packagemanager/loader.go:757 +msgid "creating discovery: %s" +msgstr "creating discovery: %s" + +#: arduino/cores/packagemanager/install_uninstall.go:45 +msgid "creating installed.json in %[1]s: %[2]s" +msgstr "creating installed.json in %[1]s: %[2]s" + +#: arduino/resources/install.go:44 arduino/resources/install.go:48 +msgid "creating temp dir for extraction: %s" +msgstr "creating temp dir for extraction: %s" + +#: legacy/builder/phases/sizer.go:121 +msgid "data section exceeds available space in board" +msgstr "data section exceeds available space in board" + +#: arduino/sketch/sketch.go:211 +msgid "decoding sketch metadata: %s" +msgstr "decoding sketch metadata: %s" + +#: commands/lib/resolve_deps.go:55 +msgid "dependency '%s' is not available" +msgstr "dependency '%s' is not available" + +#: legacy/builder/utils/utils.go:474 +msgid "destination already exists" +msgstr "destination already exists" + +#: arduino/libraries/librariesmanager/install.go:75 +msgid "destination dir %s already exists, cannot install" +msgstr "destination dir %s already exists, cannot install" + +#: arduino/libraries/librariesmanager/install.go:268 +msgid "directory doesn't exist: %s" +msgstr "directory doesn't exist: %s" + +#: arduino/discovery/discoverymanager/discoverymanager.go:106 +msgid "discovery %[1]s process not started: %[2]w" +msgstr "discovery %[1]s process not started: %[2]w" + +#: arduino/cores/packagemanager/loader.go:748 +msgid "discovery not found: %s" +msgstr "discovery not found: %s" + +#: arduino/cores/packagemanager/loader.go:752 +msgid "discovery not installed: %s" +msgstr "discovery not installed: %s" + +#: arduino/cores/packagemanager/package_manager.go:478 +msgid "discovery release not found: %s" +msgstr "discovery release not found: %s" + +#: cli/core/download.go:41 cli/core/install.go:45 +msgid "download a specific version (in this case 1.6.9)." +msgstr "download a specific version (in this case 1.6.9)." + +#: cli/core/download.go:40 cli/core/install.go:43 +msgid "download the latest version of Arduino SAMD core." +msgstr "download the latest version of Arduino SAMD core." + +#: commands/instances.go:99 +msgid "downloading %[1]s tool: %[2]s" +msgstr "downloading %[1]s tool: %[2]s" + +#: arduino/cores/fqbn.go:48 +msgid "empty board identifier" +msgstr "empty board identifier" + +#: arduino/sketch/sketch.go:200 +msgid "encoding sketch metadata: %s" +msgstr "encoding sketch metadata: %s" + +#: arduino/monitors/serial.go:44 +msgid "error opening serial monitor" +msgstr "error opening serial monitor" + +#: cli/config/set.go:69 +msgid "error parsing value: %v" +msgstr "error parsing value: %v" + +#: commands/board/list.go:88 +msgid "error processing response from server" +msgstr "error processing response from server" + +#: commands/board/list.go:103 +msgid "error querying Arduino Cloud Api" +msgstr "error querying Arduino Cloud Api" + +#: arduino/resources/install.go:67 +msgid "extracting archive: %s" +msgstr "extracting archive: %s" + +#: arduino/libraries/librariesmanager/install.go:125 +msgid "extracting archive: %w" +msgstr "extracting archive: %w" + +#: arduino/resources/checksums.go:145 +msgid "failed to compute hash of file \"%s\"" +msgstr "failed to compute hash of file \"%s\"" + +#: commands/board/list.go:71 +msgid "failed to initialize http client" +msgstr "failed to initialize http client" + +#: arduino/resources/checksums.go:97 +msgid "fetched archive size differs from size specified in index" +msgstr "fetched archive size differs from size specified in index" + +#: arduino/resources/install.go:132 +msgid "files in archive must be placed in a subdirectory" +msgstr "files in archive must be placed in a subdirectory" + +#: arduino/cores/packagemanager/loader.go:67 +msgid "find abs path: %s" +msgstr "find abs path: %s" + +#: commands/daemon/monitor.go:45 +msgid "first message must contain monitor configuration, not data" +msgstr "first message must contain monitor configuration, not data" + +#: cli/cli.go:74 +msgid "flags" +msgstr "flags" + +#: arduino/cores/packagemanager/loader.go:109 +msgid "following possible symlink %[1]s: %[2]s" +msgstr "following possible symlink %[1]s: %[2]s" + +#: cli/lib/download.go:41 +msgid "for a specific version." +msgstr "for a specific version." + +#: cli/lib/check_deps.go:40 cli/lib/download.go:40 cli/lib/install.go:51 +msgid "for the latest version." +msgstr "for the latest version." + +#: cli/lib/check_deps.go:41 cli/lib/install.go:52 +msgid "for the specific version." +msgstr "for the specific version." + +#: inventory/inventory.go:68 +msgid "generating installation.id: %w" +msgstr "generating installation.id: %w" + +#: inventory/inventory.go:74 +msgid "generating installation.secret: %w" +msgstr "generating installation.secret: %w" + +#: arduino/resources/helpers.go:68 +msgid "getting archive file info: %s" +msgstr "getting archive file info: %s" + +#: arduino/resources/checksums.go:94 +msgid "getting archive info: %s" +msgstr "getting archive info: %s" + +#: arduino/resources/checksums.go:67 arduino/resources/checksums.go:90 +#: arduino/resources/helpers.go:40 arduino/resources/helpers.go:49 +#: arduino/resources/install.go:55 +msgid "getting archive path: %s" +msgstr "getting archive path: %s" + +#: arduino/cores/packagemanager/package_manager.go:195 +msgid "getting build properties for board %[1]s: %[2]s" +msgstr "getting build properties for board %[1]s: %[2]s" + +#: arduino/cores/packagemanager/download.go:103 +msgid "getting discovery dependencies for platform %[1]s: %[2]s" +msgstr "getting discovery dependencies for platform %[1]s: %[2]s" + +#: arduino/cores/packagemanager/download.go:111 +msgid "getting monitor dependencies for platform %[1]s: %[2]s" +msgstr "getting monitor dependencies for platform %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:701 +msgid "getting parent dir of %[1]s: %[2]s" +msgstr "getting parent dir of %[1]s: %[2]s" + +#: arduino/cores/packagemanager/download.go:96 +msgid "getting tool dependencies for platform %[1]s: %[2]s" +msgstr "getting tool dependencies for platform %[1]s: %[2]s" + +#: arduino/sketch/sketch.go:155 +msgid "importing sketch metadata: %s" +msgstr "importing sketch metadata: %s" + +#: arduino/libraries/librariesmanager/install.go:92 +msgid "install directory not set" +msgstr "install directory not set" + +#: commands/instances.go:103 +msgid "installing %[1]s tool: %[2]s" +msgstr "installing %[1]s tool: %[2]s" + +#: arduino/cores/packagemanager/install_uninstall.go:37 +msgid "installing platform %[1]s: %[2]s" +msgstr "installing platform %[1]s: %[2]s" + +#: arduino/discovery/discovery.go:176 +msgid "invalid 'add' message: missing port" +msgstr "invalid 'add' message: missing port" + +#: arduino/discovery/discovery.go:187 +msgid "invalid 'remove' message: missing port" +msgstr "invalid 'remove' message: missing port" + +#: arduino/resources/checksums.go:45 +msgid "invalid checksum format: %s" +msgstr "invalid checksum format: %s" + +#: arduino/cores/fqbn.go:54 arduino/cores/fqbn.go:59 +msgid "invalid config option: %s" +msgstr "invalid config option: %s" + +#: cli/arguments/reference.go:90 +msgid "invalid empty core architecture '%s'" +msgstr "invalid empty core architecture '%s'" + +#: cli/arguments/reference.go:67 +msgid "invalid empty core argument" +msgstr "invalid empty core argument" + +#: cli/arguments/reference.go:86 +msgid "invalid empty core name '%s'" +msgstr "invalid empty core name '%s'" + +#: cli/arguments/reference.go:71 +msgid "invalid empty core reference '%s'" +msgstr "invalid empty core reference '%s'" + +#: cli/arguments/reference.go:76 +msgid "invalid empty core version: '%s'" +msgstr "invalid empty core version: '%s'" + +#: cli/lib/args.go:49 +msgid "invalid empty library name" +msgstr "invalid empty library name" + +#: cli/lib/args.go:54 +msgid "invalid empty library version: %s" +msgstr "invalid empty library version: %s" + +#: arduino/cores/board.go:123 +msgid "invalid empty option found" +msgstr "invalid empty option found" + +#: arduino/libraries/librariesmanager/install.go:258 +msgid "invalid git url" +msgstr "invalid git url" + +#: arduino/resources/checksums.go:49 +msgid "invalid hash '%[1]s': %[2]s" +msgstr "invalid hash '%[1]s': %[2]s" + +#: cli/arguments/reference.go:83 +msgid "invalid item %s" +msgstr "invalid item %s" + +#: arduino/libraries/libraries_layout.go:53 +msgid "invalid library layout value: %d" +msgstr "invalid library layout value: %d" + +#: arduino/libraries/libraries_layout.go:68 +msgid "invalid library layout: %s" +msgstr "invalid library layout: %s" + +#: arduino/libraries/libraries_location.go:73 +msgid "invalid library location value: %d" +msgstr "invalid library location value: %d" + +#: arduino/libraries/libraries_location.go:94 +msgid "invalid library location: %s" +msgstr "invalid library location: %s" + +#: arduino/cores/board.go:125 +msgid "invalid option '%s'" +msgstr "invalid option '%s'" + +#: inventory/inventory.go:88 +msgid "invalid path creating config dir: %[1]s error: %[2]w" +msgstr "invalid path creating config dir: %[1]s error: %[2]w" + +#: inventory/inventory.go:94 +msgid "invalid path writing inventory file: %[1]s error: %[2]w" +msgstr "invalid path writing inventory file: %[1]s error: %[2]w" + +#: arduino/cores/packageindex/index.go:255 +msgid "invalid platform archive size: %s" +msgstr "invalid platform archive size: %s" + +#: arduino/cores/packagemanager/loader.go:374 +msgid "invalid pluggable monitor reference: %s" +msgstr "invalid pluggable monitor reference: %s" + +#: cli/monitor/monitor.go:126 +msgid "invalid port configuration value for %s: %s" +msgstr "invalid port configuration value for %s: %s" + +#: cli/monitor/monitor.go:135 +msgid "invalid port configuration: %s" +msgstr "invalid port configuration: %s" + +#: commands/upload/upload.go:569 +msgid "invalid recipe '%[1]s': %[2]s" +msgstr "invalid recipe '%[1]s': %[2]s" + +#: arduino/cores/board.go:109 +msgid "invalid value '%[1]s' for option '%[2]s'" +msgstr "invalid value '%[1]s' for option '%[2]s'" + +#: arduino/cores/packagemanager/loader.go:284 +msgid "invalid version dir %[1]s: %[2]s" +msgstr "invalid version dir %[1]s: %[2]s" + +#: commands/daemon/settings.go:108 +msgid "key not found in settings" +msgstr "key not found in settings" + +#: cli/core/search.go:48 +msgid "keywords" +msgstr "keywords" + +#: arduino/libraries/librariesmanager/install.go:163 +#: arduino/libraries/librariesmanager/install.go:206 +msgid "library %s already installed" +msgstr "library %s already installed" + +#: arduino/libraries/librariesmanager/install.go:38 +msgid "library already installed" +msgstr "library already installed" + +#: arduino/libraries/librariesmanager/install.go:305 +msgid "library not valid" +msgstr "library not valid" + +#: arduino/libraries/librariesmanager/librariesmanager.go:226 +msgid "library path does not exist: %s" +msgstr "library path does not exist: %s" + +#: arduino/discovery/discoverymanager/discoverymanager.go:217 +msgid "listing ports from discovery %[1]s: %[2]w" +msgstr "listing ports from discovery %[1]s: %[2]w" + +#: arduino/serialutils/serialutils.go:61 +msgid "listing serial ports" +msgstr "listing serial ports" + +#: arduino/cores/packagemanager/loader.go:312 +#: arduino/cores/packagemanager/loader.go:321 +#: arduino/cores/packagemanager/loader.go:326 +msgid "loading %[1]s: %[2]s" +msgstr "loading %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:362 +msgid "loading boards: %s" +msgstr "loading boards: %s" + +#: arduino/cores/packagemanager/loader.go:656 +msgid "loading bundled tools from %[1]s: %[2]s" +msgstr "loading bundled tools from %[1]s: %[2]s" + +#: arduino/cores/packagemanager/package_manager.go:230 +#: arduino/cores/packagemanager/package_manager.go:245 +msgid "loading json index file %[1]s: %[2]s" +msgstr "loading json index file %[1]s: %[2]s" + +#: arduino/libraries/librariesmanager/librariesmanager.go:205 +#: arduino/libraries/librariesmanager/librariesmanager.go:231 +msgid "loading library from %[1]s: %[2]s" +msgstr "loading library from %[1]s: %[2]s" + +#: arduino/libraries/loader.go:47 +msgid "loading library.properties: %s" +msgstr "loading library.properties: %s" + +#: arduino/cores/packagemanager/loader.go:261 +#: arduino/cores/packagemanager/loader.go:289 +msgid "loading platform release %[1]s: %[2]s" +msgstr "loading platform release %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:212 +msgid "loading platform.txt: %v" +msgstr "loading platform.txt: %v" + +#: arduino/cores/packagemanager/loader.go:623 +msgid "loading tool release in %[1]s: %[2]s" +msgstr "loading tool release in %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:205 +msgid "looking for boards.txt in %[1]s: %[2]s" +msgstr "looking for boards.txt in %[1]s: %[2]s" + +#: legacy/builder/container_setup.go:73 +msgid "main file missing from sketch" +msgstr "main file missing from sketch" + +#: arduino/resources/checksums.go:41 +msgid "missing checksum for: %s" +msgstr "missing checksum for: %s" + +#: arduino/cores/packagemanager/package_manager.go:207 +msgid "missing package %[1]s referenced by board %[2]s" +msgstr "missing package %[1]s referenced by board %[2]s" + +#: arduino/cores/packagemanager/package_manager.go:212 +msgid "missing platform %[1]s:%[2]s referenced by board %[3]s" +msgstr "missing platform %[1]s:%[2]s referenced by board %[3]s" + +#: arduino/cores/packagemanager/package_manager.go:217 +msgid "missing platform release %[1]s:%[2]s referenced by board %[3]s" +msgstr "missing platform release %[1]s:%[2]s referenced by board %[3]s" + +#: arduino/cores/packagemanager/package_manager.go:489 +msgid "monitor release not found: %s" +msgstr "monitor release not found: %s" + +#: arduino/libraries/librariesmanager/install.go:180 +#: arduino/resources/install.go:94 +msgid "moving extracted archive to destination dir: %s" +msgstr "moving extracted archive to destination dir: %s" + +#: commands/upload/upload.go:692 +msgid "multiple build artifacts found: '%[1]s' and '%[2]s'" +msgstr "multiple build artifacts found: '%[1]s' and '%[2]s'" + +#: arduino/sketch/sketch.go:77 +msgid "multiple main sketch files found (%[1]v, %[2]v)" +msgstr "multiple main sketch files found (%[1]v, %[2]v)" + +#: arduino/cores/packagemanager/install_uninstall.go:127 +msgid "no compatible version of %s tools found for the current os" +msgstr "no compatible version of %s tools found for the current os" + +#: executils/process.go:38 +msgid "no executable specified" +msgstr "no executable specified" + +#: commands/daemon/daemon.go:101 +msgid "no instance specified" +msgstr "no instance specified" + +#: commands/upload/upload.go:647 +msgid "no sketch or build directory/file specified" +msgstr "no sketch or build directory/file specified" + +#: arduino/resources/install.go:128 +msgid "no unique root dir in archive, found '%[1]s' and '%[2]s'" +msgstr "no unique root dir in archive, found '%[1]s' and '%[2]s'" + +#: commands/upload/upload.go:564 +msgid "no upload port provided" +msgstr "no upload port provided" + +#: arduino/sketch/sketch.go:263 +msgid "no valid sketch found in %[1]s: missing %[2]s" +msgstr "no valid sketch found in %[1]s: missing %[2]s" + +#: commands/core/download.go:85 +msgid "no versions available for the current OS" +msgstr "no versions available for the current OS" + +#: arduino/resources/checksums.go:72 arduino/resources/install.go:59 +msgid "opening archive file: %s" +msgstr "opening archive file: %s" + +#: arduino/cores/packagemanager/loader.go:277 +msgid "opening boards.txt: %s" +msgstr "opening boards.txt: %s" + +#: arduino/serialutils/serialutils.go:37 +msgid "opening port at 1200bps" +msgstr "opening port at 1200bps" + +#: arduino/security/signatures.go:80 +msgid "opening signature file: %s" +msgstr "opening signature file: %s" + +#: arduino/security/signatures.go:75 +msgid "opening target file: %s" +msgstr "opening target file: %s" + +#: arduino/cores/packagemanager/download.go:73 arduino/cores/status.go:88 +#: arduino/cores/status.go:113 arduino/cores/status.go:140 +msgid "package %s not found" +msgstr "package %s not found" + +#: arduino/cores/packagemanager/package_manager.go:259 +msgid "package '%s' not found" +msgstr "package '%s' not found" + +#: arduino/cores/status.go:194 +msgid "package not found" +msgstr "package not found" + +#: arduino/cores/packagemanager/loader.go:232 +msgid "parsing IDE bundled index: %s" +msgstr "parsing IDE bundled index: %s" + +#: arduino/cores/board.go:139 +#: arduino/cores/packagemanager/package_manager.go:136 +msgid "parsing fqbn: %s" +msgstr "parsing fqbn: %s" + +#: arduino/libraries/librariesindex/json.go:69 +msgid "parsing library_index.json: %s" +msgstr "parsing library_index.json: %s" + +#: arduino/cores/packagemanager/loader.go:194 +msgid "path is not a platform directory: %s" +msgstr "path is not a platform directory: %s" + +#: arduino/cores/packagemanager/download.go:77 +msgid "platform %[1]s not found in package %[2]s" +msgstr "platform %[1]s not found in package %[2]s" + +#: arduino/cores/packagemanager/download.go:89 +msgid "platform %s has no available releases" +msgstr "platform %s has no available releases" + +#: arduino/cores/packagemanager/package_manager.go:182 +msgid "platform %s is not installed" +msgstr "platform %s is not installed" + +#: arduino/cores/packagemanager/install_uninstall.go:65 +#: arduino/cores/packagemanager/install_uninstall.go:108 +#: arduino/cores/packagemanager/loader.go:468 commands/compile/compile.go:127 +msgid "platform not installed" +msgstr "platform not installed" + +#: cli/compile/compile.go:122 +msgid "please use --build-property instead." +msgstr "please use --build-property instead." + +#: arduino/discovery/discoverymanager/discoverymanager.go:61 +msgid "pluggable discovery already added: %s" +msgstr "pluggable discovery already added: %s" + +#: cli/board/attach.go:40 +msgid "port" +msgstr "port" + +#: cli/arguments/port.go:145 +msgid "port not found: %[1]s %[2]s" +msgstr "port not found: %[1]s %[2]s" + +#: arduino/monitor/monitor.go:241 +msgid "protocol version not supported: requested %[1]d, got %[2]d" +msgstr "protocol version not supported: requested %[1]d, got %[2]d" + +#: arduino/discovery/discovery.go:320 +msgid "protocol version not supported: requested 1, got %d" +msgstr "protocol version not supported: requested 1, got %d" + +#: arduino/discovery/discoverymanager/discoverymanager.go:189 +msgid "quitting discovery %[1]s: %[2]w" +msgstr "quitting discovery %[1]s: %[2]w" + +#: arduino/cores/packagemanager/loader.go:79 +msgid "reading %[1]s directory: %[2]s" +msgstr "reading %[1]s directory: %[2]s" + +#: arduino/cores/packagemanager/loader.go:706 +msgid "reading %[1]s: %[2]s" +msgstr "reading %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:271 +#: arduino/libraries/librariesmanager/librariesmanager.go:196 +msgid "reading dir %[1]s: %[2]s" +msgstr "reading dir %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:167 +#: arduino/cores/packagemanager/loader.go:614 +msgid "reading directory %[1]s: %[2]s" +msgstr "reading directory %[1]s: %[2]s" + +#: arduino/libraries/librariesmanager/install.go:278 +msgid "reading directory %s content: %w" +msgstr "reading directory %s content: %w" + +#: arduino/builder/sketch.go:76 +msgid "reading file %[1]s: %[2]s" +msgstr "reading file %[1]s: %[2]s" + +#: arduino/sketch/sketch.go:233 +msgid "reading files: %v" +msgstr "reading files: %v" + +#: inventory/inventory.go:58 +msgid "reading inventory file: %w" +msgstr "reading inventory file: %w" + +#: arduino/libraries/librariesresolver/cpp.go:60 +msgid "reading lib headers: %s" +msgstr "reading lib headers: %s" + +#: arduino/libraries/libraries.go:235 +msgid "reading lib src dir: %s" +msgstr "reading lib src dir: %s" + +#: arduino/libraries/libraries.go:115 +msgid "reading library headers: %w" +msgstr "reading library headers: %w" + +#: arduino/libraries/librariesindex/json.go:63 +msgid "reading library_index.json: %s" +msgstr "reading library_index.json: %s" + +#: arduino/resources/install.go:118 +msgid "reading package root dir: %s" +msgstr "reading package root dir: %s" + +#: arduino/sketch/sketch.go:192 +msgid "reading sketch metadata %[1]s: %[2]s" +msgstr "reading sketch metadata %[1]s: %[2]s" + +#: commands/upload/upload.go:558 +msgid "recipe not found '%s'" +msgstr "recipe not found '%s'" + +#: arduino/cores/packagemanager/package_manager.go:335 +msgid "release %[1]s not found for tool %[2]s" +msgstr "release %[1]s not found for tool %[2]s" + +#: arduino/cores/status.go:82 arduino/cores/status.go:106 +#: arduino/cores/status.go:133 +msgid "release cannot be nil" +msgstr "release cannot be nil" + +#: arduino/cores/status.go:210 +msgid "release not found" +msgstr "release not found" + +#: arduino/resources/helpers.go:59 +msgid "removing corrupted archive file: %s" +msgstr "removing corrupted archive file: %s" + +#: arduino/libraries/librariesmanager/install.go:95 +msgid "removing lib directory: %s" +msgstr "removing lib directory: %s" + +#: arduino/cores/packagemanager/install_uninstall.go:117 +msgid "removing platform files: %s" +msgstr "removing platform files: %s" + +#: arduino/cores/packagemanager/install_uninstall.go:169 +msgid "removing tool files: %s" +msgstr "removing tool files: %s" + +#: arduino/cores/packagemanager/download.go:84 +msgid "required version %[1]s not found for platform %[2]s" +msgstr "required version %[1]s not found for platform %[2]s" + +#: arduino/security/signatures.go:71 +msgid "retrieving Arduino public keys: %s" +msgstr "retrieving Arduino public keys: %s" + +#: arduino/libraries/loader.go:109 arduino/libraries/loader.go:140 +msgid "scanning examples: %s" +msgstr "scanning examples: %s" + +#: arduino/cores/packagemanager/loader.go:692 +msgid "searching for builtin_tools_versions.txt in %[1]s: %[2]s" +msgstr "searching for builtin_tools_versions.txt in %[1]s: %[2]s" + +#: arduino/resources/install.go:73 +msgid "searching package root dir: %s" +msgstr "searching package root dir: %s" + +#: arduino/serialutils/serialutils.go:43 +msgid "setting DTR to OFF" +msgstr "setting DTR to OFF" + +#: arduino/sketch/sketch.go:62 +msgid "sketch path is not valid" +msgstr "sketch path is not valid" + +#: cli/board/attach.go:40 cli/sketch/archive.go:38 +msgid "sketchPath" +msgstr "sketchPath" + +#: arduino/cores/packagemanager/loader.go:531 +msgid "skipping loading of boards %s: malformed custom board options" +msgstr "skipping loading of boards %s: malformed custom board options" + +#: legacy/builder/utils/utils.go:466 +msgid "source is not a directory" +msgstr "source is not a directory" + +#: arduino/discovery/discoverymanager/discoverymanager.go:142 +msgid "start syncing discovery %[1]s: %[2]w" +msgstr "start syncing discovery %[1]s: %[2]w" + +#: arduino/discovery/discoverymanager/discoverymanager.go:122 +msgid "starting discovery %[1]s: %[2]w" +msgstr "starting discovery %[1]s: %[2]w" + +#: commands/board/list.go:303 +msgid "stopping discoveries: %s" +msgstr "stopping discoveries: %s" + +#: arduino/discovery/discoverymanager/discoverymanager.go:173 +msgid "stopping discovery %[1]s: %[2]w" +msgstr "stopping discovery %[1]s: %[2]w" + +#: arduino/resources/checksums.go:119 +msgid "testing archive checksum: %s" +msgstr "testing archive checksum: %s" + +#: arduino/resources/checksums.go:112 +msgid "testing archive size: %s" +msgstr "testing archive size: %s" + +#: arduino/resources/checksums.go:106 +msgid "testing if archive is cached: %s" +msgstr "testing if archive is cached: %s" + +#: arduino/resources/install.go:37 +msgid "testing local archive integrity: %s" +msgstr "testing local archive integrity: %s" + +#: legacy/builder/phases/sizer.go:116 +msgid "text section exceeds available space in board" +msgstr "text section exceeds available space in board" + +#: legacy/builder/container_add_prototypes.go:47 +#: legacy/builder/container_find_includes.go:117 +msgid "the compilation database may be incomplete or inaccurate" +msgstr "the compilation database may be incomplete or inaccurate" + +#: commands/core/list.go:62 +msgid "the platform has no releases" +msgstr "the platform has no releases" + +#: commands/board/list.go:79 +msgid "the server responded with status %s" +msgstr "the server responded with status %s" + +#: arduino/monitor/monitor.go:139 +msgid "timeout waiting for message" +msgstr "timeout waiting for message" + +#: arduino/discovery/discovery.go:217 +msgid "timeout waiting for message from %s" +msgstr "timeout waiting for message from %s" + +#: arduino/cores/packagemanager/install_uninstall.go:165 +msgid "tool %s is not managed by package manager" +msgstr "tool %s is not managed by package manager" + +#: arduino/cores/status.go:92 arduino/cores/status.go:117 +#: arduino/cores/status.go:144 +msgid "tool %s not found" +msgstr "tool %s not found" + +#: arduino/cores/packagemanager/package_manager.go:285 +msgid "tool '%[1]s' not found in package '%[2]s'" +msgstr "tool '%[1]s' not found in package '%[2]s'" + +#: arduino/cores/packagemanager/download.go:123 +msgid "tool not available for your OS" +msgstr "tool not available for your OS" + +#: arduino/cores/status.go:198 +msgid "tool not found" +msgstr "tool not found" + +#: arduino/cores/packagemanager/install_uninstall.go:160 +msgid "tool not installed" +msgstr "tool not installed" + +#: arduino/cores/packagemanager/package_manager.go:467 +#: arduino/cores/packagemanager/package_manager.go:544 +msgid "tool release not found: %s" +msgstr "tool release not found: %s" + +#: arduino/cores/status.go:96 +msgid "tool version %s not found" +msgstr "tool version %s not found" + +#: commands/lib/install.go:59 +msgid "" +"two different versions of the library %[1]s are required: %[2]s and %[3]s" +msgstr "" +"two different versions of the library %[1]s are required: %[2]s and %[3]s" + +#: arduino/builder/sketch.go:69 arduino/builder/sketch.go:117 +msgid "unable to compute relative path to the sketch for the item" +msgstr "unable to compute relative path to the sketch for the item" + +#: arduino/builder/sketch.go:49 +msgid "unable to create a folder to save the sketch" +msgstr "unable to create a folder to save the sketch" + +#: arduino/builder/sketch.go:111 +msgid "unable to create a folder to save the sketch files" +msgstr "unable to create a folder to save the sketch files" + +#: arduino/builder/sketch.go:123 +msgid "unable to create the folder containing the item" +msgstr "unable to create the folder containing the item" + +#: cli/config/dump.go:58 +msgid "unable to marshal config to YAML: %v" +msgstr "unable to marshal config to YAML: %v" + +#: arduino/builder/sketch.go:161 +msgid "unable to read contents of the destination item" +msgstr "unable to read contents of the destination item" + +#: arduino/builder/sketch.go:134 +msgid "unable to read contents of the source item" +msgstr "unable to read contents of the source item" + +#: arduino/builder/sketch.go:55 +msgid "unable to save the sketch on disk" +msgstr "unable to save the sketch on disk" + +#: arduino/builder/sketch.go:144 +msgid "unable to write to destination file" +msgstr "unable to write to destination file" + +#: arduino/cores/packagemanager/package_manager.go:170 +msgid "unknown package %s" +msgstr "unknown package %s" + +#: arduino/cores/packagemanager/package_manager.go:177 +msgid "unknown platform %s:%s" +msgstr "unknown platform %s:%s" + +#: arduino/sketch/sketch.go:146 +msgid "unknown sketch file extension '%s'" +msgstr "unknown sketch file extension '%s'" + +#: arduino/resources/checksums.go:62 +msgid "unsupported hash algorithm: %s" +msgstr "unsupported hash algorithm: %s" + +#: cli/core/upgrade.go:44 +msgid "upgrade arduino:samd to the latest version" +msgstr "upgrade arduino:samd to the latest version" + +#: cli/core/upgrade.go:42 +msgid "upgrade everything to the latest version" +msgstr "upgrade everything to the latest version" + +#: commands/upload/upload.go:593 +msgid "uploading error: %s" +msgstr "uploading error: %s" + +#: arduino/sketch/sketch.go:216 +msgid "writing sketch metadata %[1]s: %[2]s" +msgstr "writing sketch metadata %[1]s: %[2]s" + +#: commands/board/list.go:95 +msgid "wrong format in server response" +msgstr "wrong format in server response" diff --git a/i18n/data/lb_LU.po b/i18n/data/lb_LU.po new file mode 100644 index 00000000000..fd7a071daef --- /dev/null +++ b/i18n/data/lb_LU.po @@ -0,0 +1,3402 @@ +# +msgid "" +msgstr "" + +#: version/version.go:53 +msgid "%[1]s %[2]s Version: %[3]s Commit: %[4]s Date: %[5]s" +msgstr "%[1]s %[2]s Version: %[3]s Commit: %[4]s Date: %[5]s" + +#: legacy/builder/fail_if_imported_library_is_wrong.go:36 +msgid "%[1]s folder is no longer supported! See %[2]s for more information" +msgstr "%[1]s folder is no longer supported! See %[2]s for more information" + +#: legacy/builder/wipeout_build_path_if_build_options_changed.go:49 +msgid "%[1]s invalid, rebuilding all" +msgstr "%[1]s invalid, rebuilding all" + +#: cli/lib/check_deps.go:102 +msgid "%[1]s is required but %[2]s is currently installed." +msgstr "%[1]s is required but %[2]s is currently installed." + +#: legacy/builder/builder_utils/utils.go:491 +msgid "%[1]s pattern is missing" +msgstr "%[1]s pattern is missing" + +#: arduino/discovery/discovery.go:75 +msgid "%[1]s, message: %[2]s" +msgstr "%[1]s, message: %[2]s" + +#: arduino/discovery/discovery.go:84 +msgid "%[1]s, port: %[2]s" +msgstr "%[1]s, port: %[2]s" + +#: arduino/discovery/discovery.go:81 +msgid "%[1]s, ports: %[2]s" +msgstr "%[1]s, ports: %[2]s" + +#: arduino/discovery/discovery.go:78 +msgid "%[1]s, protocol version: %[2]d" +msgstr "%[1]s, protocol version: %[2]d" + +#: cli/output/rpc_progress.go:64 +msgid "%s already downloaded" +msgstr "%s already downloaded" + +#: commands/upload/upload.go:615 +msgid "%s and %s cannot be used together" +msgstr "%s and %s cannot be used together" + +#: cli/output/rpc_progress.go:76 +msgid "%s downloaded" +msgstr "%s downloaded" + +#: commands/bundled_tools.go:56 +msgid "%s installed" +msgstr "%s installed" + +#: cli/lib/check_deps.go:99 +msgid "%s is already installed." +msgstr "%s is already installed." + +#: arduino/cores/packagemanager/loader.go:72 +msgid "%s is not a directory" +msgstr "%s is not a directory" + +#: arduino/cores/packagemanager/install_uninstall.go:113 +msgid "%s is not managed by package manager" +msgstr "%s is not managed by package manager" + +#: cli/lib/check_deps.go:96 +msgid "%s must be installed." +msgstr "%s must be installed." + +#: legacy/builder/ctags_runner.go:41 +msgid "%s pattern is missing" +msgstr "%s pattern is missing" + +#: commands/instances.go:846 +msgid "%s uninstalled" +msgstr "%s uninstalled" + +#: arduino/errors.go:708 +msgid "'%s' has an invalid signature" +msgstr "'%s' has an invalid signature" + +#: cli/board/listall.go:91 cli/board/search.go:89 +msgid "(hidden)" +msgstr "(hidden)" + +#: legacy/builder/print_used_libraries_if_verbose.go:34 +msgid "(legacy)" +msgstr "(legacy)" + +#: cli/lib/install.go:79 +msgid "" +"--git-url and --zip-path are disabled by default, for more information see: " +"%v" +msgstr "" +"--git-url and --zip-path are disabled by default, for more information see: " +"%v" + +#: cli/lib/install.go:82 +msgid "" +"--git-url and --zip-path flags allow installing untrusted files, use it at " +"your own risk." +msgstr "" +"--git-url and --zip-path flags allow installing untrusted files, use it at " +"your own risk." + +#: cli/updater/updater.go:70 +msgid "A new release of Arduino CLI is available:" +msgstr "A new release of Arduino CLI is available:" + +#: arduino/errors.go:244 +msgid "A programmer is required to upload" +msgstr "A programmer is required to upload" + +#: cli/core/download.go:36 cli/core/install.go:40 cli/core/uninstall.go:36 +#: cli/core/upgrade.go:38 +msgid "ARCH" +msgstr "ARCH" + +#: cli/generatedocs/generatedocs.go:80 +msgid "ARDUINO COMMAND LINE MANUAL" +msgstr "ARDUINO COMMAND LINE MANUAL" + +#: cli/usage.go:32 +msgid "Additional help topics:" +msgstr "Additional help topics:" + +#: cli/config/add.go:32 cli/config/add.go:33 +msgid "Adds one or more values to a setting." +msgstr "Adds one or more values to a setting." + +#: cli/usage.go:27 +msgid "Aliases:" +msgstr "Aliases:" + +#: cli/core/upgrade.go:68 +msgid "All the cores are already at the latest version" +msgstr "All the cores are already at the latest version" + +#: commands/instances.go:715 commands/lib/install.go:97 +msgid "Already installed %s" +msgstr "Already installed %s" + +#: legacy/builder/resolve_library.go:32 +msgid "Alternatives for %[1]s: %[2]s" +msgstr "Alternatives for %[1]s: %[2]s" + +#: legacy/builder/container_add_prototypes.go:46 +msgid "An error occurred adding prototypes" +msgstr "An error occurred adding prototypes" + +#: legacy/builder/container_find_includes.go:116 +msgid "An error occurred detecting libraries" +msgstr "An error occurred detecting libraries" + +#: cli/lib/search.go:172 +msgid "Architecture: %s" +msgstr "Architecture: %s" + +#: commands/sketch/archive.go:70 +msgid "Archive already exists" +msgstr "Archive already exists" + +#: legacy/builder/phases/core_builder.go:126 +msgid "Archiving built core (caching) in: %[1]s" +msgstr "Archiving built core (caching) in: %[1]s" + +#: cli/sketch/sketch.go:31 cli/sketch/sketch.go:32 +msgid "Arduino CLI sketch commands." +msgstr "Arduino CLI sketch commands." + +#: cli/cli.go:72 +msgid "Arduino CLI." +msgstr "Arduino CLI." + +#: cli/cli.go:73 +msgid "Arduino Command Line Interface (arduino-cli)." +msgstr "Arduino Command Line Interface (arduino-cli)." + +#: cli/board/board.go:31 cli/board/board.go:32 +msgid "Arduino board commands." +msgstr "Arduino board commands." + +#: cli/cache/cache.go:31 cli/cache/cache.go:32 +msgid "Arduino cache commands." +msgstr "Arduino cache commands." + +#: cli/lib/lib.go:31 cli/lib/lib.go:32 +msgid "Arduino commands about libraries." +msgstr "Arduino commands about libraries." + +#: cli/config/config.go:33 +msgid "Arduino configuration commands." +msgstr "Arduino configuration commands." + +#: cli/core/core.go:31 cli/core/core.go:32 +msgid "Arduino core operations." +msgstr "Arduino core operations." + +#: cli/lib/check_deps.go:56 cli/lib/install.go:125 +msgid "Arguments error: %v" +msgstr "Arguments error: %v" + +#: cli/board/attach.go:81 +msgid "Attach board error: %v" +msgstr "Attach board error: %v" + +#: cli/board/attach.go:41 cli/board/attach.go:42 cli/board/board.go:35 +msgid "Attaches a sketch to a board." +msgstr "Attaches a sketch to a board." + +#: cli/lib/search.go:163 +msgid "Author: %s" +msgstr "Author: %s" + +#: cli/lib/list.go:124 +msgid "Available" +msgstr "Available" + +#: cli/usage.go:29 +msgid "Available Commands:" +msgstr "Available Commands:" + +#: cli/upload/upload.go:63 +msgid "Binary file to upload." +msgstr "Binary file to upload." + +#: cli/board/list.go:88 cli/board/list.go:126 cli/board/listall.go:87 +#: cli/board/search.go:85 +msgid "Board Name" +msgstr "Board Name" + +#: commands/board/attach.go:94 +msgid "Board found: %s" +msgstr "Board found: %s" + +#: cli/board/details.go:119 +msgid "Board name:" +msgstr "Board name:" + +#: cli/board/details.go:121 +msgid "Board version:" +msgstr "Board version:" + +#: legacy/builder/merge_sketch_with_bootloader.go:69 +msgid "Bootloader file specified but missing: %[1]s" +msgstr "Bootloader file specified but missing: %[1]s" + +#: cli/compile/compile.go:89 +msgid "Builds of 'core.a' are saved into this path to be cached and reused." +msgstr "Builds of 'core.a' are saved into this path to be cached and reused." + +#: commands/instances.go:528 +msgid "Can't create data directory %s" +msgstr "Can't create data directory %s" + +#: arduino/errors.go:414 +msgid "Can't create sketch" +msgstr "Can't create sketch" + +#: commands/lib/download.go:61 commands/lib/download.go:64 +#: commands/lib/download.go:66 +msgid "Can't download library" +msgstr "Can't download library" + +#: commands/core/install.go:127 commands/core/uninstall.go:53 +#: commands/instances.go:754 commands/instances.go:766 +msgid "Can't find dependencies for platform %s" +msgstr "Can't find dependencies for platform %s" + +#: arduino/errors.go:427 +msgid "Can't open sketch" +msgstr "Can't open sketch" + +#: cli/config/set.go:55 +msgid "Can't set multiple values in key %v" +msgstr "Can't set multiple values in key %v" + +#: cli/arguments/arguments.go:37 +msgid "Can't use %s flags at the same time." +msgstr "Can't use %s flags at the same time." + +#: cli/config/add.go:61 cli/config/delete.go:72 cli/config/remove.go:70 +msgid "Can't write config file: %v" +msgstr "Can't write config file: %v" + +#: commands/compile/compile.go:175 +msgid "Cannot create build cache directory" +msgstr "Cannot create build cache directory" + +#: commands/compile/compile.go:151 +msgid "Cannot create build directory" +msgstr "Cannot create build directory" + +#: cli/config/init.go:97 +msgid "Cannot create config file directory: %v" +msgstr "Cannot create config file directory: %v" + +#: cli/config/init.go:106 +msgid "Cannot create config file: %v" +msgstr "Cannot create config file: %v" + +#: arduino/errors.go:671 +msgid "Cannot create temp dir" +msgstr "Cannot create temp dir" + +#: arduino/errors.go:689 +msgid "Cannot create temp file" +msgstr "Cannot create temp file" + +#: commands/debug/debug.go:67 +msgid "Cannot execute debug tool" +msgstr "Cannot execute debug tool" + +#: commands/board/attach.go:107 +msgid "Cannot export sketch metadata" +msgstr "Cannot export sketch metadata" + +#: cli/config/init.go:72 cli/config/init.go:83 +msgid "Cannot find absolute path: %v" +msgstr "Cannot find absolute path: %v" + +#: configuration/configuration.go:148 configuration/configuration.go:154 +msgid "Cannot get executable path: %v" +msgstr "Cannot get executable path: %v" + +#: commands/core/install.go:134 +msgid "Cannot install platform" +msgstr "Cannot install platform" + +#: commands/bundled_tools.go:53 +msgid "Cannot install tool %s" +msgstr "Cannot install tool %s" + +#: commands/upload/upload.go:506 +msgid "Cannot perform port reset: %s" +msgstr "Cannot perform port reset: %s" + +#: commands/core/install.go:152 +msgid "Cannot upgrade platform" +msgstr "Cannot upgrade platform" + +#: cli/lib/search.go:171 +msgid "Category: %s" +msgstr "Category: %s" + +#: cli/lib/check_deps.go:37 cli/lib/check_deps.go:38 +msgid "Check dependencies status for the specified library." +msgstr "Check dependencies status for the specified library." + +#: commands/lib/install.go:102 +msgid "Checking lib install prerequisites" +msgstr "Checking lib install prerequisites" + +#: arduino/resources/checksums.go:182 +msgid "Checksum differs from checksum in package.json" +msgstr "Checksum differs from checksum in package.json" + +#: cli/board/details.go:167 +msgid "Checksum:" +msgstr "Checksum:" + +#: cli/cache/cache.go:33 +msgid "Clean caches." +msgstr "Clean caches." + +#: cli/cli.go:125 +msgid "Comma-separated list of additional URLs for the Boards Manager." +msgstr "Comma-separated list of additional URLs for the Boards Manager." + +#: cli/board/list.go:51 +msgid "" +"Command keeps running and prints list of connected boards whenever there is " +"a change." +msgstr "" +"Command keeps running and prints list of connected boards whenever there is " +"a change." + +#: commands/debug/debug_info.go:119 commands/upload/upload.go:444 +msgid "Compiled sketch not found in %s" +msgstr "Compiled sketch not found in %s" + +#: cli/compile/compile.go:75 cli/compile/compile.go:76 +msgid "Compiles Arduino sketches." +msgstr "Compiles Arduino sketches." + +#: legacy/builder/builder.go:78 +msgid "Compiling core..." +msgstr "Compiling core..." + +#: legacy/builder/builder.go:72 +msgid "Compiling libraries..." +msgstr "Compiling libraries..." + +#: legacy/builder/phases/libraries_builder.go:132 +msgid "Compiling library \"%[1]s\"" +msgstr "Compiling library \"%[1]s\"" + +#: legacy/builder/builder.go:67 +msgid "Compiling sketch..." +msgstr "Compiling sketch..." + +#: cli/config/init.go:90 +msgid "" +"Config file already exists, use --overwrite to discard the existing one." +msgstr "" +"Config file already exists, use --overwrite to discard the existing one." + +#: cli/config/init.go:110 +msgid "Config file written to: %s" +msgstr "Config file written to: %s" + +#: cli/monitor/monitor.go:63 +msgid "Configuration of the port." +msgstr "Configuration of the port." + +#: cli/debug/debug.go:146 +msgid "Configuration options for %s" +msgstr "Configuration options for %s" + +#: commands/instances.go:853 +msgid "Configuring platform" +msgstr "Configuring platform" + +#: commands/core/install.go:167 +msgid "Configuring platform." +msgstr "Configuring platform." + +#: cli/board/list.go:184 +msgid "Connected" +msgstr "Connected" + +#: cli/monitor/monitor.go:177 +msgid "Connected to %s! Press CTRL-C to exit." +msgstr "Connected to %s! Press CTRL-C to exit." + +#: cli/board/list.go:88 cli/board/list.go:126 +msgid "Core" +msgstr "Core" + +#: cli/update/update.go:82 +msgid "Core name" +msgstr "Core name" + +#: commands/download.go:32 +msgid "Could not connect via HTTP" +msgstr "Could not connect via HTTP" + +#: commands/instances.go:369 +msgid "Could not create index directory" +msgstr "Could not create index directory" + +#: legacy/builder/phases/core_builder.go:47 +msgid "Couldn't deeply cache core build: %[1]s" +msgstr "Couldn't deeply cache core build: %[1]s" + +#: legacy/builder/phases/sizer.go:79 +msgid "Couldn't determine program size" +msgstr "Couldn't determine program size" + +#: cli/arguments/sketch.go:37 cli/lib/install.go:105 +msgid "Couldn't get current working directory: %v" +msgstr "Couldn't get current working directory: %v" + +#: cli/sketch/new.go:36 cli/sketch/new.go:37 +msgid "Create a new Sketch" +msgstr "Create a new Sketch" + +#: cli/sketch/archive.go:39 cli/sketch/archive.go:40 +msgid "Creates a zip file containing all sketch files." +msgstr "Creates a zip file containing all sketch files." + +#: cli/config/init.go:43 +msgid "" +"Creates or updates the configuration file in the data directory or custom " +"directory with the current configuration settings." +msgstr "" +"Creates or updates the configuration file in the data directory or custom " +"directory with the current configuration settings." + +#: cli/core/list.go:88 cli/core/search.go:118 +msgid "DEPRECATED" +msgstr "DEPRECATED" + +#: cli/daemon/daemon.go:174 +msgid "Daemon is now listening on %s:%s" +msgstr "Daemon is now listening on %s:%s" + +#: cli/debug/debug.go:52 +msgid "Debug Arduino sketches." +msgstr "Debug Arduino sketches." + +#: cli/debug/debug.go:53 +msgid "" +"Debug Arduino sketches. (this command opens an interactive gdb session)" +msgstr "" +"Debug Arduino sketches. (this command opens an interactive gdb session)" + +#: cli/debug/debug.go:62 +msgid "Debug interpreter e.g.: %s" +msgstr "Debug interpreter e.g.: %s" + +#: commands/debug/debug_info.go:142 +msgid "Debugging not supported for board %s" +msgstr "Debugging not supported for board %s" + +#: cli/board/details.go:123 +msgid "Debugging supported:" +msgstr "Debugging supported:" + +#: cli/monitor/monitor.go:195 +msgid "Default" +msgstr "Default" + +#: cli/cache/clean.go:31 +msgid "Delete Boards/Library Manager download cache." +msgstr "Delete Boards/Library Manager download cache." + +#: cli/cache/clean.go:32 +msgid "" +"Delete contents of the `directories.downloads` folder, where archive files " +"are staged during installation of libraries and boards platforms." +msgstr "" +"Delete contents of the `directories.downloads` folder, where archive files " +"are staged during installation of libraries and boards platforms." + +#: cli/config/delete.go:33 cli/config/delete.go:34 +msgid "Deletes a settings key and all its sub keys." +msgstr "Deletes a settings key and all its sub keys." + +#: cli/lib/search.go:179 +msgid "Dependencies: %s" +msgstr "Dependencies: %s" + +#: cli/lib/list.go:124 +msgid "Description" +msgstr "Description" + +#: legacy/builder/builder.go:59 +msgid "Detecting libraries used..." +msgstr "Detecting libraries used..." + +#: cli/board/list.go:44 +msgid "" +"Detects and displays a list of boards connected to the current computer." +msgstr "" +"Detects and displays a list of boards connected to the current computer." + +#: cli/debug/debug.go:63 +msgid "Directory containing binaries for debug." +msgstr "Directory containing binaries for debug." + +#: cli/upload/upload.go:62 +msgid "Directory containing binaries to upload." +msgstr "Directory containing binaries to upload." + +#: cli/generatedocs/generatedocs.go:45 +msgid "" +"Directory where to save generated files. Default is './docs', the directory " +"must exist." +msgstr "" +"Directory where to save generated files. Default is './docs', the directory " +"must exist." + +#: cli/completion/completion.go:45 +msgid "Disable completion description for shells that support it" +msgstr "Disable completion description for shells that support it" + +#: cli/board/list.go:185 +msgid "Disconnected" +msgstr "Disconnected" + +#: cli/daemon/daemon.go:66 +msgid "Display only the provided gRPC calls" +msgstr "Display only the provided gRPC calls" + +#: cli/lib/install.go:61 +msgid "Do not install dependencies." +msgstr "Do not install dependencies." + +#: cli/burnbootloader/burnbootloader.go:59 cli/upload/upload.go:67 +msgid "Do not perform the actual upload, just log out actions" +msgstr "Do not perform the actual upload, just log out actions" + +#: cli/daemon/daemon.go:64 +msgid "Do not terminate daemon process if the parent process dies" +msgstr "Do not terminate daemon process if the parent process dies" + +#: commands/instances.go:704 commands/instances.go:763 +#: commands/lib/download.go:58 +msgid "Downloading %s" +msgstr "Downloading %s" + +#: commands/instances.go:97 +msgid "Downloading missing tool %s" +msgstr "Downloading missing tool %s" + +#: commands/core/install.go:87 +msgid "Downloading packages" +msgstr "Downloading packages" + +#: cli/core/download.go:37 cli/core/download.go:38 +msgid "Downloads one or more cores and corresponding tool dependencies." +msgstr "Downloads one or more cores and corresponding tool dependencies." + +#: cli/lib/download.go:37 cli/lib/download.go:38 +msgid "Downloads one or more libraries without installing them." +msgstr "Downloads one or more libraries without installing them." + +#: cli/daemon/daemon.go:65 +msgid "Enable debug logging of gRPC calls" +msgstr "Enable debug logging of gRPC calls" + +#: cli/lib/install.go:63 +msgid "Enter a path to zip file" +msgstr "Enter a path to zip file" + +#: cli/lib/install.go:62 +msgid "Enter git url for libraries hosted on repositories" +msgstr "Enter git url for libraries hosted on repositories" + +#: commands/sketch/archive.go:105 +msgid "Error adding file to sketch archive" +msgstr "Error adding file to sketch archive" + +#: legacy/builder/phases/core_builder.go:132 +msgid "Error archiving built core (caching) in %[1]s: %[2]s" +msgstr "Error archiving built core (caching) in %[1]s: %[2]s" + +#: cli/sketch/archive.go:79 +msgid "Error archiving: %v" +msgstr "Error archiving: %v" + +#: commands/sketch/archive.go:93 +msgid "Error calculating relative file path" +msgstr "Error calculating relative file path" + +#: cli/cache/clean.go:46 +msgid "Error cleaning caches: %v" +msgstr "Error cleaning caches: %v" + +#: commands/compile/compile.go:280 +msgid "Error copying output file %s" +msgstr "Error copying output file %s" + +#: cli/core/search.go:66 cli/instance/instance.go:42 +#: cli/instance/instance.go:153 cli/lib/search.go:59 +msgid "Error creating instance: %v" +msgstr "Error creating instance: %v" + +#: commands/compile/compile.go:260 +msgid "Error creating output dir" +msgstr "Error creating output dir" + +#: commands/sketch/archive.go:81 +msgid "Error creating sketch archive" +msgstr "Error creating sketch archive" + +#: cli/arguments/sketch.go:51 cli/sketch/new.go:52 cli/sketch/new.go:61 +msgid "Error creating sketch: %v" +msgstr "Error creating sketch: %v" + +#: cli/board/list.go:72 cli/board/list.go:81 +msgid "Error detecting boards: %v" +msgstr "Error detecting boards: %v" + +#: cli/arguments/port.go:159 +msgid "Error discovering port: %v" +msgstr "Error discovering port: %v" + +#: cli/core/download.go:71 cli/lib/download.go:68 +msgid "Error downloading %[1]s: %[2]v" +msgstr "Error downloading %[1]s: %[2]v" + +#: commands/instances.go:474 commands/instances.go:478 +#: commands/instances.go:483 +msgid "Error downloading index '%s'" +msgstr "Error downloading index '%s'" + +#: commands/instances.go:507 commands/instances.go:513 +msgid "Error downloading index signature '%s'" +msgstr "Error downloading index signature '%s'" + +#: commands/instances.go:706 commands/instances.go:708 +msgid "Error downloading library" +msgstr "Error downloading library" + +#: commands/instances.go:383 commands/instances.go:386 +msgid "Error downloading library_index.json.gz" +msgstr "Error downloading library_index.json.gz" + +#: commands/instances.go:393 commands/instances.go:396 +msgid "Error downloading library_index.json.sig" +msgstr "Error downloading library_index.json.sig" + +#: commands/core/download.go:71 commands/core/download.go:75 +#: commands/instances.go:789 commands/instances.go:791 +msgid "Error downloading platform %s" +msgstr "Error downloading platform %s" + +#: commands/core/download.go:84 commands/core/download.go:89 +#: commands/instances.go:782 commands/instances.go:783 +msgid "Error downloading tool %s" +msgstr "Error downloading tool %s" + +#: cli/debug/debug.go:108 +msgid "Error during Debug: %v" +msgstr "Error during Debug: %v" + +#: cli/compile/compile.go:170 +msgid "Error during FQBN detection: %v" +msgstr "Error during FQBN detection: %v" + +#: cli/feedback/feedback.go:160 +msgid "Error during JSON encoding of the output: %v" +msgstr "Error during JSON encoding of the output: %v" + +#: cli/burnbootloader/burnbootloader.go:73 +#: cli/burnbootloader/burnbootloader.go:86 cli/compile/compile.go:222 +#: cli/compile/compile.go:254 cli/upload/upload.go:88 cli/upload/upload.go:94 +#: cli/upload/upload.go:111 cli/upload/upload.go:138 +msgid "Error during Upload: %v" +msgstr "Error during Upload: %v" + +#: cli/feedback/feedback.go:171 +msgid "Error during YAML encoding of the output: %v" +msgstr "Error during YAML encoding of the output: %v" + +#: cli/compile/compile.go:266 +msgid "Error during build: %v" +msgstr "Error during build: %v" + +#: cli/core/install.go:80 +msgid "Error during install: %v" +msgstr "Error during install: %v" + +#: cli/core/uninstall.go:72 +msgid "Error during uninstall: %v" +msgstr "Error during uninstall: %v" + +#: cli/core/upgrade.go:105 +msgid "Error during upgrade: %v" +msgstr "Error during upgrade: %v" + +#: commands/instances.go:402 +msgid "Error extracting library_index.json.gz" +msgstr "Error extracting library_index.json.gz" + +#: commands/upload/upload.go:441 +msgid "Error finding build artifacts" +msgstr "Error finding build artifacts" + +#: cli/debug/debug.go:95 +msgid "Error getting Debug info: %v" +msgstr "Error getting Debug info: %v" + +#: commands/sketch/archive.go:59 +msgid "Error getting absolute path of sketch archive" +msgstr "Error getting absolute path of sketch archive" + +#: cli/board/details.go:70 +msgid "Error getting board details: %v" +msgstr "Error getting board details: %v" + +#: commands/board/list.go:147 +msgid "Error getting board info from Arduino Cloud" +msgstr "Error getting board info from Arduino Cloud" + +#: commands/board/list.go:212 +msgid "Error getting board list" +msgstr "Error getting board list" + +#: arduino/builder/compilation_database.go:78 +msgid "Error getting current directory for compilation database: %s" +msgstr "Error getting current directory for compilation database: %s" + +#: commands/compile/compile.go:289 commands/lib/list.go:107 +msgid "Error getting information for library %s" +msgstr "Error getting information for library %s" + +#: cli/lib/examples.go:73 +msgid "Error getting libraries info: %v" +msgstr "Error getting libraries info: %v" + +#: cli/monitor/monitor.go:90 +msgid "Error getting port settings details: %s" +msgstr "Error getting port settings details: %s" + +#: cli/core/search.go:81 cli/instance/instance.go:46 cli/lib/search.go:73 +#: cli/update/update.go:70 +msgid "Error initializing instance: %v" +msgstr "Error initializing instance: %v" + +#: cli/lib/install.go:138 +msgid "Error installing %s: %v" +msgstr "Error installing %s: %v" + +#: cli/lib/install.go:116 +msgid "Error installing Git Library: %v" +msgstr "Error installing Git Library: %v" + +#: cli/lib/install.go:93 +msgid "Error installing Zip Library: %v" +msgstr "Error installing Zip Library: %v" + +#: commands/instances.go:810 +msgid "Error installing platform %s" +msgstr "Error installing platform %s" + +#: commands/instances.go:800 +msgid "Error installing tool %s" +msgstr "Error installing tool %s" + +#: cli/lib/list.go:76 +msgid "Error listing libraries: %v" +msgstr "Error listing libraries: %v" + +#: cli/board/listall.go:64 +msgid "Error listing boards: %v" +msgstr "Error listing boards: %v" + +#: cli/core/list.go:61 +msgid "Error listing platforms: %v" +msgstr "Error listing platforms: %v" + +#: legacy/builder/hardware_loader.go:38 +msgid "Error loading hardware platform: %[1]s" +msgstr "Error loading hardware platform: %[1]s" + +#: cli/compile/compile.go:143 +msgid "Error opening source code overrides data file: %v" +msgstr "Error opening source code overrides data file: %v" + +#: commands/compile/compile.go:270 +msgid "Error reading build directory" +msgstr "Error reading build directory" + +#: configuration/configuration.go:69 +msgid "Error reading config file: %v" +msgstr "Error reading config file: %v" + +#: commands/sketch/archive.go:75 +msgid "Error reading sketch files" +msgstr "Error reading sketch files" + +#: legacy/builder/target_board_resolver.go:30 +msgid "Error resolving FQBN" +msgstr "Error resolving FQBN" + +#: cli/lib/check_deps.go:66 +msgid "Error resolving dependencies for %[1]s: %[2]s" +msgstr "Error resolving dependencies for %[1]s: %[2]s" + +#: cli/core/upgrade.go:63 +msgid "Error retrieving core list: %v" +msgstr "Error retrieving core list: %v" + +#: cli/outdated/outdated.go:57 cli/update/update.go:77 +msgid "Error retrieving outdated cores and libraries: %v" +msgstr "Error retrieving outdated cores and libraries: %v" + +#: commands/instances.go:826 +msgid "Error rolling-back changes" +msgstr "Error rolling-back changes" + +#: commands/core/install.go:149 +msgid "Error rolling-back changes: %s" +msgstr "Error rolling-back changes: %s" + +#: commands/instances.go:532 +msgid "Error saving downloaded index %s" +msgstr "Error saving downloaded index %s" + +#: commands/instances.go:536 +msgid "Error saving downloaded index signature" +msgstr "Error saving downloaded index signature" + +#: cli/board/search.go:62 +msgid "Error searching boards: %v" +msgstr "Error searching boards: %v" + +#: cli/lib/search.go:81 +msgid "Error searching for Library: %v" +msgstr "Error searching for Library: %v" + +#: cli/core/search.go:93 +msgid "Error searching for platforms: %v" +msgstr "Error searching for platforms: %v" + +#: arduino/builder/compilation_database.go:63 +msgid "Error serializing compilation database: %s" +msgstr "Error serializing compilation database: %s" + +#: commands/board/list.go:197 commands/board/list.go:200 +#: commands/board/list.go:241 +msgid "Error starting board discoveries" +msgstr "Error starting board discoveries" + +#: cli/lib/uninstall.go:66 +msgid "Error uninstalling %[1]s: %[2]v" +msgstr "Error uninstalling %[1]s: %[2]v" + +#: commands/core/uninstall.go:81 +msgid "Error uninstalling platform %s" +msgstr "Error uninstalling platform %s" + +#: commands/core/uninstall.go:97 commands/instances.go:842 +msgid "Error uninstalling tool %s" +msgstr "Error uninstalling tool %s" + +#: cli/update/update.go:62 +msgid "Error updating core and libraries index: %v" +msgstr "Error updating core and libraries index: %v" + +#: cli/core/search.go:75 cli/core/update_index.go:52 +msgid "Error updating index: %v" +msgstr "Error updating index: %v" + +#: cli/instance/instance.go:162 +msgid "Error updating indexes: %v" +msgstr "Error updating indexes: %v" + +#: cli/lib/search.go:68 cli/lib/update_index.go:52 +msgid "Error updating library index: %v" +msgstr "Error updating library index: %v" + +#: cli/lib/upgrade.go:51 cli/lib/upgrade.go:57 +msgid "Error upgrading libraries: %v" +msgstr "Error upgrading libraries: %v" + +#: commands/core/install.go:144 commands/instances.go:821 +msgid "Error upgrading platform: %s" +msgstr "Error upgrading platform: %s" + +#: cli/upgrade/upgrade.go:63 +msgid "Error upgrading: %v" +msgstr "Error upgrading: %v" + +#: commands/instances.go:407 commands/instances.go:517 +msgid "Error verifying signature" +msgstr "Error verifying signature" + +#: legacy/builder/container_find_includes.go:364 +msgid "Error while detecting libraries included by %[1]s" +msgstr "Error while detecting libraries included by %[1]s" + +#: legacy/builder/phases/sizer.go:140 legacy/builder/phases/sizer.go:146 +msgid "Error while determining sketch size: %s" +msgstr "Error while determining sketch size: %s" + +#: arduino/builder/compilation_database.go:66 +msgid "Error writing compilation database: %s" +msgstr "Error writing compilation database: %s" + +#: commands/instances.go:416 +msgid "Error writing library_index.json" +msgstr "Error writing library_index.json" + +#: commands/instances.go:419 +msgid "Error writing library_index.json.sig" +msgstr "Error writing library_index.json.sig" + +#: cli/completion/completion.go:53 +msgid "Error: command description is not supported by %v" +msgstr "Error: command description is not supported by %v" + +#: cli/compile/compile.go:150 +msgid "Error: invalid source code overrides data file: %v" +msgstr "Error: invalid source code overrides data file: %v" + +#: cli/board/list.go:88 +msgid "Event" +msgstr "Event" + +#: cli/lib/examples.go:122 +msgid "Examples for library %s" +msgstr "Examples for library %s" + +#: cli/usage.go:28 +msgid "Examples:" +msgstr "Examples:" + +#: cli/debug/debug.go:127 +msgid "Executable to debug" +msgstr "Executable to debug" + +#: commands/debug/debug_info.go:122 commands/upload/upload.go:447 +msgid "Expected compiled sketch in directory %s, but is a file instead" +msgstr "Expected compiled sketch in directory %s, but is a file instead" + +#: cli/board/attach.go:40 cli/board/details.go:43 cli/board/list.go:88 +#: cli/board/list.go:126 cli/board/listall.go:87 cli/board/search.go:85 +msgid "FQBN" +msgstr "FQBN" + +#: cli/board/details.go:120 +msgid "FQBN:" +msgstr "FQBN:" + +#: commands/upload/upload.go:536 +msgid "Failed chip erase" +msgstr "Failed chip erase" + +#: cli/daemon/daemon.go:148 +msgid "Failed choosing port, address: %s" +msgstr "Failed choosing port, address: %s" + +#: commands/upload/upload.go:543 +msgid "Failed programming" +msgstr "Failed programming" + +#: commands/upload/upload.go:539 +msgid "Failed to burn bootloader" +msgstr "Failed to burn bootloader" + +#: commands/instances.go:127 +msgid "Failed to create data directory" +msgstr "Failed to create data directory" + +#: commands/instances.go:117 +msgid "Failed to create downloads directory" +msgstr "Failed to create downloads directory" + +#: cli/daemon/daemon.go:127 +msgid "Failed to listen on TCP port: %[1]s. %[2]s is an invalid port." +msgstr "Failed to listen on TCP port: %[1]s. %[2]s is an invalid port." + +#: cli/daemon/daemon.go:121 +msgid "Failed to listen on TCP port: %[1]s. %[2]s is unknown name." +msgstr "Failed to listen on TCP port: %[1]s. %[2]s is unknown name." + +#: cli/daemon/daemon.go:136 +msgid "Failed to listen on TCP port: %[1]s. Unexpected error: %[2]v" +msgstr "Failed to listen on TCP port: %[1]s. Unexpected error: %[2]v" + +#: cli/daemon/daemon.go:133 +msgid "Failed to listen on TCP port: %s. Address already in use." +msgstr "Failed to listen on TCP port: %s. Address already in use." + +#: commands/upload/upload.go:547 +msgid "Failed uploading" +msgstr "Failed uploading" + +#: cli/board/details.go:165 +msgid "File:" +msgstr "File:" + +#: commands/daemon/debug.go:47 +msgid "First message must contain debug request, not data" +msgstr "First message must contain debug request, not data" + +#: cli/usage.go:30 +msgid "Flags:" +msgstr "Flags:" + +#: cli/arguments/post_install.go:35 +msgid "" +"Force run of post-install scripts (if the CLI is not running interactively)." +msgstr "" +"Force run of post-install scripts (if the CLI is not running interactively)." + +#: cli/arguments/post_install.go:36 +msgid "" +"Force skip of post-install scripts (if the CLI is running interactively)." +msgstr "" +"Force skip of post-install scripts (if the CLI is running interactively)." + +#: arduino/errors.go:729 +msgid "" +"Found %d platform for reference \"%s\":\n" +"%s" +msgstr "" +"Found %d platform for reference \"%s\":\n" +"%s" + +#: cli/arguments/fqbn.go:29 +msgid "Fully Qualified Board Name, e.g.: arduino:avr:uno" +msgstr "Fully Qualified Board Name, e.g.: arduino:avr:uno" + +#: cli/debug/debug.go:141 +msgid "GDB Server path" +msgstr "GDB Server path" + +#: cli/debug/debug.go:140 +msgid "GDB Server type" +msgstr "GDB Server type" + +#: commands/debug/debug.go:173 +msgid "GDB server '%s' is not supported" +msgstr "GDB server '%s' is not supported" + +#: cli/generatedocs/generatedocs.go:38 cli/generatedocs/generatedocs.go:39 +msgid "Generates bash completion and command manpages." +msgstr "Generates bash completion and command manpages." + +#: cli/completion/completion.go:39 +msgid "Generates completion scripts" +msgstr "Generates completion scripts" + +#: cli/completion/completion.go:40 +msgid "Generates completion scripts for various shells" +msgstr "Generates completion scripts for various shells" + +#: legacy/builder/builder.go:64 +msgid "Generating function prototypes..." +msgstr "Generating function prototypes..." + +#: cli/usage.go:31 +msgid "Global Flags:" +msgstr "Global Flags:" + +#: legacy/builder/phases/sizer.go:89 +msgid "" +"Global variables use %[1]s bytes (%[3]s%%) of dynamic memory, leaving %[4]s " +"bytes for local variables. Maximum is %[2]s bytes." +msgstr "" +"Global variables use %[1]s bytes (%[3]s%%) of dynamic memory, leaving %[4]s " +"bytes for local variables. Maximum is %[2]s bytes." + +#: legacy/builder/phases/sizer.go:95 +msgid "Global variables use %[1]s bytes of dynamic memory." +msgstr "Global variables use %[1]s bytes of dynamic memory." + +#: cli/core/list.go:84 cli/core/search.go:114 cli/monitor/monitor.go:195 +#: cli/outdated/outdated.go:62 +msgid "ID" +msgstr "ID" + +#: cli/board/details.go:92 cli/board/details.go:193 +msgid "Id" +msgstr "Id" + +#: cli/board/details.go:134 +msgid "Identification properties:" +msgstr "Identification properties:" + +#: cli/compile/compile.go:116 +msgid "If set built binaries will be exported to the sketch folder." +msgstr "If set built binaries will be exported to the sketch folder." + +#: cli/core/list.go:47 +msgid "" +"If set return all installable and installed cores, including manually " +"installed." +msgstr "" +"If set return all installable and installed cores, including manually " +"installed." + +#: cli/lib/list.go:53 +msgid "Include built-in libraries (from platforms and IDE) in listing." +msgstr "Include built-in libraries (from platforms and IDE) in listing." + +#: cli/sketch/archive.go:51 +msgid "Includes %s directory in the archive." +msgstr "Includes %s directory in the archive." + +#: cli/core/list.go:84 cli/lib/list.go:124 +msgid "Installed" +msgstr "Installed" + +#: commands/instances.go:729 commands/lib/install.go:113 +msgid "Installed %s" +msgstr "Installed %s" + +#: cli/outdated/outdated.go:62 cli/outdated/outdated.go:72 +#: cli/update/update.go:82 cli/update/update.go:92 +msgid "Installed version" +msgstr "Installed version" + +#: commands/bundled_tools.go:49 commands/instances.go:712 +#: commands/lib/install.go:93 +msgid "Installing %s" +msgstr "Installing %s" + +#: commands/core/install.go:110 +msgid "Installing platform %s" +msgstr "Installing platform %s" + +#: cli/core/install.go:41 cli/core/install.go:42 +msgid "Installs one or more cores and corresponding tool dependencies." +msgstr "Installs one or more cores and corresponding tool dependencies." + +#: cli/lib/install.go:48 cli/lib/install.go:49 +msgid "Installs one or more specified libraries into the system." +msgstr "Installs one or more specified libraries into the system." + +#: legacy/builder/container_find_includes.go:388 +msgid "Internal error in cache" +msgstr "Internal error in cache" + +#: arduino/errors.go:300 +msgid "Invalid '%[1]s' property: %[2]s" +msgstr "Invalid '%[1]s' property: %[2]s" + +#: cli/cli.go:268 +msgid "" +"Invalid Call : should show Help, but it is available only in TEXT mode." +msgstr "" +"Invalid Call : should show Help, but it is available only in TEXT mode." + +#: commands/board/attach.go:66 +msgid "Invalid Device URL format" +msgstr "Invalid Device URL format" + +#: arduino/errors.go:62 +msgid "Invalid FQBN" +msgstr "Invalid FQBN" + +#: arduino/errors.go:80 +msgid "Invalid URL" +msgstr "Invalid URL" + +#: commands/instances.go:193 +msgid "Invalid additional URL: %v" +msgstr "Invalid additional URL: %v" + +#: cli/core/download.go:58 cli/core/install.go:66 cli/core/uninstall.go:55 +#: cli/core/upgrade.go:81 cli/lib/download.go:56 cli/lib/uninstall.go:55 +msgid "Invalid argument passed: %v" +msgstr "Invalid argument passed: %v" + +#: legacy/builder/phases/sizer.go:165 +msgid "Invalid data size regexp: %s" +msgstr "Invalid data size regexp: %s" + +#: commands/board/attach.go:76 +msgid "Invalid device port type provided" +msgstr "Invalid device port type provided" + +#: legacy/builder/phases/sizer.go:171 +msgid "Invalid eeprom size regexp: %s" +msgstr "Invalid eeprom size regexp: %s" + +#: arduino/errors.go:48 +msgid "Invalid instance" +msgstr "Invalid instance" + +#: cli/core/upgrade.go:87 +msgid "Invalid item %s" +msgstr "Invalid item %s" + +#: arduino/errors.go:98 +msgid "Invalid library" +msgstr "Invalid library" + +#: httpclient/httpclient_config.go:44 +msgid "Invalid network.proxy '%[1]s': %[2]s" +msgstr "Invalid network.proxy '%[1]s': %[2]s" + +#: cli/cli.go:229 +msgid "Invalid option for --log-level: %s" +msgstr "Invalid option for --log-level: %s" + +#: cli/cli.go:246 +msgid "Invalid output format: %s" +msgstr "Invalid output format: %s" + +#: commands/instances.go:450 commands/instances.go:524 +msgid "Invalid package index in %s" +msgstr "Invalid package index in %s" + +#: cli/core/uninstall.go:61 +msgid "Invalid parameter %s: version not allowed" +msgstr "Invalid parameter %s: version not allowed" + +#: commands/board/list.go:58 +msgid "Invalid pid value: '%s'" +msgstr "Invalid pid value: '%s'" + +#: commands/monitor/monitor.go:127 +msgid "Invalid recipe in platform.txt" +msgstr "Invalid recipe in platform.txt" + +#: legacy/builder/phases/sizer.go:155 +msgid "Invalid size regexp: %s" +msgstr "Invalid size regexp: %s" + +#: arduino/errors.go:116 +msgid "Invalid version" +msgstr "Invalid version" + +#: commands/board/list.go:55 +msgid "Invalid vid value: '%s'" +msgstr "Invalid vid value: '%s'" + +#: cli/compile/compile.go:111 +msgid "" +"Just produce the compilation database, without actually compiling. All build" +" commands are skipped except pre* hooks." +msgstr "" +"Just produce the compilation database, without actually compiling. All build" +" commands are skipped except pre* hooks." + +#: cli/lib/list.go:42 +msgid "LIBNAME" +msgstr "LIBNAME" + +#: cli/lib/check_deps.go:36 cli/lib/install.go:47 +msgid "LIBRARY" +msgstr "LIBRARY" + +#: cli/lib/download.go:36 cli/lib/examples.go:43 cli/lib/search.go:43 +#: cli/lib/uninstall.go:36 +msgid "LIBRARY_NAME" +msgstr "LIBRARY_NAME" + +#: cli/core/list.go:84 +msgid "Latest" +msgstr "Latest" + +#: legacy/builder/phases/libraries_builder.go:89 +msgid "Library %[1]s has been declared precompiled:" +msgstr "Library %[1]s has been declared precompiled:" + +#: commands/lib/uninstall.go:37 +msgid "Library %s is not installed" +msgstr "Library %s is not installed" + +#: arduino/errors.go:348 +msgid "Library '%s' not found" +msgstr "Library '%s' not found" + +#: legacy/builder/fail_if_imported_library_is_wrong.go:45 +msgid "" +"Library can't use both '%[1]s' and '%[2]s' folders. Double check in '%[3]s'." +msgstr "" +"Library can't use both '%[1]s' and '%[2]s' folders. Double check in '%[3]s'." + +#: arduino/errors.go:464 +msgid "Library install failed" +msgstr "Library install failed" + +#: commands/lib/install.go:123 commands/lib/install.go:133 +msgid "Library installed" +msgstr "Library installed" + +#: cli/outdated/outdated.go:72 cli/update/update.go:92 +msgid "Library name" +msgstr "Library name" + +#: cli/lib/search.go:169 +msgid "License: %s" +msgstr "License: %s" + +#: legacy/builder/builder.go:83 +msgid "Linking everything together..." +msgstr "Linking everything together..." + +#: cli/board/listall.go:40 cli/board/search.go:39 +msgid "" +"List all boards that have the support platform installed. You can search\n" +"for a specific board if you specify the board name" +msgstr "" +"List all boards that have the support platform installed. You can search\n" +"for a specific board if you specify the board name" + +#: cli/board/listall.go:39 cli/board/search.go:38 +msgid "List all known boards and their corresponding FQBN." +msgstr "List all known boards and their corresponding FQBN." + +#: cli/board/list.go:43 +msgid "List connected boards." +msgstr "List connected boards." + +#: cli/compile/compile.go:94 +msgid "" +"List of custom build properties separated by commas. Or can be used multiple" +" times for multiple properties." +msgstr "" +"List of custom build properties separated by commas. Or can be used multiple" +" times for multiple properties." + +#: cli/compile/compile.go:108 +msgid "" +"List of custom libraries dir paths separated by commas. Or can be used " +"multiple times for multiple libraries dir paths." +msgstr "" +"List of custom libraries dir paths separated by commas. Or can be used " +"multiple times for multiple libraries dir paths." + +#: cli/compile/compile.go:106 +msgid "" +"List of paths to libraries root folders. Libraries set this way have top " +"priority in case of conflicts. Can be used multiple times for different " +"libraries." +msgstr "" +"List of paths to libraries root folders. Libraries set this way have top " +"priority in case of conflicts. Can be used multiple times for different " +"libraries." + +#: cli/lib/list.go:55 +msgid "List updatable libraries." +msgstr "List updatable libraries." + +#: cli/core/list.go:46 +msgid "List updatable platforms." +msgstr "List updatable platforms." + +#: cli/board/board.go:33 +msgid "Lists all connected boards." +msgstr "Lists all connected boards." + +#: cli/outdated/outdated.go:38 +msgid "Lists cores and libraries that can be upgraded" +msgstr "Lists cores and libraries that can be upgraded" + +#: commands/instances.go:207 commands/instances.go:218 +#: commands/instances.go:320 +msgid "Loading index file: %v" +msgstr "Loading index file: %v" + +#: commands/instances.go:329 +msgid "Loading libraries: %v" +msgstr "Loading libraries: %v" + +#: cli/lib/list.go:124 +msgid "Location" +msgstr "Location" + +#: legacy/builder/phases/sizer.go:130 +msgid "Low memory available, stability problems may occur." +msgstr "Low memory available, stability problems may occur." + +#: cli/lib/search.go:164 +msgid "Maintainer: %s" +msgstr "Maintainer: %s" + +#: cli/arguments/port.go:54 cli/board/list.go:50 +msgid "Max time to wait for port discovery, e.g.: 30s, 1m" +msgstr "Max time to wait for port discovery, e.g.: 30s, 1m" + +#: cli/cli.go:109 +msgid "" +"Messages with this level and above will be logged. Valid levels are: %s" +msgstr "" +"Messages with this level and above will be logged. Valid levels are: %s" + +#: legacy/builder/fail_if_imported_library_is_wrong.go:40 +msgid "Missing '%[1]s' from library in %[2]s" +msgstr "Missing '%[1]s' from library in %[2]s" + +#: arduino/errors.go:152 +msgid "Missing FQBN (Fully Qualified Board Name)" +msgstr "Missing FQBN (Fully Qualified Board Name)" + +#: arduino/errors.go:206 +msgid "Missing port" +msgstr "Missing port" + +#: arduino/errors.go:182 arduino/errors.go:194 +msgid "Missing port protocol" +msgstr "Missing port protocol" + +#: arduino/errors.go:232 +msgid "Missing programmer" +msgstr "Missing programmer" + +#: legacy/builder/phases/sizer.go:159 +msgid "Missing size regexp" +msgstr "Missing size regexp" + +#: arduino/errors.go:400 +msgid "Missing sketch path" +msgstr "Missing sketch path" + +#: arduino/errors.go:281 +msgid "Monitor '%s' not found" +msgstr "Monitor '%s' not found" + +#: cli/monitor/monitor.go:143 +msgid "Monitor port settings:" +msgstr "Monitor port settings:" + +#: legacy/builder/print_used_and_not_used_libraries.go:45 +msgid "Multiple libraries were found for \"%[1]s\"" +msgstr "Multiple libraries were found for \"%[1]s\"" + +#: cli/board/details.go:193 cli/core/list.go:84 cli/core/search.go:114 +#: cli/lib/list.go:124 cli/outdated/outdated.go:62 +msgid "Name" +msgstr "Name" + +#: cli/lib/search.go:143 +msgid "Name: \"%s\"" +msgstr "Name: \"%s\"" + +#: cli/outdated/outdated.go:62 cli/outdated/outdated.go:72 +#: cli/update/update.go:82 cli/update/update.go:92 +msgid "New version" +msgstr "New version" + +#: cli/board/list.go:116 +msgid "No boards found." +msgstr "No boards found." + +#: cli/lib/examples.go:107 +msgid "No libraries found." +msgstr "No libraries found." + +#: cli/lib/list.go:116 +msgid "No libraries installed." +msgstr "No libraries installed." + +#: cli/lib/search.go:127 +msgid "No libraries matching your search." +msgstr "No libraries matching your search." + +#: cli/lib/search.go:138 +msgid "" +"No libraries matching your search.\n" +"Did you mean...\n" +msgstr "" +"No libraries matching your search.\n" +"Did you mean...\n" + +#: arduino/errors.go:220 +msgid "No monitor available for the port protocol %s" +msgstr "No monitor available for the port protocol %s" + +#: cli/core/search.go:124 +msgid "No platforms matching your search." +msgstr "No platforms matching your search." + +#: commands/board/attach.go:92 +msgid "No supported board found at %s" +msgstr "No supported board found at %s" + +#: cli/lib/list.go:114 +msgid "No updates available." +msgstr "No updates available." + +#: commands/upload/upload.go:496 +msgid "No upload port found, using %s as fallback" +msgstr "No upload port found, using %s as fallback" + +#: arduino/errors.go:367 +msgid "No valid dependencies solution found" +msgstr "No valid dependencies solution found" + +#: legacy/builder/phases/sizer.go:120 +msgid "Not enough memory; see %[1]s for tips on reducing your footprint." +msgstr "Not enough memory; see %[1]s for tips on reducing your footprint." + +#: legacy/builder/print_used_and_not_used_libraries.go:48 +msgid "Not used: %[1]s" +msgstr "Not used: %[1]s" + +#: cli/board/details.go:164 +msgid "OS:" +msgstr "OS:" + +#: cli/board/details.go:128 +msgid "Official Arduino board:" +msgstr "Official Arduino board:" + +#: cli/monitor/monitor.go:54 cli/monitor/monitor.go:55 +msgid "Open a communication port with a board." +msgstr "Open a communication port with a board." + +#: cli/board/details.go:176 +msgid "Option:" +msgstr "Option:" + +#: cli/compile/compile.go:98 +msgid "" +"Optional, can be: %s. Used to tell gcc which warning level to use (-W flag)." +msgstr "" +"Optional, can be: %s. Used to tell gcc which warning level to use (-W flag)." + +#: cli/compile/compile.go:112 +msgid "Optional, cleanup the build folder and do not use any cached build." +msgstr "Optional, cleanup the build folder and do not use any cached build." + +#: cli/compile/compile.go:109 +msgid "" +"Optional, optimize compile output for debugging, rather than for release." +msgstr "" +"Optional, optimize compile output for debugging, rather than for release." + +#: cli/compile/compile.go:100 +msgid "Optional, suppresses almost every output." +msgstr "Optional, suppresses almost every output." + +#: cli/compile/compile.go:99 cli/upload/upload.go:65 +msgid "Optional, turns on verbose mode." +msgstr "Optional, turns on verbose mode." + +#: cli/compile/compile.go:117 +msgid "" +"Optional. Path to a .json file that contains a set of replacements of the " +"sketch source code." +msgstr "" +"Optional. Path to a .json file that contains a set of replacements of the " +"sketch source code." + +#: commands/daemon/monitor.go:72 +msgid "OutputRate in Null monitor must be a float64" +msgstr "OutputRate in Null monitor must be a float64" + +#: cli/compile/compile.go:96 +msgid "" +"Override a build property with a custom value. Can be used multiple times " +"for multiple properties." +msgstr "" +"Override a build property with a custom value. Can be used multiple times " +"for multiple properties." + +#: cli/config/init.go:57 +msgid "Overwrite existing config file." +msgstr "Overwrite existing config file." + +#: cli/core/download.go:36 cli/core/install.go:40 cli/core/uninstall.go:36 +#: cli/core/upgrade.go:38 +msgid "PACKAGER" +msgstr "PACKAGER" + +#: cli/board/details.go:144 +msgid "Package URL:" +msgstr "Package URL:" + +#: cli/board/details.go:143 +msgid "Package maintainer:" +msgstr "Package maintainer:" + +#: cli/board/details.go:142 +msgid "Package name:" +msgstr "Package name:" + +#: cli/board/details.go:146 +msgid "Package online help:" +msgstr "Package online help:" + +#: cli/board/details.go:145 +msgid "Package website:" +msgstr "Package website:" + +#: cli/lib/search.go:166 +msgid "Paragraph: %s" +msgstr "Paragraph: %s" + +#: cli/cli.go:113 +msgid "Path to the file where logs will be written." +msgstr "Path to the file where logs will be written." + +#: cli/compile/compile.go:92 +msgid "" +"Path where to save compiled files. If omitted, a directory will be created " +"in the default temporary path of your OS." +msgstr "" +"Path where to save compiled files. If omitted, a directory will be created " +"in the default temporary path of your OS." + +#: commands/upload/upload.go:477 +msgid "Performing 1200-bps touch reset on serial port %s" +msgstr "Performing 1200-bps touch reset on serial port %s" + +#: commands/core/install.go:73 +msgid "Platform %s already installed" +msgstr "Platform %s already installed" + +#: commands/core/install.go:177 +msgid "Platform %s installed" +msgstr "Platform %s installed" + +#: commands/core/uninstall.go:85 +msgid "Platform %s uninstalled" +msgstr "Platform %s uninstalled" + +#: arduino/errors.go:385 +msgid "Platform '%s' is already at the latest version" +msgstr "Platform '%s' is already at the latest version" + +#: arduino/errors.go:329 +msgid "Platform '%s' not found" +msgstr "Platform '%s' not found" + +#: cli/board/search.go:85 +msgid "Platform ID" +msgstr "Platform ID" + +#: cli/board/details.go:152 +msgid "Platform URL:" +msgstr "Platform URL:" + +#: cli/board/details.go:151 +msgid "Platform architecture:" +msgstr "Platform architecture:" + +#: cli/board/details.go:150 +msgid "Platform category:" +msgstr "Platform category:" + +#: cli/board/details.go:157 +msgid "Platform checksum:" +msgstr "Platform checksum:" + +#: cli/board/details.go:153 +msgid "Platform file name:" +msgstr "Platform file name:" + +#: cli/board/details.go:149 +msgid "Platform name:" +msgstr "Platform name:" + +#: cli/board/details.go:155 +msgid "Platform size (bytes):" +msgstr "Platform size (bytes):" + +#: arduino/errors.go:136 +msgid "" +"Please specify an FQBN. Multiple possible ports detected on port %s with " +"protocol %s" +msgstr "" +"Please specify an FQBN. Multiple possible ports detected on port %s with " +"protocol %s" + +#: cli/board/list.go:88 cli/board/list.go:126 +msgid "Port" +msgstr "Port" + +#: cli/monitor/monitor.go:164 cli/monitor/monitor.go:171 +msgid "Port closed:" +msgstr "Port closed:" + +#: arduino/errors.go:558 +msgid "Port monitor error" +msgstr "Port monitor error" + +#: legacy/builder/phases/libraries_builder.go:99 +#: legacy/builder/phases/libraries_builder.go:107 +msgid "Precompiled library in \"%[1]s\" not found" +msgstr "Precompiled library in \"%[1]s\" not found" + +#: cli/board/details.go:44 +msgid "Print details about a board." +msgstr "Print details about a board." + +#: cli/compile/compile.go:88 +msgid "Print preprocessed code to stdout instead of compiling." +msgstr "Print preprocessed code to stdout instead of compiling." + +#: cli/cli.go:107 +msgid "Print the logs on the standard output." +msgstr "Print the logs on the standard output." + +#: cli/config/dump.go:31 +msgid "Prints the current configuration" +msgstr "Prints the current configuration" + +#: cli/config/dump.go:32 +msgid "Prints the current configuration." +msgstr "Prints the current configuration." + +#: arduino/errors.go:262 +msgid "Programmer '%s' not found" +msgstr "Programmer '%s' not found" + +#: cli/board/details.go:92 +msgid "Programmer name" +msgstr "Programmer name" + +#: cli/arguments/programmer.go:29 +msgid "Programmer to use, e.g: atmel_ice" +msgstr "Programmer to use, e.g: atmel_ice" + +#: cli/board/details.go:193 +msgid "Programmers:" +msgstr "Programmers:" + +#: arduino/errors.go:314 +msgid "Property '%s' is undefined" +msgstr "Property '%s' is undefined" + +#: cli/board/list.go:126 +msgid "Protocol" +msgstr "Protocol" + +#: cli/lib/search.go:176 +msgid "Provides includes: %s" +msgstr "Provides includes: %s" + +#: cli/config/remove.go:32 cli/config/remove.go:33 +msgid "Removes one or more values from a setting." +msgstr "Removes one or more values from a setting." + +#: commands/instances.go:722 commands/lib/install.go:106 +msgid "Replacing %[1]s with %[2]s" +msgstr "Replacing %[1]s with %[2]s" + +#: cli/board/details.go:161 +msgid "Required tool:" +msgstr "Required tool:" + +#: cli/daemon/daemon.go:56 +msgid "Run as a daemon on port: %s" +msgstr "Run as a daemon on port: %s" + +#: cli/monitor/monitor.go:64 +msgid "Run in silent mode, show only monitor input and output." +msgstr "Run in silent mode, show only monitor input and output." + +#: cli/daemon/daemon.go:57 +msgid "" +"Running as a daemon the initialization of cores and libraries is done only " +"once." +msgstr "" +"Running as a daemon the initialization of cores and libraries is done only " +"once." + +#: legacy/builder/phases/core_builder.go:48 +msgid "Running normal build of the core..." +msgstr "Running normal build of the core..." + +#: cli/compile/compile.go:90 +msgid "Save build artifacts in this directory." +msgstr "Save build artifacts in this directory." + +#: cli/core/search.go:50 +msgid "Search for a core in Boards Manager using the specified keywords." +msgstr "Search for a core in Boards Manager using the specified keywords." + +#: cli/core/search.go:49 +msgid "Search for a core in Boards Manager." +msgstr "Search for a core in Boards Manager." + +#: cli/lib/search.go:45 +msgid "Search for one or more libraries data (case insensitive search)." +msgstr "Search for one or more libraries data (case insensitive search)." + +#: cli/lib/search.go:44 +msgid "Searches for one or more libraries data." +msgstr "Searches for one or more libraries data." + +#: commands/board/attach.go:109 +msgid "Selected fqbn: %s" +msgstr "Selected fqbn: %s" + +#: cli/lib/search.go:165 +msgid "Sentence: %s" +msgstr "Sentence: %s" + +#: commands/download.go:63 +msgid "Server responded with: %s" +msgstr "Server responded with: %s" + +#: cli/config/set.go:33 cli/config/set.go:34 +msgid "Sets a setting value." +msgstr "Sets a setting value." + +#: cli/config/init.go:55 cli/config/init.go:56 +msgid "Sets where to save the configuration file." +msgstr "Sets where to save the configuration file." + +#: cli/monitor/monitor.go:195 +msgid "Setting" +msgstr "Setting" + +#: cli/config/delete.go:62 cli/config/validate.go:49 +msgid "Settings key doesn't exist" +msgstr "Settings key doesn't exist" + +#: cli/core/search.go:55 +msgid "Show all available core versions." +msgstr "Show all available core versions." + +#: cli/compile/compile.go:87 +msgid "Show all build properties used instead of compiling." +msgstr "Show all build properties used instead of compiling." + +#: cli/monitor/monitor.go:62 +msgid "Show all the settings of the communication port." +msgstr "Show all the settings of the communication port." + +#: cli/board/listall.go:48 cli/board/search.go:47 +msgid "Show also boards marked as 'hidden' in the platform" +msgstr "Show also boards marked as 'hidden' in the platform" + +#: cli/board/details.go:52 +msgid "Show full board details" +msgstr "Show full board details" + +#: cli/board/details.go:45 +msgid "" +"Show information about a board, in particular if the board has options to be" +" specified in the FQBN." +msgstr "" +"Show information about a board, in particular if the board has options to be" +" specified in the FQBN." + +#: cli/lib/search.go:50 +msgid "Show library names only." +msgstr "Show library names only." + +#: cli/board/details.go:53 +msgid "Show list of available programmers" +msgstr "Show list of available programmers" + +#: cli/debug/debug.go:64 +msgid "" +"Show metadata about the debug session instead of starting the debugger." +msgstr "" +"Show metadata about the debug session instead of starting the debugger." + +#: cli/update/update.go:46 +msgid "Show outdated cores and libraries after index update" +msgstr "Show outdated cores and libraries after index update" + +#: cli/lib/list.go:43 +msgid "Shows a list of installed libraries." +msgstr "Shows a list of installed libraries." + +#: cli/lib/list.go:44 +msgid "" +"Shows a list of installed libraries.\n" +"\n" +"If the LIBNAME parameter is specified the listing is limited to that specific\n" +"library. By default the libraries provided as built-in by platforms/core are\n" +"not listed, they can be listed by adding the --all flag." +msgstr "" +"Shows a list of installed libraries.\n" +"\n" +"If the LIBNAME parameter is specified the listing is limited to that specific\n" +"library. By default the libraries provided as built-in by platforms/core are\n" +"not listed, they can be listed by adding the --all flag." + +#: cli/core/list.go:40 cli/core/list.go:41 +msgid "Shows the list of installed platforms." +msgstr "Shows the list of installed platforms." + +#: cli/lib/examples.go:44 +msgid "Shows the list of the examples for libraries." +msgstr "Shows the list of the examples for libraries." + +#: cli/lib/examples.go:45 +msgid "" +"Shows the list of the examples for libraries. A name may be given as " +"argument to search a specific library." +msgstr "" +"Shows the list of the examples for libraries. A name may be given as " +"argument to search a specific library." + +#: cli/version/version.go:39 +msgid "" +"Shows the version number of Arduino CLI which is installed on your system." +msgstr "" +"Shows the version number of Arduino CLI which is installed on your system." + +#: cli/version/version.go:38 +msgid "Shows version number of Arduino CLI." +msgstr "Shows version number of Arduino CLI." + +#: cli/board/details.go:166 +msgid "Size (bytes):" +msgstr "Size (bytes):" + +#: legacy/builder/fail_if_buildpath_equals_sketchpath.go:42 +msgid "" +"Sketch cannot be located in build path. Please specify a different build " +"path" +msgstr "" +"Sketch cannot be located in build path. Please specify a different build " +"path" + +#: cli/sketch/new.go:65 +msgid "Sketch created in: %s" +msgstr "Sketch created in: %s" + +#: legacy/builder/phases/sizer.go:115 +msgid "Sketch too big; see %[1]s for tips on reducing it." +msgstr "Sketch too big; see %[1]s for tips on reducing it." + +#: legacy/builder/phases/sizer.go:83 +msgid "" +"Sketch uses %[1]s bytes (%[3]s%%) of program storage space. Maximum is %[2]s" +" bytes." +msgstr "" +"Sketch uses %[1]s bytes (%[3]s%%) of program storage space. Maximum is %[2]s" +" bytes." + +#: cli/arguments/sketch.go:61 +msgid "" +"Sketches with .pde extension are deprecated, please rename the following " +"files to .ino:" +msgstr "" +"Sketches with .pde extension are deprecated, please rename the following " +"files to .ino:" + +#: legacy/builder/phases/linker.go:35 +msgid "Skip linking of final executable." +msgstr "Skip linking of final executable." + +#: commands/upload/upload.go:470 +msgid "Skipping 1200-bps touch reset: no serial port selected!" +msgstr "Skipping 1200-bps touch reset: no serial port selected!" + +#: legacy/builder/builder_utils/utils.go:437 +msgid "Skipping archive creation of: %[1]s" +msgstr "Skipping archive creation of: %[1]s" + +#: legacy/builder/builder_utils/utils.go:256 +msgid "Skipping compile of: %[1]s" +msgstr "Skipping compile of: %[1]s" + +#: legacy/builder/container_find_includes.go:335 +msgid "Skipping dependencies detection for precompiled library %[1]s" +msgstr "Skipping dependencies detection for precompiled library %[1]s" + +#: commands/instances.go:859 +msgid "Skipping platform configuration" +msgstr "Skipping platform configuration" + +#: commands/core/install.go:173 +msgid "Skipping platform configuration." +msgstr "Skipping platform configuration." + +#: legacy/builder/recipe_runner.go:54 +msgid "Skipping: %[1]s" +msgstr "Skipping: %[1]s" + +#: arduino/serialutils/serialutils.go:133 +msgid "TOUCH: error during reset: %s" +msgstr "TOUCH: error during reset: %s" + +#: cli/daemon/daemon.go:62 +msgid "The TCP port the daemon will listen to" +msgstr "The TCP port the daemon will listen to" + +#: cli/cli.go:124 +msgid "The custom config file (if not specified the default will be used)." +msgstr "The custom config file (if not specified the default will be used)." + +#: cli/config/add.go:52 +msgid "" +"The key '%[1]v' is not a list of items, can't add to it.\n" +"Maybe use '%[2]s'?" +msgstr "" +"The key '%[1]v' is not a list of items, can't add to it.\n" +"Maybe use '%[2]s'?" + +#: cli/config/remove.go:52 +msgid "" +"The key '%[1]v' is not a list of items, can't remove from it.\n" +"Maybe use '%[2]s'?" +msgstr "" +"The key '%[1]v' is not a list of items, can't remove from it.\n" +"Maybe use '%[2]s'?" + +#: cli/cli.go:115 cli/cli.go:120 +msgid "The output format for the logs, can be: %s" +msgstr "The output format for the logs, can be: %s" + +#: legacy/builder/phases/libraries_builder.go:147 +msgid "The platform does not support '%[1]s' for precompiled libraries." +msgstr "The platform does not support '%[1]s' for precompiled libraries." + +#: cli/lib/upgrade.go:34 +msgid "" +"This command upgrades an installed library to the latest available version. " +"Multiple libraries can be passed separated by a space. If no arguments are " +"provided, the command will upgrade all the installed libraries where an " +"update is available." +msgstr "" +"This command upgrades an installed library to the latest available version. " +"Multiple libraries can be passed separated by a space. If no arguments are " +"provided, the command will upgrade all the installed libraries where an " +"update is available." + +#: cli/outdated/outdated.go:39 +msgid "" +"This commands shows a list of installed cores and/or libraries\n" +"that can be upgraded. If nothing needs to be updated the output is empty." +msgstr "" +"This commands shows a list of installed cores and/or libraries\n" +"that can be upgraded. If nothing needs to be updated the output is empty." + +#: commands/bundled_tools.go:44 commands/core/install.go:80 +#: commands/instances.go:773 +msgid "Tool %s already installed" +msgstr "Tool %s already installed" + +#: commands/core/uninstall.go:101 +msgid "Tool %s uninstalled" +msgstr "Tool %s uninstalled" + +#: commands/debug/debug.go:134 +msgid "Toolchain '%s' is not supported" +msgstr "Toolchain '%s' is not supported" + +#: cli/debug/debug.go:135 +msgid "Toolchain custom configurations" +msgstr "Toolchain custom configurations" + +#: cli/debug/debug.go:129 +msgid "Toolchain path" +msgstr "Toolchain path" + +#: cli/debug/debug.go:130 +msgid "Toolchain prefix" +msgstr "Toolchain prefix" + +#: cli/debug/debug.go:128 +msgid "Toolchain type" +msgstr "Toolchain type" + +#: cli/burnbootloader/burnbootloader.go:58 +msgid "Turns on verbose mode." +msgstr "Turns on verbose mode." + +#: cli/board/list.go:88 cli/board/list.go:126 +msgid "Type" +msgstr "Type" + +#: cli/lib/search.go:173 +msgid "Types: %s" +msgstr "Types: %s" + +#: cli/board/details.go:168 +msgid "URL:" +msgstr "URL:" + +#: legacy/builder/phases/core_builder.go:128 +msgid "" +"Unable to cache built core, please tell %[1]s maintainers to follow %[2]s" +msgstr "" +"Unable to cache built core, please tell %[1]s maintainers to follow %[2]s" + +#: configuration/configuration.go:126 +msgid "Unable to get Documents Folder: %v" +msgstr "Unable to get Documents Folder: %v" + +#: configuration/configuration.go:101 +msgid "Unable to get Local App Data Folder: %v" +msgstr "Unable to get Local App Data Folder: %v" + +#: configuration/configuration.go:89 configuration/configuration.go:114 +msgid "Unable to get user home dir: %v" +msgstr "Unable to get user home dir: %v" + +#: cli/cli.go:215 +msgid "Unable to open file for logging: %s" +msgstr "Unable to open file for logging: %s" + +#: commands/core/uninstall.go:77 commands/lib/uninstall.go:39 +msgid "Uninstalling %s" +msgstr "Uninstalling %s" + +#: commands/core/uninstall.go:93 +msgid "Uninstalling %s, tool is no more required" +msgstr "Uninstalling %s, tool is no more required" + +#: commands/instances.go:838 +msgid "Uninstalling %s: tool is no more required" +msgstr "Uninstalling %s: tool is no more required" + +#: cli/core/uninstall.go:37 cli/core/uninstall.go:38 +msgid "" +"Uninstalls one or more cores and corresponding tool dependencies if no " +"longer used." +msgstr "" +"Uninstalls one or more cores and corresponding tool dependencies if no " +"longer used." + +#: cli/lib/uninstall.go:37 cli/lib/uninstall.go:38 +msgid "Uninstalls one or more libraries." +msgstr "Uninstalls one or more libraries." + +#: cli/board/list.go:158 +msgid "Unknown" +msgstr "Unknown" + +#: arduino/errors.go:166 +msgid "Unknown FQBN" +msgstr "Unknown FQBN" + +#: cli/update/update.go:40 +msgid "Updates the index of cores and libraries" +msgstr "Updates the index of cores and libraries" + +#: cli/update/update.go:41 +msgid "Updates the index of cores and libraries to the latest versions." +msgstr "Updates the index of cores and libraries to the latest versions." + +#: cli/core/update_index.go:36 +msgid "Updates the index of cores to the latest version." +msgstr "Updates the index of cores to the latest version." + +#: cli/core/update_index.go:35 +msgid "Updates the index of cores." +msgstr "Updates the index of cores." + +#: cli/lib/update_index.go:36 +msgid "Updates the libraries index to the latest version." +msgstr "Updates the libraries index to the latest version." + +#: cli/lib/update_index.go:35 +msgid "Updates the libraries index." +msgstr "Updates the libraries index." + +#: commands/instances.go:455 commands/instances.go:481 +#: commands/instances.go:511 +msgid "Updating index: %s" +msgstr "Updating index: %s" + +#: commands/instances.go:382 +msgid "Updating index: library_index.json.gz" +msgstr "Updating index: library_index.json.gz" + +#: commands/instances.go:392 +msgid "Updating index: library_index.json.sig" +msgstr "Updating index: library_index.json.sig" + +#: commands/instances.go:795 +msgid "Updating platform %s" +msgstr "Updating platform %s" + +#: commands/core/upgrade.go:55 +msgid "Upgrade doesn't accept parameters with version" +msgstr "Upgrade doesn't accept parameters with version" + +#: cli/upgrade/upgrade.go:43 +msgid "Upgrades installed cores and libraries to latest version." +msgstr "Upgrades installed cores and libraries to latest version." + +#: cli/upgrade/upgrade.go:42 +msgid "Upgrades installed cores and libraries." +msgstr "Upgrades installed cores and libraries." + +#: cli/lib/upgrade.go:33 +msgid "Upgrades installed libraries." +msgstr "Upgrades installed libraries." + +#: cli/core/upgrade.go:39 cli/core/upgrade.go:40 +msgid "Upgrades one or all installed platforms to the latest version." +msgstr "Upgrades one or all installed platforms to the latest version." + +#: commands/core/install.go:114 +msgid "Upgrading platform %[1]s with %[2]s" +msgstr "Upgrading platform %[1]s with %[2]s" + +#: cli/upload/upload.go:50 +msgid "Upload Arduino sketches." +msgstr "Upload Arduino sketches." + +#: cli/upload/upload.go:51 +msgid "" +"Upload Arduino sketches. This does NOT compile the sketch prior to upload." +msgstr "" +"Upload Arduino sketches. This does NOT compile the sketch prior to upload." + +#: cli/arguments/port.go:46 +msgid "Upload port address, e.g.: COM3 or /dev/ttyACM2" +msgstr "Upload port address, e.g.: COM3 or /dev/ttyACM2" + +#: commands/upload/upload.go:494 +msgid "Upload port found on %s" +msgstr "Upload port found on %s" + +#: cli/arguments/port.go:50 +msgid "Upload port protocol, e.g: serial" +msgstr "Upload port protocol, e.g: serial" + +#: cli/compile/compile.go:101 +msgid "Upload the binary after the compilation." +msgstr "Upload the binary after the compilation." + +#: cli/burnbootloader/burnbootloader.go:48 +msgid "Upload the bootloader on the board using an external programmer." +msgstr "Upload the bootloader on the board using an external programmer." + +#: cli/burnbootloader/burnbootloader.go:47 +msgid "Upload the bootloader." +msgstr "Upload the bootloader." + +#: cli/compile/compile.go:228 cli/upload/upload.go:117 +msgid "" +"Uploading to specified board using %s protocol requires the following info:" +msgstr "" +"Uploading to specified board using %s protocol requires the following info:" + +#: cli/usage.go:26 +msgid "Usage:" +msgstr "Usage:" + +#: cli/usage.go:33 +msgid "Use %s for more information about a command." +msgstr "Use %s for more information about a command." + +#: legacy/builder/print_used_and_not_used_libraries.go:46 +msgid "Used: %[1]s" +msgstr "Used: %[1]s" + +#: arduino/libraries/librariesmanager/install.go:68 +#: arduino/libraries/librariesmanager/install.go:84 +#: arduino/libraries/librariesmanager/install.go:106 +#: arduino/libraries/librariesmanager/install.go:190 +msgid "User directory not set" +msgstr "User directory not set" + +#: legacy/builder/target_board_resolver.go:43 +msgid "Using board '%[1]s' from platform in folder: %[2]s" +msgstr "Using board '%[1]s' from platform in folder: %[2]s" + +#: legacy/builder/container_find_includes.go:347 +msgid "Using cached library dependencies for file: %[1]s" +msgstr "Using cached library dependencies for file: %[1]s" + +#: legacy/builder/target_board_resolver.go:44 +msgid "Using core '%[1]s' from platform in folder: %[2]s" +msgstr "Using core '%[1]s' from platform in folder: %[2]s" + +#: legacy/builder/print_used_libraries_if_verbose.go:44 +msgid "Using library %[1]s at version %[2]s in folder: %[3]s %[4]s" +msgstr "Using library %[1]s at version %[2]s in folder: %[3]s %[4]s" + +#: legacy/builder/print_used_libraries_if_verbose.go:38 +msgid "Using library %[1]s in folder: %[2]s %[3]s" +msgstr "Using library %[1]s in folder: %[2]s %[3]s" + +#: legacy/builder/phases/core_builder.go:105 +msgid "Using precompiled core: %[1]s" +msgstr "Using precompiled core: %[1]s" + +#: legacy/builder/phases/libraries_builder.go:96 +#: legacy/builder/phases/libraries_builder.go:104 +msgid "Using precompiled library in %[1]s" +msgstr "Using precompiled library in %[1]s" + +#: legacy/builder/builder_utils/utils.go:254 +#: legacy/builder/builder_utils/utils.go:460 +msgid "Using previously compiled file: %[1]s" +msgstr "Using previously compiled file: %[1]s" + +#: cli/core/download.go:36 cli/core/install.go:40 +msgid "VERSION" +msgstr "VERSION" + +#: cli/lib/check_deps.go:36 cli/lib/install.go:47 +msgid "VERSION_NUMBER" +msgstr "VERSION_NUMBER" + +#: cli/monitor/monitor.go:195 +msgid "Values" +msgstr "Values" + +#: cli/burnbootloader/burnbootloader.go:57 cli/compile/compile.go:103 +#: cli/upload/upload.go:64 +msgid "Verify uploaded binary after the upload." +msgstr "Verify uploaded binary after the upload." + +#: cli/core/search.go:114 +msgid "Version" +msgstr "Version" + +#: cli/lib/search.go:174 +msgid "Versions: %s" +msgstr "Versions: %s" + +#: commands/core/install.go:169 +msgid "WARNING cannot configure platform: %s" +msgstr "WARNING cannot configure platform: %s" + +#: commands/instances.go:855 +msgid "WARNING: cannot run post install: %s" +msgstr "WARNING: cannot run post install: %s" + +#: legacy/builder/warn_about_arch_incompatible_libraries.go:39 +msgid "" +"WARNING: library %[1]s claims to run on %[2]s architecture(s) and may be " +"incompatible with your current board which runs on %[3]s architecture(s)." +msgstr "" +"WARNING: library %[1]s claims to run on %[2]s architecture(s) and may be " +"incompatible with your current board which runs on %[3]s architecture(s)." + +#: commands/upload/upload.go:483 +msgid "Waiting for upload port..." +msgstr "Waiting for upload port..." + +#: legacy/builder/add_build_board_property_if_missing.go:36 +msgid "" +"Warning: Board %[1]s doesn't define a %[2]s preference. Auto-set to: %[3]s" +msgstr "" +"Warning: Board %[1]s doesn't define a %[2]s preference. Auto-set to: %[3]s" + +#: legacy/builder/warn_about_platform_rewrites.go:40 +msgid "" +"Warning: platform.txt from core '%[1]s' contains deprecated %[2]s, " +"automatically converted to %[3]s. Consider upgrading this core." +msgstr "" +"Warning: platform.txt from core '%[1]s' contains deprecated %[2]s, " +"automatically converted to %[3]s. Consider upgrading this core." + +#: commands/upload/upload.go:379 +msgid "" +"Warning: tool '%s' is not installed. It might not be available for your OS." +msgstr "" +"Warning: tool '%s' is not installed. It might not be available for your OS." + +#: cli/lib/search.go:167 +msgid "Website: %s" +msgstr "Website: %s" + +#: cli/compile/compile.go:104 +msgid "" +"When specified, VID/PID specific build properties are used, if board " +"supports them." +msgstr "" +"When specified, VID/PID specific build properties are used, if board " +"supports them." + +#: cli/config/init.go:42 +msgid "Writes current configuration to a configuration file." +msgstr "Writes current configuration to a configuration file." + +#: cli/config/init.go:45 +msgid "" +"Writes current configuration to the configuration file in the data " +"directory." +msgstr "" +"Writes current configuration to the configuration file in the data " +"directory." + +#: cli/config/set.go:77 +msgid "Writing config file: %v" +msgstr "Writing config file: %v" + +#: cli/arguments/arguments.go:37 +msgid "and" +msgstr "and" + +#: arduino/resources/checksums.go:80 +msgid "archive hash differs from hash in index" +msgstr "archive hash differs from hash in index" + +#: arduino/libraries/librariesmanager/install.go:137 +msgid "archive is not valid: multiple files found in zip file top level" +msgstr "archive is not valid: multiple files found in zip file top level" + +#: cli/sketch/archive.go:38 +msgid "archivePath" +msgstr "archivePath" + +#: legacy/builder/preprocess_sketch.go:103 +msgid "arduino-preprocessor pattern is missing" +msgstr "arduino-preprocessor pattern is missing" + +#: commands/upload/upload.go:640 +msgid "autodetect build artifact: %s" +msgstr "autodetect build artifact: %s" + +#: commands/upload/upload.go:625 +msgid "binary file not found in %s" +msgstr "binary file not found in %s" + +#: arduino/cores/packagemanager/package_manager.go:189 +msgid "board %s not found" +msgstr "board %s not found" + +#: commands/board/list.go:42 +msgid "board not found" +msgstr "board not found" + +#: cli/board/listall.go:38 cli/board/search.go:37 +msgid "boardname" +msgstr "boardname" + +#: arduino/discovery/discovery.go:312 arduino/discovery/discovery.go:335 +#: arduino/discovery/discovery.go:357 arduino/discovery/discovery.go:382 +#: arduino/discovery/discovery.go:401 arduino/discovery/discovery.go:424 +msgid "calling %[1]s: %[2]w" +msgstr "calling %[1]s: %[2]w" + +#: arduino/cores/status.go:123 arduino/cores/status.go:150 +msgid "can't find latest release of %s" +msgstr "can't find latest release of %s" + +#: commands/instances.go:263 +msgid "can't find latest release of tool %s" +msgstr "can't find latest release of tool %s" + +#: arduino/sketch/sketch.go:105 +msgid "can't find main Sketch file in %s" +msgstr "can't find main Sketch file in %s" + +#: arduino/cores/packagemanager/loader.go:820 +msgid "can't find pattern for discovery with id %s" +msgstr "can't find pattern for discovery with id %s" + +#: executils/output.go:52 +msgid "can't retrieve standard error stream: %s" +msgstr "can't retrieve standard error stream: %s" + +#: executils/output.go:34 +msgid "can't retrieve standard output stream: %s" +msgstr "can't retrieve standard output stream: %s" + +#: legacy/builder/resolve_library.go:34 +msgid "candidates" +msgstr "candidates" + +#: commands/upload/upload.go:582 commands/upload/upload.go:589 +msgid "cannot execute upload tool: %s" +msgstr "cannot execute upload tool: %s" + +#: arduino/resources/install.go:39 +msgid "checking local archive integrity" +msgstr "checking local archive integrity" + +#: legacy/builder/wipeout_build_path_if_build_options_changed.go:85 +#: legacy/builder/wipeout_build_path_if_build_options_changed.go:89 +msgid "cleaning build path" +msgstr "cleaning build path" + +#: cli/cli.go:74 +msgid "command" +msgstr "command" + +#: arduino/monitor/monitor.go:149 +msgid "command '%[1]s' failed: %[2]s" +msgstr "command '%[1]s' failed: %[2]s" + +#: arduino/discovery/discovery.go:316 arduino/discovery/discovery.go:339 +#: arduino/discovery/discovery.go:361 arduino/discovery/discovery.go:386 +#: arduino/discovery/discovery.go:405 arduino/discovery/discovery.go:428 +msgid "command failed: %s" +msgstr "command failed: %s" + +#: arduino/discovery/discovery.go:314 arduino/discovery/discovery.go:318 +#: arduino/discovery/discovery.go:337 arduino/discovery/discovery.go:341 +#: arduino/discovery/discovery.go:359 arduino/discovery/discovery.go:363 +#: arduino/discovery/discovery.go:384 arduino/discovery/discovery.go:388 +#: arduino/discovery/discovery.go:403 arduino/discovery/discovery.go:426 +#: arduino/discovery/discovery.go:430 arduino/monitor/monitor.go:146 +#: arduino/monitor/monitor.go:152 +msgid "communication out of sync, expected '%[1]s', received '%[2]s'" +msgstr "communication out of sync, expected '%[1]s', received '%[2]s'" + +#: arduino/resources/checksums.go:76 +msgid "computing hash: %s" +msgstr "computing hash: %s" + +#: commands/upload/upload.go:697 +msgid "could not find a valid build artifact" +msgstr "could not find a valid build artifact" + +#: arduino/cores/packagemanager/loader.go:757 +msgid "creating discovery: %s" +msgstr "creating discovery: %s" + +#: arduino/cores/packagemanager/install_uninstall.go:45 +msgid "creating installed.json in %[1]s: %[2]s" +msgstr "creating installed.json in %[1]s: %[2]s" + +#: arduino/resources/install.go:44 arduino/resources/install.go:48 +msgid "creating temp dir for extraction: %s" +msgstr "creating temp dir for extraction: %s" + +#: legacy/builder/phases/sizer.go:121 +msgid "data section exceeds available space in board" +msgstr "data section exceeds available space in board" + +#: arduino/sketch/sketch.go:211 +msgid "decoding sketch metadata: %s" +msgstr "decoding sketch metadata: %s" + +#: commands/lib/resolve_deps.go:55 +msgid "dependency '%s' is not available" +msgstr "dependency '%s' is not available" + +#: legacy/builder/utils/utils.go:474 +msgid "destination already exists" +msgstr "destination already exists" + +#: arduino/libraries/librariesmanager/install.go:75 +msgid "destination dir %s already exists, cannot install" +msgstr "destination dir %s already exists, cannot install" + +#: arduino/libraries/librariesmanager/install.go:268 +msgid "directory doesn't exist: %s" +msgstr "directory doesn't exist: %s" + +#: arduino/discovery/discoverymanager/discoverymanager.go:106 +msgid "discovery %[1]s process not started: %[2]w" +msgstr "discovery %[1]s process not started: %[2]w" + +#: arduino/cores/packagemanager/loader.go:748 +msgid "discovery not found: %s" +msgstr "discovery not found: %s" + +#: arduino/cores/packagemanager/loader.go:752 +msgid "discovery not installed: %s" +msgstr "discovery not installed: %s" + +#: arduino/cores/packagemanager/package_manager.go:478 +msgid "discovery release not found: %s" +msgstr "discovery release not found: %s" + +#: cli/core/download.go:41 cli/core/install.go:45 +msgid "download a specific version (in this case 1.6.9)." +msgstr "download a specific version (in this case 1.6.9)." + +#: cli/core/download.go:40 cli/core/install.go:43 +msgid "download the latest version of Arduino SAMD core." +msgstr "download the latest version of Arduino SAMD core." + +#: commands/instances.go:99 +msgid "downloading %[1]s tool: %[2]s" +msgstr "downloading %[1]s tool: %[2]s" + +#: arduino/cores/fqbn.go:48 +msgid "empty board identifier" +msgstr "empty board identifier" + +#: arduino/sketch/sketch.go:200 +msgid "encoding sketch metadata: %s" +msgstr "encoding sketch metadata: %s" + +#: arduino/monitors/serial.go:44 +msgid "error opening serial monitor" +msgstr "error opening serial monitor" + +#: cli/config/set.go:69 +msgid "error parsing value: %v" +msgstr "error parsing value: %v" + +#: commands/board/list.go:88 +msgid "error processing response from server" +msgstr "error processing response from server" + +#: commands/board/list.go:103 +msgid "error querying Arduino Cloud Api" +msgstr "error querying Arduino Cloud Api" + +#: arduino/resources/install.go:67 +msgid "extracting archive: %s" +msgstr "extracting archive: %s" + +#: arduino/libraries/librariesmanager/install.go:125 +msgid "extracting archive: %w" +msgstr "extracting archive: %w" + +#: arduino/resources/checksums.go:145 +msgid "failed to compute hash of file \"%s\"" +msgstr "failed to compute hash of file \"%s\"" + +#: commands/board/list.go:71 +msgid "failed to initialize http client" +msgstr "failed to initialize http client" + +#: arduino/resources/checksums.go:97 +msgid "fetched archive size differs from size specified in index" +msgstr "fetched archive size differs from size specified in index" + +#: arduino/resources/install.go:132 +msgid "files in archive must be placed in a subdirectory" +msgstr "files in archive must be placed in a subdirectory" + +#: arduino/cores/packagemanager/loader.go:67 +msgid "find abs path: %s" +msgstr "find abs path: %s" + +#: commands/daemon/monitor.go:45 +msgid "first message must contain monitor configuration, not data" +msgstr "first message must contain monitor configuration, not data" + +#: cli/cli.go:74 +msgid "flags" +msgstr "flags" + +#: arduino/cores/packagemanager/loader.go:109 +msgid "following possible symlink %[1]s: %[2]s" +msgstr "following possible symlink %[1]s: %[2]s" + +#: cli/lib/download.go:41 +msgid "for a specific version." +msgstr "for a specific version." + +#: cli/lib/check_deps.go:40 cli/lib/download.go:40 cli/lib/install.go:51 +msgid "for the latest version." +msgstr "for the latest version." + +#: cli/lib/check_deps.go:41 cli/lib/install.go:52 +msgid "for the specific version." +msgstr "for the specific version." + +#: inventory/inventory.go:68 +msgid "generating installation.id: %w" +msgstr "generating installation.id: %w" + +#: inventory/inventory.go:74 +msgid "generating installation.secret: %w" +msgstr "generating installation.secret: %w" + +#: arduino/resources/helpers.go:68 +msgid "getting archive file info: %s" +msgstr "getting archive file info: %s" + +#: arduino/resources/checksums.go:94 +msgid "getting archive info: %s" +msgstr "getting archive info: %s" + +#: arduino/resources/checksums.go:67 arduino/resources/checksums.go:90 +#: arduino/resources/helpers.go:40 arduino/resources/helpers.go:49 +#: arduino/resources/install.go:55 +msgid "getting archive path: %s" +msgstr "getting archive path: %s" + +#: arduino/cores/packagemanager/package_manager.go:195 +msgid "getting build properties for board %[1]s: %[2]s" +msgstr "getting build properties for board %[1]s: %[2]s" + +#: arduino/cores/packagemanager/download.go:103 +msgid "getting discovery dependencies for platform %[1]s: %[2]s" +msgstr "getting discovery dependencies for platform %[1]s: %[2]s" + +#: arduino/cores/packagemanager/download.go:111 +msgid "getting monitor dependencies for platform %[1]s: %[2]s" +msgstr "getting monitor dependencies for platform %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:701 +msgid "getting parent dir of %[1]s: %[2]s" +msgstr "getting parent dir of %[1]s: %[2]s" + +#: arduino/cores/packagemanager/download.go:96 +msgid "getting tool dependencies for platform %[1]s: %[2]s" +msgstr "getting tool dependencies for platform %[1]s: %[2]s" + +#: arduino/sketch/sketch.go:155 +msgid "importing sketch metadata: %s" +msgstr "importing sketch metadata: %s" + +#: arduino/libraries/librariesmanager/install.go:92 +msgid "install directory not set" +msgstr "install directory not set" + +#: commands/instances.go:103 +msgid "installing %[1]s tool: %[2]s" +msgstr "installing %[1]s tool: %[2]s" + +#: arduino/cores/packagemanager/install_uninstall.go:37 +msgid "installing platform %[1]s: %[2]s" +msgstr "installing platform %[1]s: %[2]s" + +#: arduino/discovery/discovery.go:176 +msgid "invalid 'add' message: missing port" +msgstr "invalid 'add' message: missing port" + +#: arduino/discovery/discovery.go:187 +msgid "invalid 'remove' message: missing port" +msgstr "invalid 'remove' message: missing port" + +#: arduino/resources/checksums.go:45 +msgid "invalid checksum format: %s" +msgstr "invalid checksum format: %s" + +#: arduino/cores/fqbn.go:54 arduino/cores/fqbn.go:59 +msgid "invalid config option: %s" +msgstr "invalid config option: %s" + +#: cli/arguments/reference.go:90 +msgid "invalid empty core architecture '%s'" +msgstr "invalid empty core architecture '%s'" + +#: cli/arguments/reference.go:67 +msgid "invalid empty core argument" +msgstr "invalid empty core argument" + +#: cli/arguments/reference.go:86 +msgid "invalid empty core name '%s'" +msgstr "invalid empty core name '%s'" + +#: cli/arguments/reference.go:71 +msgid "invalid empty core reference '%s'" +msgstr "invalid empty core reference '%s'" + +#: cli/arguments/reference.go:76 +msgid "invalid empty core version: '%s'" +msgstr "invalid empty core version: '%s'" + +#: cli/lib/args.go:49 +msgid "invalid empty library name" +msgstr "invalid empty library name" + +#: cli/lib/args.go:54 +msgid "invalid empty library version: %s" +msgstr "invalid empty library version: %s" + +#: arduino/cores/board.go:123 +msgid "invalid empty option found" +msgstr "invalid empty option found" + +#: arduino/libraries/librariesmanager/install.go:258 +msgid "invalid git url" +msgstr "invalid git url" + +#: arduino/resources/checksums.go:49 +msgid "invalid hash '%[1]s': %[2]s" +msgstr "invalid hash '%[1]s': %[2]s" + +#: cli/arguments/reference.go:83 +msgid "invalid item %s" +msgstr "invalid item %s" + +#: arduino/libraries/libraries_layout.go:53 +msgid "invalid library layout value: %d" +msgstr "invalid library layout value: %d" + +#: arduino/libraries/libraries_layout.go:68 +msgid "invalid library layout: %s" +msgstr "invalid library layout: %s" + +#: arduino/libraries/libraries_location.go:73 +msgid "invalid library location value: %d" +msgstr "invalid library location value: %d" + +#: arduino/libraries/libraries_location.go:94 +msgid "invalid library location: %s" +msgstr "invalid library location: %s" + +#: arduino/cores/board.go:125 +msgid "invalid option '%s'" +msgstr "invalid option '%s'" + +#: inventory/inventory.go:88 +msgid "invalid path creating config dir: %[1]s error: %[2]w" +msgstr "invalid path creating config dir: %[1]s error: %[2]w" + +#: inventory/inventory.go:94 +msgid "invalid path writing inventory file: %[1]s error: %[2]w" +msgstr "invalid path writing inventory file: %[1]s error: %[2]w" + +#: arduino/cores/packageindex/index.go:255 +msgid "invalid platform archive size: %s" +msgstr "invalid platform archive size: %s" + +#: arduino/cores/packagemanager/loader.go:374 +msgid "invalid pluggable monitor reference: %s" +msgstr "invalid pluggable monitor reference: %s" + +#: cli/monitor/monitor.go:126 +msgid "invalid port configuration value for %s: %s" +msgstr "invalid port configuration value for %s: %s" + +#: cli/monitor/monitor.go:135 +msgid "invalid port configuration: %s" +msgstr "invalid port configuration: %s" + +#: commands/upload/upload.go:569 +msgid "invalid recipe '%[1]s': %[2]s" +msgstr "invalid recipe '%[1]s': %[2]s" + +#: arduino/cores/board.go:109 +msgid "invalid value '%[1]s' for option '%[2]s'" +msgstr "invalid value '%[1]s' for option '%[2]s'" + +#: arduino/cores/packagemanager/loader.go:284 +msgid "invalid version dir %[1]s: %[2]s" +msgstr "invalid version dir %[1]s: %[2]s" + +#: commands/daemon/settings.go:108 +msgid "key not found in settings" +msgstr "key not found in settings" + +#: cli/core/search.go:48 +msgid "keywords" +msgstr "keywords" + +#: arduino/libraries/librariesmanager/install.go:163 +#: arduino/libraries/librariesmanager/install.go:206 +msgid "library %s already installed" +msgstr "library %s already installed" + +#: arduino/libraries/librariesmanager/install.go:38 +msgid "library already installed" +msgstr "library already installed" + +#: arduino/libraries/librariesmanager/install.go:305 +msgid "library not valid" +msgstr "library not valid" + +#: arduino/libraries/librariesmanager/librariesmanager.go:226 +msgid "library path does not exist: %s" +msgstr "library path does not exist: %s" + +#: arduino/discovery/discoverymanager/discoverymanager.go:217 +msgid "listing ports from discovery %[1]s: %[2]w" +msgstr "listing ports from discovery %[1]s: %[2]w" + +#: arduino/serialutils/serialutils.go:61 +msgid "listing serial ports" +msgstr "listing serial ports" + +#: arduino/cores/packagemanager/loader.go:312 +#: arduino/cores/packagemanager/loader.go:321 +#: arduino/cores/packagemanager/loader.go:326 +msgid "loading %[1]s: %[2]s" +msgstr "loading %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:362 +msgid "loading boards: %s" +msgstr "loading boards: %s" + +#: arduino/cores/packagemanager/loader.go:656 +msgid "loading bundled tools from %[1]s: %[2]s" +msgstr "loading bundled tools from %[1]s: %[2]s" + +#: arduino/cores/packagemanager/package_manager.go:230 +#: arduino/cores/packagemanager/package_manager.go:245 +msgid "loading json index file %[1]s: %[2]s" +msgstr "loading json index file %[1]s: %[2]s" + +#: arduino/libraries/librariesmanager/librariesmanager.go:205 +#: arduino/libraries/librariesmanager/librariesmanager.go:231 +msgid "loading library from %[1]s: %[2]s" +msgstr "loading library from %[1]s: %[2]s" + +#: arduino/libraries/loader.go:47 +msgid "loading library.properties: %s" +msgstr "loading library.properties: %s" + +#: arduino/cores/packagemanager/loader.go:261 +#: arduino/cores/packagemanager/loader.go:289 +msgid "loading platform release %[1]s: %[2]s" +msgstr "loading platform release %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:212 +msgid "loading platform.txt: %v" +msgstr "loading platform.txt: %v" + +#: arduino/cores/packagemanager/loader.go:623 +msgid "loading tool release in %[1]s: %[2]s" +msgstr "loading tool release in %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:205 +msgid "looking for boards.txt in %[1]s: %[2]s" +msgstr "looking for boards.txt in %[1]s: %[2]s" + +#: legacy/builder/container_setup.go:73 +msgid "main file missing from sketch" +msgstr "main file missing from sketch" + +#: arduino/resources/checksums.go:41 +msgid "missing checksum for: %s" +msgstr "missing checksum for: %s" + +#: arduino/cores/packagemanager/package_manager.go:207 +msgid "missing package %[1]s referenced by board %[2]s" +msgstr "missing package %[1]s referenced by board %[2]s" + +#: arduino/cores/packagemanager/package_manager.go:212 +msgid "missing platform %[1]s:%[2]s referenced by board %[3]s" +msgstr "missing platform %[1]s:%[2]s referenced by board %[3]s" + +#: arduino/cores/packagemanager/package_manager.go:217 +msgid "missing platform release %[1]s:%[2]s referenced by board %[3]s" +msgstr "missing platform release %[1]s:%[2]s referenced by board %[3]s" + +#: arduino/cores/packagemanager/package_manager.go:489 +msgid "monitor release not found: %s" +msgstr "monitor release not found: %s" + +#: arduino/libraries/librariesmanager/install.go:180 +#: arduino/resources/install.go:94 +msgid "moving extracted archive to destination dir: %s" +msgstr "moving extracted archive to destination dir: %s" + +#: commands/upload/upload.go:692 +msgid "multiple build artifacts found: '%[1]s' and '%[2]s'" +msgstr "multiple build artifacts found: '%[1]s' and '%[2]s'" + +#: arduino/sketch/sketch.go:77 +msgid "multiple main sketch files found (%[1]v, %[2]v)" +msgstr "multiple main sketch files found (%[1]v, %[2]v)" + +#: arduino/cores/packagemanager/install_uninstall.go:127 +msgid "no compatible version of %s tools found for the current os" +msgstr "no compatible version of %s tools found for the current os" + +#: executils/process.go:38 +msgid "no executable specified" +msgstr "no executable specified" + +#: commands/daemon/daemon.go:101 +msgid "no instance specified" +msgstr "no instance specified" + +#: commands/upload/upload.go:647 +msgid "no sketch or build directory/file specified" +msgstr "no sketch or build directory/file specified" + +#: arduino/resources/install.go:128 +msgid "no unique root dir in archive, found '%[1]s' and '%[2]s'" +msgstr "no unique root dir in archive, found '%[1]s' and '%[2]s'" + +#: commands/upload/upload.go:564 +msgid "no upload port provided" +msgstr "no upload port provided" + +#: arduino/sketch/sketch.go:263 +msgid "no valid sketch found in %[1]s: missing %[2]s" +msgstr "no valid sketch found in %[1]s: missing %[2]s" + +#: commands/core/download.go:85 +msgid "no versions available for the current OS" +msgstr "no versions available for the current OS" + +#: arduino/resources/checksums.go:72 arduino/resources/install.go:59 +msgid "opening archive file: %s" +msgstr "opening archive file: %s" + +#: arduino/cores/packagemanager/loader.go:277 +msgid "opening boards.txt: %s" +msgstr "opening boards.txt: %s" + +#: arduino/serialutils/serialutils.go:37 +msgid "opening port at 1200bps" +msgstr "opening port at 1200bps" + +#: arduino/security/signatures.go:80 +msgid "opening signature file: %s" +msgstr "opening signature file: %s" + +#: arduino/security/signatures.go:75 +msgid "opening target file: %s" +msgstr "opening target file: %s" + +#: arduino/cores/packagemanager/download.go:73 arduino/cores/status.go:88 +#: arduino/cores/status.go:113 arduino/cores/status.go:140 +msgid "package %s not found" +msgstr "package %s not found" + +#: arduino/cores/packagemanager/package_manager.go:259 +msgid "package '%s' not found" +msgstr "package '%s' not found" + +#: arduino/cores/status.go:194 +msgid "package not found" +msgstr "package not found" + +#: arduino/cores/packagemanager/loader.go:232 +msgid "parsing IDE bundled index: %s" +msgstr "parsing IDE bundled index: %s" + +#: arduino/cores/board.go:139 +#: arduino/cores/packagemanager/package_manager.go:136 +msgid "parsing fqbn: %s" +msgstr "parsing fqbn: %s" + +#: arduino/libraries/librariesindex/json.go:69 +msgid "parsing library_index.json: %s" +msgstr "parsing library_index.json: %s" + +#: arduino/cores/packagemanager/loader.go:194 +msgid "path is not a platform directory: %s" +msgstr "path is not a platform directory: %s" + +#: arduino/cores/packagemanager/download.go:77 +msgid "platform %[1]s not found in package %[2]s" +msgstr "platform %[1]s not found in package %[2]s" + +#: arduino/cores/packagemanager/download.go:89 +msgid "platform %s has no available releases" +msgstr "platform %s has no available releases" + +#: arduino/cores/packagemanager/package_manager.go:182 +msgid "platform %s is not installed" +msgstr "platform %s is not installed" + +#: arduino/cores/packagemanager/install_uninstall.go:65 +#: arduino/cores/packagemanager/install_uninstall.go:108 +#: arduino/cores/packagemanager/loader.go:468 commands/compile/compile.go:127 +msgid "platform not installed" +msgstr "platform not installed" + +#: cli/compile/compile.go:122 +msgid "please use --build-property instead." +msgstr "please use --build-property instead." + +#: arduino/discovery/discoverymanager/discoverymanager.go:61 +msgid "pluggable discovery already added: %s" +msgstr "pluggable discovery already added: %s" + +#: cli/board/attach.go:40 +msgid "port" +msgstr "port" + +#: cli/arguments/port.go:145 +msgid "port not found: %[1]s %[2]s" +msgstr "port not found: %[1]s %[2]s" + +#: arduino/monitor/monitor.go:241 +msgid "protocol version not supported: requested %[1]d, got %[2]d" +msgstr "protocol version not supported: requested %[1]d, got %[2]d" + +#: arduino/discovery/discovery.go:320 +msgid "protocol version not supported: requested 1, got %d" +msgstr "protocol version not supported: requested 1, got %d" + +#: arduino/discovery/discoverymanager/discoverymanager.go:189 +msgid "quitting discovery %[1]s: %[2]w" +msgstr "quitting discovery %[1]s: %[2]w" + +#: arduino/cores/packagemanager/loader.go:79 +msgid "reading %[1]s directory: %[2]s" +msgstr "reading %[1]s directory: %[2]s" + +#: arduino/cores/packagemanager/loader.go:706 +msgid "reading %[1]s: %[2]s" +msgstr "reading %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:271 +#: arduino/libraries/librariesmanager/librariesmanager.go:196 +msgid "reading dir %[1]s: %[2]s" +msgstr "reading dir %[1]s: %[2]s" + +#: arduino/cores/packagemanager/loader.go:167 +#: arduino/cores/packagemanager/loader.go:614 +msgid "reading directory %[1]s: %[2]s" +msgstr "reading directory %[1]s: %[2]s" + +#: arduino/libraries/librariesmanager/install.go:278 +msgid "reading directory %s content: %w" +msgstr "reading directory %s content: %w" + +#: arduino/builder/sketch.go:76 +msgid "reading file %[1]s: %[2]s" +msgstr "reading file %[1]s: %[2]s" + +#: arduino/sketch/sketch.go:233 +msgid "reading files: %v" +msgstr "reading files: %v" + +#: inventory/inventory.go:58 +msgid "reading inventory file: %w" +msgstr "reading inventory file: %w" + +#: arduino/libraries/librariesresolver/cpp.go:60 +msgid "reading lib headers: %s" +msgstr "reading lib headers: %s" + +#: arduino/libraries/libraries.go:235 +msgid "reading lib src dir: %s" +msgstr "reading lib src dir: %s" + +#: arduino/libraries/libraries.go:115 +msgid "reading library headers: %w" +msgstr "reading library headers: %w" + +#: arduino/libraries/librariesindex/json.go:63 +msgid "reading library_index.json: %s" +msgstr "reading library_index.json: %s" + +#: arduino/resources/install.go:118 +msgid "reading package root dir: %s" +msgstr "reading package root dir: %s" + +#: arduino/sketch/sketch.go:192 +msgid "reading sketch metadata %[1]s: %[2]s" +msgstr "reading sketch metadata %[1]s: %[2]s" + +#: commands/upload/upload.go:558 +msgid "recipe not found '%s'" +msgstr "recipe not found '%s'" + +#: arduino/cores/packagemanager/package_manager.go:335 +msgid "release %[1]s not found for tool %[2]s" +msgstr "release %[1]s not found for tool %[2]s" + +#: arduino/cores/status.go:82 arduino/cores/status.go:106 +#: arduino/cores/status.go:133 +msgid "release cannot be nil" +msgstr "release cannot be nil" + +#: arduino/cores/status.go:210 +msgid "release not found" +msgstr "release not found" + +#: arduino/resources/helpers.go:59 +msgid "removing corrupted archive file: %s" +msgstr "removing corrupted archive file: %s" + +#: arduino/libraries/librariesmanager/install.go:95 +msgid "removing lib directory: %s" +msgstr "removing lib directory: %s" + +#: arduino/cores/packagemanager/install_uninstall.go:117 +msgid "removing platform files: %s" +msgstr "removing platform files: %s" + +#: arduino/cores/packagemanager/install_uninstall.go:169 +msgid "removing tool files: %s" +msgstr "removing tool files: %s" + +#: arduino/cores/packagemanager/download.go:84 +msgid "required version %[1]s not found for platform %[2]s" +msgstr "required version %[1]s not found for platform %[2]s" + +#: arduino/security/signatures.go:71 +msgid "retrieving Arduino public keys: %s" +msgstr "retrieving Arduino public keys: %s" + +#: arduino/libraries/loader.go:109 arduino/libraries/loader.go:140 +msgid "scanning examples: %s" +msgstr "scanning examples: %s" + +#: arduino/cores/packagemanager/loader.go:692 +msgid "searching for builtin_tools_versions.txt in %[1]s: %[2]s" +msgstr "searching for builtin_tools_versions.txt in %[1]s: %[2]s" + +#: arduino/resources/install.go:73 +msgid "searching package root dir: %s" +msgstr "searching package root dir: %s" + +#: arduino/serialutils/serialutils.go:43 +msgid "setting DTR to OFF" +msgstr "setting DTR to OFF" + +#: arduino/sketch/sketch.go:62 +msgid "sketch path is not valid" +msgstr "sketch path is not valid" + +#: cli/board/attach.go:40 cli/sketch/archive.go:38 +msgid "sketchPath" +msgstr "sketchPath" + +#: arduino/cores/packagemanager/loader.go:531 +msgid "skipping loading of boards %s: malformed custom board options" +msgstr "skipping loading of boards %s: malformed custom board options" + +#: legacy/builder/utils/utils.go:466 +msgid "source is not a directory" +msgstr "source is not a directory" + +#: arduino/discovery/discoverymanager/discoverymanager.go:142 +msgid "start syncing discovery %[1]s: %[2]w" +msgstr "start syncing discovery %[1]s: %[2]w" + +#: arduino/discovery/discoverymanager/discoverymanager.go:122 +msgid "starting discovery %[1]s: %[2]w" +msgstr "starting discovery %[1]s: %[2]w" + +#: commands/board/list.go:303 +msgid "stopping discoveries: %s" +msgstr "stopping discoveries: %s" + +#: arduino/discovery/discoverymanager/discoverymanager.go:173 +msgid "stopping discovery %[1]s: %[2]w" +msgstr "stopping discovery %[1]s: %[2]w" + +#: arduino/resources/checksums.go:119 +msgid "testing archive checksum: %s" +msgstr "testing archive checksum: %s" + +#: arduino/resources/checksums.go:112 +msgid "testing archive size: %s" +msgstr "testing archive size: %s" + +#: arduino/resources/checksums.go:106 +msgid "testing if archive is cached: %s" +msgstr "testing if archive is cached: %s" + +#: arduino/resources/install.go:37 +msgid "testing local archive integrity: %s" +msgstr "testing local archive integrity: %s" + +#: legacy/builder/phases/sizer.go:116 +msgid "text section exceeds available space in board" +msgstr "text section exceeds available space in board" + +#: legacy/builder/container_add_prototypes.go:47 +#: legacy/builder/container_find_includes.go:117 +msgid "the compilation database may be incomplete or inaccurate" +msgstr "the compilation database may be incomplete or inaccurate" + +#: commands/core/list.go:62 +msgid "the platform has no releases" +msgstr "the platform has no releases" + +#: commands/board/list.go:79 +msgid "the server responded with status %s" +msgstr "the server responded with status %s" + +#: arduino/monitor/monitor.go:139 +msgid "timeout waiting for message" +msgstr "timeout waiting for message" + +#: arduino/discovery/discovery.go:217 +msgid "timeout waiting for message from %s" +msgstr "timeout waiting for message from %s" + +#: arduino/cores/packagemanager/install_uninstall.go:165 +msgid "tool %s is not managed by package manager" +msgstr "tool %s is not managed by package manager" + +#: arduino/cores/status.go:92 arduino/cores/status.go:117 +#: arduino/cores/status.go:144 +msgid "tool %s not found" +msgstr "tool %s not found" + +#: arduino/cores/packagemanager/package_manager.go:285 +msgid "tool '%[1]s' not found in package '%[2]s'" +msgstr "tool '%[1]s' not found in package '%[2]s'" + +#: arduino/cores/packagemanager/download.go:123 +msgid "tool not available for your OS" +msgstr "tool not available for your OS" + +#: arduino/cores/status.go:198 +msgid "tool not found" +msgstr "tool not found" + +#: arduino/cores/packagemanager/install_uninstall.go:160 +msgid "tool not installed" +msgstr "tool not installed" + +#: arduino/cores/packagemanager/package_manager.go:467 +#: arduino/cores/packagemanager/package_manager.go:544 +msgid "tool release not found: %s" +msgstr "tool release not found: %s" + +#: arduino/cores/status.go:96 +msgid "tool version %s not found" +msgstr "tool version %s not found" + +#: commands/lib/install.go:59 +msgid "" +"two different versions of the library %[1]s are required: %[2]s and %[3]s" +msgstr "" +"two different versions of the library %[1]s are required: %[2]s and %[3]s" + +#: arduino/builder/sketch.go:69 arduino/builder/sketch.go:117 +msgid "unable to compute relative path to the sketch for the item" +msgstr "unable to compute relative path to the sketch for the item" + +#: arduino/builder/sketch.go:49 +msgid "unable to create a folder to save the sketch" +msgstr "unable to create a folder to save the sketch" + +#: arduino/builder/sketch.go:111 +msgid "unable to create a folder to save the sketch files" +msgstr "unable to create a folder to save the sketch files" + +#: arduino/builder/sketch.go:123 +msgid "unable to create the folder containing the item" +msgstr "unable to create the folder containing the item" + +#: cli/config/dump.go:58 +msgid "unable to marshal config to YAML: %v" +msgstr "unable to marshal config to YAML: %v" + +#: arduino/builder/sketch.go:161 +msgid "unable to read contents of the destination item" +msgstr "unable to read contents of the destination item" + +#: arduino/builder/sketch.go:134 +msgid "unable to read contents of the source item" +msgstr "unable to read contents of the source item" + +#: arduino/builder/sketch.go:55 +msgid "unable to save the sketch on disk" +msgstr "unable to save the sketch on disk" + +#: arduino/builder/sketch.go:144 +msgid "unable to write to destination file" +msgstr "unable to write to destination file" + +#: arduino/cores/packagemanager/package_manager.go:170 +msgid "unknown package %s" +msgstr "unknown package %s" + +#: arduino/cores/packagemanager/package_manager.go:177 +msgid "unknown platform %s:%s" +msgstr "unknown platform %s:%s" + +#: arduino/sketch/sketch.go:146 +msgid "unknown sketch file extension '%s'" +msgstr "unknown sketch file extension '%s'" + +#: arduino/resources/checksums.go:62 +msgid "unsupported hash algorithm: %s" +msgstr "unsupported hash algorithm: %s" + +#: cli/core/upgrade.go:44 +msgid "upgrade arduino:samd to the latest version" +msgstr "upgrade arduino:samd to the latest version" + +#: cli/core/upgrade.go:42 +msgid "upgrade everything to the latest version" +msgstr "upgrade everything to the latest version" + +#: commands/upload/upload.go:593 +msgid "uploading error: %s" +msgstr "uploading error: %s" + +#: arduino/sketch/sketch.go:216 +msgid "writing sketch metadata %[1]s: %[2]s" +msgstr "writing sketch metadata %[1]s: %[2]s" + +#: commands/board/list.go:95 +msgid "wrong format in server response" +msgstr "wrong format in server response" diff --git a/i18n/data/zh_TW.po b/i18n/data/zh_TW.po new file mode 100644 index 00000000000..d3ea1346c7e --- /dev/null +++ b/i18n/data/zh_TW.po @@ -0,0 +1,3346 @@ +# +msgid "" +msgstr "" +"Last-Translator: coby2023t@gmail.com 2023\n" +"Language: zh_TW\n" +"Plural-Forms: nplurals=1; plural=0;\n" + +# +msgid "%[1]s %[2]s Version: %[3]s Commit: %[4]s Date: %[5]s" +msgstr "%[1]s %[2]s 版本:%[3]s 交付:%[4]s 日期:%[5]s" + +# +msgid "%[1]s folder is no longer supported! See %[2]s for more information" +msgstr "已不支援 %[1]s 檔案夾!詳細資訊,請見 %[2]s" + +# +msgid "%[1]s invalid, rebuilding all" +msgstr "%[1]s 無效,重新建構全部" + +# +msgid "%[1]s is required but %[2]s is currently installed." +msgstr "需要 %[1]s ,但已安裝 %[2]s。" + +# +msgid "%[1]s pattern is missing" +msgstr "%[1]s 樣態遺失" + +# +msgid "%[1]s, message: %[2]s" +msgstr "%[1]s,訊息:%[2]s" + +# +msgid "%[1]s, port: %[2]s" +msgstr "%[1]s,連接埠:%[2]s" + +# +msgid "%[1]s, ports: %[2]s" +msgstr "%[1]s,連接埠:%[2]s" + +# +msgid "%[1]s, protocol version: %[2]d" +msgstr "%[1]s,協議版本:%[2]d" + +# +msgid "%s already downloaded" +msgstr "%s 已經下載" + +# +msgid "%s and %s cannot be used together" +msgstr "%s 和 %s 不能一起使用" + +# +msgid "%s installed" +msgstr "%s 已安裝" + +# +msgid "%s is already installed." +msgstr "%s 已安裝" + +# +msgid "%s is not a directory" +msgstr "%s 不是目錄" + +# +msgid "%s is not managed by package manager" +msgstr "%s 不是由套件管理員管理的" + +# +msgid "%s must be installed." +msgstr "%s 必須安裝" + +# +msgid "%s pattern is missing" +msgstr "%s 樣態遺失..." + +# +msgid "'%s' has an invalid signature" +msgstr "'%s'的簽名無效" + +# +msgid "'build.core' and 'build.variant' refer to different platforms: %[1]s and %[2]s" +msgstr "'build.core' 和 'build.variant' 參照到不同的平台: %[1]s 和 %[2]s" + +# +msgid "(hidden)" +msgstr "(隱藏)" + +# +msgid "(legacy)" +msgstr "(舊版)" + +# +msgid "--git-url and --zip-path are disabled by default, for more information see: %v" +msgstr "--git-url 和 --zip-path 預設為不能使用, 更多訊息請見: %v" + +# +msgid "--git-url and --zip-path flags allow installing untrusted files, use it at your own risk." +msgstr "--git-url 和 --zip-path 旗標允許安裝未被信任的檔案, 風險自負." + +# +msgid "--git-url or --zip-path can't be used with --install-in-builtin-dir" +msgstr "--git-url 或 --zip-path 不能和 --install-in-builtin-dir 一起使用。" + +# +msgid ".ino file already exists" +msgstr ".ino 檔案已存在" + +# +msgid "A new release of Arduino CLI is available:" +msgstr "有新版的 Arduino CLI :" + +# +msgid "A programmer is required to upload" +msgstr "上傳需使用編寫器/燒錄器" + +# +msgid "ARCH" +msgstr "架構" + +# +msgid "ARDUINO COMMAND LINE MANUAL" +msgstr "ARDUINO 命令列手冊" + +# +msgid "Additional help topics:" +msgstr "更多求助主題:" + +# +msgid "Adds one or more values to a setting." +msgstr "將一或多個值加入設定中。" + +# +msgid "Aliases:" +msgstr "別名:" + +# +msgid "All the cores are already at the latest version" +msgstr "所有核心都是最新版" + +# +msgid "Already installed %s" +msgstr "已經安裝 %s" + +# +msgid "Alternatives for %[1]s: %[2]s" +msgstr "%[1]s 的替代品: %[2]s" + +# +msgid "An error occurred adding prototypes" +msgstr "新增原型時出錯" + +# +msgid "An error occurred detecting libraries" +msgstr "檢測程式庫時出錯" + +# +msgid "Append debug logging to the specified file" +msgstr "擴增除錯日誌到指定檔案" + +# +msgid "Architecture: %s" +msgstr "架構:%s" + +# +msgid "Archive already exists" +msgstr "歸存檔已存在" + +# +msgid "Archiving built core (caching) in: %[1]s" +msgstr "歸存已建構核心(快取)在: %[1]s" + +# +msgid "Arduino CLI sketch commands." +msgstr "Arduino CLI sketch 命令" + +# +msgid "Arduino CLI." +msgstr "Arduino CLI." + +# +msgid "Arduino Command Line Interface (arduino-cli)." +msgstr "Arduino 命令列界面 (arduino-cli)" + +# +msgid "Arduino board commands." +msgstr "Arduino 開發板指令" + +# +msgid "Arduino cache commands." +msgstr "Arduino 快取指令。" + +# +msgid "Arduino commands about libraries." +msgstr "Arduino 程式庫的命令。" + +# +msgid "Arduino configuration commands." +msgstr "Arduino 設定指令。" + +# +msgid "Arduino core operations." +msgstr "Arduino 核心操作。" + +# +msgid "Arguments error: %v" +msgstr "參數錯誤:%v" + +# +msgid "Attaches a sketch to a board." +msgstr "將 sketch 寫入開發板上。" + +# +msgid "Author: %s" +msgstr "作者:%s" + +# +msgid "Automatic library install can't be performed in this case, please manually remove all duplicates and retry." +msgstr "在這情況下無法自動化程式庫安裝, 請手動移除重覆的再試." + +# +msgid "Automatic library uninstall can't be performed in this case, please manually remove them." +msgstr "在這情況下無法自動化程式庫卸除, 請手動移除." + +# +msgid "Available" +msgstr "可用的" + +# +msgid "Available Commands:" +msgstr "可用命令:" + +# +msgid "Binary file to upload." +msgstr "要上傳的二進位檔。" + +# +msgid "Board Name" +msgstr "開發板名" + +# +msgid "Board name:" +msgstr "開發板名:" + +# +msgid "Board version:" +msgstr "開發板版本:" + +# +msgid "Bootloader file specified but missing: %[1]s" +msgstr "找不到指定的 Bootloader 檔: %[1]s" + +# +msgid "Builds of 'core.a' are saved into this path to be cached and reused." +msgstr "'core.a'的編譯檔已存到本路徑中,以便快取和重複使用。" + +# +msgid "Can't create data directory %s" +msgstr "無法建立 %s 資料目錄" + +# +msgid "Can't create sketch" +msgstr "無法新增 sketch" + +# +msgid "Can't download library" +msgstr "無法下載程式庫" + +# +msgid "Can't find dependencies for platform %s" +msgstr "找不到 %s 平台的相依" + +# +msgid "Can't open sketch" +msgstr "無法打開 sketch" + +# +msgid "Can't set multiple values in key %v" +msgstr "無法在 %v 鍵中設立多個值" + +# +msgid "Can't update sketch" +msgstr "無法更新 sketch" + +# +msgid "Can't use the following flags together: %s" +msgstr "不能同時使用以下參數: %s" + +# +msgid "Can't write config file: %v" +msgstr "無法寫入設定檔: %v" + +# +msgid "Can't write debug log: %s" +msgstr "無法寫入除錯日誌: %s" + +# +msgid "Cannot create build cache directory" +msgstr "無法建立編譯快取目錄" + +# +msgid "Cannot create build directory" +msgstr "無法建立編譯目錄" + +# +msgid "Cannot create config file directory: %v" +msgstr "無法建立設定檔的目錄: %v" + +# +msgid "Cannot create config file: %v" +msgstr "無法建立設定檔: %v" + +# +msgid "Cannot create temp dir" +msgstr "無法建立臨時目錄" + +# +msgid "Cannot create temp file" +msgstr "無法建立臨時檔" + +# +msgid "Cannot delete the key %[1]s: %[2]v" +msgstr "無法刪除鍵值 %[1]s: %[2]v" + +# +msgid "Cannot execute debug tool" +msgstr "無法執行除錯工具" + +# +msgid "Cannot find absolute path: %v" +msgstr "找不到絕對路徑: %v" + +# +msgid "Cannot install platform" +msgstr "無法安裝平台" + +# +msgid "Cannot install tool %s" +msgstr "無法安裝工具 %s" + +# +msgid "Cannot perform port reset: %s" +msgstr "無法執行連接埠重設: %s" + +# +msgid "Cannot upgrade platform" +msgstr "無法升級平台" + +# +msgid "Cannot write the file %[1]s: %[2]v" +msgstr "無法寫入檔案 %[1]s: %[2]v" + +# +msgid "Category: %s" +msgstr "類別:%s" + +# +msgid "Check dependencies status for the specified library." +msgstr "檢查指定程式庫的相依狀態。" + +# +msgid "Checksum differs from checksum in package.json" +msgstr "校驗碼與 package.json 檔案內的校驗碼不同" + +# +msgid "Checksum:" +msgstr "校驗碼:" + +# +msgid "Clean caches." +msgstr "清除快取。" + +# +msgid "Comma-separated list of additional URLs for the Boards Manager." +msgstr "給開發板管理員用的網址清單(以逗號分隔)。" + +# +msgid "Command keeps running and prints list of connected boards whenever there is a change." +msgstr "指令保持執行狀態, 列出連接的開發板." + +# +msgid "Compiled sketch not found in %s" +msgstr "在 %s 中找不到已編譯的 sketch" + +# +msgid "Compiles Arduino sketches." +msgstr "編譯 Arduino sketch" + +# +msgid "Compiling core..." +msgstr "編譯核心中..." + +# +msgid "Compiling libraries..." +msgstr "編譯程式庫中..." + +# +msgid "Compiling library \"%[1]s\"" +msgstr "編譯程式庫“%[1]s”中..." + +# +msgid "Compiling sketch..." +msgstr "編譯 sketch 中..." + +# +msgid "Config file already exists, use --overwrite to discard the existing one." +msgstr "設定檔已存在,使用 --overwrite 覆蓋原設定檔。" + +# +msgid "Config file written to: %s" +msgstr "設定檔寫入:%s" + +# +msgid "Configuration options for %s" +msgstr "%s 的設定選項" + +# +msgid "Configure communication port settings. The format is =[,=]..." +msgstr "通訊埠設定, 格式為 =[,=]..." + +# +msgid "Configuring platform." +msgstr "設定平台。" + +# +msgid "Configuring tool." +msgstr "設定工具。" + +# +msgid "Connected" +msgstr "已連接" + +# +msgid "Connected to %s! Press CTRL-C to exit." +msgstr "已連接到 %s!按 CTRL-C 退出。" + +# +msgid "Core" +msgstr "核心" + +# +msgid "Could not connect via HTTP" +msgstr "無法通過 HTTP 連接" + +# +msgid "Could not create index directory" +msgstr "無法建立索引目錄" + +# +msgid "Couldn't deeply cache core build: %[1]s" +msgstr "無法深入快取核心編譯:%[1]s" + +# +msgid "Couldn't determine program size" +msgstr "無法確定程式大小" + +# +msgid "Couldn't get current working directory: %v" +msgstr "無法取得工作目錄:%v" + +# +msgid "Create a new Sketch" +msgstr "建立新 sketch" + +# +msgid "Create and print a profile configuration from the build." +msgstr "從建構中建立並印出設定檔內容。" + +# +msgid "Creates a zip file containing all sketch files." +msgstr "建立含全部 sketch 檔的 zip 壓縮檔。" + +# +msgid "Creates or updates the configuration file in the data directory or custom directory with the current configuration settings." +msgstr "用目前的設定值建立或更新資料或自定義目錄內的設定檔。" + +# +msgid "Currently, Build Profiles only support libraries available through Arduino Library Manager." +msgstr "目前 Build Profiles 只支持 Arduino 程式庫管理員所提供的程式庫。" + +# +msgid "DEPRECATED" +msgstr "已棄用" + +# +msgid "Daemon is now listening on %s:%s" +msgstr "背景程式正在監聽 %s:%s" + +# +msgid "Debug Arduino sketches." +msgstr "除錯 Arduino sketch" + +# +msgid "Debug Arduino sketches. (this command opens an interactive gdb session)" +msgstr "除錯 Arduino sketch(此命令會開啟互動式 gdb 對話)" + +# +msgid "Debug interpreter e.g.: %s" +msgstr "除錯解譯器,例如:%s" + +# +msgid "Debugging not supported for board %s" +msgstr "不支援 %s 開發板除錯" + +# +msgid "Debugging supported:" +msgstr "支持除錯:" + +# +msgid "Default" +msgstr "預設" + +# +msgid "Default FQBN set to" +msgstr "預設的 FQBN 設定為" + +# +msgid "Default port set to" +msgstr "預設的連接埠設定為" + +# +msgid "Delete Boards/Library Manager download cache." +msgstr "刪除開發板/程式庫管理員下載快取" + +# +msgid "Delete contents of the `directories.downloads` folder, where archive files are staged during installation of libraries and boards platforms." +msgstr "刪除 `directories.downloads` 裏面的內容, 裏面有在安裝程式庫和開發板平台時所暫存的檔案。" + +# +msgid "Deletes a settings key and all its sub keys." +msgstr "刪除某設定鍵和所有子鍵。" + +# +msgid "Dependencies: %s" +msgstr "相依:%s" + +# +msgid "Description" +msgstr "說明" + +# +msgid "Detecting libraries used..." +msgstr "檢測有使用的程式庫中..." + +# +msgid "Detects and displays a list of boards connected to the current computer." +msgstr "檢測並顯示連接到電腦的開發板清單。" + +# +msgid "Directory containing binaries for debug." +msgstr "內含供除錯用二進位檔的目錄。" + +# +msgid "Directory containing binaries to upload." +msgstr "內含供上傳用二進位檔的目錄。" + +# +msgid "Directory where to save generated files. Default is './docs', the directory must exist." +msgstr "保存生成檔的目錄。預設為 ./docs,該目錄必須存在。" + +# +msgid "Disable completion description for shells that support it" +msgstr "關閉 shell 的完成描述功能" + +# +msgid "Disconnected" +msgstr "已斷開連接" + +# +msgid "Display only the provided gRPC calls" +msgstr "只顯示提供的 gRPC 呼叫" + +# +msgid "Do not install dependencies." +msgstr "不要安裝相依檔。" + +# +msgid "Do not overwrite already installed libraries." +msgstr "不要覆蓋已安裝的程式庫。" + +# +msgid "Do not overwrite already installed platforms." +msgstr "不要覆蓋已安裝的平台。" + +# +msgid "Do not perform the actual upload, just log out actions" +msgstr "不要真的上傳,取消實際行動" + +# +msgid "Do not terminate daemon process if the parent process dies" +msgstr "就算父程序已GG了,也不需中止背景程式。" + +# +msgid "Downloading %s" +msgstr "下載 %s 中" + +# +msgid "Downloading index signature: %s" +msgstr "下載索引簽名: %s " + +# +msgid "Downloading index: %s" +msgstr "下載索引: %s " + +# +msgid "Downloading library %s" +msgstr "下載程式庫 %s" + +# +msgid "Downloading missing tool %s" +msgstr "下載遺失的工具 %s " + +# +msgid "Downloading packages" +msgstr "下載安裝包" + +# +msgid "Downloading platform %s" +msgstr "下載平台 %s" + +# +msgid "Downloading tool %s" +msgstr "下載工具 %s " + +# +msgid "Downloads one or more cores and corresponding tool dependencies." +msgstr "下載一或多個核心及相依工具" + +# +msgid "Downloads one or more libraries without installing them." +msgstr "下載一或多個程式庫, 但不安裝。" + +# +msgid "Enable debug logging of gRPC calls" +msgstr "啟用 gRPC 呼叫的除錯日誌" + +# +msgid "Enter a path to zip file" +msgstr "輸入 zip 壓縮檔的路徑" + +# +msgid "Enter git url for libraries hosted on repositories" +msgstr "輸入托管程式庫的 git 位址" + +# +msgid "Error adding file to sketch archive" +msgstr "將檔案加入 sketch 時出錯" + +# +msgid "Error archiving built core (caching) in %[1]s: %[2]s" +msgstr "在 %[1]s 中儲存編譯核心(快取)時出錯:%[2]s" + +# +msgid "Error archiving: %v" +msgstr "錯誤歸檔:%v" + +# +msgid "Error calculating relative file path" +msgstr "計算相關檔案路徑時出錯" + +# +msgid "Error cleaning caches: %v" +msgstr "清理快取時出錯:%v" + +# +msgid "Error converting path to absolute: %v" +msgstr "將路徑轉換成絕對路徑時出錯:%v" + +# +msgid "Error copying output file %s" +msgstr "複製輸出檔 %s 時出錯" + +# +msgid "Error creating instance: %v" +msgstr "建立實例時出錯:%v" + +# +msgid "Error creating output dir" +msgstr "建立輸出目錄時出錯" + +# +msgid "Error creating sketch archive" +msgstr "建立 sketch 檔時出錯" + +# +msgid "Error creating sketch: %v" +msgstr "建立 sketch 時出錯:%v" + +# +msgid "Error detecting boards: %v" +msgstr "偵測開發板時出錯:%v" + +# +msgid "Error downloading %[1]s: %[2]v" +msgstr "下載 %[1]s 時出錯:%[2]v" + +# +msgid "Error downloading %s" +msgstr "下載 %s 時出錯" + +# +msgid "Error downloading index '%s'" +msgstr "下載索引'%s'時出錯" + +# +msgid "Error downloading index signature '%s'" +msgstr "下載索引簽名 '%s' 時出錯" + +# +msgid "Error downloading library %s" +msgstr "下載程式庫 %s 時出錯" + +# +msgid "Error downloading platform %s" +msgstr "下載平台 %s 時出錯" + +# +msgid "Error downloading tool %s" +msgstr "下載工具 %s 時出錯" + +# +msgid "Error during Debug: %v" +msgstr "除錯時出錯:%v" + +# +msgid "Error during FQBN detection: %v" +msgstr "FQBN 偵測時出錯:%v" + +# +msgid "Error during JSON encoding of the output: %v" +msgstr "輸出 JSON 編碼過程時出錯:%v" + +# +msgid "Error during Upload: %v" +msgstr "上傳時出錯:%v" + +# +msgid "Error during YAML encoding of the output: %v" +msgstr "輸出 YAML 編碼過程時出錯:%v" + +# +msgid "Error during build: %v" +msgstr "建構時出錯:%v" + +# +msgid "Error during install: %v" +msgstr "安裝時出錯:%v" + +# +msgid "Error during uninstall: %v" +msgstr "卸載時出錯:%v" + +# +msgid "Error during upgrade: %v" +msgstr "升級時出錯:%v" + +# +msgid "Error extracting %s" +msgstr "解開 %s 時出錯" + +# +msgid "Error finding build artifacts" +msgstr "尋找建構成品時出錯" + +# +msgid "Error getting Debug info: %v" +msgstr "取得除錯資訊時出錯:%v" + +# +msgid "Error getting absolute path of sketch archive" +msgstr "獲取項目存檔的絕對路徑時出錯" + +# +msgid "Error getting board details: %v" +msgstr "獲取開發板詳細資訊時出錯:%v" + +# +msgid "Error getting current directory for compilation database: %s" +msgstr "取得編譯資料庫所在目錄時出錯:%s" + +# +msgid "Error getting information for library %s" +msgstr "取得程式庫 %s 資訊時出錯" + +# +msgid "Error getting libraries info: %v" +msgstr "取得程式庫資訊時出錯:%v" + +# +msgid "Error getting port metadata: %v" +msgstr "取得連接埠資料出錯:%v" + +# +msgid "Error getting port settings details: %s" +msgstr "取得連接埠詳細設定時出錯:%s" + +# +msgid "Error getting user input" +msgstr "取得用戶輸入時出錯" + +# +msgid "Error initializing instance: %v" +msgstr "初始化實例時出錯:%v" + +# +msgid "Error installing %s: %v" +msgstr "安裝 %s 時出錯:%v" + +# +msgid "Error installing Git Library: %v" +msgstr "安裝 Git 程式庫時出錯:%v" + +# +msgid "Error installing Zip Library: %v" +msgstr "安裝 Zip 程式庫時出錯:%v" + +# +msgid "Error installing library %s" +msgstr "安裝 %s 程式庫時出錯" + +# +msgid "Error installing platform %s" +msgstr "安裝 %s 平台時出錯" + +# +msgid "Error installing tool %s" +msgstr "安裝 %s 工具時出錯" + +# +msgid "Error listing boards: %v" +msgstr "列出開發板清單時出錯:%v" + +# +msgid "Error listing libraries: %v" +msgstr "列出程式庫清單時出錯:%v" + +# +msgid "Error listing platforms: %v" +msgstr "列出平台清單時出錯:%v" + +# +msgid "Error loading hardware platform" +msgstr "載入硬體平台時出錯" + +# +msgid "Error loading index %s" +msgstr "載入 %s 索引時出錯" + +# +msgid "Error opening %s" +msgstr "打開 %s 時出錯" + +# +msgid "Error opening debug logging file: %s" +msgstr "打開除錯日誌檔時出錯:%s" + +# +msgid "Error opening source code overrides data file: %v" +msgstr "打開原始碼覆寫資料檔時出錯:%v" + +# +msgid "Error parsing --show-properties flag: %v" +msgstr "解析 --show-properties 參數時出錯:%v" + +# +msgid "Error reading build directory" +msgstr "讀取建構目錄時出錯" + +# +msgid "Error reading config file: %v" +msgstr "讀取設定檔時出錯:%v" + +# +msgid "Error reading sketch files" +msgstr "讀取 sketch 檔時出錯" + +# +msgid "Error resolving dependencies for %[1]s: %[2]s" +msgstr "解析 %[1]s 的相依時出錯:%[2]s" + +# +msgid "Error retrieving core list: %v" +msgstr "取得核心列表時出錯:%v" + +# +msgid "Error rolling-back changes: %s" +msgstr "回復更改時出錯:%s" + +# +msgid "Error saving downloaded index" +msgstr "儲存下載的索引時出錯" + +# +msgid "Error saving downloaded index signature" +msgstr "儲存下載的索引簽名時出錯" + +# +msgid "Error searching boards: %v" +msgstr "搜尋開發板時出錯: %v" + +# +msgid "Error searching for Libraries: %v" +msgstr "搜尋程式庫時出錯: %v" + +# +msgid "Error searching for platforms: %v" +msgstr "搜尋平台時出錯:%v" + +# +msgid "Error serializing compilation database: %s" +msgstr "序列化編譯資料庫時出錯:%s" + +# +msgid "Error starting discovery: %v" +msgstr "啟動探索時出錯:%v" + +# +msgid "Error uninstalling %[1]s: %[2]v" +msgstr "卸載 %[1]s 時出錯:%[2]v" + +# +msgid "Error updating library index: %v" +msgstr "更新程式庫索引時出錯:%v" + +# +msgid "Error upgrading libraries" +msgstr "更新程式庫時出錯" + +# +msgid "Error upgrading platform: %s" +msgstr "更新平台時出錯:%s" + +# +msgid "Error verifying signature" +msgstr "驗證簽名時出錯" + +# +msgid "Error while detecting libraries included by %[1]s" +msgstr "偵測 %[1]s 所包含的程式庫時出錯" + +# +msgid "Error while determining sketch size: %s" +msgstr "確定 sketch 大小時出錯:%s" + +# +msgid "Error writing compilation database: %s" +msgstr "寫入編譯資料庫時出錯:%s" + +# +msgid "Error: command description is not supported by %v" +msgstr "錯誤:%v 不支持命令說明" + +# +msgid "Error: invalid source code overrides data file: %v" +msgstr "錯誤:無效的原始碼覆蓋了資料檔:%v" + +# +msgid "Event" +msgstr "事件" + +# +msgid "Examples for library %s" +msgstr "%s 程式庫的範例" + +# +msgid "Examples:" +msgstr "範例:" + +# +msgid "Executable to debug" +msgstr "可執行來除錯" + +# +msgid "Expected compiled sketch in directory %s, but is a file instead" +msgstr "%s 目錄內理應有已編譯的 sketch,卻只有個檔案" + +# +msgid "FQBN" +msgstr "FQBN" + +# +msgid "FQBN:" +msgstr "FQBN:" + +# +msgid "Failed chip erase" +msgstr "晶片擦除失敗" + +# +msgid "Failed programming" +msgstr "燒錄失敗" + +# +msgid "Failed to burn bootloader" +msgstr "無法燒錄 bootloader" + +# +msgid "Failed to create data directory" +msgstr "建立資料目錄失敗" + +# +msgid "Failed to create downloads directory" +msgstr "建立下載檔案夾失敗" + +# +msgid "Failed to listen on TCP port: %[1]s. %[2]s is an invalid port." +msgstr "監聽 TCP 埠失敗:%[1]s. %[2]s 是無效連接埠。" + +# +msgid "Failed to listen on TCP port: %[1]s. %[2]s is unknown name." +msgstr "監聽 TCP 埠失敗:%[1]s. %[2]s 是未知名稱。" + +# +msgid "Failed to listen on TCP port: %[1]s. Unexpected error: %[2]v" +msgstr "監聽 TCP 埠失敗:%[1]s. 未預期的錯誤:%[2]v" + +# +msgid "Failed to listen on TCP port: %s. Address already in use." +msgstr "監聽 TCP 埠:%s 失敗。位址已被使用。" + +# +msgid "Failed uploading" +msgstr "上傳失敗" + +# +msgid "File:" +msgstr "檔案:" + +# +msgid "Firmware encryption/signing requires all the following properties to be defined: %s" +msgstr "韌體加密/簽名需要定義以下全部屬性:%s" + +# +msgid "First message must contain debug request, not data" +msgstr "第一則訊息必須包含除錯請求,而不是資料" + +# +msgid "Flag %[1]s is mandatory when used in conjunction with: %[2]s" +msgstr "參數 %[1]s 當與:%[2]s 一起使用時必須強制使用" + +# +msgid "Flags:" +msgstr "參數:" + +# +msgid "Force run of post-install scripts (if the CLI is not running interactively)." +msgstr "強制執行安裝後指令檔(如果 CLI 未以互動方式執行)" + +# +msgid "Force skip of post-install scripts (if the CLI is running interactively)." +msgstr "強制跳過安裝後指令檔(如果 CLI 以互動方式運行)。" + +# +msgid "Found %d platform for reference \"%s\":\n" +"%s" +msgstr "找到 %d 平台供參照 \"%s\":\n" +"%s" + +# +msgid "Fully Qualified Board Name, e.g.: arduino:avr:uno" +msgstr "完全合格的開發板名,例如:arduino:avr:uno" + +# +msgid "GDB Server path" +msgstr "GDB 伺服器路徑" + +# +msgid "GDB Server type" +msgstr "GDB 伺服器類型" + +# +msgid "GDB server '%s' is not supported" +msgstr "不支持 GDB 伺服器 '%s'" + +# +msgid "Generates bash completion and command manpages." +msgstr "已生成 bash 和命令手冊。" + +# +msgid "Generates completion scripts" +msgstr "已生成指令檔" + +# +msgid "Generates completion scripts for various shells" +msgstr "已為各种 shell 生成指令檔" + +# +msgid "Generating function prototypes..." +msgstr "生成函數原型。。。" + +# +msgid "Global Flags:" +msgstr "全域旗標:" + +# +msgid "Global variables use %[1]s bytes (%[3]s%%) of dynamic memory, leaving %[4]s bytes for local variables. Maximum is %[2]s bytes." +msgstr "全域變數使用 %[1]s 位元組 (%[3]s%%) 的動態記憶體, 保留 %[4]s 位元組給區域變數. 最大 %[2]s 位元組." + +# +msgid "Global variables use %[1]s bytes of dynamic memory." +msgstr "全域變數使用 %[1]s 位元組的動態記憶體。" + +# +msgid "ID" +msgstr "ID" + +# +msgid "Id" +msgstr "Id" + +# +msgid "Identification properties:" +msgstr "標識屬性:" + +# +msgid "If set built binaries will be exported to the sketch folder." +msgstr "一經設定,建構的二進位檔將導出到 sketch 檔案夾。" + +# +msgid "If set return all installable and installed cores, including manually installed." +msgstr "如有設定,傳回所有可安裝和已安裝的核心,包括手動安裝的核心。" + +# +msgid "Include built-in libraries (from platforms and IDE) in listing." +msgstr "列表內包含內建程式庫(來自平台和 IDE)。" + +# +msgid "Includes %s directory in the archive." +msgstr "在存檔中包含 %s 目錄。" + +# +msgid "Install libraries in the IDE-Builtin directory" +msgstr "安裝程式庫到 IDE-Builtin 目錄" + +# +msgid "Installed" +msgstr "已安裝" + +# +msgid "Installed %s" +msgstr "已安裝 %s" + +# +msgid "Installing %s" +msgstr "安裝 %s ..." + +# +msgid "Installing library %s" +msgstr "安裝程式庫 %s ..." + +# +msgid "Installing platform %s" +msgstr "安裝 %s 平台..." + +# +msgid "Installing tool %s" +msgstr "安裝 %s 工具..." + +# +msgid "Installs one or more cores and corresponding tool dependencies." +msgstr "安裝一或多個核心和相關的工具相依。" + +# +msgid "Installs one or more specified libraries into the system." +msgstr "安裝一或多個指定的程式庫到系統中。" + +# +msgid "Internal error in cache" +msgstr "快取中的內部錯誤" + +# +msgid "Invalid '%[1]s' property: %[2]s" +msgstr "無效的 '%[1]s' 屬性:%[2]s" + +# +msgid "Invalid Call : should show Help, but it is available only in TEXT mode." +msgstr "無效呼叫:應顯示求助,但只在文字模式下能用。" + +# +msgid "Invalid FQBN" +msgstr "無效的 FQBN" + +# +msgid "Invalid TCP address: port is missing" +msgstr "無效的 TCP 位址:缺少連接埠" + +# +msgid "Invalid URL" +msgstr "無效的網址" + +# +msgid "Invalid additional URL: %v" +msgstr "無效的額外網址:%v" + +# +msgid "Invalid archive: file %{1}s not found in archive %{2}s" +msgstr "無效存檔:存檔 %{1}s 中未找到檔案 %{2}s" + +# +msgid "Invalid argument passed: %v" +msgstr "傳送的參數無效:%v" + +# +msgid "Invalid build properties" +msgstr "無效的建構屬性" + +# +msgid "Invalid data size regexp: %s" +msgstr "無效的資料大小正規表示式:%s" + +# +msgid "Invalid eeprom size regexp: %s" +msgstr "無效的 eeprom 大小正規表示式:%s" + +# +msgid "Invalid instance" +msgstr "無效的實例" + +# +msgid "Invalid item %s" +msgstr "無效的項目 %s" + +# +msgid "Invalid library" +msgstr "無效的程式庫" + +# +msgid "Invalid network.proxy '%[1]s': %[2]s" +msgstr "無效的 '%[1]s' 網路代理: %[2]s" + +# +msgid "Invalid option for --log-level: %s" +msgstr "--log-level: %s 選項無效" + +# +msgid "Invalid output format: %s" +msgstr "無效的輸出格式:%s" + +# +msgid "Invalid package index in %s" +msgstr "%s 內的套件包索引無效" + +# +msgid "Invalid parameter %s: version not allowed" +msgstr "無效 %s 參數:版本不允許" + +# +msgid "Invalid pid value: '%s'" +msgstr "無效的 pid 值:'%s'" + +# +msgid "Invalid profile" +msgstr "無效的設定檔" + +# +msgid "Invalid recipe in platform.txt" +msgstr "platform.txt 中的方法無效" + +# +msgid "Invalid size regexp: %s" +msgstr "無效的大小正規表示式:%s" + +# +msgid "Invalid timeout: %s" +msgstr "無效的超時:%s" + +# +msgid "Invalid version" +msgstr "無效的版本" + +# +msgid "Invalid vid value: '%s'" +msgstr "無效的 vid 值:'%s'" + +# +msgid "Just produce the compilation database, without actually compiling. All build commands are skipped except pre* hooks." +msgstr "只產生編譯資料庫,不實際編譯。跳過除 pre* 以外的所有建構指令。" + +# +msgid "LIBNAME" +msgstr "程式庫名" + +# +msgid "LIBRARY" +msgstr "程式庫" + +# +msgid "LIBRARY_NAME" +msgstr "程式庫_名" + +# +msgid "Latest" +msgstr "最新的" + +# +msgid "Library %[1]s has been declared precompiled:" +msgstr "程式庫 %[1]s 已聲明為預編譯:" + +# +msgid "Library %[1]s is already installed, but with a different version: %[2]s" +msgstr "程式庫 %[1]s 已經安裝, 但版本不同: %[2]s" + +# +msgid "Library %s is already at the latest version" +msgstr "程式庫 %s 已是最新版" + +# +msgid "Library %s is not installed" +msgstr "%s 程式庫未安裝" + +# +msgid "Library %s not found" +msgstr "未找到程式庫 %s " + +# +msgid "Library '%s' not found" +msgstr "未找到程式庫 '%s'" + +# +msgid "Library can't use both '%[1]s' and '%[2]s' folders. Double check in '%[3]s'." +msgstr "程式庫不能同時用'%[1]s'和'%[2]s'檔案夾。再檢查 '%[3]s'." + +# +msgid "Library install failed" +msgstr "程式庫安裝失敗" + +# +msgid "Library installed" +msgstr "已安裝的程式庫" + +# +msgid "License: %s" +msgstr "許可證:%s" + +# +msgid "Linking everything together..." +msgstr "將所有內容鏈接在一起。。。" + +# +msgid "List all boards that have the support platform installed. You can search\n" +"for a specific board if you specify the board name" +msgstr "列出已安裝被支援平台的所有開發板。輸入開發板名,也可進行搜尋" + +# +msgid "List all known boards and their corresponding FQBN." +msgstr "列出所有已知開發板及其相應的 FQBN。" + +# +msgid "List connected boards." +msgstr "列出已連接的開發板。" + +# +msgid "List of board options separated by commas. Or can be used multiple times for multiple options." +msgstr "列出開發板選項列表。可多選項多次使用。" + +# +msgid "List of custom build properties separated by commas. Or can be used multiple times for multiple properties." +msgstr "列出自定義屬性列表。可多屬性多次使用。" + +# +msgid "List updatable libraries." +msgstr "列出可更新的程式庫。" + +# +msgid "List updatable platforms." +msgstr "列出可更新的平台。" + +# +msgid "Lists all connected boards." +msgstr "列出所有連接的開發板。" + +# +msgid "Lists cores and libraries that can be upgraded" +msgstr "列出可升級的核心和程式庫" + +# +msgid "Loading index file: %v" +msgstr "載入索引檔:%v" + +# +msgid "Location" +msgstr "位置" + +# +msgid "Low memory available, stability problems may occur." +msgstr "可用記憶體不足,可能會有穩定性問題。" + +# +msgid "Maintainer: %s" +msgstr "維護者:%s" + +# +msgid "Max time to wait for port discovery, e.g.: 30s, 1m" +msgstr "等待連接埠探尋的最長時間,例如:30s, 1m" + +# +msgid "Messages with this level and above will be logged. Valid levels are: %s" +msgstr "記錄此等級(含)以上的訊息。有效等級為 %s" + +# +msgid "Missing '%[1]s' from library in %[2]s" +msgstr "%[2]s 的程式庫缺少 '%[1]s'" + +# +msgid "Missing FQBN (Fully Qualified Board Name)" +msgstr "缺少 FQBN(完全合格開發板名)" + +# +msgid "Missing port" +msgstr "找不到連接埠" + +# +msgid "Missing port address" +msgstr "缺少連接埠地址" + +# +msgid "Missing port protocol" +msgstr "找不到連接埠協議" + +# +msgid "Missing programmer" +msgstr "找不到燒錄器" + +# +msgid "Missing size regexp" +msgstr "缺少大小正規表示式" + +# +msgid "Missing sketch path" +msgstr "缺少 sketch 路徑" + +# +msgid "Monitor '%s' not found" +msgstr "找不到'%s' 監視器" + +# +msgid "Monitor port settings:" +msgstr "監視連接埠設定:" + +# +msgid "Multiple libraries were found for \"%[1]s\"" +msgstr "為 “%[1]s” 找到了多個程式庫" + +# +msgid "Name" +msgstr "名" + +# +msgid "Name: \"%s\"" +msgstr "名:“%s”" + +# +msgid "New upload port: %[1]s (%[2]s)" +msgstr "新上傳連接埠: %[1]s (%[2]s)" + +# +msgid "No boards found." +msgstr "沒找到開發板" + +# +msgid "No default port or FQBN set" +msgstr "未設定預設連接埠或 FQBN" + +# +msgid "No libraries found." +msgstr "沒找到程式庫。" + +# +msgid "No libraries installed." +msgstr "沒安裝程式庫。" + +# +msgid "No libraries matching your search." +msgstr "沒有你想找的程式庫。" + +# +msgid "No libraries matching your search.\n" +"Did you mean...\n" +"" +msgstr "沒有符合你想找的程式庫.\n" +"你的意思是...\n" +"" + +# +msgid "No libraries update is available." +msgstr "沒的程式庫更新檔。" + +# +msgid "No monitor available for the port protocol %s" +msgstr "沒有可用於連接埠協議 %s 的監視器" + +# +msgid "No outdated platforms or libraries found." +msgstr "沒找到已過時的平台或程式庫。" + +# +msgid "No platforms installed." +msgstr "沒安裝任何平台。" + +# +msgid "No platforms matching your search." +msgstr "沒有你想找的平台。" + +# +msgid "No upload port found, using %s as fallback" +msgstr "沒找到上傳連接埠,使用 %s 作為後援" + +# +msgid "No valid dependencies solution found" +msgstr "找不到有效的相依性解決方案" + +# +msgid "Not enough memory; see %[1]s for tips on reducing your footprint." +msgstr "記憶體不足;有關減少用量的提示,請參見 %[1]s。" + +# +msgid "Not used: %[1]s" +msgstr "未使用:%[1]s" + +# +msgid "OS:" +msgstr "作業系統:" + +# +msgid "Official Arduino board:" +msgstr "官方 Arduino 開發板:" + +# +msgid "Omit library details far all versions except the latest (produce a more compact JSON output)." +msgstr "省略程式庫中除最新版本以外的所有版本(產出更精簡的 JSON )." + +# +msgid "Open a communication port with a board." +msgstr "開啟開發板的通信連接埠。" + +# +msgid "Option:" +msgstr "選項:" + +# +msgid "Optional, can be: %s. Used to tell gcc which warning level to use (-W flag)." +msgstr "選項,可以是:%s。用來告訴 gcc 使用哪個警告級別(-W 參數)." + +# +msgid "Optional, cleanup the build folder and do not use any cached build." +msgstr "選項,清理建構用的檔案夾且不使用任何快取。" + +# +msgid "Optional, optimize compile output for debugging, rather than for release." +msgstr "選項,優化編譯用於除錯的輸出,還不到發佈用." + +# +msgid "Optional, suppresses almost every output." +msgstr "選項,禁止全部輸出。" + +# +msgid "Optional, turns on verbose mode." +msgstr "選項,開啟詳細模式。" + +# +msgid "Optional. Path to a .json file that contains a set of replacements of the sketch source code." +msgstr "選項。 包含一組替代 sketch 原始碼的 .json 檔的路徑." + +# +msgid "Override a build property with a custom value. Can be used multiple times for multiple properties." +msgstr "用自定義值替代建構屬性。可多次使用多個屬性." + +# +msgid "Overwrite existing config file." +msgstr "覆蓋現有的設定檔。" + +# +msgid "Overwrites an already existing archive" +msgstr "覆蓋一個已存在的存檔" + +# +msgid "Overwrites an existing .ino sketch." +msgstr "覆蓋現有的 .ino sketch 檔。" + +# +msgid "PACKAGER" +msgstr "套件程式" + +# +msgid "Package URL:" +msgstr "套件網址:" + +# +msgid "Package maintainer:" +msgstr "套件維護者:" + +# +msgid "Package name:" +msgstr "套件名:" + +# +msgid "Package online help:" +msgstr "套件線上協助" + +# +msgid "Package website:" +msgstr "套件網站:" + +# +msgid "Paragraph: %s" +msgstr "段落:%s" + +# +msgid "Path" +msgstr "路徑" + +# +msgid "Path to a collection of libraries. Can be used multiple times or entries can be comma separated." +msgstr "程式庫集合的路徑。可多次使用,或以逗號分隔。" + +# +msgid "Path to a single library's root folder. Can be used multiple times or entries can be comma separated." +msgstr "單一程式庫的根目錄路徑。可多次使用,或以逗號分隔。" + +# +msgid "Path to the file where logs will be written." +msgstr "日誌檔的路徑。" + +# +msgid "Path where to save compiled files. If omitted, a directory will be created in the default temporary path of your OS." +msgstr "保存已編譯檔的路徑。如果省略,將在作業系統預設的臨時目錄中建立。" + +# +msgid "Performing 1200-bps touch reset on serial port %s" +msgstr "在 %s 連接埠上執行 1200-bps TOUCH 重置" + +# +msgid "Platform %s already installed" +msgstr "%s 平台已安裝過" + +# +msgid "Platform %s installed" +msgstr "已安裝 %s 平台" + +# +msgid "Platform %s is not found in any known index\n" +"Maybe you need to add a 3rd party URL?" +msgstr "在已知索引中找不到 %s 平台\n" +"也許你需要加上第三方位址?" + +# +msgid "Platform %s uninstalled" +msgstr "%s 平台已卸載" + +# +msgid "Platform '%s' is already at the latest version" +msgstr "'%s' 平台已是最新版" + +# +msgid "Platform '%s' not found" +msgstr "未找到 '%s' 平台" + +# +msgid "Platform ID" +msgstr "平台 ID" + +# +msgid "Platform ID is not correct" +msgstr "平台 ID 不正確" + +# +msgid "Platform URL:" +msgstr "平台位址:" + +# +msgid "Platform architecture:" +msgstr "平台架構:" + +# +msgid "Platform category:" +msgstr "平台類別:" + +# +msgid "Platform checksum:" +msgstr "平台校驗碼:" + +# +msgid "Platform file name:" +msgstr "平台檔案名:" + +# +msgid "Platform name:" +msgstr "平台名稱:" + +# +msgid "Platform size (bytes):" +msgstr "平台大小(位元組):" + +# +msgid "Please specify an FQBN. Multiple possible boards detected on port %[1]s with protocol %[2]s" +msgstr "請指定一個 FQBN。在 %[1]s 連接埠以協議 %[2]s 檢測到多個可能的開發板" + +# +msgid "Please specify an FQBN. The board on port %[1]s with protocol %[2]s can't be identified" +msgstr "請指定一個 FQBN。%[1]s 連接埠以協議 %[2]s 的開發板無法識別" + +# +msgid "Port" +msgstr "連接埠" + +# +msgid "Port closed: %v" +msgstr "連接埠關閉:%v" + +# +msgid "Port monitor error" +msgstr "連接埠監視器錯誤" + +# +msgid "Precompiled library in \"%[1]s\" not found" +msgstr "在“%[1]s”找不到預編譯程式庫" + +# +msgid "Print details about a board." +msgstr "列出開發板的詳細資訊。" + +# +msgid "Print preprocessed code to stdout instead of compiling." +msgstr "將預處理的代碼在標準輸出列出,而不是編譯。" + +# +msgid "Print the logs on the standard output." +msgstr "在標準輸出上印出日誌。" + +# +msgid "Prints the current configuration" +msgstr "印出目前設定" + +# +msgid "Prints the current configuration." +msgstr "印出目前設定。" + +# +msgid "Profile '%s' not found" +msgstr "未找到'%s'的設定檔''。" + +# +msgid "Programmer '%s' not found" +msgstr "未找到'%s'燒錄器" + +# +msgid "Programmer name" +msgstr "燒錄器名" + +# +msgid "Programmer to use, e.g: atmel_ice" +msgstr "要使用的燒錄器,例如:atmel_ice" + +# +msgid "Programmers:" +msgstr "燒錄器:" + +# +msgid "Property '%s' is undefined" +msgstr "'%s' 屬性未定義" + +# +msgid "Protocol" +msgstr "協議" + +# +msgid "Provides includes: %s" +msgstr "提供包括:%s" + +# +msgid "Removes one or more values from a setting." +msgstr "從設定中刪除一或多個值。" + +# +msgid "Replacing %[1]s with %[2]s" +msgstr "將 %[1]s 替換成 %[2]s" + +# +msgid "Replacing platform %[1]s with %[2]s" +msgstr "用 %[2]s 替換 %[1]s 平台" + +# +msgid "Required tool:" +msgstr "需要的工具:" + +# +msgid "Run as a daemon on port: %s" +msgstr "在連接埠: %s 以背景程式執行" + +# +msgid "Run in silent mode, show only monitor input and output." +msgstr "以靜默模式執行,只顯示監視輸入和輸出。" + +# +msgid "Running as a daemon the initialization of cores and libraries is done only once." +msgstr "以背景程式執行時,只執行一次核心和程式庫的初始化。" + +# +msgid "Running normal build of the core..." +msgstr "以正常建構的核心執行..." + +# +msgid "Save build artifacts in this directory." +msgstr "將建構成品存在此目錄。" + +# +msgid "Search for a board in the Boards Manager using the specified keywords." +msgstr "使用指定的關鍵詞在開發板管理員中尋找開發板。" + +# +msgid "Search for a board in the Boards Manager." +msgstr "在開發板管理員中尋找開發板。" + +# +msgid "Search for a core in Boards Manager using the specified keywords." +msgstr "使用指定的關鍵字在開發板管理員中尋找核心。" + +# +msgid "Search for a core in Boards Manager." +msgstr "在開發板管理員中尋找核心。" + +# +msgid "Search for one or more libraries data (case insensitive search)." +msgstr "尋找一或多個程式庫資料(不分大小寫)。" + +# +msgid "Searches for one or more libraries data." +msgstr "尋找一或多個程式庫資料。" + +# +msgid "Sentence: %s" +msgstr "句子:%s" + +# +msgid "Server responded with: %s" +msgstr "伺服器回應:%s" + +# +msgid "Sets a setting value." +msgstr "設定一個值。" + +# +msgid "Sets the default values for port and FQBN. If no port or FQBN are specified, the current default port and FQBN are displayed." +msgstr "設定連接埠和 FQBN 的預設值。如果沒有指定連接埠或 FQBN,將顯示當前的預設連接埠和 FQBN。" + +# +msgid "Sets where to save the configuration file." +msgstr "設定保存設定文件的位置。" + +# +msgid "Setting" +msgstr "設定" + +# +msgid "Settings key doesn't exist" +msgstr "設定鍵不存在" + +# +msgid "Show all available core versions." +msgstr "顯示所有可用的核心版本。" + +# +msgid "Show all the settings of the communication port." +msgstr "顯示通訊連接埠的所有設定。" + +# +msgid "Show also boards marked as 'hidden' in the platform" +msgstr "在平台上顯示標記為隱藏的開發板" + +# +msgid "Show build properties. The properties are expanded, use \"--show-properties=unexpanded\" if you want them exactly as they are defined." +msgstr "顯示編譯屬性. 屬性是攤開的, 如只想看定義, 請用 \"--show-properties=unexpanded\"." + +# +msgid "Show full board details" +msgstr "顯示完整的開發板詳細資訊" + +# +msgid "Show information about a board, in particular if the board has options to be specified in the FQBN." +msgstr "顯示開發板的資訊,特別是如果開發板在 FQBN 中有指定的選項。" + +# +msgid "Show library names only." +msgstr "只顯示程式庫名。" + +# +msgid "Show list of available programmers" +msgstr "顯示可用的燒錄器列表" + +# +msgid "Show metadata about the debug session instead of starting the debugger." +msgstr "顯示有關除錯對話的資料,而不是啟動除錯器。" + +# +msgid "Show outdated cores and libraries after index update" +msgstr "在索引更新後顯示過時的核心和程式庫" + +# +msgid "Shows a list of installed libraries." +msgstr "顯示已安裝的程式庫。" + +# +msgid "Shows a list of installed libraries.\n" +"\n" +"If the LIBNAME parameter is specified the listing is limited to that specific\n" +"library. By default the libraries provided as built-in by platforms/core are\n" +"not listed, they can be listed by adding the --all flag." +msgstr "顯示已安裝的程式庫。\n如果指定了 LIBNAME 程式庫名參數,則只列出該程式庫。\n預設情況下,不會列出 '平台/核心' 內建的程式庫,\n可以通過 --all 來顯示" + +# +msgid "Shows the list of installed platforms." +msgstr "顯示已安裝的平台。" + +# +msgid "Shows the list of the examples for libraries." +msgstr "顯示程式庫範例。" + +# +msgid "Shows the list of the examples for libraries. A name may be given as argument to search a specific library." +msgstr "顯示程式庫的範例列表。可以指定名稱。" + +# +msgid "Shows the version number of Arduino CLI which is installed on your system." +msgstr "顯示安裝在系統上的 Arduino CLI 的版本。" + +# +msgid "Shows version number of Arduino CLI." +msgstr "顯示 Arduino CLI 的版本。" + +# +msgid "Size (bytes):" +msgstr "大小(字元組):" + +# +msgid "Sketch cannot be located in build path. Please specify a different build path" +msgstr "sketch 不能放在編譯路徑上。請指定不同的編譯路徑" + +# +msgid "Sketch created in: %s" +msgstr "Sketch 建立在:%s" + +# +msgid "Sketch profile to use" +msgstr "Sketch 設定檔" + +# +msgid "Sketch too big; see %[1]s for tips on reducing it." +msgstr "Sketch 太大;請參閱 %[1]s,減少專案大小的提示。" + +# +msgid "Sketch uses %[1]s bytes (%[3]s%%) of program storage space. Maximum is %[2]s bytes." +msgstr "Sketch 使用 %[1]s 字元組(%[3]s%%)的程式儲存空間。最大 %[2]s 字元組。" + +# +msgid "Sketches with .pde extension are deprecated, please rename the following files to .ino:" +msgstr "使用 .pde 副檔名的 Sketch 專案已棄用,請將以下檔案的副檔名改成.ino" + +# +msgid "Skip linking of final executable." +msgstr "跳過鏈結成可執行檔。" + +# +msgid "Skipping 1200-bps touch reset: no serial port selected!" +msgstr "跳過 1200-bps TOUCH 重設:未選擇序列埠!" + +# +msgid "Skipping archive creation of: %[1]s" +msgstr "跳過以下的檔案建立:%[1]s" + +# +msgid "Skipping compile of: %[1]s" +msgstr "跳過編譯:%[1]s" + +# +msgid "Skipping dependencies detection for precompiled library %[1]s" +msgstr "跳過 %[1]s 預編譯程式庫的相依檢測" + +# +msgid "Skipping platform configuration." +msgstr "跳過平台設定。" + +# +msgid "Skipping tool configuration." +msgstr "跳過工具設定。" + +# +msgid "Skipping: %[1]s" +msgstr "跳過:%[1]s" + +# +msgid "Some indexes could not be updated." +msgstr "一些索引無法更新。" + +# +msgid "Some upgrades failed, please check the output for details." +msgstr "有些升級失敗了,詳情請看輸出結果。" + +# +msgid "TOUCH: error during reset: %s" +msgstr "TOUCH:重設時出錯:%s" + +# +msgid "The TCP port the daemon will listen to" +msgstr "背景程式將監聽 TCP 埠" + +# +msgid "The custom config file (if not specified the default will be used)." +msgstr "自定義設定檔(如果未指定,將使用預設值)。" + +# +msgid "The flag --debug-file must be used with --debug." +msgstr "參數 --debug-file 必須與 --debug 一起使用。" + +# +msgid "The key '%[1]v' is not a list of items, can't add to it.\n" +"Maybe use '%[2]s'?" +msgstr "'%[1]v' 鍵不是項目列表,無法加入其中。\n" +"是否使用 '%[2]s'?" + +# +msgid "The key '%[1]v' is not a list of items, can't remove from it.\n" +"Maybe use '%[2]s'?" +msgstr "'%[1]v' 鍵不是項目列表,無法進行移除。\n" +"是否使用 '%[2]s'?" + +# +msgid "The library %s has multiple installations:" +msgstr "程式庫 %s 有多個安裝。" + +# +msgid "The name of the custom encryption key to use to encrypt a binary during the compile process. Used only by the platforms that support it." +msgstr "自定義加密密鑰的名稱,用在編譯過程中對二進位碼進行加密。只在有支援的平台上使用。" + +# +msgid "The name of the custom signing key to use to sign a binary during the compile process. Used only by the platforms that support it." +msgstr "用在編譯過程中對二進位碼進行簽名的自定義簽名密鑰的名稱。只在有支援的平台上使用。" + +# +msgid "The output format for the logs, can be: %s" +msgstr "日誌的輸出格​​式,可以是:%s" + +# +msgid "The path of the dir to search for the custom keys to sign and encrypt a binary. Used only by the platforms that support it." +msgstr "尋找用以簽名和加密二進位碼的自定義密鑰檔案夾路徑。只在有支援的平台上使用。" + +# +msgid "The platform does not support '%[1]s' for precompiled libraries." +msgstr "本平台不支援預編譯程式庫的 '%[1]s'。" + +# +msgid "This command upgrades an installed library to the latest available version. Multiple libraries can be passed separated by a space. If no arguments are provided, the command will upgrade all the installed libraries where an update is available." +msgstr "本指令將升級已安裝的程式庫到最新版。多程式庫可以空格間格。如果未提供任何參數,將升級所有已安裝的程式庫。" + +# +msgid "This commands shows a list of installed cores and/or libraries\n" +"that can be upgraded. If nothing needs to be updated the output is empty." +msgstr "本指令顯示可升級的已安裝核心和程式庫。\n如果沒需更新的,則輸出為空白。" + +# +msgid "Tool %s already installed" +msgstr "%s 工具已安裝" + +# +msgid "Tool %s uninstalled" +msgstr "%s 工具已卸載" + +# +msgid "Toolchain '%s' is not supported" +msgstr "不支持 '%s' 工具鏈" + +# +msgid "Toolchain custom configurations" +msgstr "工具鏈客製設定" + +# +msgid "Toolchain path" +msgstr "工具鏈路徑" + +# +msgid "Toolchain prefix" +msgstr "工具鏈前綴" + +# +msgid "Toolchain type" +msgstr "工具鏈類型" + +# +msgid "Try running %s" +msgstr "嘗試執行 %s" + +# +msgid "Turns on verbose mode." +msgstr "開啟詳細模式。" + +# +msgid "Type" +msgstr "類型" + +# +msgid "Types: %s" +msgstr "類型:%s" + +# +msgid "URL:" +msgstr "網址:" + +# +msgid "Unable to cache built core, please tell %[1]s maintainers to follow %[2]s" +msgstr "無法快取建構核心,請告知 %[1]s 維護者注意 %[2]s" + +# +msgid "Unable to get Documents Folder: %v" +msgstr "無法取得文件檔案夾:%v" + +# +msgid "Unable to get Local App Data Folder: %v" +msgstr "無法取得本地應用程式資料檔案夾:%v" + +# +msgid "Unable to get user home dir: %v" +msgstr "無法取得用戶家目錄:%v" + +# +msgid "Unable to open file for logging: %s" +msgstr "無法開啟檔案做日誌記錄:%s" + +# +msgid "Unable to parse URL" +msgstr "無法解析位址" + +# +msgid "Uninstalling %s" +msgstr "正在卸載 %s" + +# +msgid "Uninstalling %s, tool is no more required" +msgstr "卸載 %s,工具不再需要了" + +# +msgid "Uninstalls one or more cores and corresponding tool dependencies if no longer used." +msgstr "如果不再需用到, 卸除一或多個核心及相依" + +# +msgid "Uninstalls one or more libraries." +msgstr "卸載一或多個程式庫。" + +# +msgid "Unknown" +msgstr "未知" + +# +msgid "Unknown FQBN" +msgstr "未知 FQBN" + +# +msgid "Updates the index of cores and libraries" +msgstr "更新核心和程式庫的索引" + +# +msgid "Updates the index of cores and libraries to the latest versions." +msgstr "將核心和程式庫的索引更新到最新。" + +# +msgid "Updates the index of cores to the latest version." +msgstr "更新核心索引到最新。" + +# +msgid "Updates the index of cores." +msgstr "更新核心索引。" + +# +msgid "Updates the libraries index to the latest version." +msgstr "更新程式庫索引到最新。" + +# +msgid "Updates the libraries index." +msgstr "更新程式庫索引。" + +# +msgid "Upgrade doesn't accept parameters with version" +msgstr "升級不接受版本參數" + +# +msgid "Upgrades installed cores and libraries to latest version." +msgstr "將已安裝的核心和程式庫升級到最新。" + +# +msgid "Upgrades installed cores and libraries." +msgstr "升級已安裝的核心和程式庫。" + +# +msgid "Upgrades installed libraries." +msgstr "升級已安裝的程式庫。" + +# +msgid "Upgrades one or all installed platforms to the latest version." +msgstr "將已安裝的平台升級到最新。" + +# +msgid "Upload Arduino sketches." +msgstr "上傳 Arduino sketch。" + +# +msgid "Upload Arduino sketches. This does NOT compile the sketch prior to upload." +msgstr "上傳 Arduino sketch。不會在上傳前編譯它。" + +# +msgid "Upload port address, e.g.: COM3 or /dev/ttyACM2" +msgstr "上傳連接埠地址,例如:COM3 或 /dev/ttyACM2" + +# +msgid "Upload port found on %s" +msgstr "在 %s 上找到上傳連接埠" + +# +msgid "Upload port protocol, e.g: serial" +msgstr "上傳連接埠協議,例如:序列" + +# +msgid "Upload the binary after the compilation." +msgstr "編譯完就上傳二進位碼。" + +# +msgid "Upload the bootloader on the board using an external programmer." +msgstr "使用外部燒錄器將 bootloader 上傳到開發板。" + +# +msgid "Upload the bootloader." +msgstr "上傳 bootloader。" + +# +msgid "Uploading to specified board using %s protocol requires the following info:" +msgstr "以 %s 協議上傳到指定開發板需以下資訊:" + +# +msgid "Urls cannot contain commas. Separate multiple urls exported as env var with a space:\n" +"%s" +msgstr "網址不能包含逗號。用空格隔開多個位址, 例如 env var:\n" +"%s" + +# +msgid "Usage:" +msgstr "用法:" + +# +msgid "Use %s for more information about a command." +msgstr "使用 %s 取得有關指令的更多資訊。" + +# +msgid "Used library" +msgstr "已使用的程式庫" + +# +msgid "Used platform" +msgstr "已使用的平台" + +# +msgid "Used: %[1]s" +msgstr "使用:%[1]s" + +# +msgid "Using board '%[1]s' from platform in folder: %[2]s" +msgstr "使用平台的'%[1]s' 開發板,在檔案夾:%[2]s" + +# +msgid "Using cached library dependencies for file: %[1]s" +msgstr "%[1]s 檔案使用快取程式庫相依" + +# +msgid "Using core '%[1]s' from platform in folder: %[2]s" +msgstr "使用平台的 '%[1]s'核心,在檔案夾:%[2]s" + +# +msgid "Using library %[1]s at version %[2]s in folder: %[3]s %[4]s" +msgstr "使用 %[2]s 版的 %[1]s 程式庫,在檔案夾:%[3]s%[4]s" + +# +msgid "Using library %[1]s in folder: %[2]s %[3]s" +msgstr "使用的 %[1]s 程式庫,在檔案夾:%[2]s%[3]s" + +# +msgid "Using precompiled core: %[1]s" +msgstr "使用預編譯核心:%[1]s" + +# +msgid "Using precompiled library in %[1]s" +msgstr "在 %[1]s 中使用預編譯程式庫" + +# +msgid "Using previously compiled file: %[1]s" +msgstr "使用之前編譯的檔案:%[1]s" + +# +msgid "VERSION" +msgstr "版本" + +# +msgid "VERSION_NUMBER" +msgstr "版本號" + +# +msgid "Values" +msgstr "值" + +# +msgid "Verify uploaded binary after the upload." +msgstr "上傳後驗證上傳的二進碼。" + +# +msgid "Version" +msgstr "版本" + +# +msgid "Versions: %s" +msgstr "版本:%s" + +# +msgid "WARNING cannot configure platform: %s" +msgstr "警告!無法設定平台:%s" + +# +msgid "WARNING cannot configure tool: %s" +msgstr "警告!無法設定工具:%s" + +# +msgid "WARNING: The sketch is compiled using one or more custom libraries." +msgstr "警告! sketch 是用一或多個自定義程式庫來編譯的。" + +# +msgid "WARNING: library %[1]s claims to run on %[2]s architecture(s) and may be incompatible with your current board which runs on %[3]s architecture(s)." +msgstr "警告:%[1]s 程式庫為 %[2]s 架構,可能與選擇的開發板不相容 ( %[3]s 架構)。" + +# +msgid "Waiting for upload port..." +msgstr "等待上傳連接埠..." + +# +msgid "Warning: Board %[1]s doesn't define a %[2]s preference. Auto-set to: %[3]s" +msgstr "警告:%[1]s 開發板並沒定義 %[2]s 喜好。自動設定成:%[3]s" + +# +msgid "Website: %s" +msgstr "網站:%s" + +# +msgid "Writes current configuration to a configuration file." +msgstr "將目前的設定寫入設定檔。" + +# +msgid "Writes current configuration to the configuration file in the data directory." +msgstr "將目前設定寫入資料目錄下的設定檔。" + +# +msgid "Writing config file: %v" +msgstr "寫入設定檔:%v" + +# +msgid "You cannot use the %s flag while compiling with a profile." +msgstr "在用設定檔編譯時,不能使用 %s 旗標。" + +# +msgid "archive hash differs from hash in index" +msgstr "保存在與索引內不同的雜湊" + +# +msgid "archive is not valid: multiple files found in zip file top level" +msgstr "存檔無效:在 zip 文件頂層找到多個檔案" + +# +msgid "archive is not valid: no files found in zip file top level" +msgstr "存檔無效:在 zip 檔的頂層沒找到檔案" + +# +msgid "archivePath" +msgstr "存檔路徑" + +# +msgid "arduino-preprocessor pattern is missing" +msgstr "缺少 arduino 預處理器樣態" + +# +msgid "autodetect build artifact: %s" +msgstr "自動檢測建構成品:%s" + +# +msgid "available only in text format" +msgstr "只提供本文格式" + +# +msgid "binary file not found in %s" +msgstr "在 %s 找不到二進位檔" + +# +msgid "board %s not found" +msgstr "找不到開發板 %s" + +# +msgid "boardname" +msgstr "開發板名" + +# +msgid "built-in libraries directory not set" +msgstr "內建程式庫目錄未設定" + +# +msgid "calling %[1]s: %[2]w" +msgstr "呼叫 %[1]s: %[2]w" + +# +msgid "can't find latest release of %s" +msgstr "找不到 %s 的最新版" + +# +msgid "can't find latest release of tool %s" +msgstr "找不到 %s 工具的最新版" + +# +msgid "can't find main Sketch file in %s" +msgstr "在 %s 中找不到主要的 sketch 檔" + +# +msgid "can't find pattern for discovery with id %s" +msgstr "找不到 id 為 %s 的樣態" + +# +msgid "can't retrieve standard error stream: %s" +msgstr "無法取得標準錯誤流:%s" + +# +msgid "can't retrieve standard output stream: %s" +msgstr "無法取得標準輸出流:%s" + +# +msgid "candidates" +msgstr "候選" + +# +msgid "cannot execute upload tool: %s" +msgstr "無法執行上傳工具:%s" + +# +msgid "checking local archive integrity" +msgstr "檢查本地端存檔的完整性" + +# +msgid "cleaning build path" +msgstr "清理建構路徑" + +# +msgid "command" +msgstr "指令" + +# +msgid "command '%[1]s' failed: %[2]s" +msgstr "'%[1]s' 指令失敗:%[2]s" + +# +msgid "command failed: %s" +msgstr "指令失敗:%s" + +# +msgid "communication out of sync, expected '%[1]s', received '%[2]s'" +msgstr "通信不同步,應為 '%[1]s',收到 '%[2]s'" + +# +msgid "computing hash: %s" +msgstr "計算雜湊:%s" + +# +msgid "copying library to destination directory:" +msgstr "將程式庫拷貝到目標目錄:" + +# +msgid "could not find a valid build artifact" +msgstr "找不到有效的建構成品" + +# +msgid "could not overwrite" +msgstr "無法覆寫" + +# +msgid "could not remove old library" +msgstr "無法刪除舊程式庫" + +# +msgid "could not update sketch project file" +msgstr "無法更新 sketch 專案檔" + +# +msgid "creating core cache folder: %s" +msgstr "建立核心快取檔案夾:%s" + +# +msgid "creating installed.json in %[1]s: %[2]s" +msgstr "在 %[1]s:%[2]s 建位 installed.json" + +# +msgid "creating temp dir for extraction: %s" +msgstr "建立提取用的臨時目錄:%s" + +# +msgid "data section exceeds available space in board" +msgstr "資料區已超出開發板的可用空間" + +# +msgid "dependency '%s' is not available" +msgstr "'%s' 的相依找不到" + +# +msgid "destination already exists" +msgstr "目標已存在" + +# +msgid "destination dir %s already exists, cannot install" +msgstr "目標目錄 %s 已存在,無法安裝" + +# +msgid "destination directory already exists" +msgstr "目標目錄已存在" + +# +msgid "directory doesn't exist: %s" +msgstr "目錄不存在:%s" + +# +msgid "discovery %[1]s process not started: %[2]w" +msgstr "discovery %[1]s 程序未開始:%[2]w" + +# +msgid "discovery %s not found" +msgstr "未找到 %s discovery" + +# +msgid "discovery %s not installed" +msgstr "%s discovery 未安裝" + +# +msgid "discovery release not found: %s" +msgstr "未找到 discovery 版本:%s" + +# +msgid "download a specific version (in this case 1.6.9)." +msgstr "下載指定版本(在本例中為 1.6.9)。" + +# +msgid "download the latest version of Arduino SAMD core." +msgstr "下載最新版 Arduino SAMD 核心。" + +# +msgid "downloaded" +msgstr "下載" + +# +msgid "downloading %[1]s tool: %[2]s" +msgstr "正在下載 %[1]s 工具:%[2]s" + +# +msgid "empty board identifier" +msgstr "清空開發板標識" + +# +msgid "error loading sketch project file:" +msgstr "輸入 sketch 專案時出錯:" + +# +msgid "error opening %s" +msgstr " 開啟 %s 時出錯" + +# +msgid "error parsing value: %v" +msgstr "錯誤解析值:%v" + +# +msgid "error parsing version constraints" +msgstr "解析版本限制時出錯" + +# +msgid "error processing response from server" +msgstr "處理伺服器回應時出錯" + +# +msgid "error querying Arduino Cloud Api" +msgstr "查詢 Arduino Cloud Api 時出錯" + +# +msgid "extracting archive: %s" +msgstr "正在解開存檔:%s" + +# +msgid "extracting archive: %w" +msgstr "正在解開存檔:%w" + +# +msgid "failed to compute hash of file \"%s\"" +msgstr "無法計算 “%s” 檔案的雜湊值" + +# +msgid "failed to initialize http client" +msgstr "無法初始化 http 客戶端" + +# +msgid "fetched archive size differs from size specified in index" +msgstr "抓取的存檔大小與索引中的大小不同" + +# +msgid "files in archive must be placed in a subdirectory" +msgstr "存檔中的檔案必須放在子目錄下" + +# +msgid "finding absolute path of %s" +msgstr "尋找 %s 的絕對路徑" + +# +msgid "flags" +msgstr "旗標" + +# +msgid "following symlink %s" +msgstr "跟隨符式鏈接 %s" + +# +msgid "for a specific version." +msgstr "針對特定版本。" + +# +msgid "for the latest version." +msgstr "最新版本。" + +# +msgid "for the specific version." +msgstr "針對特定版本。" + +# +msgid "generating installation.id: %w" +msgstr "正在產出 installation.id: %w" + +# +msgid "generating installation.secret: %w" +msgstr "產出 installation.secret:%w" + +# +msgid "getting archive file info: %s" +msgstr "取得存檔文件的資訊:%s" + +# +msgid "getting archive info: %s" +msgstr "正在取得存檔資訊:%s" + +# +msgid "getting archive path: %s" +msgstr "取得存檔路徑:%s" + +# +msgid "getting build properties for board %[1]s: %[2]s" +msgstr "取得開發板 %[1]s:%[2]s 的建構屬性" + +# +msgid "getting discovery dependencies for platform %[1]s: %[2]s" +msgstr "取得 %[1]s 平台的 discovery 相依:%[2]s" + +# +msgid "getting monitor dependencies for platform %[1]s: %[2]s" +msgstr "取得 %[1]s 平台的監視器相依:%[2]s" + +# +msgid "getting parent dir of %[1]s: %[2]s" +msgstr "取得 %[1]s 的父目錄:%[2]s" + +# +msgid "getting tool dependencies for platform %[1]s: %[2]s" +msgstr "正在獲取 %[1]s 平台的工具依賴:%[2]s" + +# +msgid "install directory not set" +msgstr "未設定安裝目錄" + +# +msgid "installing %[1]s tool: %[2]s" +msgstr "正在安裝 %[1]s 工具:%[2]s" + +# +msgid "installing platform %[1]s: %[2]s" +msgstr "安裝 %[1]s 平台: %[2]s" + +# +msgid "interactive terminal not supported for the '%s' output format" +msgstr "互動終端不支援“%s” 輸出格式" + +# +msgid "invalid '%s' directive" +msgstr "無效的 '%s' 指令" + +# +msgid "invalid 'add' message: missing port" +msgstr "無效的 “新增” 訊息:找不到連接埠" + +# +msgid "invalid 'remove' message: missing port" +msgstr "無效的 “移除” 訊息:找不到連接埠" + +# +msgid "invalid checksum format: %s" +msgstr "無效的校驗碼格式:%s" + +# +msgid "invalid config option: %s" +msgstr "無效的設定選項:%s" + +# +msgid "invalid empty core architecture '%s'" +msgstr "無效的空核心架構 '%s'" + +# +msgid "invalid empty core argument" +msgstr "無效的空核心參數" + +# +msgid "invalid empty core name '%s'" +msgstr "無效的空核心名 '%s'" + +# +msgid "invalid empty core reference '%s'" +msgstr "無效的空核心參照 '%s'" + +# +msgid "invalid empty core version: '%s'" +msgstr "無效的空核心版本:'%s'" + +# +msgid "invalid empty library name" +msgstr "無效的空程式庫名" + +# +msgid "invalid empty library version: %s" +msgstr "無效的空程式庫版本:%s" + +# +msgid "invalid empty option found" +msgstr "找到無效的空選項" + +# +msgid "invalid git url" +msgstr "無效的 git 位址" + +# +msgid "invalid hash '%[1]s': %[2]s" +msgstr "無效的 '%[1]s' 雜湊:%[2]s" + +# +msgid "invalid item %s" +msgstr "無效的 %s 項目" + +# +msgid "invalid library directive:" +msgstr "無效的程式庫指令:" + +# +msgid "invalid library layout: %s" +msgstr "無效的程式庫佈局:%s" + +# +msgid "invalid library location: %s" +msgstr "無效的程式庫位置:%s" + +# +msgid "invalid library: no header files found" +msgstr "無效的程式庫:沒找到.h 引入檔" + +# +msgid "invalid option '%s'" +msgstr "無效的選項'%s'" + +# +msgid "invalid option '%s'." +msgstr "無效的選項 '%s'。" + +# +msgid "invalid path creating config dir: %[1]s error: %[2]w" +msgstr "新設定目錄的路徑無效:%[1]s 錯誤:%[2]w" + +# +msgid "invalid path writing inventory file: %[1]s error: %[2]w" +msgstr "寫入庫存檔的路徑無效:%[1]s 錯誤:%[2]w" + +# +msgid "invalid platform archive size: %s" +msgstr "無效的平台存檔大小:%s" + +# +msgid "invalid platform identifier" +msgstr "無效的平台識別" + +# +msgid "invalid platform index URL:" +msgstr "無效的平台索引位址:" + +# +msgid "invalid pluggable monitor reference: %s" +msgstr "無效的可插拔監視器參照:%s" + +# +msgid "invalid port configuration value for %s: %s" +msgstr "無效的連接埠設定值 %s :%s" + +# +msgid "invalid port configuration: %s" +msgstr "無效的連接埠設定:%s" + +# +msgid "invalid recipe '%[1]s': %[2]s" +msgstr "無效的作法'%[1]s': %[2]s" + +# +msgid "invalid sketch name \"%[1]s\": the first character must be alphanumeric or \"_\", the following ones can also contain \"-\" and \".\". The last one cannot be \".\"." +msgstr "無效的 sketch 名 \"%[1]s\": 首字元必須是英數字或底線, 接著可以是減號和逗點, 但最後字元不可以是逗點" + +# +msgid "invalid value '%[1]s' for option '%[2]s'" +msgstr "'%[2]s' 選項的 '%[1]s' 值無效" + +# +msgid "invalid version directory %s" +msgstr "無效的版本目錄 %s" + +# +msgid "invalid version:" +msgstr "無效的版本:" + +# +msgid "key not found in settings" +msgstr "設定中找不到鍵值" + +# +msgid "keywords" +msgstr "關鍵字" + +# +msgid "library %s already installed" +msgstr "程式庫 %s 已安裝" + +# +msgid "library not valid" +msgstr "程式庫無效" + +# +msgid "library path does not exist: %s" +msgstr "程式庫路徑不存在:%s" + +# +msgid "listing serial ports" +msgstr "列出序列埠" + +# +msgid "loading %[1]s: %[2]s" +msgstr "載入 %[1]s: %[2]s" + +# +msgid "loading boards: %s" +msgstr "載入開發板:%s" + +# +msgid "loading bundled tools from %s" +msgstr "從 %s 載入整捆的工具" + +# +msgid "loading json index file %[1]s: %[2]s" +msgstr "載入json 索引檔 %[1]s :%[2]s" + +# +msgid "loading library from %[1]s: %[2]s" +msgstr "從 %[1]s 載入程式庫:%[2]s" + +# +msgid "loading library.properties: %s" +msgstr "載入程式庫屬性:%s" + +# +msgid "loading platform release %s" +msgstr "載入平台發行版 %s " + +# +msgid "loading platform.txt" +msgstr "載入 platform.txt" + +# +msgid "loading required platform %s" +msgstr "載入需要的平台 %s " + +# +msgid "loading required tool %s" +msgstr "載入需要的工具 %s" + +# +msgid "loading tool release in %s" +msgstr "載入在 %s 的工具發行版" + +# +msgid "looking for boards.txt in %s" +msgstr "在 %s 尋找 boards.txt" + +# +msgid "main file missing from sketch: %s" +msgstr "sketch 裏缺少主檔:%s" + +# +msgid "missing '%s' directive" +msgstr "缺少 '%s'指令" + +# +msgid "missing checksum for: %s" +msgstr "缺少 %s 的校驗碼" + +# +msgid "missing package %[1]s referenced by board %[2]s" +msgstr "缺少開發板 %[2]s 參照的套件 %[1]s " + +# +msgid "missing package index for %s, future updates cannot be guaranteed" +msgstr "缺少 %s 的套件索引, 未來更新與否不保証" + +# +msgid "missing platform %[1]s:%[2]s referenced by board %[3]s" +msgstr "缺少被開發板 %[3]s 參照的平台 %[1]s :%[2]s " + +# +msgid "missing platform release %[1]s:%[2]s referenced by board %[3]s" +msgstr "缺少被開發板 %[3]s 參照的平台發行版 %[1]s :%[2]s" + +# +msgid "monitor release not found: %s" +msgstr "未找到發行版監視器:%s" + +# +msgid "moving extracted archive to destination dir: %s" +msgstr "移動解開的存檔到目標資料夾:%s" + +# +msgid "multiple build artifacts found: '%[1]s' and '%[2]s'" +msgstr "找到多個建構成品:'%[1]s' 和 '%[2]s'" + +# +msgid "multiple main sketch files found (%[1]v, %[2]v)" +msgstr "找到多個 sketch 檔 (%[1]v, %[2]v)" + +# +msgid "no compatible version of %[1]s tools found for the current os, try contacting %[2]s" +msgstr "沒找到目前作業系統相容 %[1]s 版本的工具,請聯絡 %[2]s" + +# +msgid "no executable specified" +msgstr "未指定可執行檔" + +# +msgid "no instance specified" +msgstr "未指定實例" + +# +msgid "no sketch or build directory/file specified" +msgstr "未指定 sketch 或建構目錄/檔案" + +# +msgid "no such file or directory" +msgstr "沒有這個檔案/目錄" + +# +msgid "no unique root dir in archive, found '%[1]s' and '%[2]s'" +msgstr "存檔中沒有單一的根目錄,找到了 '%[1]s' 和 '%[2]s'" + +# +msgid "no upload port provided" +msgstr "未提供上傳連接埠" + +# +msgid "no valid sketch found in %[1]s: missing %[2]s" +msgstr "在 %[1]s 找不到有效的 sketch:缺少 %[2]s" + +# +msgid "no versions available for the current OS, try contacting %s" +msgstr "目前的作業系統沒可用的版本,請聯絡 %s" + +# +msgid "not running in a terminal" +msgstr "沒在終端裏執行" + +# +msgid "opening archive file: %s" +msgstr "開啟存檔:%s" + +# +msgid "opening boards.txt" +msgstr "開啟 boards.txt" + +# +msgid "opening port at 1200bps" +msgstr "以 1200 bps 開啟連接埠" + +# +msgid "opening signature file: %s" +msgstr "打開簽名檔:%s" + +# +msgid "opening target file: %s" +msgstr "打開目標檔:%s" + +# +msgid "package %s not found" +msgstr "套件 %s 沒找到" + +# +msgid "package '%s' not found" +msgstr "套件 '%s' 沒找到" + +# +msgid "parsing IDE bundled index" +msgstr "正在解析 IDE 同捆的索引" + +# +msgid "parsing fqbn: %s" +msgstr "解析 FQBN:%s" + +# +msgid "parsing library_index.json: %s" +msgstr "解析 library_index.json: %s" + +# +msgid "path is not a platform directory: %s" +msgstr "路徑不是平台目錄:%s" + +# +msgid "platform %[1]s not found in package %[2]s" +msgstr "在 %[2]s 套件裏找不到 %[1]s 平台" + +# +msgid "platform %s has no available releases" +msgstr "平台 %s 沒有可用的版本" + +# +msgid "platform %s is not installed" +msgstr "平台 %s 未安裝" + +# +msgid "platform not installed" +msgstr "平台未安裝" + +# +msgid "please use --build-property instead." +msgstr "請改用 --build-property。" + +# +msgid "pluggable discovery already added: %s" +msgstr "已加入可插拔 discovery:%s" + +# +msgid "port" +msgstr "連接埠" + +# +msgid "port not found: %[1]s %[2]s" +msgstr "沒找到連接埠:%[1]s %[2]s" + +# +msgid "protocol version not supported: requested %[1]d, got %[2]d" +msgstr "不支持協議版本:要 %[1]d,卻得到 %[2]d" + +# +msgid "protocol version not supported: requested 1, got %d" +msgstr "不支持協議版本:要 1,卻得到 %d" + +# +msgid "reading %[1]s: %[2]s" +msgstr "正在讀取 %[1]s: %[2]s" + +# +msgid "reading dir %[1]s: %[2]s" +msgstr "正在讀取目錄 %[1]s: %[2]s" + +# +msgid "reading directory %[1]s content: %[2]w" +msgstr "閱讀目錄 %[1]s 內容:%[2]w" + +# +msgid "reading directory %s" +msgstr "正在讀取目錄 %s" + +# +msgid "reading directory %s content: %w" +msgstr "正在讀取目錄 %s 的內容:%w" + +# +msgid "reading file %[1]s: %[2]s" +msgstr "正在讀取檔案 %[1]s: %[2]s" + +# +msgid "reading files: %v" +msgstr "正在讀取檔案:%v" + +# +msgid "reading lib headers: %s" +msgstr "正在讀取程式庫頭檔:%s" + +# +msgid "reading lib src dir: %s" +msgstr "正在讀取程式庫 src 目錄:%s" + +# +msgid "reading library headers: %w" +msgstr "正在讀取程式庫頭檔:%w" + +# +msgid "reading library_index.json: %s" +msgstr "正在讀取 library_index.json: %s" + +# +msgid "reading package root dir: %s" +msgstr "正在讀取套件根目錄:%s" + +# +msgid "recipe not found '%s'" +msgstr "作法未找到 %s" + +# +msgid "release %[1]s not found for tool %[2]s" +msgstr "找不到工具 %[2]s 的 %[1]s 發行版" + +# +msgid "release cannot be nil" +msgstr "發行不能是無" + +# +msgid "removing corrupted archive file: %s" +msgstr "刪除損壞的存檔:%s" + +# +msgid "removing library directory: %s" +msgstr "刪除程式庫目錄:%s" + +# +msgid "removing platform files: %s" +msgstr "刪除平台檔:%s" + +# +msgid "required version %[1]s not found for platform %[2]s" +msgstr "找不到平台 %[2]s 需要的 %[1]s 版本" + +# +msgid "retrieving Arduino public keys: %s" +msgstr "正在取得 Arduino 公鑰:%s" + +# +msgid "scanning examples: %s" +msgstr "掃描範例:%s" + +# +msgid "searching for builtin_tools_versions.txt in %[1]s: %[2]s" +msgstr "在 %[1]s: %[2]s 尋找 builtin_tools_versions.txt" + +# +msgid "searching package root dir: %s" +msgstr "尋找套件根目錄:%s" + +# +msgid "setting DTR to OFF" +msgstr "將 DTR 設定為 OFF" + +# +msgid "sketch name cannot be empty" +msgstr "sketch 名字不能空白" + +# +msgid "sketch name cannot be the reserved name \"%[1]s\"" +msgstr "sketch 名字不能使用保留名'%[1]s'" + +# +msgid "sketch name too long (%[1]d characters). Maximum allowed length is %[2]d" +msgstr "sketch 名字過長(%[1]d 字元)。 最大允許 %[2]d 字元" + +# +msgid "sketch path is not valid" +msgstr "sketch 路徑無效" + +# +msgid "sketchPath" +msgstr "sketch 路徑" + +# +msgid "source is not a directory" +msgstr "來源不是目錄" + +# +msgid "starting discovery %s" +msgstr "開始 discovery 探索 %s" + +# +msgid "testing archive checksum: %s" +msgstr "測試存檔校驗碼:%s" + +# +msgid "testing archive size: %s" +msgstr "測試存檔大小:%s" + +# +msgid "testing if archive is cached: %s" +msgstr "測試存檔是否已快取:%s" + +# +msgid "testing local archive integrity: %s" +msgstr "測試本地存檔完整性:%s" + +# +msgid "text section exceeds available space in board" +msgstr "本文區已超出開發板的可用空間" + +# +msgid "the compilation database may be incomplete or inaccurate" +msgstr "編譯資料庫可能不完整或不準確" + +# +msgid "the platform has no releases" +msgstr "該平台沒有發行版" + +# +msgid "the server responded with status %s" +msgstr "伺服器回應狀態 %s" + +# +msgid "timeout waiting for message" +msgstr "等待訊息超時" + +# +msgid "timeout waiting for message from %s" +msgstr "等待來自 %s 的訊息超時" + +# +msgid "tool %s is not managed by package manager" +msgstr "工具 %s 不是由套件管理員管理的" + +# +msgid "tool %s not found" +msgstr "找不到工具 %s" + +# +msgid "tool '%[1]s' not found in package '%[2]s'" +msgstr "在套件 '%[2]s' 中找不到工具 '%[1]s'" + +# +msgid "tool not installed" +msgstr "工具未安裝" + +# +msgid "tool release not found: %s" +msgstr "工具發行未找到:%s" + +# +msgid "tool version %s not found" +msgstr "工具版本 %s 未找到" + +# +msgid "two different versions of the library %[1]s are required: %[2]s and %[3]s" +msgstr "需要兩個不同版本的程式庫 %[1]s :%[2]s 和 %[3]s" + +# +msgid "unable to compute relative path to the sketch for the item" +msgstr "無法計算 sketch 的相對路徑" + +# +msgid "unable to create a folder to save the sketch" +msgstr "無法建立保存 sketch 的檔案夾" + +# +msgid "unable to create a folder to save the sketch files" +msgstr "無法建立保存 sketch 的檔案夾" + +# +msgid "unable to create the folder containing the item" +msgstr "無法建立包含該項目的檔案夾" + +# +msgid "unable to marshal config to YAML: %v" +msgstr "無法將 config 轉成 YAML:%v" + +# +msgid "unable to read contents of the destination item" +msgstr "無法讀取目標項目的內容" + +# +msgid "unable to read contents of the source item" +msgstr "無法讀取來源項目的內容" + +# +msgid "unable to save the sketch on disk" +msgstr "無法在磁碟上儲存 sketch" + +# +msgid "unable to write to destination file" +msgstr "無法寫入目標檔" + +# +msgid "unknown package %s" +msgstr "未知的套件 %s" + +# +msgid "unknown platform %s:%s" +msgstr "未知的平台 %s:%s" + +# +msgid "unknown sketch file extension '%s'" +msgstr "未知的 sketch 副檔名 %s'" + +# +msgid "unsupported hash algorithm: %s" +msgstr "未支擾的雜湊演算法:%s" + +# +msgid "upgrade arduino:samd to the latest version" +msgstr "升級 arduino:samd 到最新版" + +# +msgid "upgrade everything to the latest version" +msgstr "升級全部內容到最新版" + +# +msgid "uploading error: %s" +msgstr "上傳錯誤:%s" + +# +msgid "user directory not set" +msgstr "用戶目錄未設定" + +# +msgid "user input not supported for the '%s' output format" +msgstr "用戶輸入不支援 '%s' 輸出格式" + +# +msgid "user input not supported in non interactive mode" +msgstr "在非互動模式下不支援用戶輸入" + +# +msgid "version %s not available for this operating system" +msgstr "沒有適合於本作業系統的版本 %s" + +# +msgid "version %s not found" +msgstr "沒找到版本 %s" + +# +msgid "wrong format in server response" +msgstr "伺服器回應格式錯誤" \ No newline at end of file diff --git a/internal/cli/cli.go b/internal/cli/cli.go index 19a92767acf..fe00382f927 100644 --- a/internal/cli/cli.go +++ b/internal/cli/cli.go @@ -124,7 +124,7 @@ func createCliCommandTree(cmd *cobra.Command) { }) cmd.PersistentFlags().StringVar(&configFile, "config-file", "", tr("The custom config file (if not specified the default will be used).")) cmd.PersistentFlags().StringSlice("additional-urls", []string{}, tr("Comma-separated list of additional URLs for the Boards Manager.")) - cmd.PersistentFlags().Bool("no-color", false, "Disable colored output.") + cmd.PersistentFlags().Bool("no-color", false, tr("Disable colored output.")) configuration.BindFlags(cmd, configuration.Settings) } diff --git a/legacy/builder/recipe_runner.go b/legacy/builder/recipe_runner.go index 8af310bd4d3..0285b2c9d62 100644 --- a/legacy/builder/recipe_runner.go +++ b/legacy/builder/recipe_runner.go @@ -33,7 +33,7 @@ func RecipeByPrefixSuffixRunner( buildProps *properties.Map, builderLogger *logger.BuilderLogger, ) error { - logrus.Debugf(fmt.Sprintf("Looking for recipes like %s", prefix+"*"+suffix)) + logrus.Debugf(fmt.Sprintf(tr("Looking for recipes like %s"), prefix+"*"+suffix)) // TODO is it necessary to use Clone? buildProperties := buildProps.Clone() @@ -42,7 +42,7 @@ func RecipeByPrefixSuffixRunner( // TODO is it necessary to use Clone? properties := buildProperties.Clone() for _, recipe := range recipes { - logrus.Debugf(fmt.Sprintf("Running recipe: %s", recipe)) + logrus.Debugf(fmt.Sprintf(tr("Running recipe: %s"), recipe)) command, err := utils.PrepareCommandForRecipe(properties, recipe, false) if err != nil {