From ddc896d450d7f00914f9c86a942d97cfd01f30d9 Mon Sep 17 00:00:00 2001 From: Carlos Venegas Date: Wed, 30 Oct 2024 17:06:02 +0100 Subject: [PATCH] Remove WafleModal from linter hints --- .jshintrc | 3 +- app/index.html | 8 + app/package-lock.json | 15 + app/package.json | 4 +- .../libs/Icestudio/GUI/WafleModal.js | 40 +++ app/resources/locale/ca_ES/ca_ES.po | 244 ++++++------- app/resources/locale/cs_CZ/cs_CZ.po | 245 ++++++------- app/resources/locale/de_DE/de_DE.po | 245 ++++++------- app/resources/locale/el_GR/el_GR.po | 244 ++++++------- app/resources/locale/en/en.po | 245 ++++++------- app/resources/locale/es_ES/es_ES.po | 245 ++++++------- app/resources/locale/eu_ES/eu_ES.po | 244 ++++++------- app/resources/locale/fr_FR/fr_FR.po | 245 ++++++------- app/resources/locale/gl_ES/gl_ES.po | 244 ++++++------- app/resources/locale/it_IT/it_IT.po | 245 ++++++------- app/resources/locale/ja_JP/ja_JP.po | 245 ++++++------- app/resources/locale/ko_KR/ko_KR.po | 244 ++++++------- app/resources/locale/nl_NL/nl_NL.po | 244 ++++++------- app/resources/locale/ru_RU/ru_RU.po | 245 ++++++------- app/resources/locale/template.pot | 258 +++++++------- app/resources/locale/tr_TR/tr_TR.po | 244 ++++++------- app/resources/locale/uk_UA/uk_UA.po | 321 ++++++++++-------- app/resources/locale/zh_CN/zh_CN.po | 244 ++++++------- app/resources/locale/zh_TW/zh_TW.po | 245 ++++++------- app/scripts/controllers/menu.js | 5 +- app/styles/ics-wm.css | 9 +- 26 files changed, 2574 insertions(+), 2246 deletions(-) create mode 100644 app/resources/libs/Icestudio/GUI/WafleModal.js diff --git a/.jshintrc b/.jshintrc index 42b328fb5..70723013a 100644 --- a/.jshintrc +++ b/.jshintrc @@ -55,6 +55,7 @@ "g": false, "V": false, "IceCollection":false, - "IceHD": false + "IceHD": false, + "WafleModal": false } } diff --git a/app/index.html b/app/index.html index 9074dd031..a469e9ff3 100644 --- a/app/index.html +++ b/app/index.html @@ -133,6 +133,9 @@ + + + @@ -144,6 +147,9 @@ + + + @@ -329,6 +335,7 @@ + @@ -351,6 +358,7 @@ + diff --git a/app/package-lock.json b/app/package-lock.json index 5987ad0ad..63bc72f11 100644 --- a/app/package-lock.json +++ b/app/package-lock.json @@ -50,6 +50,7 @@ "sudo-prompt": "~8.2.0", "svg-pan-zoom": "~3.4.1", "svgo": "~0.7.2", + "sweetalert2": "^11.14.4", "tmp": "0.0.33" } }, @@ -1310,6 +1311,15 @@ "node": ">=0.10.0" } }, + "node_modules/sweetalert2": { + "version": "11.14.4", + "resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-11.14.4.tgz", + "integrity": "sha512-8QMzjxCuinwm18EK5AtYvuhP+lRMRxTWVXy8om9wGlULsXSI4TD29kyih3VYrSXMMBlD4EShFvNC7slhTC7j0w==", + "funding": { + "type": "individual", + "url": "https://github.com/sponsors/limonte" + } + }, "node_modules/sync-exec": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz", @@ -2470,6 +2480,11 @@ "whet.extend": "~0.9.9" } }, + "sweetalert2": { + "version": "11.14.4", + "resolved": "https://registry.npmjs.org/sweetalert2/-/sweetalert2-11.14.4.tgz", + "integrity": "sha512-8QMzjxCuinwm18EK5AtYvuhP+lRMRxTWVXy8om9wGlULsXSI4TD29kyih3VYrSXMMBlD4EShFvNC7slhTC7j0w==" + }, "sync-exec": { "version": "0.6.2", "resolved": "https://registry.npmjs.org/sync-exec/-/sync-exec-0.6.2.tgz", diff --git a/app/package.json b/app/package.json index 386b4322e..0a5d02bcf 100644 --- a/app/package.json +++ b/app/package.json @@ -46,6 +46,7 @@ "engines": {}, "node": ">= 21.1.0", "dependencies": { + "ace-builds": "~1.4.12", "adm-zip": "0.4.7", "alertifyjs": "~1.13.1", @@ -87,7 +88,8 @@ "svg-pan-zoom": "~3.4.1", "svgo": "~0.7.2", "tmp": "0.0.33", - "proper-lockfile": "^4.1.2" + "proper-lockfile": "^4.1.2", + "sweetalert2": "^11.14.4" }, "readme": "../README.md", "keywords": [ diff --git a/app/resources/libs/Icestudio/GUI/WafleModal.js b/app/resources/libs/Icestudio/GUI/WafleModal.js new file mode 100644 index 000000000..119d7fe69 --- /dev/null +++ b/app/resources/libs/Icestudio/GUI/WafleModal.js @@ -0,0 +1,40 @@ +class WafleModal{ + + constructor(){ + + + } + + waitingSeconds(seconds,title,msg){ + const milis=Math.floor(seconds*1000); + console.log('WAIT==>',seconds,title,msg); + let timerInterval; + Swal.fire({ + title: title, + html: msg, + timer: milis, + allowOutsideClick:false, + allowEscapeKey:true, + timerProgressBar: true, + didOpen: () => { + Swal.showLoading(); + const timer = Swal.getPopup().querySelector("b"); + timerInterval = setInterval(() => { + timer.textContent = `${Swal.getTimerLeft()}`; + }, 100); + }, + willClose: () => { + clearInterval(timerInterval); + } + }).then((result) => { + /* Read more about handling dismissals below */ + if (result.dismiss === Swal.DismissReason.timer) { + console.log("Timmer end"); + } + }); + + } + + + +} diff --git a/app/resources/locale/ca_ES/ca_ES.po b/app/resources/locale/ca_ES/ca_ES.po index 07f761e43..1d5c99321 100644 --- a/app/resources/locale/ca_ES/ca_ES.po +++ b/app/resources/locale/ca_ES/ca_ES.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Quant a Icestudio" @@ -52,11 +52,11 @@ msgstr "Quant a Icestudio" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Afegeix" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Afegeix un bloc per a iniciar" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Col·leccions eliminades" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Totes les col·leccions emmagatzemades es perdran. Vols continuar?" @@ -97,11 +97,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "És necessari Python 3.7" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Autor" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Bàsic" @@ -121,12 +121,12 @@ msgstr "Binari" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Bloc actualitzat" @@ -146,11 +146,11 @@ msgstr "Placa" msgid "Board rules" msgstr "Regles de la placa" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Regles de la placa inhabilitades" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Regles de la placa habilitades" @@ -166,7 +166,7 @@ msgstr "Placa {{name}} no disponible" msgid "Board {{name}} not connected" msgstr "Placa {{name}} no connectada" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Placa {{name}} seleccionada" @@ -174,22 +174,22 @@ msgstr "Placa {{name}} seleccionada" msgid "Bootloader not active" msgstr "Bootloader no actiu" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 #, fuzzy msgid "Build" msgstr "Síntetitza" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Síntesi realitzat" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Cancel·la" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -207,7 +207,7 @@ msgstr "Català" msgid "Change Color" msgstr "Selecciona un color" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -228,7 +228,7 @@ msgstr "Xinès" msgid "Choose a color:" msgstr "Selecciona un color:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

configurar els drivers" msgid "Click here to install it" msgstr "Fes clic aquí per instal·lar-ho" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Fes clic aquí per veure" @@ -261,15 +261,15 @@ msgstr "Rellotge no permès per a busos de dades" msgid "Clone" msgstr "Clona" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Tanca" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Codi" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Col·lecció" @@ -277,7 +277,7 @@ msgstr "Col·lecció" msgid "Collection info" msgstr "Informació de la col·lecció" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Informació de la col·lecció {{collection}} no definida" @@ -297,19 +297,19 @@ msgstr "Col·lecció {{name}} eliminada" msgid "Collection {{name}} replaced" msgstr "Col·lecció {{name}} reemplaçada" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Col·lecció {{name}} seleccionada" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Col·leccions" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Sortida d'ordres" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Fòrum de la comunitat" @@ -317,7 +317,7 @@ msgstr "Fòrum de la comunitat" msgid "Configuration not completed" msgstr "Configuració no completada" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Constant" @@ -378,7 +378,7 @@ msgstr "" msgid "Deep Sky Blue" msgstr "" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Per defecte" @@ -386,19 +386,19 @@ msgstr "Per defecte" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Descripció" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Inhabilita" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Vols tancar l'aplicació?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Vols eliminar la col·lecció {{name}}?" @@ -406,7 +406,7 @@ msgstr "Vols eliminar la col·lecció {{name}}?" msgid "Do you want to replace it?" msgstr "Vols reemplaçar-la?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentació" @@ -415,7 +415,7 @@ msgstr "Documentació" msgid "Don’t display" msgstr "No mostres" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Drivers" @@ -453,7 +453,7 @@ msgstr "Edita" msgid "Edit the collection name" msgstr "Edita el nom de la col·lecció" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Habilita" @@ -484,7 +484,7 @@ msgstr "" msgid "Enter the python path" msgstr "Introdueix la ruta de python" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Introdueix el nom del host remot usuari@host" @@ -492,7 +492,7 @@ msgstr "Introdueix el nom del host remot usuari@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Error: {{error}}" @@ -516,7 +516,7 @@ msgstr "Executa {{label}} remot..." msgid "Export" msgstr "Exporta" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Exporta submòdul" @@ -524,7 +524,7 @@ msgstr "Exporta submòdul" msgid "External collections" msgstr "Col·leccions externes" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Col·leccions externes actualitzades" @@ -533,7 +533,7 @@ msgstr "Col·leccions externes actualitzades" msgid "External plugins" msgstr "Plugins externes" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "Plugins externes actualitzades" @@ -614,7 +614,7 @@ msgstr "Grec" msgid "Green Yellow" msgstr "" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Ajuda" @@ -635,11 +635,11 @@ msgstr "" "Si apareixen pins d'ENTRADA/SORTIDA en blanc, és perquè no hi ha equivalent " "en aquesta placa" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Imatge" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Imatge {{name}} desada" @@ -647,15 +647,15 @@ msgstr "Imatge {{name}} desada" msgid "Indian Red" msgstr "" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Informació" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Entrada" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Etiqueta d'entrada" @@ -679,12 +679,12 @@ msgstr "Noms dels ports d'entrada" msgid "Input ports" msgstr "Ports d'entrada" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Instal·la" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -760,7 +760,7 @@ msgstr "Connexió no vàlida: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Connexions d'entrada múltiple no vàlides" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 #, fuzzy msgid "Invalid new name!" msgstr "Nom del port incorrecte" @@ -769,7 +769,7 @@ msgstr "Nom del port incorrecte" msgid "Invalid project format" msgstr "Format de projecte no vàlid" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "Italian" msgstr "Italià" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -789,7 +789,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 #, fuzzy msgid "Label updated" msgstr "Etiqueta actualitzada" @@ -826,11 +826,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Mida màxima del bus: 96 bits" @@ -838,7 +838,7 @@ msgstr "Mida màxima del bus: 96 bits" msgid "Medium Violet Red" msgstr "" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Memòria" @@ -847,7 +847,7 @@ msgstr "Memòria" msgid "Memory block names" msgstr "Noms de blocs de memòria" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Nom" @@ -876,12 +876,12 @@ msgstr "Nom:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Cap col·lecció emmagatzemada" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "D'acord" @@ -893,7 +893,7 @@ msgstr "" msgid "Open" msgstr "Obre" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Obre SVG" @@ -905,11 +905,11 @@ msgstr "" msgid "Original file {{file}} does not exist" msgstr "El fitxer original {{file}} no existeix" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Eixida" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Etiqueta d'eixida" @@ -928,7 +928,7 @@ msgstr "Noms dels ports de sortida" msgid "Output ports" msgstr "Ports de sortida" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -936,12 +936,12 @@ msgstr "" msgid "Paste" msgstr "Enganxa" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "La ruta {{path}} no existeix" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Per favor executa: {{cmd}}" @@ -957,7 +957,7 @@ msgstr "" msgid "Project information" msgstr "Informació del projecte" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Informació del projecte actualitzada" @@ -973,7 +973,7 @@ msgstr "Projecte {{name}} desat" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -993,7 +993,7 @@ msgstr "Refés" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Recarrega" @@ -1005,11 +1005,11 @@ msgstr "Host remot {{name}} no connectat" msgid "Remote hostname" msgstr "Nom del host remot" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Suprimeix" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Suprimeix tot" @@ -1021,7 +1021,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Reseteja SVG" @@ -1037,7 +1037,7 @@ msgstr "Rus" msgid "Save" msgstr "Desa" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Desa SVG" @@ -1045,7 +1045,7 @@ msgstr "Desa SVG" msgid "Save as" msgstr "Anomena i desa" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Desa submòdul" @@ -1069,7 +1069,7 @@ msgstr "Mostra rellotge" msgid "Slate Blue" msgstr "" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Codi font" @@ -1081,15 +1081,15 @@ msgstr "Espanyol" msgid "Spring Green" msgstr "" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Inicia síntesi" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Inicia càrrega" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Inicia verificació" @@ -1122,7 +1122,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "La col·leccio {{name}} ja existeix." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1161,7 +1161,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1179,7 +1179,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Per navegar pel disseny, cal tancar el \"mode d'edició\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1195,7 +1195,7 @@ msgstr "" msgid "Toolbox" msgstr "Eines" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1216,11 +1216,11 @@ msgstr "Toolchain eliminada" msgid "Toolchain version does not match" msgstr "La versió de la toolchain no coincideix" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Eines" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1228,11 +1228,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1244,10 +1244,18 @@ msgstr "" msgid "Turquoise" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Desfés" @@ -1264,36 +1272,36 @@ msgstr "Format de projecte no admès {{version}}" msgid "Untitled" msgstr "Sense títol" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Carrega" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Càrrega realitzada" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Verificació realitzada" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Verifica" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Versió" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Notes de la versió" @@ -1301,14 +1309,18 @@ msgstr "Notes de la versió" msgid "View" msgstr "Visualitza" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Visualitza llicència" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Advertiments detectats en el disseny" @@ -1318,7 +1330,7 @@ msgstr "Advertiments detectats en el disseny" msgid "Welcome to Icestudio!" msgstr "Quant a Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Format de bloc incorrecte: {{type}}" @@ -1340,11 +1352,11 @@ msgstr "Nom del host remot incorrecte {{name}}" msgid "Yellow" msgstr "" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1354,15 +1366,15 @@ msgstr "" "aquesta situació \"anomena i desa\" funciona com \"exporta mòdul\"), Vols " "continuar?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1374,7 +1386,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Pots carregar-ho com està o convertir-ho per a la placa {{name}}." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1383,7 +1395,7 @@ msgstr "" "Només pots construir en el disseny de nivell superior. Dins dels submòduls " "només pots Verificar" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1396,7 +1408,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Els teus canvis es perdran si no els deses" @@ -1404,22 +1416,22 @@ msgstr "Els teus canvis es perdran si no els deses" msgid "back" msgstr "enrere" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "És necessari {{app}}." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "Full de dades de {{board}} no definit" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} pinout no definit" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "Regles de {{board}} no definides" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} exportat" diff --git a/app/resources/locale/cs_CZ/cs_CZ.po b/app/resources/locale/cs_CZ/cs_CZ.po index a6c5fa7bb..5a0d6eb2d 100644 --- a/app/resources/locale/cs_CZ/cs_CZ.po +++ b/app/resources/locale/cs_CZ/cs_CZ.po @@ -54,7 +54,7 @@ msgstr "" " použitím
\n" " Upravit → Klonovat." -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "O Icestudiu" @@ -62,11 +62,11 @@ msgstr "O Icestudiu" msgid "Acknowledgment" msgstr "Poděkování" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Přidat" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Přidat blok na začátek" @@ -86,7 +86,7 @@ msgstr "" msgid "All collections removed" msgstr "Všechny kolekce odstraněny" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Všechny uložené kolekce budou zahozeny. Přejete si pokračovat?" @@ -106,11 +106,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Je potřeba Python verze alespoň 3.7" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Autor" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Základní prvky" @@ -131,12 +131,12 @@ msgstr "Binární" msgid "Bitstream not found: Build your project first" msgstr "Binárka nenalezena: Nejprve přeložte projekt" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Blok aktualizován" @@ -156,11 +156,11 @@ msgstr "Deska" msgid "Board rules" msgstr "Pravidla desky" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Pravidla desky zakázána" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Pravidla desky povolena" @@ -176,7 +176,7 @@ msgstr "Deska {{name}} není dostupná" msgid "Board {{name}} not connected" msgstr "Deska {{name}} není připojena" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Deska {{name}} vybrána" @@ -184,21 +184,21 @@ msgstr "Deska {{name}} vybrána" msgid "Bootloader not active" msgstr "Zavaděč není aktivní" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Sestavení" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Sestavení hotovo" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Zrušit" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -214,7 +214,7 @@ msgstr "Katalánština" msgid "Change Color" msgstr "Změnit barvu" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -234,7 +234,7 @@ msgstr "Čínština" msgid "Choose a color:" msgstr "Barva:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

pro instalování ovladačů" msgid "Click here to install it" msgstr "Pro instalaci klikněte zde" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Pro zobrazení klikněte zde" @@ -267,15 +267,15 @@ msgstr "Hodiny nejsou povoleny pro datové sběrnice" msgid "Clone" msgstr "Klonovat" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Zavřít" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Kód" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Kolekce" @@ -283,7 +283,7 @@ msgstr "Kolekce" msgid "Collection info" msgstr "Informace o kolekci" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Informace o kolekci {{collection}} nejsou definovány" @@ -303,19 +303,19 @@ msgstr "Kolekce {{name}} odstraněna" msgid "Collection {{name}} replaced" msgstr "Kolekce {{name}} nahrazena" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Kolekce {{name}} vybrána" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Kolekce" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Výstup" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Komunitní fórum" @@ -323,7 +323,7 @@ msgstr "Komunitní fórum" msgid "Configuration not completed" msgstr "Konfigurace není kompletní" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Konstanta" @@ -383,7 +383,7 @@ msgstr "Sytě růžová" msgid "Deep Sky Blue" msgstr "Tmavomodrá obloha" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Výchozí" @@ -391,19 +391,19 @@ msgstr "Výchozí" msgid "Delete" msgstr "Smazat" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Popis" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Zakázat" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Chcete zavřít aplikaci?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Chcete odstranit kolekci {{name}}?" @@ -411,7 +411,7 @@ msgstr "Chcete odstranit kolekci {{name}}?" msgid "Do you want to replace it?" msgstr "Přejete si to nahradit?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Dokumentace" @@ -420,7 +420,7 @@ msgstr "Dokumentace" msgid "Don’t display" msgstr "Nezobrazovat" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Ovladače" @@ -459,7 +459,7 @@ msgstr "Upravit" msgid "Edit the collection name" msgstr "Upravit název kolekce" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Povolit" @@ -487,7 +487,7 @@ msgstr "Zadejte cestu k programu pip" msgid "Enter the python path" msgstr "Zadejte cestu k pythonu" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Zadejte vzdáleného hostitele uživatel@hostitel" @@ -495,7 +495,7 @@ msgstr "Zadejte vzdáleného hostitele uživatel@hostitel" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Chyba: {{error}}" @@ -519,7 +519,7 @@ msgstr "Spouštění vzdáleně {{label}} ..." msgid "Export" msgstr "Exportovat" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Exportovat submodul" @@ -527,7 +527,7 @@ msgstr "Exportovat submodul" msgid "External collections" msgstr "Externí kolekce" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Externí kolekce aktualizována" @@ -535,7 +535,7 @@ msgstr "Externí kolekce aktualizována" msgid "External plugins" msgstr "Externí zásuvné moduly" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "Externí zásuvné moduly aktualizovány" @@ -613,7 +613,7 @@ msgstr "Řečtina" msgid "Green Yellow" msgstr "Žluto zelená" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Nápověda" @@ -633,11 +633,11 @@ msgstr "" "Pokud máte nepřiřazené vstupně/výstupní piny, je to proto, že na desce není " "žádný vhodný ekvivalent" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Obraz" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Obraz {{name}} uložen" @@ -645,15 +645,15 @@ msgstr "Obraz {{name}} uložen" msgid "Indian Red" msgstr "Benátská červená" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Informace" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Vstup" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Popisek vstupu" @@ -675,11 +675,11 @@ msgstr "Názvy vstupních portů" msgid "Input ports" msgstr "Vstupy" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "Instalovat (Stabilní)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Instalovat vývojovou verzi" @@ -756,7 +756,7 @@ msgstr "Neplatné spojení: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Neplatné vícenásobná vstupní připojení" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "Invalid project format" msgstr "Neplatný formát projektu" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -772,7 +772,7 @@ msgstr "" msgid "Italian" msgstr "Italština" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "Japonština" @@ -784,7 +784,7 @@ msgstr "Korejština" msgid "Label finder" msgstr "Hledat popisek" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "Popisek aktualizován" @@ -820,11 +820,11 @@ msgstr "Protokolování povoleno" msgid "Logging file" msgstr "Soubor protokolu" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Soubor protokolu aktualizován" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Maximální šířka sběrnice: 96 bitů" @@ -832,7 +832,7 @@ msgstr "Maximální šířka sběrnice: 96 bitů" msgid "Medium Violet Red" msgstr "Středně fialově červená" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Paměť" @@ -841,7 +841,7 @@ msgstr "Paměť" msgid "Memory block names" msgstr "Názvy bloků paměti" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Jméno" @@ -870,12 +870,12 @@ msgstr "Nové jméno:" msgid "Next" msgstr "Další" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Žádné kolekce neuloženy" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "Budiž" @@ -887,7 +887,7 @@ msgstr "Olivová šedá" msgid "Open" msgstr "Otevřít" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Otevřít SVG" @@ -899,11 +899,11 @@ msgstr "Oranžovo červená" msgid "Original file {{file}} does not exist" msgstr "Původní soubor {{file}} neexistuje" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Výstup" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Popisek výstupu" @@ -921,7 +921,7 @@ msgstr "Názvy výstupních portů" msgid "Output ports" msgstr "Výstupy" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "Párované popisky" @@ -929,12 +929,12 @@ msgstr "Párované popisky" msgid "Paste" msgstr "Vložit" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Cesta {{path}} neexistuje" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Prosím spusťte: {{cmd}}" @@ -950,7 +950,7 @@ msgstr "Před." msgid "Project information" msgstr "Informace o projektu" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Informace o projektu aktualizovány" @@ -966,7 +966,7 @@ msgstr "Projekt {{name}} uložen" msgid "Python environment" msgstr "Prostředí Pythonu" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Prostředí Pythonu aktualizováno" @@ -987,7 +987,7 @@ msgstr "Znovu" msgid "Release History WIKI" msgstr "Historie vydání WIKI" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Znovu nahrát" @@ -999,11 +999,11 @@ msgstr "Vzdálený hostitel {{name}} není připojen" msgid "Remote hostname" msgstr "Jméno vzdáleného hostitele" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Odebrat" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Odebrat vše" @@ -1015,7 +1015,7 @@ msgstr "Nahradit vše" msgid "Replace One" msgstr "Nahradit jeden" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Obnovit SVG" @@ -1031,7 +1031,7 @@ msgstr "Ruština" msgid "Save" msgstr "Uložit" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Uložit SVG" @@ -1039,7 +1039,7 @@ msgstr "Uložit SVG" msgid "Save as" msgstr "Uložit jako" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Uložit submodul" @@ -1063,7 +1063,7 @@ msgstr "Zobrazit hodiny" msgid "Slate Blue" msgstr "Břidlicově modrá" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Zdrojový kód" @@ -1075,15 +1075,15 @@ msgstr "Španělština" msgid "Spring Green" msgstr "Jarní zelená" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Začínám překlad" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Začínám nahrávat" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Začínám kontrolovat" @@ -1115,7 +1115,7 @@ msgstr "Děkuji mnohokrát!" msgid "The collection {{name}} already exists." msgstr "Kolekce {{name}} již existuje." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " "the {{name}} board?" @@ -1156,7 +1156,7 @@ msgstr "" "Toto vydání bylo možné díky skvělé práci \n" " našeho týmu inženýrů z" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1174,7 +1174,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Pro procházení návrhu musíte uzavřít režim úprav." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1188,7 +1188,7 @@ msgstr "" msgid "Toolbox" msgstr "Nástroje" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Nástroj" @@ -1209,11 +1209,11 @@ msgstr "Nástroj odstraněn" msgid "Toolchain version does not match" msgstr "Verze nástroje nesouhlasí" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Nástroje" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1221,11 +1221,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1237,10 +1237,19 @@ msgstr "Turečtina" msgid "Turquoise" msgstr "Tyrkysová" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Motiv vzhledu" + #: app/views/menu.html:372 msgid "UI theme" msgstr "Motiv vzhledu" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Zpět" @@ -1257,36 +1266,36 @@ msgstr "Nepodporovaný formát projektu {{version}}" msgid "Untitled" msgstr "Nepojmenovaný" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "Aktualizovat (Poslední stabilní)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Nahrát" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Nahrávání hotovo" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Kontrola hotová" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Zkontrolovat" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Verze" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Poznámky k verzi" @@ -1294,14 +1303,18 @@ msgstr "Poznámky k verzi" msgid "View" msgstr "Zobrazit" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Zobrazit licenci" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "V návrhu byla zjištěna varování" @@ -1310,7 +1323,7 @@ msgstr "V návrhu byla zjištěna varování" msgid "Welcome to Icestudio!" msgstr "Vítejte v Icestudiu!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Špatný formát bloku: {{type}}" @@ -1332,11 +1345,11 @@ msgstr "Špatný název vzdáleného hostitele {{name}}" msgid "Yellow" msgstr "Žlutá" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" @@ -1345,15 +1358,15 @@ msgstr "" "situaci \"uložit jako\" funguje jako \"exportovat modul\"). Chcete " "pokračovat?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 #, fuzzy msgid "" "You are navigating into the design: If you want to save the entire design, " @@ -1368,7 +1381,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Můžete nahrát tak jak je, nebo převést pro desku {{name}}." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" @@ -1376,7 +1389,7 @@ msgstr "" "Sestavovat můžete pouze na nejvyšší úrovni návrhu. Uvnitř submodulů můžete " "pouze Verifikovat" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1388,7 +1401,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "Poznámky k vydání můžete přečíst na" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Vaše změny budou ztraceny pokud je neuložíte" @@ -1396,22 +1409,22 @@ msgstr "Vaše změny budou ztraceny pokud je neuložíte" msgid "back" msgstr "zpět" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} je vyžadováno." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} katalogový list není definován" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} vývody nejsou definované" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} pravidla nejsou definována" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} exportováno" diff --git a/app/resources/locale/de_DE/de_DE.po b/app/resources/locale/de_DE/de_DE.po index c89841480..a3e1cec9d 100644 --- a/app/resources/locale/de_DE/de_DE.po +++ b/app/resources/locale/de_DE/de_DE.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Über Icestudio" @@ -52,11 +52,11 @@ msgstr "Über Icestudio" msgid "Acknowledgment" msgstr "Danksagung" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Hinzufügen" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Zuerst Block hinzufügen" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Alle Sammlungen wurden entfernt" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Alle gespeicherten Sammlungen werden gelöscht. Fortfahren?" @@ -96,11 +96,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Python 3.7 wird benötigt" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Autor" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Basis" @@ -120,12 +120,12 @@ msgstr "Binär" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Block aktualisiert" @@ -145,11 +145,11 @@ msgstr "Board" msgid "Board rules" msgstr "Board-Regeln" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Board-Regeln deaktiviert" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Board-Regeln aktiviert" @@ -165,7 +165,7 @@ msgstr "Board {{name}} nicht verfügbar" msgid "Board {{name}} not connected" msgstr "Board {{name}} nicht verbunden" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Board {{name}} ausgewählt" @@ -173,21 +173,21 @@ msgstr "Board {{name}} ausgewählt" msgid "Bootloader not active" msgstr "Bootloader inaktiv" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Erstellen" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Erstellen abgeschlossen" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Beenden" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -204,7 +204,7 @@ msgstr "Katalanisch" msgid "Change Color" msgstr "Wähle eine Farbe" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -224,7 +224,7 @@ msgstr "Chinesisch" msgid "Choose a color:" msgstr "Wähle eine Farbe:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

die Treiber einzurichten" msgid "Click here to install it" msgstr "Zur Installation hier klicken" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Zum Ansehen hier klicken" @@ -258,15 +258,15 @@ msgstr "Clock ist für Daten-Busse nicht erlaubt" msgid "Clone" msgstr "Duplizieren" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Schließen" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Code" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Sammlung" @@ -274,7 +274,7 @@ msgstr "Sammlung" msgid "Collection info" msgstr "Sammlungs-Info" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Sammlungsinfo {{collection}} nicht definiert" @@ -294,19 +294,19 @@ msgstr "Sammlung {{name}} entfernt" msgid "Collection {{name}} replaced" msgstr "Sammlung {{name}} ersetzt" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Sammlung {{name}} ausgewählt" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Sammlungen" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Befehlsausgabe" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Community-Forum" @@ -314,7 +314,7 @@ msgstr "Community-Forum" msgid "Configuration not completed" msgstr "Konfiguration nicht abgeschlossen" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Konstante" @@ -379,7 +379,7 @@ msgstr "Dunkelrosa" msgid "Deep Sky Blue" msgstr "Dunkles Himmelblau" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Standard" @@ -387,19 +387,19 @@ msgstr "Standard" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Beschreibung" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Deaktivieren" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Möchtest du die Anwendung schließen?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Möchtest du die Sammlung {{name}} entfernen?" @@ -407,7 +407,7 @@ msgstr "Möchtest du die Sammlung {{name}} entfernen?" msgid "Do you want to replace it?" msgstr "Möchtest du sie ersetzen?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Dokumentation" @@ -416,7 +416,7 @@ msgstr "Dokumentation" msgid "Don’t display" msgstr "Ausblenden" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Treiber" @@ -454,7 +454,7 @@ msgstr "Bearbeiten" msgid "Edit the collection name" msgstr "Namen der Sammlung ändern" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Aktivieren" @@ -482,7 +482,7 @@ msgstr "Python-Pop Pfad angeben" msgid "Enter the python path" msgstr "Python-Pfad eingeben" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Gebe den Remote-Hostnamen user@host ein" @@ -490,7 +490,7 @@ msgstr "Gebe den Remote-Hostnamen user@host ein" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Fehler: {{error}}" @@ -514,7 +514,7 @@ msgstr "Remote ausführen von {{label}} ..." msgid "Export" msgstr "Exportieren" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Untermodul exportieren" @@ -522,7 +522,7 @@ msgstr "Untermodul exportieren" msgid "External collections" msgstr "Externe Sammlungen" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Externe Sammlungen aktualisiert" @@ -530,7 +530,7 @@ msgstr "Externe Sammlungen aktualisiert" msgid "External plugins" msgstr "Externe Erweiterungen" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "Externe Erweiterungen aktualisiert" @@ -608,7 +608,7 @@ msgstr "Griechisch" msgid "Green Yellow" msgstr "Grün-Gelb" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Hilfe" @@ -629,11 +629,11 @@ msgstr "" "Wenn Sie unbelegte IN/OUT-Pins haben, liegt das daran, dass es keine " "entsprechenden Pins auf dem Board gibt" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Bild" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Bild {{name}} gespeichert" @@ -641,15 +641,15 @@ msgstr "Bild {{name}} gespeichert" msgid "Indian Red" msgstr "Indisches-Rot" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Information" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Eingang" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 #, fuzzy msgid "Input label" msgstr "Eingangs-Label" @@ -672,11 +672,11 @@ msgstr "Eingangs-Port-Namen" msgid "Input ports" msgstr "Eingangs-Anschlüsse" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "Installiere (Stabile Version)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Installiere Entwicklungsversion" @@ -755,7 +755,7 @@ msgstr "Ungültige Verbindung: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Ungültige Mehrfach-Eingangs-Verbindungen" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -763,7 +763,7 @@ msgstr "" msgid "Invalid project format" msgstr "Ungültiges Projektformat" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 #, fuzzy msgid "Invalid search name!" msgstr "Falscher Suchname!" @@ -772,7 +772,7 @@ msgstr "Falscher Suchname!" msgid "Italian" msgstr "Italienisch" -#: app/views/languages.html:110 +#: app/views/languages.html:116 #, fuzzy msgid "Japanese" msgstr "Japanisch" @@ -786,7 +786,7 @@ msgstr "Koreanisch" msgid "Label finder" msgstr "Suche Label" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "Label aktualisiert" @@ -822,11 +822,11 @@ msgstr "Log-Protokollierung aktiviert" msgid "Logging file" msgstr "Log-Datei" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Log-Datei aktualisiert" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Maximale Bus-Größe: 96 bits" @@ -835,7 +835,7 @@ msgstr "Maximale Bus-Größe: 96 bits" msgid "Medium Violet Red" msgstr "Mittelviolettes Rot" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Speicher" @@ -844,7 +844,7 @@ msgstr "Speicher" msgid "Memory block names" msgstr "Namen von Speicherblöcken" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Name" @@ -874,12 +874,12 @@ msgstr "Neuer Name:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Keine Sammlungen gespeichert" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "OK" @@ -892,7 +892,7 @@ msgstr "Olivgrün" msgid "Open" msgstr "Öffnen" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Öffne SVG" @@ -905,11 +905,11 @@ msgstr "Orange Rot" msgid "Original file {{file}} does not exist" msgstr "Originaldatei {{file}} existiert nicht" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Ausgang" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 #, fuzzy msgid "Output label" msgstr "Ausgangs-Label" @@ -928,7 +928,7 @@ msgstr "Ausgangs-Port-Namen" msgid "Output ports" msgstr "Ausgangs-Port" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 #, fuzzy msgid "Paired labels" msgstr "Verknüpfte Labels" @@ -937,12 +937,12 @@ msgstr "Verknüpfte Labels" msgid "Paste" msgstr "Einfügen" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Pfad {{path}} existiert nicht" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Bitte ausführen: {{cmd}}" @@ -958,7 +958,7 @@ msgstr "" msgid "Project information" msgstr "Projektinformationen" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Projektinformationen aktualisiert" @@ -974,7 +974,7 @@ msgstr "Projekt {{name}} gespeichert" msgid "Python environment" msgstr "Python-Umgebung" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Python-Umgebung aktualisiert" @@ -995,7 +995,7 @@ msgstr "Wiederholen" msgid "Release History WIKI" msgstr "Versions-Historie" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Neu laden" @@ -1007,11 +1007,11 @@ msgstr "Remote-Host {{name}} nicht verbunden" msgid "Remote hostname" msgstr "Remote-Hostname" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Löschen" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Alle löschen" @@ -1023,7 +1023,7 @@ msgstr "Alle ersetzten" msgid "Replace One" msgstr "Ersetzten" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "SVG zurücksetzen" @@ -1040,7 +1040,7 @@ msgstr "Russisch" msgid "Save" msgstr "Speichern" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "SVG speichern" @@ -1048,7 +1048,7 @@ msgstr "SVG speichern" msgid "Save as" msgstr "Speichern unter" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Untermodul speichern" @@ -1073,7 +1073,7 @@ msgstr "Clock anzeigen" msgid "Slate Blue" msgstr "Schieferblau" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Quellcode" @@ -1086,15 +1086,15 @@ msgstr "Spanisch" msgid "Spring Green" msgstr "Frühlingsgrün" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Erstellen starten" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Übertragung starten" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Überprüfung starten" @@ -1128,7 +1128,7 @@ msgstr "Vielen Dank!" msgid "The collection {{name}} already exists." msgstr "Die Sammlung {{name}} existiert bereits." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1170,7 +1170,7 @@ msgstr "" "Diese Veröffentlichung war möglich dank der großartigen Arbeit \n" " von einem aufstrebenden Team von" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1189,7 +1189,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Um zu navigieren, beende bitte den \"Bearbeitungsmodus\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1206,7 +1206,7 @@ msgstr "" msgid "Toolbox" msgstr "Werkzeuge" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1227,11 +1227,11 @@ msgstr "Toolchain entfernt" msgid "Toolchain version does not match" msgstr "Toolchain Version stimmt nicht überein" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Werkzeuge" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1239,11 +1239,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1255,11 +1255,20 @@ msgstr "Türkisch" msgid "Turquoise" msgstr "Türkis" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Benutzeroberfläche" + #: app/views/menu.html:372 #, fuzzy msgid "UI theme" msgstr "Benutzeroberfläche" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Rückgängig" @@ -1276,37 +1285,37 @@ msgstr "Nicht unterstütztes Projektformat {{version}}" msgid "Untitled" msgstr "Unbenannt" -#: app/views/menu.html:639 +#: app/views/menu.html:643 #, fuzzy msgid "Update (Latest stable)" msgstr "Aktualisiere" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Übertragen" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Übertragen abgeschlossen" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Überprüfen abgeschlossen" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Überprüfen" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Version" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Versionshinweise" @@ -1314,14 +1323,18 @@ msgstr "Versionshinweise" msgid "View" msgstr "Ansicht" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Lizenz anzeigen" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Warnungen im Entwurf erkannt" @@ -1330,7 +1343,7 @@ msgstr "Warnungen im Entwurf erkannt" msgid "Welcome to Icestudio!" msgstr "Willkommen zu Icestudio!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Falsches Block-Format: {{type}}" @@ -1352,11 +1365,11 @@ msgstr "Falscher Remote-Hostname {{name}}" msgid "Yellow" msgstr "Gelb" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1365,15 +1378,15 @@ msgstr "" "Du bearbeitest ein Untermodul. wenn du es speichert, wird nur das Untermodul " "gespeichert. Möchtest du fortfahren ?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1385,7 +1398,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Lade es so wie es ist oder konvertiere es für das {{name}} Board." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1394,7 +1407,7 @@ msgstr "" "Du kannst nur auf höchster Ebene einen Entwurf erstellen. Untermodule können " "nur Überprüft werden" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1407,7 +1420,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "Versionshinweise auf der" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Nicht gespeicherte Änderungen gehen verloren" @@ -1415,22 +1428,22 @@ msgstr "Nicht gespeicherte Änderungen gehen verloren" msgid "back" msgstr "Zurück" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} wird benötigt." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} Datenblatt nicht definiert" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} Pinout nicht definiert" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} Regeln nicht definiert" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} exportiert" diff --git a/app/resources/locale/el_GR/el_GR.po b/app/resources/locale/el_GR/el_GR.po index 1308eaae6..ff91c2a04 100644 --- a/app/resources/locale/el_GR/el_GR.po +++ b/app/resources/locale/el_GR/el_GR.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Σχετικά με το Icestudio" @@ -52,11 +52,11 @@ msgstr "Σχετικά με το Icestudio" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Προσθήκη" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Προσθέστε ένα block στην αρχή" @@ -77,7 +77,7 @@ msgstr "" msgid "All collections removed" msgstr "Όλες οι συλλογές διαγράφηκαν" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 #, fuzzy msgid "All stored collections will be lost. Do you want to continue?" msgstr "Όλες οι αποθηκευμένες συλλογές θα διαγραφούν. θέλετε να συνεχίσετε?" @@ -99,11 +99,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Η Python 3.7 είναι απαραίτητη" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Συντάκτης" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Basic" @@ -123,12 +123,12 @@ msgstr "Δυαδικό" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Το block ενημερώθηκε" @@ -148,11 +148,11 @@ msgstr "Πλακέτα" msgid "Board rules" msgstr "Κανόνες πλακέτας" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Οι κανόνες της πλακέτας απενεργοποιήθηκαν" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Οι κανόνες της πλακέτας ενεργοποιήθηκαν" @@ -168,7 +168,7 @@ msgstr "Η πλακέτα {{name}} δεν είναι διαθέσιμη" msgid "Board {{name}} not connected" msgstr "Η πλακέτα {{name}} δεν είναι συνδεδεμένη" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Η πλακέτα {{name}} επιλέχθηκε" @@ -176,21 +176,21 @@ msgstr "Η πλακέτα {{name}} επιλέχθηκε" msgid "Bootloader not active" msgstr "Ο Bootloader δεν είναι ενεργός" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Χτίσιμο" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Το χτίσιμο ολοκληρώθηκε" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Ακύρωση" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -207,7 +207,7 @@ msgstr "Καταλανικά" msgid "Change Color" msgstr "" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -229,7 +229,7 @@ msgstr "Κινέζικα" msgid "Choose a color:" msgstr "" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

για να εγκαταστήσετε τους msgid "Click here to install it" msgstr "Πατήστε εδώ για να το εγκαταστήσετε" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Πατήστε εδώ για εμφάνιση" @@ -262,15 +262,15 @@ msgstr "Το ρολόι δεν επιτρέπετε για διαύλους δε msgid "Clone" msgstr "" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Κλείσιμο" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Κώδικας" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Βιβλιοθήκη" @@ -278,7 +278,7 @@ msgstr "Βιβλιοθήκη" msgid "Collection info" msgstr "Λεπτομέρειες βιβλιοθήκης" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Δεν υπάρχουν πληροφορίες για την βιβλιοθήκη {{collection}}" @@ -298,19 +298,19 @@ msgstr "Η βιβλιοθήκη {{name}} αφαιρέθηκε" msgid "Collection {{name}} replaced" msgstr "Η βιβλιοθήκη {{name}} αντικαταστάθηκε" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Η βιβλιοθήκη {{name}} επιλέχθηκε" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Βιβλιοθήκες" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Τερματικό εξόδου εντολών" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Φόρουμ κοινότητας" @@ -318,7 +318,7 @@ msgstr "Φόρουμ κοινότητας" msgid "Configuration not completed" msgstr "Η παραμετροποίηση δεν ολοκληρώθηκε" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Σταθερά" @@ -379,7 +379,7 @@ msgstr "" msgid "Deep Sky Blue" msgstr "" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Προεπηλεγμένο" @@ -387,19 +387,19 @@ msgstr "Προεπηλεγμένο" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Περιγραφή" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Απενεργοποίηση" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Θέλετε να κλείσετε την εφαρμογή?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Θέλετε να διαγράψετε τη βιβλιοθήκη {{name}}?" @@ -407,7 +407,7 @@ msgstr "Θέλετε να διαγράψετε τη βιβλιοθήκη {{name} msgid "Do you want to replace it?" msgstr "Θέλετε να γίνει αντικαταστήσετε?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Τεκμηρίωση" @@ -415,7 +415,7 @@ msgstr "Τεκμηρίωση" msgid "Don’t display" msgstr "" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Οδήγοι" @@ -453,7 +453,7 @@ msgstr "Επεξεργασία" msgid "Edit the collection name" msgstr "Επεξεργασία ονόματος βιβλιοθήκης" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Ενεργοποίηση" @@ -483,7 +483,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Εισαγάγετε το όνομα του απομακρυσμένου υπολογιστή/συσκευής (user@host)" @@ -491,7 +491,7 @@ msgstr "Εισαγάγετε το όνομα του απομακρυσμένου msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Σφάλμα: {{error}}" @@ -515,7 +515,7 @@ msgstr "Εκτέλεση απομακρυσμένου {{label}} ..." msgid "Export" msgstr "Εξαγωγή" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "" @@ -523,7 +523,7 @@ msgstr "" msgid "External collections" msgstr "Εξωτερικές βιβλιοθήκες" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Οι εξωτερικές βιβλιοθήκες ανανεώθηκαν" @@ -532,7 +532,7 @@ msgstr "Οι εξωτερικές βιβλιοθήκες ανανεώθηκαν" msgid "External plugins" msgstr "Εξωτερικές plugins" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "Οι εξωτερικές plugins ανανεώθηκαν" @@ -613,7 +613,7 @@ msgstr "Ελληνικά" msgid "Green Yellow" msgstr "" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Βοήθεια" @@ -631,11 +631,11 @@ msgid "" "this board" msgstr "" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Εικόνα" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "H eικόνα {{name}} αποθηκεύτηκε" @@ -643,15 +643,15 @@ msgstr "H eικόνα {{name}} αποθηκεύτηκε" msgid "Indian Red" msgstr "" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Πληροφορίες" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Είσοδος" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "" @@ -673,12 +673,12 @@ msgstr "" msgid "Input ports" msgstr "Εισαγάγετε τις θύρες εισόδου" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Εγκατάσταση" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -753,7 +753,7 @@ msgstr "Μη έγκυρη σύνδεση: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Πολλαπλές μη έγκυρες συνδέσεις" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -761,7 +761,7 @@ msgstr "" msgid "Invalid project format" msgstr "Μη έγκυρη μορφοποίηση έργου" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -769,7 +769,7 @@ msgstr "" msgid "Italian" msgstr "" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -781,7 +781,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 #, fuzzy msgid "Label updated" msgstr "Η ετικέτα ενημερώθηκε" @@ -818,11 +818,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Μέγιστο μέγεθος διαύλου: 96 bits" @@ -830,7 +830,7 @@ msgstr "Μέγιστο μέγεθος διαύλου: 96 bits" msgid "Medium Violet Red" msgstr "" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Μνήμη" @@ -839,7 +839,7 @@ msgstr "Μνήμη" msgid "Memory block names" msgstr "Blocks μνήμης" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Όνομα" @@ -868,12 +868,12 @@ msgstr "Όνομα:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Δεν έχουν αποθηκευτεί βιβλιοθήκες" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "ΟΚ" @@ -885,7 +885,7 @@ msgstr "" msgid "Open" msgstr "Άνοιγμα" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Άνοιγμα SVG" @@ -897,11 +897,11 @@ msgstr "" msgid "Original file {{file}} does not exist" msgstr "Το αρχικό αρχείο {{file}} δεν υπάρχει" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Έξοδος" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "" @@ -917,7 +917,7 @@ msgstr "" msgid "Output ports" msgstr "" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -925,12 +925,12 @@ msgstr "" msgid "Paste" msgstr "Επικόλληση" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Η διαδρομή {{path}} δεν υπάρχει" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Παρακαλώ εκτελέστε: {{cmd}}" @@ -946,7 +946,7 @@ msgstr "" msgid "Project information" msgstr "Πληροφορίες έργου" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Οι πληροφορίες του έργου ανανεωθήκαν" @@ -962,7 +962,7 @@ msgstr "Το έργο {{name}} αποθηκεύτηκε" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -983,7 +983,7 @@ msgstr "Επανάληψη" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Επαναφόρτωση" @@ -995,11 +995,11 @@ msgstr "Ο απομακρυσμένος υπολογιστής/συσκευή {{ msgid "Remote hostname" msgstr "Απομακρυσμένο όνομα υπολογιστή/συσκευής" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Διαγραφή" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Διαγραφή όλων" @@ -1011,7 +1011,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Επαναφορά SVG" @@ -1027,7 +1027,7 @@ msgstr "" msgid "Save" msgstr "Αποθήκευση" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Αποθήκευση SVG" @@ -1035,7 +1035,7 @@ msgstr "Αποθήκευση SVG" msgid "Save as" msgstr "Αποθήκευση ως" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "" @@ -1059,7 +1059,7 @@ msgstr "Εμφάνιση Ρολογιού" msgid "Slate Blue" msgstr "" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Πηγαίος κώδικας" @@ -1071,15 +1071,15 @@ msgstr "Ισπανικά" msgid "Spring Green" msgstr "" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Έναρξη χτισίματος" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Έναρξη μεταφόρτωσης" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Έναρξη επαλήθευσης" @@ -1112,7 +1112,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "Η βιβλιοθήκη {{name}} υπάρχει ήδη." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1153,7 +1153,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1167,7 +1167,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1179,7 +1179,7 @@ msgstr "" msgid "Toolbox" msgstr "Εργαλεία" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1200,11 +1200,11 @@ msgstr "Το Toolchain διαγράφηκε" msgid "Toolchain version does not match" msgstr "Η έκδοση του Toolchain δεν ταιριάζει" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Εργαλεία" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1212,11 +1212,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1228,10 +1228,18 @@ msgstr "" msgid "Turquoise" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Αναίρεση" @@ -1249,36 +1257,36 @@ msgstr "Μη υποστηριζόμενη μορφοποίηση έργου {{ve msgid "Untitled" msgstr "Άτιτλο" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Μεταφόρτωση" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Η μεταφόρτωση ολοκληρωθηκε" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Η επαλήθευση ολοκληρωθηκε" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Επαλήθευση" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Έκδοση" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "" @@ -1286,14 +1294,18 @@ msgstr "" msgid "View" msgstr "Προβολή" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Προβολή άδειας" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Προειδοποιήσεις εντοπίστηκαν στο έργο" @@ -1303,7 +1315,7 @@ msgstr "Προειδοποιήσεις εντοπίστηκαν στο έργο" msgid "Welcome to Icestudio!" msgstr "Σχετικά με το Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Λάθος μορφοποίηση block: {{type}}" @@ -1325,25 +1337,25 @@ msgstr "Εσφαλμένη διεύθυνση απομακρυσμένου υπ msgid "Yellow" msgstr "" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" msgstr "" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1357,13 +1369,13 @@ msgstr "" "Μπορείτε να το φορτώσετε όπως είναι ή να το μετατρέψετε για την πλακέτα " "{{name}}" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" msgstr "" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1373,7 +1385,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Οι αλλαγές σας θα χαθούν αν δεν τις αποθηκεύσετε" @@ -1381,22 +1393,22 @@ msgstr "Οι αλλαγές σας θα χαθούν αν δεν τις αποθ msgid "back" msgstr "επιστροφή" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} είναι απαρέτητ." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "το δελτίο δεδομένων για την πλακέτα {{board}} δεν έχει δηλωθεί" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "το pinout για την πλακέτα {{board}} δεν έχει δηλωθεί" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "οι κανόνες για την πλακέτα {{board}} δεν έχουν δηλωθεί" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "Το {{name}} εξήχθη" diff --git a/app/resources/locale/en/en.po b/app/resources/locale/en/en.po index d8e270973..9737ee18a 100644 --- a/app/resources/locale/en/en.po +++ b/app/resources/locale/en/en.po @@ -52,7 +52,7 @@ msgstr "" " using
\n" " Edit → Clone." -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "About Icestudio" @@ -60,11 +60,11 @@ msgstr "About Icestudio" msgid "Acknowledgment" msgstr "Acknowledgment" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Add" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Add a block to start" @@ -84,7 +84,7 @@ msgstr "Advanced features" msgid "All collections removed" msgstr "All collections removed" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "All stored collections will be lost. Do you want to continue?" @@ -104,11 +104,11 @@ msgstr "Apio install {{name}}" msgid "At least Python 3.7 is required" msgstr "At least Python 3.7 is required" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Author" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Basic" @@ -128,12 +128,12 @@ msgstr "Binary" msgid "Bitstream not found: Build your project first" msgstr "Bitstream not found: Build your project first" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Block updated" @@ -153,11 +153,11 @@ msgstr "Board" msgid "Board rules" msgstr "Board rules" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Board rules disabled" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Board rules enabled" @@ -173,7 +173,7 @@ msgstr "Board {{name}} not available" msgid "Board {{name}} not connected" msgstr "Board {{name}} not connected" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Board {{name}} selected" @@ -181,21 +181,21 @@ msgstr "Board {{name}} selected" msgid "Bootloader not active" msgstr "Bootloader not active" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Build" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Build done" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Cancel" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "Cannot paste from a different project format ({{version}})" @@ -211,7 +211,7 @@ msgstr "Catalonian" msgid "Change Color" msgstr "Change Color" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "Changed Preferences: Allow tri-state connections" @@ -231,7 +231,7 @@ msgstr "Chinese" msgid "Choose a color:" msgstr "Choose a color:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

setup the drivers" msgid "Click here to install it" msgstr "Click here to install it" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Click here to view" @@ -267,15 +267,15 @@ msgstr "Clock not allowed for data buses" msgid "Clone" msgstr "Clone" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Close" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Code" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Collection" @@ -283,7 +283,7 @@ msgstr "Collection" msgid "Collection info" msgstr "Collection info" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Collection {{collection}} info not defined" @@ -303,19 +303,19 @@ msgstr "Collection {{name}} removed" msgid "Collection {{name}} replaced" msgstr "Collection {{name}} replaced" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Collection {{name}} selected" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Collections" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Command output" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Community forum" @@ -323,7 +323,7 @@ msgstr "Community forum" msgid "Configuration not completed" msgstr "Configuration not completed" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Constant" @@ -383,7 +383,7 @@ msgstr "Deep Pink" msgid "Deep Sky Blue" msgstr "Deep Sky Blue" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Default" @@ -391,19 +391,19 @@ msgstr "Default" msgid "Delete" msgstr "Delete" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Description" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Disable" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Do you want to close the application?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Do you want to remove the {{name}} collection?" @@ -411,7 +411,7 @@ msgstr "Do you want to remove the {{name}} collection?" msgid "Do you want to replace it?" msgstr "Do you want to replace it?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentation" @@ -419,7 +419,7 @@ msgstr "Documentation" msgid "Don’t display" msgstr "Don’t display" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Drivers" @@ -457,7 +457,7 @@ msgstr "Edit" msgid "Edit the collection name" msgstr "Edit the collection name" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Enable" @@ -485,7 +485,7 @@ msgstr "Enter the pip path" msgid "Enter the python path" msgstr "Enter the python path" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Enter the remote hostname user@host" @@ -493,7 +493,7 @@ msgstr "Enter the remote hostname user@host" msgid "Error installing driver:" msgstr "Error installing driver:" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Error: {{error}}" @@ -517,7 +517,7 @@ msgstr "Execute remote {{label}} ..." msgid "Export" msgstr "Export" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Export submodule" @@ -525,7 +525,7 @@ msgstr "Export submodule" msgid "External collections" msgstr "External collections" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "External collections updated" @@ -533,7 +533,7 @@ msgstr "External collections updated" msgid "External plugins" msgstr "External plugins" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "External plugins updated" @@ -612,7 +612,7 @@ msgstr "Greek" msgid "Green Yellow" msgstr "Green Yellow" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Help" @@ -632,11 +632,11 @@ msgstr "" "If you see blank IN/OUT pins, it is because equivalent pins do not exist on " "this board" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Image" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Image {{name}} saved" @@ -644,15 +644,15 @@ msgstr "Image {{name}} saved" msgid "Indian Red" msgstr "Indian Red" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Information" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Input" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Input label" @@ -672,11 +672,11 @@ msgstr "Input port names" msgid "Input ports" msgstr "Input ports" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "Install (Stable)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Install Development version" @@ -747,7 +747,7 @@ msgstr "Invalid connection: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Invalid multiple input connections" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "Invalid new name!" @@ -755,7 +755,7 @@ msgstr "Invalid new name!" msgid "Invalid project format" msgstr "Invalid project format" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "Invalid search name!" @@ -763,7 +763,7 @@ msgstr "Invalid search name!" msgid "Italian" msgstr "Italian" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "Japanese" @@ -775,7 +775,7 @@ msgstr "Korean" msgid "Label finder" msgstr "Label finder" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "Label updated" @@ -811,11 +811,11 @@ msgstr "Logging enabled" msgid "Logging file" msgstr "Logging file" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Logging file updated" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Maximum bus size: 96 bits" @@ -823,7 +823,7 @@ msgstr "Maximum bus size: 96 bits" msgid "Medium Violet Red" msgstr "Medium Violet Red" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Memory" @@ -831,7 +831,7 @@ msgstr "Memory" msgid "Memory block names" msgstr "Memory block names" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Name" @@ -859,12 +859,12 @@ msgstr "New Name:" msgid "Next" msgstr "Next" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "No collections stored" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "OK" @@ -876,7 +876,7 @@ msgstr "Olive Drab" msgid "Open" msgstr "Open" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Open SVG" @@ -888,11 +888,11 @@ msgstr "Orange Red" msgid "Original file {{file}} does not exist" msgstr "Original file {{file}} does not exist" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Output" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Output label" @@ -908,7 +908,7 @@ msgstr "Output port names" msgid "Output ports" msgstr "Output ports" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "Paired labels" @@ -916,12 +916,12 @@ msgstr "Paired labels" msgid "Paste" msgstr "Paste" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Path {{path}} does not exist" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Please run: {{cmd}}" @@ -937,7 +937,7 @@ msgstr "Prev." msgid "Project information" msgstr "Project information" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Project information updated" @@ -953,7 +953,7 @@ msgstr "Project {{name}} saved" msgid "Python environment" msgstr "Python environment" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "Python environment updated" @@ -973,7 +973,7 @@ msgstr "Redo" msgid "Release History WIKI" msgstr "Release History WIKI" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Reload" @@ -985,11 +985,11 @@ msgstr "Remote host {{name}} not connected" msgid "Remote hostname" msgstr "Remote hostname" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Remove" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Remove all" @@ -1001,7 +1001,7 @@ msgstr "Replace All" msgid "Replace One" msgstr "Replace One" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Reset SVG" @@ -1017,7 +1017,7 @@ msgstr "Russian" msgid "Save" msgstr "Save" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Save SVG" @@ -1025,7 +1025,7 @@ msgstr "Save SVG" msgid "Save as" msgstr "Save as" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Save submodule" @@ -1049,7 +1049,7 @@ msgstr "Show clock" msgid "Slate Blue" msgstr "Slate Blue" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Source code" @@ -1061,15 +1061,15 @@ msgstr "Spanish" msgid "Spring Green" msgstr "Spring Green" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Start build" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Start upload" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Start verification" @@ -1101,7 +1101,7 @@ msgstr "Thank you very much!" msgid "The collection {{name}} already exists." msgstr "The collection {{name}} already exists." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " "the {{name}} board?" @@ -1141,7 +1141,7 @@ msgstr "" "This release has been possible thanks to the great work done by an emerging " "team from" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "This time" @@ -1157,7 +1157,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "To navigate through the design, you need to close \"edit mode\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1171,7 +1171,7 @@ msgstr "" msgid "Toolbox" msgstr "Toolbox" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1192,11 +1192,11 @@ msgstr "Toolchain removed" msgid "Toolchain version does not match" msgstr "Toolchain version does not match" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Tools" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1208,11 +1208,11 @@ msgstr "" "(Advanced user setting) or you can just open this design on a preview basis." "

Continue?" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "Tri-state connections (inout ports) disabled" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "Tri-state connections (inout ports) enabled" @@ -1224,10 +1224,19 @@ msgstr "Turkish" msgid "Turquoise" msgstr "Turquoise" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "UI theme" + #: app/views/menu.html:372 msgid "UI theme" msgstr "UI theme" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Undo" @@ -1244,36 +1253,36 @@ msgstr "Unsupported project format {{version}}" msgid "Untitled" msgstr "Untitled" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "Update (Latest stable)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Upload" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Upload done" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "Using external Apio: {{name}}" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Verification done" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Verify" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Version" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Version notes" @@ -1281,14 +1290,18 @@ msgstr "Version notes" msgid "View" msgstr "View" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "View license" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "Viewing tri-state" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Warnings detected in the design" @@ -1297,7 +1310,7 @@ msgstr "Warnings detected in the design" msgid "Welcome to Icestudio!" msgstr "Welcome to Icestudio!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Wrong block format: {{type}}" @@ -1319,11 +1332,11 @@ msgstr "Wrong remote hostname {{name}}" msgid "Yellow" msgstr "Yellow" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "Yes" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" @@ -1331,15 +1344,15 @@ msgstr "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "You are importing a block that uses \"tri-state\"." -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "You are loading a design that uses \"tri-state\"." -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1353,7 +1366,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "You can load it as it is or convert it to use the {{name}} board." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" @@ -1361,7 +1374,7 @@ msgstr "" "You can only build at the top-level design. Inside submodules, you can " "Verify" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1373,7 +1386,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "You can read the release notes on the" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Your changes will be lost if you don’t save them" @@ -1381,22 +1394,22 @@ msgstr "Your changes will be lost if you don’t save them" msgid "back" msgstr "back" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} is required." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} datasheet not defined" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} pinout not defined" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} rules not defined" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} exported" diff --git a/app/resources/locale/es_ES/es_ES.po b/app/resources/locale/es_ES/es_ES.po index 825922fa6..b7a960e97 100644 --- a/app/resources/locale/es_ES/es_ES.po +++ b/app/resources/locale/es_ES/es_ES.po @@ -52,7 +52,7 @@ msgstr "" "un bloque clonado usando
\n" "Editar → Clonar." -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Acerca de Icestudio" @@ -60,11 +60,11 @@ msgstr "Acerca de Icestudio" msgid "Acknowledgment" msgstr "Agradecimientos" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Añadir" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Añade un bloque para comenzar" @@ -84,7 +84,7 @@ msgstr "Características avanzadas" msgid "All collections removed" msgstr "Colecciones eliminadas" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Todas las colecciones almacenadas se perderán. ¿Deseas continuar?" @@ -104,11 +104,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Es necesario Python 3.7 o superior" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Autor" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Básico" @@ -129,12 +129,12 @@ msgstr "Binario" msgid "Bitstream not found: Build your project first" msgstr "Bitstream no encontrado: Sintetiza tu proyecto primero" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Bloque actualizado" @@ -154,11 +154,11 @@ msgstr "Placa" msgid "Board rules" msgstr "Reglas de la placa" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Reglas de la placa deshabilitadas" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Reglas de la placa habilitadas" @@ -174,7 +174,7 @@ msgstr "Placa {{name}} no disponible" msgid "Board {{name}} not connected" msgstr "Placa {{name}} no conectada" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Placa {{name}} seleccionada" @@ -182,21 +182,21 @@ msgstr "Placa {{name}} seleccionada" msgid "Bootloader not active" msgstr "Bootloader no activo" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Sintetizar" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Sintetizado realizado" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Cancelar" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "No se puede pegar desde un formato de proyecto diferente ({{version}})" @@ -212,7 +212,7 @@ msgstr "Catalán" msgid "Change Color" msgstr "Cambiar Color" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "Preferencias cambiadas: Permitir conexiones tri-estado" @@ -232,7 +232,7 @@ msgstr "Chino" msgid "Choose a color:" msgstr "Selecciona un color:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 #, fuzzy msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " @@ -258,7 +258,7 @@ msgstr "Haz clic aquí para configurar los drivers" msgid "Click here to install it" msgstr "Haz clic aquí para instalarlo" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Haz clic aquí para ver" @@ -270,15 +270,15 @@ msgstr "Reloj no permitido para buses de datos" msgid "Clone" msgstr "Clonar" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Cerrar" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Código" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Colección" @@ -286,7 +286,7 @@ msgstr "Colección" msgid "Collection info" msgstr "Información de la colección" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Información de la colección {{collection}} no definida" @@ -306,19 +306,19 @@ msgstr "Colección {{name}} eliminada" msgid "Collection {{name}} replaced" msgstr "Colección {{name}} reemplazada" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Colección {{name}} seleccionada" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Colecciones" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Salida del comando" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Foro de la comunidad" @@ -326,7 +326,7 @@ msgstr "Foro de la comunidad" msgid "Configuration not completed" msgstr "Configuración no completada" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Constante" @@ -386,7 +386,7 @@ msgstr "Rosa oscuro" msgid "Deep Sky Blue" msgstr "Celeste intenso" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Por defecto" @@ -394,19 +394,19 @@ msgstr "Por defecto" msgid "Delete" msgstr "Suprimir" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Descripción" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Deshabilitar" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "¿Deseas cerrar la aplicación?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "¿Deseas eliminar la colección {{name}}?" @@ -414,7 +414,7 @@ msgstr "¿Deseas eliminar la colección {{name}}?" msgid "Do you want to replace it?" msgstr "¿Deseas reemplazarla?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentación" @@ -422,7 +422,7 @@ msgstr "Documentación" msgid "Don’t display" msgstr "No mostrar" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Drivers" @@ -460,7 +460,7 @@ msgstr "Editar" msgid "Edit the collection name" msgstr "Edita el nombre de la colección" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Habilitar" @@ -489,7 +489,7 @@ msgstr "Introduce la ruta de pip" msgid "Enter the python path" msgstr "Introduce la ruta de python" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Introduce el nombre del host remoto usuario@host" @@ -497,7 +497,7 @@ msgstr "Introduce el nombre del host remoto usuario@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Error: {{error}}" @@ -521,7 +521,7 @@ msgstr "Ejecutar {{label}} remoto ..." msgid "Export" msgstr "Exportar" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Exportar submódulo" @@ -529,7 +529,7 @@ msgstr "Exportar submódulo" msgid "External collections" msgstr "Colecciones externas" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Colecciones externas actualizadas" @@ -537,7 +537,7 @@ msgstr "Colecciones externas actualizadas" msgid "External plugins" msgstr "Plugins externos" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "Plugins externos actualizados" @@ -617,7 +617,7 @@ msgstr "Griego" msgid "Green Yellow" msgstr "Amarillo verdoso" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Ayuda" @@ -637,11 +637,11 @@ msgstr "" "Si ves pines de ENTRADA/SALIDA vacíos, es porque no existen pines " "equivalentes en esta placa" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Imagen" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Imagen {{name}} guardada" @@ -649,15 +649,15 @@ msgstr "Imagen {{name}} guardada" msgid "Indian Red" msgstr "Rojo indio" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Información" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Entrada" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Etiqueta de entrada" @@ -678,11 +678,11 @@ msgstr "Nombres de puertos de entrada" msgid "Input ports" msgstr "Puertos de entrada" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "Instalar (Estable)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Instalar la versión de desarrollo" @@ -759,7 +759,7 @@ msgstr "Conexión no válida: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Conexiones de entrada múltiple no válidas" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 #, fuzzy msgid "Invalid new name!" msgstr "¡Nombre nuevo incorrecto!" @@ -768,7 +768,7 @@ msgstr "¡Nombre nuevo incorrecto!" msgid "Invalid project format" msgstr "Formato de proyecto no válido" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 #, fuzzy msgid "Invalid search name!" msgstr "¡Nombre de búsqueda incorrecto!" @@ -777,7 +777,7 @@ msgstr "¡Nombre de búsqueda incorrecto!" msgid "Italian" msgstr "Italiano" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "Japonés" @@ -789,7 +789,7 @@ msgstr "Koreano" msgid "Label finder" msgstr "Buscar etiqueta" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "Etiqueta actualizada" @@ -826,11 +826,11 @@ msgstr "Logging habilitado" msgid "Logging file" msgstr "Archivo de registro (log)" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Archivo de registro actualizado" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Tamaño máximo del bus: 96 bits" @@ -838,7 +838,7 @@ msgstr "Tamaño máximo del bus: 96 bits" msgid "Medium Violet Red" msgstr "Rojo violeta medio" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Memoria" @@ -847,7 +847,7 @@ msgstr "Memoria" msgid "Memory block names" msgstr "Nombres de bloques de memoria" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Nombre" @@ -877,12 +877,12 @@ msgstr "Nuevo Nombre:" msgid "Next" msgstr "Sig" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Ninguna colección almacenada" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "OK" @@ -894,7 +894,7 @@ msgstr "Verde oliva" msgid "Open" msgstr "Abrir" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Abrir SVG" @@ -906,11 +906,11 @@ msgstr "Rojo naranja" msgid "Original file {{file}} does not exist" msgstr "El archivo original {{file}} no existe" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Salida" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Etiqueta de salida" @@ -927,7 +927,7 @@ msgstr "Nombres de puertos de salida" msgid "Output ports" msgstr "Puertos de salida" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "Etiquetas emparejadas" @@ -935,12 +935,12 @@ msgstr "Etiquetas emparejadas" msgid "Paste" msgstr "Pegar" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "La ruta {{path}} no existe" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Por favor ejecuta: {{cmd}}" @@ -956,7 +956,7 @@ msgstr "Ant." msgid "Project information" msgstr "Información del proyecto" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Información del proyecto actualizada" @@ -972,7 +972,7 @@ msgstr "Proyecto {{name}} guardado" msgid "Python environment" msgstr "Entorno de Python" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Entorno de Python actualizado" @@ -993,7 +993,7 @@ msgstr "Rehacer" msgid "Release History WIKI" msgstr "WIKI del historial de lanzamientos" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Recargar" @@ -1005,11 +1005,11 @@ msgstr "Host remoto {{name}} no conectado" msgid "Remote hostname" msgstr "Nombre del host remoto" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Eliminar" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Eliminar todo" @@ -1021,7 +1021,7 @@ msgstr "Cambiar todos" msgid "Replace One" msgstr "Cambiar uno" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Resetear SVG" @@ -1037,7 +1037,7 @@ msgstr "Ruso" msgid "Save" msgstr "Guardar" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Guardar SVG" @@ -1045,7 +1045,7 @@ msgstr "Guardar SVG" msgid "Save as" msgstr "Guardar como" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Guardar submódulo" @@ -1069,7 +1069,7 @@ msgstr "Mostrar reloj" msgid "Slate Blue" msgstr "Azul pizarra" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Código fuente" @@ -1081,15 +1081,15 @@ msgstr "Español" msgid "Spring Green" msgstr "Verde primavera" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Comenzar sintetizado" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Comenzar carga" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Comenzar verificación" @@ -1121,7 +1121,7 @@ msgstr "¡Muchas gracias!" msgid "The collection {{name}} already exists." msgstr "La colección {{name}} ya existe." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " "the {{name}} board?" @@ -1162,7 +1162,7 @@ msgstr "" "Este lanzamiento ha sido posible gracias al gran trabajo \n" "hecho por el grupo emergente de" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "Esta vez" @@ -1180,7 +1180,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Para navegar por el diseño, debes cerrar el \"modo de edición\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1194,7 +1194,7 @@ msgstr "" msgid "Toolbox" msgstr "Herramientas" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1215,11 +1215,11 @@ msgstr "Toolchain eliminada" msgid "Toolchain version does not match" msgstr "La versión de la toolchain no coincide" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Herramientas" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1232,11 +1232,11 @@ msgstr "" "avanzado) o simplemente puedes abrir este diseño en modo previsualización." "

¿Continuar?" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "Conexiones tri-estado (puertos entrada/salida) deshabilitadas" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "Conexiones tri-estado (puertos entrada/salida) habilitadas" @@ -1248,10 +1248,19 @@ msgstr "Turco" msgid "Turquoise" msgstr "Turquesa" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Tema de la interfaz" + #: app/views/menu.html:372 msgid "UI theme" msgstr "Tema de la interfaz" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Deshacer" @@ -1268,36 +1277,36 @@ msgstr "Formato de proyecto no admitido {{version}}" msgid "Untitled" msgstr "Sin título" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "Actualización (Última estable)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Cargar" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Carga realizada" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Verificación realizada" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Verificar" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Versión" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Notas de la versión" @@ -1305,15 +1314,19 @@ msgstr "Notas de la versión" msgid "View" msgstr "Ver" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Ver licencia" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 #, fuzzy msgid "Viewing tri-state" msgstr "Visualizando tri-estado" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Advertencias detectadas en el diseño" @@ -1322,7 +1335,7 @@ msgstr "Advertencias detectadas en el diseño" msgid "Welcome to Icestudio!" msgstr "¡Bienvenido a Icestudio!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Formato de bloque incorrecto: {{type}}" @@ -1344,11 +1357,11 @@ msgstr "Nombre del host remoto incorrecto {{name}}" msgid "Yellow" msgstr "Amarillo" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "Si" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" @@ -1356,15 +1369,15 @@ msgstr "" "Estás editando un submódulo, aquí que guardarás solamente este submódulo " "(\"Guardar como\" funciona como \"Exportar módulo\"). ¿Quieres continuar?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "Estás importando un bloque que usa \"tri-estados\"." -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "Estar cargando un diseño que usa \"tri-estados\"." -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 #, fuzzy msgid "" "You are navigating into the design: If you want to save the entire design, " @@ -1379,7 +1392,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Puedes cargarlo como está o convertirlo para la placa {{name}}." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" @@ -1387,7 +1400,7 @@ msgstr "" "Solo puedes sintetizar en el nivel superior del diseño. Dentro de los " "submódulos puedes Verificar" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1399,7 +1412,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "Puedes leer las notas de lanzamiento en la" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Tus cambios se perderán si no los guardas" @@ -1407,22 +1420,22 @@ msgstr "Tus cambios se perderán si no los guardas" msgid "back" msgstr "volver" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "Es necesario {{app}}." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} datasheet no definido" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} pinout no definido" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "Reglas de {{board}} no definidas" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} exportado" diff --git a/app/resources/locale/eu_ES/eu_ES.po b/app/resources/locale/eu_ES/eu_ES.po index 53413eb85..21bc95edb 100644 --- a/app/resources/locale/eu_ES/eu_ES.po +++ b/app/resources/locale/eu_ES/eu_ES.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Icestudio informazioa" @@ -52,11 +52,11 @@ msgstr "Icestudio informazioa" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Gehitu" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Gehi ezazu bloke bat hasteko" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Bildumak ezabatu dira" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Gordetako bildumak galduko dira. Jarraitu nahi al duzu?" @@ -97,11 +97,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Python 3.7 behar da" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Egilea" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Oinarrizkoa" @@ -121,12 +121,12 @@ msgstr "Bitarra" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "" @@ -146,11 +146,11 @@ msgstr "Plaka" msgid "Board rules" msgstr "Plakaren arauak" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Plakaren arauak desgaituta" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Plakaren arauak gaituta" @@ -166,7 +166,7 @@ msgstr "{{name}} plaka ez dago erabilgarri" msgid "Board {{name}} not connected" msgstr "{{name}} plaka ez dago konektatuta" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "{{name}} plaka hautatu duzu" @@ -174,21 +174,21 @@ msgstr "{{name}} plaka hautatu duzu" msgid "Bootloader not active" msgstr "Bootloader ez aktiboa" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Sintetizatu" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Sintetizatua egin da" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Utzi" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -206,7 +206,7 @@ msgstr "Katalan" msgid "Change Color" msgstr "Kolorea hauta ezazu" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -227,7 +227,7 @@ msgstr "Txinera" msgid "Choose a color:" msgstr "Kolorea hauta ezazu:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

driverrak eguneratzeko" msgid "Click here to install it" msgstr "Instalatzeko hemen klik egin" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Klik egizu ikusteko" @@ -261,15 +261,15 @@ msgstr "Datu busentzat ordularia ez dago onetsia" msgid "Clone" msgstr "Klonatu" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Itxi" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Kodea" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Bilduma" @@ -277,7 +277,7 @@ msgstr "Bilduma" msgid "Collection info" msgstr "Bildumaren informazioa" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "{{collection}} bildumaren informazioa zehaztuta gabe dago" @@ -297,19 +297,19 @@ msgstr "{{name}} bilduma ezabatu da" msgid "Collection {{name}} replaced" msgstr "{{name}} bilduma ordeztu da" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "{{name}} bilduma hautatu da" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Bildumak" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Komando irteera" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Komunitatearen foroa" @@ -317,7 +317,7 @@ msgstr "Komunitatearen foroa" msgid "Configuration not completed" msgstr "Konfigurazioa ez da osatu" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Konstantea" @@ -383,7 +383,7 @@ msgstr "Larrosa" msgid "Deep Sky Blue" msgstr "Urdina" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Lehenetsia" @@ -391,19 +391,19 @@ msgstr "Lehenetsia" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Azalpena" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Desgaitu" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Aplikazioa itxi nahi al duzu?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "{{name}} bilduma ezabatu nahi al duzu?" @@ -411,7 +411,7 @@ msgstr "{{name}} bilduma ezabatu nahi al duzu?" msgid "Do you want to replace it?" msgstr "Ordeztu nahi al duzu?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Dokumentazioa" @@ -420,7 +420,7 @@ msgstr "Dokumentazioa" msgid "Don’t display" msgstr "Ez erakutsi" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Driverrak" @@ -458,7 +458,7 @@ msgstr "Aldatu" msgid "Edit the collection name" msgstr "Bildumaren izena aldatu" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Onartu" @@ -487,7 +487,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Urrutiko ostalariaren izena sar ezazu erabiltzailea@host" @@ -495,7 +495,7 @@ msgstr "Urrutiko ostalariaren izena sar ezazu erabiltzailea@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Errorea: {{error}}" @@ -519,7 +519,7 @@ msgstr "Exekutatu urrutiko {{label}} ..." msgid "Export" msgstr "Esportatu" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Azpimodulua esportatu" @@ -527,7 +527,7 @@ msgstr "Azpimodulua esportatu" msgid "External collections" msgstr "Kanpoko bildumak" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Kanpoko bildumak eguneratu dira" @@ -535,7 +535,7 @@ msgstr "Kanpoko bildumak eguneratu dira" msgid "External plugins" msgstr "" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "" @@ -616,7 +616,7 @@ msgstr "Greziera" msgid "Green Yellow" msgstr "Berde-horia" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Laguntza" @@ -635,11 +635,11 @@ msgid "" "this board" msgstr "SARRERA/IRTEERA pinak hutsik badaude, zure plakan baliokiderik ez da" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Irudia" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "{{name}} izeneko irudia gorde da" @@ -648,15 +648,15 @@ msgstr "{{name}} izeneko irudia gorde da" msgid "Indian Red" msgstr "Gorri-indioa" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Informazioa" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Sarrera" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Sarrera-etiketa" @@ -679,12 +679,12 @@ msgstr "" msgid "Input ports" msgstr "Sarrerako portuak" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Instalatu" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -760,7 +760,7 @@ msgstr "Konexio baliogabea: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Sarrerako konexio anitzak baliogabeak" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -768,7 +768,7 @@ msgstr "" msgid "Invalid project format" msgstr "Proiektuaren formatua baliogabea da" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -776,7 +776,7 @@ msgstr "" msgid "Italian" msgstr "Italiera" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -788,7 +788,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 #, fuzzy msgid "Label updated" msgstr "Etiketa freskatua dago" @@ -825,11 +825,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Busaren tamaina maximoa: 96 bit" @@ -838,7 +838,7 @@ msgstr "Busaren tamaina maximoa: 96 bit" msgid "Medium Violet Red" msgstr "Bioleta" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Memoria" @@ -846,7 +846,7 @@ msgstr "Memoria" msgid "Memory block names" msgstr "" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Izena" @@ -875,12 +875,12 @@ msgstr "Izena:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Ez dago gordeta bildumarik" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "Ados" @@ -893,7 +893,7 @@ msgstr "Oliba-motela" msgid "Open" msgstr "Ireki" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "SVGa ireki" @@ -906,11 +906,11 @@ msgstr "Gorri-laranja" msgid "Original file {{file}} does not exist" msgstr "Jatorrizko {{file}} fitxategia ez dago" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Irteera" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Irteera-etiketa" @@ -927,7 +927,7 @@ msgstr "" msgid "Output ports" msgstr "" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -935,12 +935,12 @@ msgstr "" msgid "Paste" msgstr "Itsatsi" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Ez da {{path}} izeneko biderik" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Mesedez {{cmd}} exekutatu" @@ -956,7 +956,7 @@ msgstr "" msgid "Project information" msgstr "Proiektuaren informazioa" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Proiektuaren informazioa eguneratu da" @@ -972,7 +972,7 @@ msgstr "{{name}} proiektua gorde da" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -992,7 +992,7 @@ msgstr "Berregin" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Berriro kargatu" @@ -1004,11 +1004,11 @@ msgstr "{{name}} urrutiko ostalaria ez dago konektatua" msgid "Remote hostname" msgstr "Urrutiko ostalariaren izena" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Ezabatu" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Dena ezabatu" @@ -1020,7 +1020,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "SVGa berrezarri" @@ -1037,7 +1037,7 @@ msgstr "Errusiera" msgid "Save" msgstr "Gorde" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "SVGa gorde" @@ -1045,7 +1045,7 @@ msgstr "SVGa gorde" msgid "Save as" msgstr "Gorde honela" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Azpimodulua gorde" @@ -1070,7 +1070,7 @@ msgstr "Ordularia erakutsi" msgid "Slate Blue" msgstr "Urdin-arbela" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Iturburu kodea" @@ -1083,15 +1083,15 @@ msgstr "Gaztelera" msgid "Spring Green" msgstr "Berde-udaberria" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Sintetizatua hasi" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Karga hasi" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Egiaztapena hasi" @@ -1125,7 +1125,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "{{name}} bilduma badago" -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1163,7 +1163,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1181,7 +1181,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Diseinuan zehar nabigatzeko, \"edizio modua\" itxi ezazu." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1197,7 +1197,7 @@ msgstr "" msgid "Toolbox" msgstr "Tresnak" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1218,11 +1218,11 @@ msgstr "Toolchain-a ezabatu da" msgid "Toolchain version does not match" msgstr "Toolchainaren bertsioa ez dator bat" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Tresnak" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1230,11 +1230,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1246,10 +1246,18 @@ msgstr "" msgid "Turquoise" msgstr "Turkesa" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Desegin" @@ -1266,36 +1274,36 @@ msgstr "{{version}} formatua duen proiektua ez da onartzen" msgid "Untitled" msgstr "Izenik gabe" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Kargatu" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Karga egin da" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Egiaztapena egin da" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Egiaztatu" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Bertsioa" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Bertsioaren oharrak" @@ -1303,14 +1311,18 @@ msgstr "Bertsioaren oharrak" msgid "View" msgstr "Ikusi" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Lizentzia ikusi" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Diseinuan abisuak detektatu dira" @@ -1320,7 +1332,7 @@ msgstr "Diseinuan abisuak detektatu dira" msgid "Welcome to Icestudio!" msgstr "Icestudio informazioa" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Blokearen formatua okerra da: {{type}}" @@ -1342,11 +1354,11 @@ msgstr "Urrutiko ostalariaren {{name}} izena okerra da" msgid "Yellow" msgstr "Horia" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1356,15 +1368,15 @@ msgstr "" "soilik (hala bada, \"Gorde honela\" \"modulua esportatu\"ren antzera lan " "egiten du). Jarraitu nahi duzu?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1376,7 +1388,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Dagoen moduan karga dezakezu edo {{name}} plakarako bihurtu" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1385,7 +1397,7 @@ msgstr "" "Goi mailako diseinuan soilik eraiki dezakezu. Azpimoduluen barnean, soilik " " baiezta dezakezu" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1398,7 +1410,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Aldaketak galduko dituzu gordetzen ez badituzu" @@ -1406,22 +1418,22 @@ msgstr "Aldaketak galduko dituzu gordetzen ez badituzu" msgid "back" msgstr "atzera" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} behar da" -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} plakaren datasheet-a ez zehaztua" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} plakaren pinout-a ez zehaztua" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} plakaren arauak ez daude definituta" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} esportatu da" diff --git a/app/resources/locale/fr_FR/fr_FR.po b/app/resources/locale/fr_FR/fr_FR.po index 6bb978a77..8fa17f936 100644 --- a/app/resources/locale/fr_FR/fr_FR.po +++ b/app/resources/locale/fr_FR/fr_FR.po @@ -54,7 +54,7 @@ msgstr "" " avec
\n" " Edition → Cloner." -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "À propos d'Icestudio" @@ -62,11 +62,11 @@ msgstr "À propos d'Icestudio" msgid "Acknowledgment" msgstr "Remerciements" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Ajouter" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Ajouter un bloc pour commencer" @@ -86,7 +86,7 @@ msgstr "" msgid "All collections removed" msgstr "Toutes les collections ont été supprimées" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "" "Toutes les collections enregistrées seront perdues. Voulez-vous continuer ?" @@ -107,11 +107,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Une version de Python supérieure à 3.7 est nécessaire" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Auteur" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Basique" @@ -132,12 +132,12 @@ msgstr "Binaire" msgid "Bitstream not found: Build your project first" msgstr "Bitstream introuvable : Veuillez d'abord compiler votre projet" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Bloc mis à jour" @@ -157,11 +157,11 @@ msgstr "Carte" msgid "Board rules" msgstr "Règles de la carte" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Règles de la carte désactivées" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Règles de la carte activées" @@ -177,7 +177,7 @@ msgstr "Carte {{name}} non disponible" msgid "Board {{name}} not connected" msgstr "Carte {{name}} non connectée" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Carte {{name}} séléctionnée" @@ -185,21 +185,21 @@ msgstr "Carte {{name}} séléctionnée" msgid "Bootloader not active" msgstr "Bootloader non activé" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Construire" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Construction terminée" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Annuler" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -216,7 +216,7 @@ msgstr "Catalan" msgid "Change Color" msgstr "Recolorer" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -237,7 +237,7 @@ msgstr "Chinois" msgid "Choose a color:" msgstr "Choisir une couleur :" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

installer les drivers" msgid "Click here to install it" msgstr "Cliquer ici pour l'installer" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Cliquer ici pour ouvrir" @@ -270,15 +270,15 @@ msgstr "Horloge non autorisée pour les bus de données" msgid "Clone" msgstr "Cloner" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Fermer" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Code" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Collection" @@ -286,7 +286,7 @@ msgstr "Collection" msgid "Collection info" msgstr "Informations sur la collection" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Informations sur la collection {{name}} non définies" @@ -306,19 +306,19 @@ msgstr "Collection {{name}} supprimée" msgid "Collection {{name}} replaced" msgstr "Collection {{name}} remplacée" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Collection {{name}} sélectionée" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Collections" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Sortie de Commandes" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Forum communautaire" @@ -326,7 +326,7 @@ msgstr "Forum communautaire" msgid "Configuration not completed" msgstr "Configuration incomplète" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Constante" @@ -391,7 +391,7 @@ msgstr "Rose profond" msgid "Deep Sky Blue" msgstr "Bleu ciel profond" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Défaut" @@ -399,19 +399,19 @@ msgstr "Défaut" msgid "Delete" msgstr "Supprimer" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Description" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Désactiver" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Voulez-vous fermer l'application ?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Voulez-vous supprimer la collection {{name}} ?" @@ -419,7 +419,7 @@ msgstr "Voulez-vous supprimer la collection {{name}} ?" msgid "Do you want to replace it?" msgstr "Voulez-vous le remplacer ?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentation" @@ -428,7 +428,7 @@ msgstr "Documentation" msgid "Don’t display" msgstr "Ne pas afficher" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Pilote" @@ -466,7 +466,7 @@ msgstr "Édition" msgid "Edit the collection name" msgstr "Éditer le nom de la collection" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Activer" @@ -496,7 +496,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Entrer le nom d'hôte distant user@host" @@ -504,7 +504,7 @@ msgstr "Entrer le nom d'hôte distant user@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Erreur : {{error}}" @@ -528,7 +528,7 @@ msgstr "Exécuter à distance {{label}} ..." msgid "Export" msgstr "Exporter" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Exporter le sous-module" @@ -536,7 +536,7 @@ msgstr "Exporter le sous-module" msgid "External collections" msgstr "Collections externes" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Collections externes mises à jour" @@ -544,7 +544,7 @@ msgstr "Collections externes mises à jour" msgid "External plugins" msgstr "Plugins externes" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "Plugins externes mis a jour" @@ -625,7 +625,7 @@ msgstr "Grec" msgid "Green Yellow" msgstr "Jaune-vert" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Aide" @@ -646,11 +646,11 @@ msgstr "" "Si vous avez des pins d'entrée/sortie vides, c'est qu'il n'y a pas " "d'équivalent pour cette carte" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Image" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Image {{name}} sauvegardée" @@ -659,15 +659,15 @@ msgstr "Image {{name}} sauvegardée" msgid "Indian Red" msgstr "Rouge indien" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Information" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Entrée" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Label d'entrée" @@ -691,11 +691,11 @@ msgstr "Noms des ports d'entrée" msgid "Input ports" msgstr "Ports d'entrée" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "Installer la version stable" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Installer la version de développement" @@ -773,7 +773,7 @@ msgstr "Connexion invalide : {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Connexions de multiples entrées invalides" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -781,7 +781,7 @@ msgstr "" msgid "Invalid project format" msgstr "Format de projet invalide" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 #, fuzzy msgid "Invalid search name!" msgstr "Nom de recherche incorrect !" @@ -790,7 +790,7 @@ msgstr "Nom de recherche incorrect !" msgid "Italian" msgstr "Italien" -#: app/views/languages.html:110 +#: app/views/languages.html:116 #, fuzzy msgid "Japanese" msgstr "Japonais" @@ -804,7 +804,7 @@ msgstr "Coréen" msgid "Label finder" msgstr "Chercher label" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 #, fuzzy msgid "Label updated" msgstr "Label mis à jour" @@ -843,11 +843,11 @@ msgstr "Log activé" msgid "Logging file" msgstr "Fichier de log" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Fichier de log mis à jour" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Taille maximale du bus : 96 bits" @@ -856,7 +856,7 @@ msgstr "Taille maximale du bus : 96 bits" msgid "Medium Violet Red" msgstr "Rouge-violet moyen" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Mémoire" @@ -865,7 +865,7 @@ msgstr "Mémoire" msgid "Memory block names" msgstr "Noms des blocs de mémoire" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Nom" @@ -896,12 +896,12 @@ msgstr "Nouveau Nom :" msgid "Next" msgstr "Suivant" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Pas de collections sauvegardées" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "OK" @@ -914,7 +914,7 @@ msgstr "Vert olive" msgid "Open" msgstr "Ouvrir" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Ouvrir SVG" @@ -927,11 +927,11 @@ msgstr "Rouge-orangé" msgid "Original file {{file}} does not exist" msgstr "Le fichier original {{file}} n'existe pas" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Sortie" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Label de sortie" @@ -950,7 +950,7 @@ msgstr "Noms des ports de sortie" msgid "Output ports" msgstr "Ports de sortie" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "Labels appairés" @@ -958,12 +958,12 @@ msgstr "Labels appairés" msgid "Paste" msgstr "Coller" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Le chemin {{path}} n'existe pas" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Veuillez exécuter : {{cmd}}" @@ -979,7 +979,7 @@ msgstr "Précédent" msgid "Project information" msgstr "Informations du projet" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Informations du projet mises à jour" @@ -995,7 +995,7 @@ msgstr "Projet {{name}} sauvegardé" msgid "Python environment" msgstr "Environnement Python" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Environnement Python mis à jour" @@ -1016,7 +1016,7 @@ msgstr "Refaire" msgid "Release History WIKI" msgstr "Wiki historique des releases" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Recharger" @@ -1028,11 +1028,11 @@ msgstr "Hôte distant {{name}} non connecté" msgid "Remote hostname" msgstr "Nom d'hôte distant" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Supprimer" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Supprimer tout" @@ -1044,7 +1044,7 @@ msgstr "Remplacer tous" msgid "Replace One" msgstr "Remplacer un" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Réinitialiser le SVG" @@ -1061,7 +1061,7 @@ msgstr "Russe" msgid "Save" msgstr "Enregistrer" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Enregistrer le SVG" @@ -1069,7 +1069,7 @@ msgstr "Enregistrer le SVG" msgid "Save as" msgstr "Enregistrer sous" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Enregistrer le sous-module" @@ -1094,7 +1094,7 @@ msgstr "Montrer l'horloge" msgid "Slate Blue" msgstr "Bleu ardoise" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Code source" @@ -1107,15 +1107,15 @@ msgstr "Espagnol" msgid "Spring Green" msgstr "Vert printanier" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Début de la construction" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Début du téléchargement" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Début de la vérification" @@ -1149,7 +1149,7 @@ msgstr "Merci beaucoup !" msgid "The collection {{name}} already exists." msgstr "La collection {{name}} existe déjà." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1191,7 +1191,7 @@ msgstr "" "Cette release a été rendue possible grâce à l'immense travail \n" " réalisé par une équipe de" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1209,7 +1209,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Pour explorer le design, vous devez fermer le \"mode édition\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1224,7 +1224,7 @@ msgstr "" msgid "Toolbox" msgstr "Boite a Outils" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1245,11 +1245,11 @@ msgstr "Toolchain supprimée" msgid "Toolchain version does not match" msgstr "La version de la toolchain ne correspond pas" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Outils" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1257,11 +1257,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1273,10 +1273,19 @@ msgstr "Turc" msgid "Turquoise" msgstr "Turquoise" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Thème interface graphique" + #: app/views/menu.html:372 msgid "UI theme" msgstr "Thème interface graphique" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Revenir en arrière" @@ -1293,36 +1302,36 @@ msgstr "Format {{version}} de projet non supporté" msgid "Untitled" msgstr "Sans titre" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "Mettre à jour (dernière version stable)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Télécharger" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Téléchargement terminé" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Vérification faite" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Vérifier" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Version" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Notes de version" @@ -1330,14 +1339,18 @@ msgstr "Notes de version" msgid "View" msgstr "Vue" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Voir la licence" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Avertissements détectés dans le design" @@ -1347,7 +1360,7 @@ msgstr "Avertissements détectés dans le design" msgid "Welcome to Icestudio!" msgstr "À propos d'Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Mauvais format de bloc : {{type}}" @@ -1369,11 +1382,11 @@ msgstr "Mauvais nom d'hôte distant {{name}}" msgid "Yellow" msgstr "Jaune" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1384,15 +1397,15 @@ msgstr "" "fonctionne comme la commande \"exporter le sous-module\"). Voulez-vous " "continuer ?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 #, fuzzy msgid "" "You are navigating into the design: If you want to save the entire design, " @@ -1410,7 +1423,7 @@ msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "" "Vous pouvez le charger tel quel ou le convertir pour la carte {{name}}." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1419,7 +1432,7 @@ msgstr "" "Vous pouvez uniquement construire sur le design de plus haut-niveau. Dans " "les sous-modules, vous pouvez uniquement Vérifier" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1432,7 +1445,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "Vous pouvez lire les notes de release sur le" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Vos modifications seront perdues si vous ne les sauvegardez pas" @@ -1440,22 +1453,22 @@ msgstr "Vos modifications seront perdues si vous ne les sauvegardez pas" msgid "back" msgstr "retour" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} est requis." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "Documentation {{board}} non définie" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "Pinout {{board}} non défini" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "Règles {{board}} non définies" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} exporté" diff --git a/app/resources/locale/gl_ES/gl_ES.po b/app/resources/locale/gl_ES/gl_ES.po index 3a603e955..95cc738dc 100644 --- a/app/resources/locale/gl_ES/gl_ES.po +++ b/app/resources/locale/gl_ES/gl_ES.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Acerca de Icestudio" @@ -52,11 +52,11 @@ msgstr "Acerca de Icestudio" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Engadir" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Engada un bloque para comezar" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Elimináronse todas as coleccións" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Perderanse todas as coleccións gardadas. Desexa continuar?" @@ -97,11 +97,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Requírese Python 3.7" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Autor" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Básico" @@ -121,12 +121,12 @@ msgstr "Binario" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Bloque actualizado" @@ -146,11 +146,11 @@ msgstr "Placa" msgid "Board rules" msgstr "Regras da placa" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Deshabilitáronse as regras da placa" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Habilitáronse as regras da placa" @@ -166,7 +166,7 @@ msgstr "A placa {{name}} non está dispoñible" msgid "Board {{name}} not connected" msgstr "Non se puido conectar á placa {{name}}" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Seleccionouse a placa {{name}}" @@ -174,21 +174,21 @@ msgstr "Seleccionouse a placa {{name}}" msgid "Bootloader not active" msgstr "O bootloader non está activo" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Sintetizar" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Sintetizado realizado" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Cancelar" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -205,7 +205,7 @@ msgstr "Catalán" msgid "Change Color" msgstr "" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -225,7 +225,7 @@ msgstr "Chinés" msgid "Choose a color:" msgstr "" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

configurar os drivers" msgid "Click here to install it" msgstr "Fai clic aquí para instalarlo" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Fai clic aquí para ver" @@ -258,15 +258,15 @@ msgstr "Non está permitido o reloxo nos buses de datos" msgid "Clone" msgstr "" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Pechar" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Código" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Colección" @@ -274,7 +274,7 @@ msgstr "Colección" msgid "Collection info" msgstr "Información da colección" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Non se definiu a información da colección {{collection}}" @@ -294,19 +294,19 @@ msgstr "Eliminouse a colección {{name}}" msgid "Collection {{name}} replaced" msgstr "Trocouse a colección {{name}}" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Seleccionouse a colección {{name}}" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Coleccións" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Saída de comandos" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Foro da comunidade" @@ -314,7 +314,7 @@ msgstr "Foro da comunidade" msgid "Configuration not completed" msgstr "Configuración non completada" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Constante" @@ -376,7 +376,7 @@ msgstr "" msgid "Deep Sky Blue" msgstr "" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Predeterminado" @@ -384,19 +384,19 @@ msgstr "Predeterminado" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Descripción" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Deshabilitar" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Desexa pechar a aplicación?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Desexa eliminar a colección {{name}}?" @@ -404,7 +404,7 @@ msgstr "Desexa eliminar a colección {{name}}?" msgid "Do you want to replace it?" msgstr "Desexa trocalo?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentación" @@ -412,7 +412,7 @@ msgstr "Documentación" msgid "Don’t display" msgstr "" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Controladores" @@ -450,7 +450,7 @@ msgstr "Editar" msgid "Edit the collection name" msgstr "Editar o nome da colección" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Habilitar" @@ -480,7 +480,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Introduza o nome do equipo remoto: usuario@equipo" @@ -488,7 +488,7 @@ msgstr "Introduza o nome do equipo remoto: usuario@equipo" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Erro: {{error}}" @@ -512,7 +512,7 @@ msgstr "Executando {{label}} remoto..." msgid "Export" msgstr "Exportar" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "" @@ -520,7 +520,7 @@ msgstr "" msgid "External collections" msgstr "Coleccións externas" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 #, fuzzy msgid "External collections updated" msgstr "Coleccións externas actualizadas" @@ -530,7 +530,7 @@ msgstr "Coleccións externas actualizadas" msgid "External plugins" msgstr "Plugins externas" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "Plugins externas actualizadas" @@ -609,7 +609,7 @@ msgstr "" msgid "Green Yellow" msgstr "" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Axuda" @@ -627,11 +627,11 @@ msgid "" "this board" msgstr "" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Imaxe" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Gardouse a imaxe {{name}}" @@ -639,15 +639,15 @@ msgstr "Gardouse a imaxe {{name}}" msgid "Indian Red" msgstr "" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Información" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Entrada" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "" @@ -669,12 +669,12 @@ msgstr "" msgid "Input ports" msgstr "Portos de entrada" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Instalar" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -751,7 +751,7 @@ msgstr "Conexión non válida: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Conexións de entrada múltiple non válida" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -759,7 +759,7 @@ msgstr "" msgid "Invalid project format" msgstr "O formato do proxecto non é válido" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -767,7 +767,7 @@ msgstr "" msgid "Italian" msgstr "" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -779,7 +779,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -815,11 +815,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Tamaño máximo do bus: 96 bits" @@ -827,7 +827,7 @@ msgstr "Tamaño máximo do bus: 96 bits" msgid "Medium Violet Red" msgstr "" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Memoria" @@ -836,7 +836,7 @@ msgstr "Memoria" msgid "Memory block names" msgstr "Nomes dos bloques de memoria" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Nome" @@ -865,12 +865,12 @@ msgstr "Nome:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Non hay coleccións gardadas" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "Aceptar" @@ -882,7 +882,7 @@ msgstr "" msgid "Open" msgstr "Abrir" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Abrir SVG" @@ -894,11 +894,11 @@ msgstr "" msgid "Original file {{file}} does not exist" msgstr "Non existe o ficheiro {{name}} orixinal" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Saída" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "" @@ -915,7 +915,7 @@ msgstr "" msgid "Output ports" msgstr "Portos de saída" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -923,12 +923,12 @@ msgstr "" msgid "Paste" msgstr "Pegar" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Non existe a ruta {{path}}" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Por favor executa: {{cmd}}" @@ -944,7 +944,7 @@ msgstr "" msgid "Project information" msgstr "Información do proxecto" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Información do proxecto actualizada" @@ -960,7 +960,7 @@ msgstr "Gardouse o proxecto {{name}}" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -980,7 +980,7 @@ msgstr "Refacer" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Recargar" @@ -992,11 +992,11 @@ msgstr "Non se puido conectar ó equipo remoto {{name}}" msgid "Remote hostname" msgstr "Nome do equipo remoto" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Eliminar" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Eliminar todo" @@ -1008,7 +1008,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Restablecer SVG" @@ -1024,7 +1024,7 @@ msgstr "" msgid "Save" msgstr "Gardar" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Gardar SVG" @@ -1032,7 +1032,7 @@ msgstr "Gardar SVG" msgid "Save as" msgstr "Gardar como" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "" @@ -1056,7 +1056,7 @@ msgstr "Mostrar reloxo" msgid "Slate Blue" msgstr "" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Código fonte" @@ -1068,15 +1068,15 @@ msgstr "Castelán" msgid "Spring Green" msgstr "" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Iniciando o sintetizado" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Iniciando a carga" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Iniciando a verificación" @@ -1109,7 +1109,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "Xa existe a colección {{name}}." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1148,7 +1148,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1162,7 +1162,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1174,7 +1174,7 @@ msgstr "" msgid "Toolbox" msgstr "Ferramentas" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Cadea de ferramentas" @@ -1195,11 +1195,11 @@ msgstr "Eliminouse a cadea de ferramentas" msgid "Toolchain version does not match" msgstr "A versión da cadea de ferramentas non coincide" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Ferramentas" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1207,11 +1207,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1223,10 +1223,18 @@ msgstr "" msgid "Turquoise" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Desfacer" @@ -1243,36 +1251,36 @@ msgstr "Non está soportado o formato {{version}} do proxecto." msgid "Untitled" msgstr "Sen título" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Cargar" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Carga realizada" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Verificación realizada" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Verificar" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Versión" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "" @@ -1280,14 +1288,18 @@ msgstr "" msgid "View" msgstr "Ver" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Ver licenza" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Advertencias detectadas no deseño" @@ -1297,7 +1309,7 @@ msgstr "Advertencias detectadas no deseño" msgid "Welcome to Icestudio!" msgstr "Acerca de Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Formato de bloque incorrecto: {{type}}" @@ -1319,25 +1331,25 @@ msgstr "O nome do equipo remoto {{name}} non é correcto" msgid "Yellow" msgstr "" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" msgstr "" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1349,13 +1361,13 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Pode cargalo como está ou convertelo para a placa {{name}}." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" msgstr "" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1365,7 +1377,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Os cambios realizados perderanse se non se gardan" @@ -1373,22 +1385,22 @@ msgstr "Os cambios realizados perderanse se non se gardan" msgid "back" msgstr "atrás" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "Precisase {{app}}." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "Non se definiu a folla de datos para a placa {{board}}" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "Non se definiu o pinout para a placa {{board}}" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "Non se definiron as regras para a placa {{board}}" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "Exportouse {{name}}" diff --git a/app/resources/locale/it_IT/it_IT.po b/app/resources/locale/it_IT/it_IT.po index be05bd4d1..e2ce89391 100644 --- a/app/resources/locale/it_IT/it_IT.po +++ b/app/resources/locale/it_IT/it_IT.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Informazioni su Icestudio" @@ -52,11 +52,11 @@ msgstr "Informazioni su Icestudio" msgid "Acknowledgment" msgstr "Riconoscimenti" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Aggiungi" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Aggiungere un blocco per iniziare" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Tutte le collezioni sono state rimosse" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 #, fuzzy msgid "All stored collections will be lost. Do you want to continue?" msgstr "Tutte le collezioni memorizzate saranno perse. Vuoi continuare?" @@ -98,11 +98,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "È richiesto almeno Python 3.7" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Autore" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Base" @@ -122,12 +122,12 @@ msgstr "Binario" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Aggiorna blocco" @@ -147,11 +147,11 @@ msgstr "Scheda" msgid "Board rules" msgstr "Regole della scheda" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Regola della scheda disabilitate" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Regole della scheda abilitate" @@ -167,7 +167,7 @@ msgstr "Scheda {{name}} non disponibile" msgid "Board {{name}} not connected" msgstr "Scheda {{name}} non connessa" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Scheda {{name}} selezionata" @@ -175,21 +175,21 @@ msgstr "Scheda {{name}} selezionata" msgid "Bootloader not active" msgstr "Bootloader non attivo" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Compila" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Compilazione terminata" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Cancella" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -207,7 +207,7 @@ msgstr "Catalano" msgid "Change Color" msgstr "Scegli un colore" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -228,7 +228,7 @@ msgstr "Cinese" msgid "Choose a color:" msgstr "Scegli un colore:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

impostare i drivers" msgid "Click here to install it" msgstr "Clicca qui per installarla" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Clicca qui per visualizzarlo" @@ -261,15 +261,15 @@ msgstr "Segnale di clock non permesso nei segnali di bus" msgid "Clone" msgstr "Clona" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Chiudi" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Codice" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Collezione" @@ -277,7 +277,7 @@ msgstr "Collezione" msgid "Collection info" msgstr "Informazioni della collezione" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "" "Le informazioni della collezione {{collection}} non sono state definite" @@ -298,19 +298,19 @@ msgstr "Collezione {{name}} rimossa" msgid "Collection {{name}} replaced" msgstr "Collezione {{name}} rimpiazzata" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Scheda {{name}} selezionata" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Collezioni" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Output dei comandi" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Forum della comunità" @@ -318,7 +318,7 @@ msgstr "Forum della comunità" msgid "Configuration not completed" msgstr "Configurazione non completata" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Costante" @@ -383,7 +383,7 @@ msgstr "RosaScuro" msgid "Deep Sky Blue" msgstr "BluCieloProfondo" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Predefinito" @@ -391,19 +391,19 @@ msgstr "Predefinito" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Descrizione" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Disattiva" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Vuoi chiudere l'applicazione?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Vuoi rimuovere la collezione {{name}}?" @@ -411,7 +411,7 @@ msgstr "Vuoi rimuovere la collezione {{name}}?" msgid "Do you want to replace it?" msgstr "Vuoi sostituirlo?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentazione" @@ -420,7 +420,7 @@ msgstr "Documentazione" msgid "Don’t display" msgstr "Non mostrare" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Drivers" @@ -458,7 +458,7 @@ msgstr "Modifica" msgid "Edit the collection name" msgstr "Modifica il nome della collezione" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Abilita" @@ -488,7 +488,7 @@ msgstr "" msgid "Enter the python path" msgstr "Inserisci il percorso file di python con versione > 3.8" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Inserisci il nome dell'host remoto user@host" @@ -496,7 +496,7 @@ msgstr "Inserisci il nome dell'host remoto user@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Errore: {{error}}" @@ -520,7 +520,7 @@ msgstr "Sto eseguendo {{label}} remotamente…" msgid "Export" msgstr "Esporta" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Esporta sottomodulo" @@ -528,7 +528,7 @@ msgstr "Esporta sottomodulo" msgid "External collections" msgstr "Collezioni esterne" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 #, fuzzy msgid "External collections updated" msgstr "Collezioni esterne aggiornate" @@ -537,7 +537,7 @@ msgstr "Collezioni esterne aggiornate" msgid "External plugins" msgstr "Plugin esterni" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "Plugin esterni aggiornati" @@ -616,7 +616,7 @@ msgstr "Greco" msgid "Green Yellow" msgstr "VerdeAcido" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Aiuto" @@ -636,11 +636,11 @@ msgid "" msgstr "" "Se hai pin IN/OUT vuoti, è perché non esiste un equivalente in questa scheda" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Immagine" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Immagine {{name}} salvata" @@ -649,15 +649,15 @@ msgstr "Immagine {{name}} salvata" msgid "Indian Red" msgstr "RossoIndiano" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Informazioni" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Ingresso" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Etichetta di Input" @@ -681,12 +681,12 @@ msgstr "Nomi delle porte di Input" msgid "Input ports" msgstr "Porte di Input" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Installa" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -761,7 +761,7 @@ msgstr "Connessione invalida: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Connessioni di multipli ingressi invalidi" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -769,7 +769,7 @@ msgstr "" msgid "Invalid project format" msgstr "Formato del progetto invalido" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "Italian" msgstr "Italiano" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -789,7 +789,7 @@ msgstr "Coreano" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -827,11 +827,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Dimensione massima del bus: 96 bits" @@ -840,7 +840,7 @@ msgstr "Dimensione massima del bus: 96 bits" msgid "Medium Violet Red" msgstr "RossoViolaceo" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Memoria" @@ -849,7 +849,7 @@ msgstr "Memoria" msgid "Memory block names" msgstr "Nomi dei blocchi di memoria" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Nome" @@ -878,13 +878,13 @@ msgstr "Nome:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 #, fuzzy msgid "No collections stored" msgstr "Nessuna collezioni memorizzata" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "OK" @@ -897,7 +897,7 @@ msgstr "VerdeOlivo" msgid "Open" msgstr "Apri" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Apri SVG" @@ -910,11 +910,11 @@ msgstr "RossoArancio" msgid "Original file {{file}} does not exist" msgstr "Filo originale {{file}} non esiste più" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Uscita" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Etichetta di Output" @@ -933,7 +933,7 @@ msgstr "Nomi delle porte di Output" msgid "Output ports" msgstr "Porte di Output" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -941,13 +941,13 @@ msgstr "" msgid "Paste" msgstr "Incolla" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 #, fuzzy msgid "Path {{path}} does not exist" msgstr "Il percorso {{path}}è inesistente" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Prego eseguire: {{cmd}}" @@ -963,7 +963,7 @@ msgstr "" msgid "Project information" msgstr "Informazioni del progetto" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Informazioni del progetto aggionate" @@ -979,7 +979,7 @@ msgstr "Progetto {{name}} salvato" msgid "Python environment" msgstr "Ambiente Python" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Ambiente Python aggiornato" @@ -1000,7 +1000,7 @@ msgstr "Ripeti" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Ricarica" @@ -1012,11 +1012,11 @@ msgstr "Host remoto {{name}} non connesso" msgid "Remote hostname" msgstr "Nome dell'host remoto" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Rimuovi" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Rimuovi tutti" @@ -1028,7 +1028,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Ripristina SVG" @@ -1045,7 +1045,7 @@ msgstr "Russo" msgid "Save" msgstr "Salva" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Salva come SVG" @@ -1053,7 +1053,7 @@ msgstr "Salva come SVG" msgid "Save as" msgstr "Salva come" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Salva sotto modulo" @@ -1078,7 +1078,7 @@ msgstr "Mostra segnale di clock" msgid "Slate Blue" msgstr "BluArdesia" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Codice sorgente" @@ -1091,15 +1091,15 @@ msgstr "Spagnolo" msgid "Spring Green" msgstr "VerdePrimavera" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Inizia compilazione" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Inizia caricamento" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Inizia verifica" @@ -1134,7 +1134,7 @@ msgstr ". Grazie mille" msgid "The collection {{name}} already exists." msgstr "La collezione {{name}} esiste già." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1173,7 +1173,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1194,7 +1194,7 @@ msgstr "" "Per navigare attraverso progetti, devi prima chiudere la \"modalità " "modifica\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1210,7 +1210,7 @@ msgstr "" msgid "Toolbox" msgstr "Strumenti" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1231,11 +1231,11 @@ msgstr "Toolchain rimossa" msgid "Toolchain version does not match" msgstr "La versione della Toolchain non corrisponde" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Strumenti" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1243,11 +1243,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1259,10 +1259,19 @@ msgstr "" msgid "Turquoise" msgstr "Turchese" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Tema UI" + #: app/views/menu.html:372 msgid "UI theme" msgstr "Tema UI" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Annulla" @@ -1279,36 +1288,36 @@ msgstr "Formato del progetto non supportato {{version}}" msgid "Untitled" msgstr "Senza titolo" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Carica" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Caricamento completato" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Verifica completata" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Verifica" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Versione" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Note sulla versione" @@ -1316,14 +1325,18 @@ msgstr "Note sulla versione" msgid "View" msgstr "Visualizza" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Visualizza licenza" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Si sono rilevate delle avvertenze nel design" @@ -1333,7 +1346,7 @@ msgstr "Si sono rilevate delle avvertenze nel design" msgid "Welcome to Icestudio!" msgstr "Informazioni su Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Formato del blocco erratot: {{type}}" @@ -1355,11 +1368,11 @@ msgstr "Nome dell'host remoto {{name}} errato" msgid "Yellow" msgstr "Giallo" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1369,15 +1382,15 @@ msgstr "" "sottomodulo (in questa situazione \"salva con nome\" funziona come \"esporta " "modulo\"), Continuare?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1389,7 +1402,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "Puoi caricarlo così come è o convertirlo per la scheda {{name}}" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1398,7 +1411,7 @@ msgstr "" "Puoi costruire solo sul design di primo livello. All'interno dei sottomodi è " "solo possibile Verificare" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1411,7 +1424,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "I tuoi progressi saranno perduti se non li salvi" @@ -1419,22 +1432,22 @@ msgstr "I tuoi progressi saranno perduti se non li salvi" msgid "back" msgstr "indietro" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} è richiesta." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "La scheda tecnica di {{board}} non è definita" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} piedinatura non definita" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "Regole di {{board}} non definite" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} esportato" diff --git a/app/resources/locale/ja_JP/ja_JP.po b/app/resources/locale/ja_JP/ja_JP.po index 121dd1d0c..8d0075aea 100644 --- a/app/resources/locale/ja_JP/ja_JP.po +++ b/app/resources/locale/ja_JP/ja_JP.po @@ -53,7 +53,7 @@ msgstr "" "これらを変更したくない場合は 編集 → 複製からブロックの複製を作成してく" "ださい。" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Icestudio について" @@ -61,11 +61,11 @@ msgstr "Icestudio について" msgid "Acknowledgment" msgstr "謝辞" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "追加" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "ブロックを追加して始める" @@ -85,7 +85,7 @@ msgstr "" msgid "All collections removed" msgstr "すべてのコレクションが削除されました" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "保存されているコレクションはすべて失われます。継続しますか?" @@ -105,11 +105,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Python 3.7 以上が必要です" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "作者" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "基本ブロック" @@ -130,12 +130,12 @@ msgstr "バイナリ" msgid "Bitstream not found: Build your project first" msgstr "ビットストリームが見つかりません: 先にプロジェクトをビルドしてください" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "ブロックが更新されました" @@ -155,11 +155,11 @@ msgstr "ボード" msgid "Board rules" msgstr "ボードルール" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "ボードルールが無効です" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "ボードルールが有効です" @@ -175,7 +175,7 @@ msgstr "ボード {{name}} は使えません" msgid "Board {{name}} not connected" msgstr "ボード {{name}} が接続されていません" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "ボード {{name}} が選択されました" @@ -183,21 +183,21 @@ msgstr "ボード {{name}} が選択されました" msgid "Bootloader not active" msgstr "ブートローダがアクティブでないです!" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "ビルド" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "ビルド完了" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "キャンセル" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -213,7 +213,7 @@ msgstr "" msgid "Change Color" msgstr "色を変更" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -233,7 +233,7 @@ msgstr "" msgid "Choose a color:" msgstr "色を選択:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

ドライバをセットアップ" msgid "Click here to install it" msgstr "ここをクリックしてインストール" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "ここをクリックして閲覧" @@ -267,15 +267,15 @@ msgstr "データバスにクロックを使用不可" msgid "Clone" msgstr "複製" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "閉じる" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "コード" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "コレクション" @@ -283,7 +283,7 @@ msgstr "コレクション" msgid "Collection info" msgstr "コレクションの詳細" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "コレクション {{collection}} の詳細が見つかりません" @@ -303,19 +303,19 @@ msgstr "コレクション {{name}} が削除されました" msgid "Collection {{name}} replaced" msgstr "コレクション {{name}} が置き換えられました" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "コレクション {{name}} が選択されました" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "コレクション" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "コマンド出力" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "コミュニティフォーラム" @@ -323,7 +323,7 @@ msgstr "コミュニティフォーラム" msgid "Configuration not completed" msgstr "設定が完了していません" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "定数" @@ -383,7 +383,7 @@ msgstr "" msgid "Deep Sky Blue" msgstr "" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "デフォルト" @@ -391,19 +391,19 @@ msgstr "デフォルト" msgid "Delete" msgstr "削除" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "説明" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "無効化" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "アプリケーションを終了しますか?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "コレクション {{name}} を削除しますか?" @@ -411,7 +411,7 @@ msgstr "コレクション {{name}} を削除しますか?" msgid "Do you want to replace it?" msgstr "置き換えますか?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "ドキュメント" @@ -420,7 +420,7 @@ msgstr "ドキュメント" msgid "Don’t display" msgstr "表示しない" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "ドライバ" @@ -459,7 +459,7 @@ msgstr "編集" msgid "Edit the collection name" msgstr "コレクションの名前を編集" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "有効化" @@ -487,7 +487,7 @@ msgstr "pipへのパスを入力" msgid "Enter the python path" msgstr "Pythonへのパスを入力" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "リモートホスト名を入力 user@host" @@ -495,7 +495,7 @@ msgstr "リモートホスト名を入力 user@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "エラー:{{error}}" @@ -519,7 +519,7 @@ msgstr "リモート {{label}} で実行…" msgid "Export" msgstr "エクスポート" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "サブモジュールをエクスポート" @@ -527,7 +527,7 @@ msgstr "サブモジュールをエクスポート" msgid "External collections" msgstr "外部接続" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "外部接続が更新されました" @@ -535,7 +535,7 @@ msgstr "外部接続が更新されました" msgid "External plugins" msgstr "外部プラグイン" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "外部プラグインが更新されました" @@ -614,7 +614,7 @@ msgstr "ギリシャ語" msgid "Green Yellow" msgstr "" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "ヘルプ" @@ -633,11 +633,11 @@ msgid "" "this board" msgstr "IN/OUTピンが空白であるのは、このボードに該当するピンがないためです" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "画像" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "画像 {{name}} が保存されました" @@ -645,15 +645,15 @@ msgstr "画像 {{name}} が保存されました" msgid "Indian Red" msgstr "" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "情報" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "入力" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 #, fuzzy msgid "Input label" msgstr "入力ラベル" @@ -676,11 +676,11 @@ msgstr "" msgid "Input ports" msgstr "入力ポート" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "インストール(安定版)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "インストール(開発版)" @@ -756,7 +756,7 @@ msgstr "無効な接続:{{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "無効な複数の入力接続" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 #, fuzzy msgid "Invalid new name!" msgstr "誤った名前!" @@ -765,7 +765,7 @@ msgstr "誤った名前!" msgid "Invalid project format" msgstr "無効なプロジェクトフォーマット" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 #, fuzzy msgid "Invalid search name!" msgstr "誤った検索名!" @@ -774,7 +774,7 @@ msgstr "誤った検索名!" msgid "Italian" msgstr "" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -787,7 +787,7 @@ msgstr "" msgid "Label finder" msgstr "ラベル検索" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "ラベルが更新されました" @@ -823,11 +823,11 @@ msgstr "ログ記録を有効化" msgid "Logging file" msgstr "ログファイル" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "ログファイルが更新されました" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "最大のバス幅:96 ビット" @@ -835,7 +835,7 @@ msgstr "最大のバス幅:96 ビット" msgid "Medium Violet Red" msgstr "" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "メモリ" @@ -844,7 +844,7 @@ msgstr "メモリ" msgid "Memory block names" msgstr "メモリブロック" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "名前" @@ -873,12 +873,12 @@ msgstr "新しい名前:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "" @@ -890,7 +890,7 @@ msgstr "" msgid "Open" msgstr "開く" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "SVG を開く" @@ -902,11 +902,11 @@ msgstr "" msgid "Original file {{file}} does not exist" msgstr "オリジナルのファイル{{file}}が存在しない" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "出力" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 #, fuzzy msgid "Output label" msgstr "出力ラベル" @@ -925,7 +925,7 @@ msgstr "出力ポート名" msgid "Output ports" msgstr "出力ポート" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -933,12 +933,12 @@ msgstr "" msgid "Paste" msgstr "ペースト" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "パス {{path}} が存在しません" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "次のコマンドを実行してください: {{cmd}}" @@ -954,7 +954,7 @@ msgstr "" msgid "Project information" msgstr "プロジェクトの情報" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "プロジェクトの情報が更新されました" @@ -970,7 +970,7 @@ msgstr "プロジェクト {{name}} が保存されました" msgid "Python environment" msgstr "Python 環境" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Python 環境がアップデートされました" @@ -991,7 +991,7 @@ msgstr "やり直す" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "リロード" @@ -1003,11 +1003,11 @@ msgstr "リモートホスト {{name}} は接続されていません" msgid "Remote hostname" msgstr "ホスト名を削除" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "削除" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "全て削除" @@ -1019,7 +1019,7 @@ msgstr "全て置き換える" msgid "Replace One" msgstr "置き換える" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "SVGをリセット" @@ -1035,7 +1035,7 @@ msgstr "" msgid "Save" msgstr "保存" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "SVG を保存" @@ -1043,7 +1043,7 @@ msgstr "SVG を保存" msgid "Save as" msgstr "名前を付けて保存" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "サブモジュールを保存" @@ -1067,7 +1067,7 @@ msgstr "クロックを確認" msgid "Slate Blue" msgstr "" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "ソースコード" @@ -1079,15 +1079,15 @@ msgstr "" msgid "Spring Green" msgstr "" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "ビルド開始" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "アップロード開始" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "検証を開始" @@ -1120,7 +1120,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "コレクション {{name}} は既に存在します。" -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " "the {{name}} board?" @@ -1156,7 +1156,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1174,7 +1174,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "デザインを操作するには、「編集モード」を終了する必要があります。" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1188,7 +1188,7 @@ msgstr "" msgid "Toolbox" msgstr "ツールボックス" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "ツールチェーン" @@ -1209,11 +1209,11 @@ msgstr "ツールチェーンが削除されました" msgid "Toolchain version does not match" msgstr "ツールチェーンのバージョンが適合しません" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "ツール" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1221,11 +1221,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1237,10 +1237,19 @@ msgstr "" msgid "Turquoise" msgstr "" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "UI テーマ" + #: app/views/menu.html:372 msgid "UI theme" msgstr "UI テーマ" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "戻す" @@ -1257,36 +1266,36 @@ msgstr "非対応のプロジェクトフォーマット {{version}}" msgid "Untitled" msgstr "無名" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "アップデート(最新の安定版)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "アップロード" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "アップロード完了" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "検証完了" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "検証" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "バージョン" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "バージョン情報" @@ -1294,14 +1303,18 @@ msgstr "バージョン情報" msgid "View" msgstr "表示" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "ライセンスを確認" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "デザインで検出された警告" @@ -1310,7 +1323,7 @@ msgstr "デザインで検出された警告" msgid "Welcome to Icestudio!" msgstr "Icestudio へようこそ!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "誤ったブロックフォーマット:{{type}}" @@ -1332,11 +1345,11 @@ msgstr "誤ったリモートホスト名 {{name}}" msgid "Yellow" msgstr "" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" @@ -1345,15 +1358,15 @@ msgstr "" "れます(「名前を付けて保存」は「モジュールのエクスポート」のように機能しま" "す)。保存しますか?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 #, fuzzy msgid "" "You are navigating into the design: If you want to save the entire design, " @@ -1369,7 +1382,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "そのまま読み込むか、ボード {{name}} 用に変換することができます。" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" @@ -1377,7 +1390,7 @@ msgstr "" "ビルドはデザインのトップレベルでのみ可能です。サブモジュールでは検証" "のみ可能です" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1389,7 +1402,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "リリースノートは以下で読むことができます" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "保存しないと変更内容が失われます" @@ -1397,22 +1410,22 @@ msgstr "保存しないと変更内容が失われます" msgid "back" msgstr "戻る" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} が必要です。" -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} のデータシートが未定義" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} のピンアウトが未定義" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} のルールが未定義" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} がエクスポートされました" diff --git a/app/resources/locale/ko_KR/ko_KR.po b/app/resources/locale/ko_KR/ko_KR.po index 3b642d1f6..1c0a97d61 100644 --- a/app/resources/locale/ko_KR/ko_KR.po +++ b/app/resources/locale/ko_KR/ko_KR.po @@ -47,7 +47,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Icestudio에 대해" @@ -55,11 +55,11 @@ msgstr "Icestudio에 대해" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "더하기" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "시작하기 위해 블럭 더하기" @@ -79,7 +79,7 @@ msgstr "" msgid "All collections removed" msgstr "선택한 것들 모두 지우기" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "저장된 모든 컬렉션이 손실될 것입니다. 계속하시곘습니까? " @@ -100,11 +100,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "파이썬 3.7이 필요합니다" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "작가 " -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "기초 " @@ -124,12 +124,12 @@ msgstr "2진수 " msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "블록 업데이트 " @@ -149,11 +149,11 @@ msgstr "보드 " msgid "Board rules" msgstr "보드 규칙" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "보드 규칙이 지켜지지 않았습니다" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "보드 룰을 사용할 수 있습니다" @@ -169,7 +169,7 @@ msgstr "보드 {{name}} 불가능" msgid "Board {{name}} not connected" msgstr "보드 {{name}} 연결되지 않았음" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "보드 {{name}} 선택됨 " @@ -177,21 +177,21 @@ msgstr "보드 {{name}} 선택됨 " msgid "Bootloader not active" msgstr "부트로더가 활성화되지 않음 " -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "만들기" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "만들기 완료 " #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "취소 " -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -209,7 +209,7 @@ msgstr "카탈란어" msgid "Change Color" msgstr "색깔을 선택하세요" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -230,7 +230,7 @@ msgstr "중국" msgid "Choose a color:" msgstr "색깔을 선택하세요:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

드라이버를 설정하세요." msgid "Click here to install it" msgstr "설치하려면 여기를 클릭하세요" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "확인하려면 여기를 클릭하세요" @@ -263,15 +263,15 @@ msgstr "데이터 버스에는 클럭이 허용되지 않습니다" msgid "Clone" msgstr "복제 " -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "닫기" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "코드" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "컬렉션 " @@ -279,7 +279,7 @@ msgstr "컬렉션 " msgid "Collection info" msgstr "컬렉션 정보" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "컬렉션 {{collection}} 정보가 정의되지 않았습니다" @@ -299,19 +299,19 @@ msgstr "컬렉션 {{name}} 삭제 " msgid "Collection {{name}} replaced" msgstr "컬렉션 {{name}} 교체" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "컬렉션 {{name}} 선택 " -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "컬렉션들 " -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "명령 출력" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "커뮤니티 포럼" @@ -319,7 +319,7 @@ msgstr "커뮤니티 포럼" msgid "Configuration not completed" msgstr "구성이 완료되지 않음" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "정수" @@ -385,7 +385,7 @@ msgstr "진분홍" msgid "Deep Sky Blue" msgstr "진파랑" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "기본값" @@ -393,19 +393,19 @@ msgstr "기본값" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "설명" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "불가" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "응용 프로그램을 닫으시겠습니까?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "{{name}} 컬렉션을 삭제하시겠습니까?" @@ -413,7 +413,7 @@ msgstr "{{name}} 컬렉션을 삭제하시겠습니까?" msgid "Do you want to replace it?" msgstr "교체하시겠습니까?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "문ㅅ" @@ -422,7 +422,7 @@ msgstr "문ㅅ" msgid "Don’t display" msgstr "표시 안 함" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "드라이버" @@ -461,7 +461,7 @@ msgstr "편집" msgid "Edit the collection name" msgstr "컬렉션 이름 편집" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "가능" @@ -490,7 +490,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "원격 호스트 이름 user@host를 입력하십시오" @@ -498,7 +498,7 @@ msgstr "원격 호스트 이름 user@host를 입력하십시오" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "에러:{{error}}" @@ -522,7 +522,7 @@ msgstr "원격 {{label}} 시행..." msgid "Export" msgstr "추출하다" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "서브모듈을 추출하기" @@ -530,7 +530,7 @@ msgstr "서브모듈을 추출하기" msgid "External collections" msgstr "외부의 콜렉션들" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "외부의 콜렉션들이 업데이트 되었습니다" @@ -539,7 +539,7 @@ msgstr "외부의 콜렉션들이 업데이트 되었습니다" msgid "External plugins" msgstr "외부의 콜렉션들" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "외부의 콜렉션들이 업데이트 되었습니다" @@ -619,7 +619,7 @@ msgstr "그리스어" msgid "Green Yellow" msgstr "녹노랑" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "도움" @@ -638,11 +638,11 @@ msgid "" "this board" msgstr "빈 IN/OUT 핀이 있는 경우, 이 보드에 동일한 핀이 없기 때문이다" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "사진" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "사진 {{name}}이 저장되었음" @@ -651,15 +651,15 @@ msgstr "사진 {{name}}이 저장되었음" msgid "Indian Red" msgstr "인디안 빨강" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "정보" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "입력" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 #, fuzzy msgid "Input label" msgstr "입력 라벨" @@ -683,12 +683,12 @@ msgstr "" msgid "Input ports" msgstr "입력 포트 입력" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "설치" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -761,7 +761,7 @@ msgstr "잘못된 연결: {{a} → {{b}}" msgid "Invalid multiple input connections" msgstr "잘못된 다중 입력 연결" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -769,7 +769,7 @@ msgstr "" msgid "Invalid project format" msgstr "잘못된 프로젝트 형식" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "Italian" msgstr "이탈리아어" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -789,7 +789,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -827,11 +827,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "최대 버스 크기: 96비트" @@ -840,7 +840,7 @@ msgstr "최대 버스 크기: 96비트" msgid "Medium Violet Red" msgstr "미디엄 바이올렛 레드" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "메모리" @@ -848,7 +848,7 @@ msgstr "메모리" msgid "Memory block names" msgstr "" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "이름" @@ -877,12 +877,12 @@ msgstr "이름:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "저장된 컬렉션 없음" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "알겠습니다" @@ -895,7 +895,7 @@ msgstr "생기없는 올리브" msgid "Open" msgstr "열기" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "SVG 열기" @@ -908,11 +908,11 @@ msgstr "오렌지 레드" msgid "Original file {{file}} does not exist" msgstr "원본 파일 {{file}} 이 존재하지 않습니다" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "출력" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 #, fuzzy msgid "Output label" msgstr "출력 라벨" @@ -930,7 +930,7 @@ msgstr "" msgid "Output ports" msgstr "" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -938,12 +938,12 @@ msgstr "" msgid "Paste" msgstr "붙여넣기" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "경로 {{path}} 가 존재하지 않습니다" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "작동: {{cmd}}" @@ -959,7 +959,7 @@ msgstr "" msgid "Project information" msgstr "프로젝트 정보" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "프로젝트 정보가 업데이트되었습니다" @@ -975,7 +975,7 @@ msgstr "프로젝트 {{name}}이 저장되었습니다" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -995,7 +995,7 @@ msgstr "다시하기" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "다시로드하기" @@ -1007,11 +1007,11 @@ msgstr "원격 호스트 {{name}}이 연결되지 않음" msgid "Remote hostname" msgstr "원격 호스트이름" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "지우기" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "모두 지우기" @@ -1023,7 +1023,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "SVG 재설정" @@ -1040,7 +1040,7 @@ msgstr "러시아어" msgid "Save" msgstr "저장하다" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "SVG 저장" @@ -1048,7 +1048,7 @@ msgstr "SVG 저장" msgid "Save as" msgstr "다른이름으로 저장하기" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "서브모듈 저장" @@ -1073,7 +1073,7 @@ msgstr "시계를 표시" msgid "Slate Blue" msgstr "슬레이트 블루" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "소스코드" @@ -1086,15 +1086,15 @@ msgstr "스페인어" msgid "Spring Green" msgstr "봄 초록" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "빌드 시작" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "업로드 시작" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "검증 시작" @@ -1128,7 +1128,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "컬렉션 {{name}}이(가) 이미 존재합니다." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1165,7 +1165,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1183,7 +1183,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "디자인을 보기위해서는, \"편집모드\"를 닫아야합니다." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1199,7 +1199,7 @@ msgstr "" msgid "Toolbox" msgstr "도구들" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "툴체인" @@ -1220,11 +1220,11 @@ msgstr "툴체인이 제거되었음" msgid "Toolchain version does not match" msgstr "Toolchain 버전이 일치하지 않음" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "도구들" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1232,11 +1232,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1248,10 +1248,18 @@ msgstr "" msgid "Turquoise" msgstr "터키옥" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "뒤로가기" @@ -1268,36 +1276,36 @@ msgstr "지원되지 않는 프로젝트 형식 {{version}}" msgid "Untitled" msgstr "제목이 없음" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "업로드" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "업로드 완료" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "검증 완료" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "입증하다" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "버전" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "버전 노트" @@ -1305,14 +1313,18 @@ msgstr "버전 노트" msgid "View" msgstr "보기" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "라이선스 보기" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "설계에서 경고가 감지되었습니다" @@ -1322,7 +1334,7 @@ msgstr "설계에서 경고가 감지되었습니다" msgid "Welcome to Icestudio!" msgstr "Icestudio에 대해" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "잘못된 블록 형식: {{type}}" @@ -1344,11 +1356,11 @@ msgstr "잘못된 원격 호스트 이름 {{name}}" msgid "Yellow" msgstr "노란색" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1357,15 +1369,15 @@ msgstr "" "서브모듈을 편집하는 중에 서브모듈만 저장하면(이 경우 \"추출 된 모듈\"과 같은 " "\"저장\"이 작동함), 계속하시겠습니까?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1377,7 +1389,7 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "그대로 로드하거나 {{name}}보드로 변환 할 수 있다." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1386,7 +1398,7 @@ msgstr "" "최상위 레벨 디자인만을 빌드할 수 있습니다.서브모듈은 오직 입증만 가" "능합니다" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1399,7 +1411,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "변경사항을 저장하지 않으면 변경내용이 손실 될 것입니다" @@ -1407,22 +1419,22 @@ msgstr "변경사항을 저장하지 않으면 변경내용이 손실 될 것입 msgid "back" msgstr "뒤로가기" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{앱}}이 필요합니다." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}}데이터시트가 정의되지 않았습니다" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}}핀아웃이 정의되지 않았습니다" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} 규칙이 정의되지 않았습니다" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} 이 추출되었습니다" diff --git a/app/resources/locale/nl_NL/nl_NL.po b/app/resources/locale/nl_NL/nl_NL.po index 42891efde..f867c5616 100644 --- a/app/resources/locale/nl_NL/nl_NL.po +++ b/app/resources/locale/nl_NL/nl_NL.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Over Icestudio" @@ -52,11 +52,11 @@ msgstr "Over Icestudio" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Plaatsen" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Plaats een blok om te beginnen" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Alle collecties zijn verwijderd" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Alle opgeslagen collecties worden verwijderd. Doorgaan?" @@ -97,11 +97,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Python 3.7 is vereist" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Auteur" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Standaard" @@ -121,12 +121,12 @@ msgstr "Binaire" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Blok bijgewerkt" @@ -146,11 +146,11 @@ msgstr "Bord" msgid "Board rules" msgstr "Bord regels" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Bord regels gedesactiveerd" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Bord regels geactiveerd" @@ -166,7 +166,7 @@ msgstr "Bord {{naam}} niet beschikbaar" msgid "Board {{name}} not connected" msgstr "Bord {{naam}} niet aangesloten" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Bord {{name}} geselecteerd" @@ -174,21 +174,21 @@ msgstr "Bord {{name}} geselecteerd" msgid "Bootloader not active" msgstr "Bootloader niet actief" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Maken" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Maken voltooid" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Annuleren" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -205,7 +205,7 @@ msgstr "Catalaans" msgid "Change Color" msgstr "" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -225,7 +225,7 @@ msgstr "Chinees" msgid "Choose a color:" msgstr "" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

nieuwe drivers te installeren" msgid "Click here to install it" msgstr "Klik hier om te installeren" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Klik hier om te bekijken" @@ -258,15 +258,15 @@ msgstr "Klok is niet toegestaan op databussen" msgid "Clone" msgstr "" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Sluiten" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Code" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Collectie" @@ -274,7 +274,7 @@ msgstr "Collectie" msgid "Collection info" msgstr "Collectie-informatie" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Collectie {{collection}} informatie niet gedefinieerd" @@ -294,19 +294,19 @@ msgstr "Collectie {{name}} verwijderd" msgid "Collection {{name}} replaced" msgstr "Collectie {{name}} vervangen" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Collectie {{name}} geselecteerd" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Collecties" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Commando resultaat" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Gemeenschapsforum" @@ -314,7 +314,7 @@ msgstr "Gemeenschapsforum" msgid "Configuration not completed" msgstr "Configuratie niet voltooid" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Constant" @@ -376,7 +376,7 @@ msgstr "" msgid "Deep Sky Blue" msgstr "" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Standaard" @@ -384,19 +384,19 @@ msgstr "Standaard" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Beschrijving" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Desactiveren" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Programma sluiten?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Collectie {{name}} verwijderen?" @@ -404,7 +404,7 @@ msgstr "Collectie {{name}} verwijderen?" msgid "Do you want to replace it?" msgstr "Vervangen?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Documentatie" @@ -412,7 +412,7 @@ msgstr "Documentatie" msgid "Don’t display" msgstr "" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Drivers" @@ -450,7 +450,7 @@ msgstr "Bewerken" msgid "Edit the collection name" msgstr "Bewerk de naam van de collectie" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Activeren" @@ -480,7 +480,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Voer de externe hostnaam user@host in" @@ -488,7 +488,7 @@ msgstr "Voer de externe hostnaam user@host in" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Fout: {{error}}" @@ -512,7 +512,7 @@ msgstr "Executeer externe {{label}} ..." msgid "Export" msgstr "Exporteren" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "" @@ -520,7 +520,7 @@ msgstr "" msgid "External collections" msgstr "Externe collecties" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Externe collecties bijgewerkt" @@ -529,7 +529,7 @@ msgstr "Externe collecties bijgewerkt" msgid "External plugins" msgstr "Externe plug-ins" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "Externe plug-ins bijgewerkt" @@ -608,7 +608,7 @@ msgstr "" msgid "Green Yellow" msgstr "" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Help" @@ -626,11 +626,11 @@ msgid "" "this board" msgstr "" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Afbeelding" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Afbeelding {{name}} opgeslagen" @@ -638,15 +638,15 @@ msgstr "Afbeelding {{name}} opgeslagen" msgid "Indian Red" msgstr "" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Informatie" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Ingang" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "" @@ -668,12 +668,12 @@ msgstr "" msgid "Input ports" msgstr "Ingangspoorten" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Installeren" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -748,7 +748,7 @@ msgstr "Ongeldige aansluiting: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Ongeldige meervoudige ingangsaansluitingen" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -756,7 +756,7 @@ msgstr "" msgid "Invalid project format" msgstr "Ongeldig projectformaat" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -764,7 +764,7 @@ msgstr "" msgid "Italian" msgstr "" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -776,7 +776,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -812,11 +812,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Maximale busbreedte: 96 bits" @@ -824,7 +824,7 @@ msgstr "Maximale busbreedte: 96 bits" msgid "Medium Violet Red" msgstr "" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Geheugen" @@ -833,7 +833,7 @@ msgstr "Geheugen" msgid "Memory block names" msgstr "Geheugenbloknamen" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Naam" @@ -862,12 +862,12 @@ msgstr "Naam:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Geen collecties" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "OK" @@ -879,7 +879,7 @@ msgstr "" msgid "Open" msgstr "Openen" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Open SVG" @@ -891,11 +891,11 @@ msgstr "" msgid "Original file {{file}} does not exist" msgstr "Originele bestand {{file}} bestaat niet" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Uitgang" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "" @@ -912,7 +912,7 @@ msgstr "" msgid "Output ports" msgstr "Uitgangspoorten" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -920,12 +920,12 @@ msgstr "" msgid "Paste" msgstr "Plakken" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Pad {{file}} bestaat niet" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Voer uit: {{cmd}}" @@ -941,7 +941,7 @@ msgstr "" msgid "Project information" msgstr "Projectinformatie" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Projectinformatie bijgewerkt" @@ -957,7 +957,7 @@ msgstr "Project {{name}} opgeslagen" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -978,7 +978,7 @@ msgstr "Opnieuw" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Herladen" @@ -990,11 +990,11 @@ msgstr "Externe host {{name}} niet verbonden" msgid "Remote hostname" msgstr "Externe hostnaam" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Verwijderen" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Alles verwijderen" @@ -1006,7 +1006,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Reset SVG" @@ -1022,7 +1022,7 @@ msgstr "" msgid "Save" msgstr "Opslaan" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "SVG opslaan" @@ -1030,7 +1030,7 @@ msgstr "SVG opslaan" msgid "Save as" msgstr "Opslaan als" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "" @@ -1056,7 +1056,7 @@ msgstr "" msgid "Slate Blue" msgstr "" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Broncode" @@ -1068,15 +1068,15 @@ msgstr "Spaans" msgid "Spring Green" msgstr "" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Maken starten" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Upload starten" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Verificatie starten" @@ -1109,7 +1109,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "Collectie {{name}} bestaat al." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1148,7 +1148,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1162,7 +1162,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " @@ -1174,7 +1174,7 @@ msgstr "" msgid "Toolbox" msgstr "Gereedschappen" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Toolchain" @@ -1195,11 +1195,11 @@ msgstr "Toolchain verwijderd" msgid "Toolchain version does not match" msgstr "Toolchain versie komt niet overeen" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Gereedschappen" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1207,11 +1207,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1223,10 +1223,18 @@ msgstr "" msgid "Turquoise" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Ongedaan maken" @@ -1243,36 +1251,36 @@ msgstr "Niet-ondersteund projectformaat {{version}}" msgid "Untitled" msgstr "Naamloos" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Uploaden" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Uploaden voltooid" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Verificatie voltooid" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Verifiëren" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Versie" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "" @@ -1280,14 +1288,18 @@ msgstr "" msgid "View" msgstr "Bekijken" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Bekijk licentie" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Het ontwerp bevat waarschuwingen" @@ -1297,7 +1309,7 @@ msgstr "Het ontwerp bevat waarschuwingen" msgid "Welcome to Icestudio!" msgstr "Over Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Verkeerd blokformaat: {{type}}" @@ -1319,25 +1331,25 @@ msgstr "Verkeerde externe hostnaam {{name}}" msgid "Yellow" msgstr "" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" msgstr "" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1349,13 +1361,13 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "U kunt het laden zoals het is of converteren voor het {{name}} bord." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" msgstr "" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" @@ -1365,7 +1377,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Uw wijzigingen gaan verloren als u ze niet opslaat" @@ -1373,22 +1385,22 @@ msgstr "Uw wijzigingen gaan verloren als u ze niet opslaat" msgid "back" msgstr "terug" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} is vereist." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} datasheet niet gedefinieerd" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} pinning niet gedefinieerd" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} regels niet gedefinieerd" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} geëxporteerd" diff --git a/app/resources/locale/ru_RU/ru_RU.po b/app/resources/locale/ru_RU/ru_RU.po index 250f59122..a5aa4598c 100644 --- a/app/resources/locale/ru_RU/ru_RU.po +++ b/app/resources/locale/ru_RU/ru_RU.po @@ -45,7 +45,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "О программе" @@ -53,11 +53,11 @@ msgstr "О программе" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Добавить" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Добавить блок в начало" @@ -77,7 +77,7 @@ msgstr "" msgid "All collections removed" msgstr "Все коллекции удалены" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Все сохраненные коллеции будут удалены. Продолжить ?" @@ -98,11 +98,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Необходим Python 3.7 или новее" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Автор" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Базовый" @@ -122,12 +122,12 @@ msgstr "Бинарный" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Блок обновлен" @@ -147,11 +147,11 @@ msgstr "Плата" msgid "Board rules" msgstr "Правила платы" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Правила платы отключены" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Правила платы включены" @@ -167,7 +167,7 @@ msgstr "Плата {{name}} недоступна" msgid "Board {{name}} not connected" msgstr "Board {{name}} не подключена" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Выбрана плата {{name}}" @@ -175,21 +175,21 @@ msgstr "Выбрана плата {{name}}" msgid "Bootloader not active" msgstr "Загрузчик не активен" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Собрать" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Сборка закончена" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Отменить" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -207,7 +207,7 @@ msgstr "Каталонский" msgid "Change Color" msgstr "Выберите цвет" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -228,7 +228,7 @@ msgstr "Китайский" msgid "Choose a color:" msgstr "Выберите цвет:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

для установки драйверо msgid "Click here to install it" msgstr "Нажмите для установки" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Нажмите для просмотра" @@ -261,15 +261,15 @@ msgstr "Сигнал тактирования не разрешен для ши msgid "Clone" msgstr "Клонировать" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Закрыть" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Код" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Коллекция" @@ -277,7 +277,7 @@ msgstr "Коллекция" msgid "Collection info" msgstr "Информация о коллекции" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Информация для {{collection}} не задана" @@ -297,19 +297,19 @@ msgstr "Коллекция {{name}} удалена" msgid "Collection {{name}} replaced" msgstr "Коллекция {{name}} замещена" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Коллекция {{name}} выбрана" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Коллекции" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Вывод команды" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Форум сообщества" @@ -317,7 +317,7 @@ msgstr "Форум сообщества" msgid "Configuration not completed" msgstr "Конфигурация неполна" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Константа" @@ -383,7 +383,7 @@ msgstr "Тёмно-розовый" msgid "Deep Sky Blue" msgstr "Тёмно-лазурный" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "По умолчанию" @@ -391,19 +391,19 @@ msgstr "По умолчанию" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Описание" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Отключить" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Закрыть приложение ?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Удалить коллекцию {{name}} ?" @@ -411,7 +411,7 @@ msgstr "Удалить коллекцию {{name}} ?" msgid "Do you want to replace it?" msgstr "Заменить ?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Документация" @@ -420,7 +420,7 @@ msgstr "Документация" msgid "Don’t display" msgstr "Не показывать" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Драйвера" @@ -458,7 +458,7 @@ msgstr "Редактировать" msgid "Edit the collection name" msgstr "Редактировать имя коллекции" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Включить" @@ -488,7 +488,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Удаленный хост в формате user@host" @@ -496,7 +496,7 @@ msgstr "Удаленный хост в формате user@host" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Ошибка: {{error}}" @@ -520,7 +520,7 @@ msgstr "Выполняется удаленно {{label}} ..." msgid "Export" msgstr "Экспорт" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Экспорт субмодуля" @@ -528,7 +528,7 @@ msgstr "Экспорт субмодуля" msgid "External collections" msgstr "Сторонняя коллекция" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Сторонние коллекции обновлены" @@ -537,7 +537,7 @@ msgstr "Сторонние коллекции обновлены" msgid "External plugins" msgstr "Сторонняя коллекция" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "Сторонние коллекции обновлены" @@ -617,7 +617,7 @@ msgstr "Греческий" msgid "Green Yellow" msgstr "Зелёно-жёлтый" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Помощь" @@ -636,11 +636,11 @@ msgid "" "this board" msgstr "Могли остаться пустые пины, потому что на этой плате нет эквивалента" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Изображение" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Изображение {{name}} сохранено" @@ -649,15 +649,15 @@ msgstr "Изображение {{name}} сохранено" msgid "Indian Red" msgstr "Ярко-красный" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Информация" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Ввод" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Метка ввода" @@ -680,12 +680,12 @@ msgstr "" msgid "Input ports" msgstr "Входные порты" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Установить (Стабильная версия)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Установить (В разработке)" @@ -765,7 +765,7 @@ msgstr "Неверное соединение: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Неправильные множественные соединения" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -773,7 +773,7 @@ msgstr "" msgid "Invalid project format" msgstr "Неправильный формат проекта" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -781,7 +781,7 @@ msgstr "" msgid "Italian" msgstr "Итальянский" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -793,7 +793,7 @@ msgstr "Корейский" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -831,11 +831,11 @@ msgstr "" msgid "Logging file" msgstr "Файл журнала" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Файл журнала обновлен" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Максимальный размер шины: 96 бит" @@ -844,7 +844,7 @@ msgstr "Максимальный размер шины: 96 бит" msgid "Medium Violet Red" msgstr "Умеренный красно-фиолетовый" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Память" @@ -853,7 +853,7 @@ msgstr "Память" msgid "Memory block names" msgstr "Блоки памяти" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Имя" @@ -883,12 +883,12 @@ msgstr "Новое имя:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Нет сохраненных коллекций" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "ОК" @@ -901,7 +901,7 @@ msgstr "Тускло-коричневый" msgid "Open" msgstr "Открыть" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Открыть SVG" @@ -914,11 +914,11 @@ msgstr "Оранжево-красный" msgid "Original file {{file}} does not exist" msgstr "Оригинальный файл {{file}} не существует" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Вывод" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Метка вывода" @@ -936,7 +936,7 @@ msgstr "" msgid "Output ports" msgstr "Выходные порты" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "Парные метки" @@ -944,12 +944,12 @@ msgstr "Парные метки" msgid "Paste" msgstr "Вставить" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Путь {{path}} не существует" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Выполните команду: {{cmd}}" @@ -965,7 +965,7 @@ msgstr "" msgid "Project information" msgstr "Информация о проекте" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Информация о проекте обновлена" @@ -981,7 +981,7 @@ msgstr "Проект {{name}} сохранен" msgid "Python environment" msgstr "Среда Python" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Среда Python обновлена" @@ -1002,7 +1002,7 @@ msgstr "Повторить" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Перезагрузить" @@ -1014,11 +1014,11 @@ msgstr "Удаленный хост {{name}} не подключен" msgid "Remote hostname" msgstr "Удаленный хост" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Удалить" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Удалить все" @@ -1030,7 +1030,7 @@ msgstr "Заменить ВСЕ" msgid "Replace One" msgstr "Заменить один" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Убрать SVG" @@ -1047,7 +1047,7 @@ msgstr "Русский" msgid "Save" msgstr "Сохранить" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Сохранить SVG" @@ -1055,7 +1055,7 @@ msgstr "Сохранить SVG" msgid "Save as" msgstr "Сохранить как" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Сохранить субмодуль" @@ -1080,7 +1080,7 @@ msgstr "Показать тактирование" msgid "Slate Blue" msgstr "Серовато-синий" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Исходный код" @@ -1093,15 +1093,15 @@ msgstr "Испанский" msgid "Spring Green" msgstr "Весенний зелёный" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Запуск сборки" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Запуск загрузки в плату" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Запуск проверки" @@ -1135,7 +1135,7 @@ msgstr "Большое спасибо!" msgid "The collection {{name}} already exists." msgstr "Коллекция {{name}} уже существует." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1174,7 +1174,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1193,7 +1193,7 @@ msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "" "Для перемещения по схеме, вы должны сперва закрыть \"режим редактирования\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1209,7 +1209,7 @@ msgstr "" msgid "Toolbox" msgstr "Инструменты" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Набор инструментов" @@ -1230,11 +1230,11 @@ msgstr "Набор инструментов удален" msgid "Toolchain version does not match" msgstr "Версии инструментов не совпадают" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Инструменты" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1242,11 +1242,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1258,10 +1258,19 @@ msgstr "Турецкий" msgid "Turquoise" msgstr "Бирюзовый" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Тема интерфейса" + #: app/views/menu.html:372 msgid "UI theme" msgstr "Тема интерфейса" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Отменить" @@ -1278,37 +1287,37 @@ msgstr "Неподдерживаемый формат проекта {{version}} msgid "Untitled" msgstr "Безымянный" -#: app/views/menu.html:639 +#: app/views/menu.html:643 #, fuzzy msgid "Update (Latest stable)" msgstr "Обновить (последняя стабильная версия)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Загрузка" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Загрузка завершена" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Проверка завершена" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Проверка" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Версия" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Комментарии к этой версии" @@ -1316,14 +1325,18 @@ msgstr "Комментарии к этой версии" msgid "View" msgstr "Вид" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Просмотр лицензии" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Предупреждения в схеме" @@ -1333,7 +1346,7 @@ msgstr "Предупреждения в схеме" msgid "Welcome to Icestudio!" msgstr "Добро пожаловать в Icestudio!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Неправильный формат блока: {{type}}" @@ -1355,11 +1368,11 @@ msgstr "Неправильный удаленный хост {{name}}" msgid "Yellow" msgstr "Желтый" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1369,15 +1382,15 @@ msgstr "" "субмодуль (в таких случаях команда \"Сохранить как\" работает как \"Экспорт " "модуля\"). Вы хотите продолжить?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1391,7 +1404,7 @@ msgstr "" "Вы можете загрузить проект \"как есть\" или сконвертировать для платы " "{{name}}" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1400,7 +1413,7 @@ msgstr "" "Сборка возможна на верхнем уровне. В субмодулях доступна только " "Проверка" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1413,7 +1426,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "Вы можете прочитать примечания к выпуску" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Ваши изменения могут быть потеряны, если вы их не сохраните" @@ -1421,22 +1434,22 @@ msgstr "Ваши изменения могут быть потеряны, есл msgid "back" msgstr "назад" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "Требуется приложение {{app}}." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "Даташит для {{board}} не определен" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "Разводка платы {{board}} не определена" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "Правила для платы {{board}} не определены" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} экспортирован(о)" diff --git a/app/resources/locale/template.pot b/app/resources/locale/template.pot index 0d8c0a47d..2cb3a6429 100644 --- a/app/resources/locale/template.pot +++ b/app/resources/locale/template.pot @@ -38,7 +38,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "" @@ -46,11 +46,11 @@ msgstr "" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "" @@ -70,7 +70,7 @@ msgstr "" msgid "All collections removed" msgstr "" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "" @@ -90,11 +90,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "" @@ -114,12 +114,12 @@ msgstr "" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "" @@ -140,11 +140,11 @@ msgstr "" msgid "Board rules" msgstr "" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "" @@ -162,7 +162,7 @@ msgid "Board {{name}} not connected" msgstr "" #: app/scripts/app.js:190 -#: app/scripts/controllers/menu.js:1345 +#: app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "" @@ -171,23 +171,23 @@ msgstr "" msgid "Bootloader not active" msgstr "" -#: app/scripts/controllers/menu.js:1367 +#: app/scripts/controllers/menu.js:1375 #: app/views/design.html:508 -#: app/views/menu.html:607 +#: app/views/menu.html:611 msgid "Build" msgstr "" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "" #: app/scripts/app.js:58 #: app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -203,7 +203,7 @@ msgstr "" msgid "Change Color" msgstr "" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -223,7 +223,7 @@ msgstr "" msgid "Choose a color:" msgstr "" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "Click \"Yes\" to allow tri-state and update Preferences:
   Advanced features → Allow tri-state connections

Click \"This time\" to view tri-state for this design only." msgstr "" @@ -244,7 +244,7 @@ msgstr "" msgid "Click here to install it" msgstr "" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "" @@ -256,17 +256,17 @@ msgstr "" msgid "Clone" msgstr "" -#: app/scripts/controllers/menu.js:582 +#: app/scripts/controllers/menu.js:584 #: app/views/version.html:76 msgid "Close" msgstr "" #: app/views/design.html:316 -#: app/views/menu.html:791 +#: app/views/menu.html:795 msgid "Code" msgstr "" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "" @@ -274,7 +274,7 @@ msgstr "" msgid "Collection info" msgstr "" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "" @@ -294,20 +294,20 @@ msgstr "" msgid "Collection {{name}} replaced" msgstr "" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "" -#: app/scripts/controllers/menu.js:1270 +#: app/scripts/controllers/menu.js:1278 #: app/views/menu.html:471 msgid "Command output" msgstr "" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "" @@ -316,7 +316,7 @@ msgid "Configuration not completed" msgstr "" #: app/views/design.html:306 -#: app/views/menu.html:783 +#: app/views/menu.html:787 msgid "Constant" msgstr "" @@ -381,7 +381,7 @@ msgstr "" msgid "Deep Sky Blue" msgstr "" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "" @@ -389,19 +389,19 @@ msgstr "" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "" @@ -409,7 +409,7 @@ msgstr "" msgid "Do you want to replace it?" msgstr "" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "" @@ -417,7 +417,7 @@ msgstr "" msgid "Don’t display" msgstr "" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "" @@ -457,7 +457,7 @@ msgstr "" msgid "Edit the collection name" msgstr "" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "" @@ -485,7 +485,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "" @@ -493,7 +493,7 @@ msgstr "" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "" @@ -517,8 +517,8 @@ msgstr "" msgid "Export" msgstr "" -#: app/scripts/controllers/menu.js:397 -#: app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 +#: app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "" @@ -526,7 +526,7 @@ msgstr "" msgid "External collections" msgstr "" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "" @@ -534,7 +534,7 @@ msgstr "" msgid "External plugins" msgstr "" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "" @@ -614,7 +614,7 @@ msgstr "" msgid "Green Yellow" msgstr "" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "" @@ -630,11 +630,11 @@ msgstr "" msgid "If you see blank IN/OUT pins, it is because equivalent pins do not exist on this board" msgstr "" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "" @@ -644,17 +644,17 @@ msgid "Indian Red" msgstr "" #: app/views/design.html:321 -#: app/views/menu.html:795 +#: app/views/menu.html:799 msgid "Information" msgstr "" #: app/views/design.html:281 -#: app/views/menu.html:760 +#: app/views/menu.html:764 msgid "Input" msgstr "" #: app/views/design.html:291 -#: app/views/menu.html:769 +#: app/views/menu.html:773 msgid "Input label" msgstr "" @@ -674,11 +674,11 @@ msgstr "" msgid "Input ports" msgstr "" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -737,7 +737,7 @@ msgstr "" msgid "Invalid multiple input connections" msgstr "" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -746,7 +746,7 @@ msgstr "" msgid "Invalid project format" msgstr "" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -754,7 +754,7 @@ msgstr "" msgid "Italian" msgstr "" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -766,7 +766,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -805,11 +805,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "" @@ -819,7 +819,7 @@ msgid "Medium Violet Red" msgstr "" #: app/views/design.html:311 -#: app/views/menu.html:787 +#: app/views/menu.html:791 msgid "Memory" msgstr "" @@ -827,7 +827,7 @@ msgstr "" msgid "Memory block names" msgstr "" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "" @@ -856,14 +856,14 @@ msgstr "" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "" #: app/scripts/app.js:57 -#: app/scripts/controllers/menu.js:602 +#: app/scripts/controllers/menu.js:604 #: app/scripts/services/project.js:160 -#: app/scripts/services/utils.js:1383 +#: app/scripts/services/utils.js:1401 msgid "OK" msgstr "" @@ -876,7 +876,7 @@ msgstr "" msgid "Open" msgstr "" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "" @@ -890,12 +890,12 @@ msgid "Original file {{file}} does not exist" msgstr "" #: app/views/design.html:286 -#: app/views/menu.html:764 +#: app/views/menu.html:768 msgid "Output" msgstr "" #: app/views/design.html:296 -#: app/views/menu.html:773 +#: app/views/menu.html:777 msgid "Output label" msgstr "" @@ -912,7 +912,7 @@ msgid "Output ports" msgstr "" #: app/views/design.html:301 -#: app/views/menu.html:778 +#: app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -920,14 +920,14 @@ msgstr "" msgid "Paste" msgstr "" -#: app/scripts/controllers/menu.js:762 -#: app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 -#: app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 +#: app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 +#: app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "" @@ -943,8 +943,8 @@ msgstr "" msgid "Project information" msgstr "" -#: app/scripts/controllers/menu.js:965 -#: app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "" @@ -960,7 +960,7 @@ msgstr "" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -981,7 +981,7 @@ msgstr "" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "" @@ -993,12 +993,12 @@ msgstr "" msgid "Remote hostname" msgstr "" -#: app/views/menu.html:647 -#: app/views/menu.html:722 +#: app/views/menu.html:651 +#: app/views/menu.html:726 msgid "Remove" msgstr "" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "" @@ -1010,7 +1010,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "" @@ -1027,7 +1027,7 @@ msgstr "" msgid "Save" msgstr "" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "" @@ -1035,7 +1035,7 @@ msgstr "" msgid "Save as" msgstr "" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "" @@ -1060,7 +1060,7 @@ msgstr "" msgid "Slate Blue" msgstr "" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "" @@ -1073,15 +1073,15 @@ msgstr "" msgid "Spring Green" msgstr "" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "" @@ -1114,7 +1114,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "" -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 msgid "The current FPGA I/O configuration will be lost. Do you want to change to the {{name}} board?" msgstr "" @@ -1142,7 +1142,7 @@ msgstr "" msgid "This release has been possible thanks to the great work done by an emerging team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1154,7 +1154,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "To save your design you need to lock the padlock and go to the top-level design.

If you want to export this submodule to a file, use the \"Save as\" command." msgstr "" @@ -1162,7 +1162,7 @@ msgstr "" msgid "Toolbox" msgstr "" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "" @@ -1185,19 +1185,19 @@ msgstr "" msgid "Toolchain version does not match" msgstr "" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in standard designs.

You will be asked to update your Preferences (Advanced user setting) or you can just open this design on a preview basis.

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1210,10 +1210,18 @@ msgstr "" msgid "Turquoise" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "" @@ -1230,39 +1238,39 @@ msgstr "" msgid "Untitled" msgstr "" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 +#: app/scripts/controllers/menu.js:1400 #: app/views/design.html:516 -#: app/views/menu.html:615 +#: app/views/menu.html:619 msgid "Upload" msgstr "" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "" #: app/views/design.html:500 -#: app/views/menu.html:599 +#: app/views/menu.html:603 msgid "Verify" msgstr "" -#: app/scripts/services/utils.js:671 -#: app/views/menu.html:832 +#: app/scripts/services/utils.js:688 +#: app/views/menu.html:836 msgid "Version" msgstr "" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "" @@ -1270,14 +1278,18 @@ msgstr "" msgid "View" msgstr "" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "" @@ -1286,7 +1298,7 @@ msgstr "" msgid "Welcome to Icestudio!" msgstr "" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "" @@ -1311,23 +1323,23 @@ msgstr "" msgid "Yellow" msgstr "" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "You are editing a submodule, so you will save just this submodule (\"Save as\" works like \"Export module\"). Do you want to continue?" msgstr "" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "You are navigating into the design: If you want to save the entire design, you need to go back to the top-level. If you want to export this module as new file, unlock the module and use \"Save as\"." msgstr "" @@ -1335,11 +1347,11 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "You can only build at the top-level design. Inside submodules, you can Verify" msgstr "" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "You can only upload at the top-level design. Inside submodules, you can Verify" msgstr "" @@ -1347,7 +1359,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "" @@ -1356,23 +1368,23 @@ msgid "back" msgstr "" #: app/scripts/services/drivers.js:439 -#: app/scripts/services/utils.js:1159 +#: app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "" -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "" -#: app/scripts/controllers/menu.js:500 -#: app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 +#: app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "" diff --git a/app/resources/locale/tr_TR/tr_TR.po b/app/resources/locale/tr_TR/tr_TR.po index 93ff079a1..0cdc46eb6 100644 --- a/app/resources/locale/tr_TR/tr_TR.po +++ b/app/resources/locale/tr_TR/tr_TR.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Icestudio Hakkında" @@ -52,11 +52,11 @@ msgstr "Icestudio Hakkında" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Ekle" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Başlamak için bir blok ekleyin" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "Tüm koleksiyonlar kaldırıldı" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Saklanan tüm koleksiyonlar kaybolacaktır. Devam etmek istiyor musunuz?" @@ -96,11 +96,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "Python 3.7 gerekli" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Yazar" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Temel" @@ -120,12 +120,12 @@ msgstr "İkili" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Blok güncellendi" @@ -145,11 +145,11 @@ msgstr "Pano" msgid "Board rules" msgstr "Pano ölçüm aleti" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Pano ölçüm kuralları devre dışı" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Pano ölçüm kuralları aktif" @@ -165,7 +165,7 @@ msgstr "Pano {{name}} kullanılamıyor" msgid "Board {{name}} not connected" msgstr "Pano {{name}} bağlı değil" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Pano {{name}} seç" @@ -173,21 +173,21 @@ msgstr "Pano {{name}} seç" msgid "Bootloader not active" msgstr "Önyükleyici etkin değil" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Yapı" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Yapı tamam" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "İptal" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -204,7 +204,7 @@ msgstr "Katalanca" msgid "Change Color" msgstr "" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -224,7 +224,7 @@ msgstr "Çince" msgid "Choose a color:" msgstr "Bir renk seçin:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

buraya tıklayın" msgid "Click here to install it" msgstr "Yüklemek için buraya tıklayın" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Görmek için buraya tıklayın" @@ -258,15 +258,15 @@ msgstr "Veri yolları için saat izin verilmiyor" msgid "Clone" msgstr "Klon" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Kapat" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Kod" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Koleksiyon" @@ -274,7 +274,7 @@ msgstr "Koleksiyon" msgid "Collection info" msgstr "Koleksiyon bilgisi" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Koleksiyon {{collection}} bilgisi tanımsız" @@ -294,19 +294,19 @@ msgstr "Koleksiyon {{name}} kaldırıldı" msgid "Collection {{name}} replaced" msgstr "Koleksiyon {{name}} değiştirildi" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Koleksiyon {{name}} seçili" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Koleksiyonlar" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Komut çıkışı" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Topluluk forumu" @@ -314,7 +314,7 @@ msgstr "Topluluk forumu" msgid "Configuration not completed" msgstr "Yapılandırma tamamlanmadı" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Sürekli" @@ -380,7 +380,7 @@ msgstr "DerinPembe" msgid "Deep Sky Blue" msgstr "DerinGökMavisi" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "Varsayılan" @@ -388,19 +388,19 @@ msgstr "Varsayılan" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Tanım" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Devre dışı" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Uygulamayı kapatmak istiyor musunuz?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Koleksiyonu kaldırmak {{name}} istiyor musunuz?" @@ -408,7 +408,7 @@ msgstr "Koleksiyonu kaldırmak {{name}} istiyor musunuz?" msgid "Do you want to replace it?" msgstr "Onu değiştirmek ister misin?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Dokümantasyon" @@ -417,7 +417,7 @@ msgstr "Dokümantasyon" msgid "Don’t display" msgstr "Gösterme" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Sürücüler" @@ -455,7 +455,7 @@ msgstr "Düzenle" msgid "Edit the collection name" msgstr "Koleksiyon adını düzenle" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Aktif" @@ -486,7 +486,7 @@ msgstr "Pip yolunu girin" msgid "Enter the python path" msgstr "Python yolunu girin" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Uzaktan ev ana bilgisayar adını girin @anabilgisayar" @@ -494,7 +494,7 @@ msgstr "Uzaktan ev ana bilgisayar adını girin @anabilgisayar" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Hata: {{error}}" @@ -518,7 +518,7 @@ msgstr "Uzaktan çalıştırma {{label}} ..." msgid "Export" msgstr "İhraç" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "İhraç alt modül" @@ -526,7 +526,7 @@ msgstr "İhraç alt modül" msgid "External collections" msgstr "Harici koleksiyon" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Harici koleksiyonu güncelle" @@ -534,7 +534,7 @@ msgstr "Harici koleksiyonu güncelle" msgid "External plugins" msgstr "" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "" @@ -614,7 +614,7 @@ msgstr "Yunanca" msgid "Green Yellow" msgstr "YeşilSarı" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Yardım" @@ -635,11 +635,11 @@ msgstr "" "Boş GİRİŞ/ÇIKIŞ raptiyeleriniz varsa, bunun nedeni bu kartta eşdeğer " "olmamasıdır" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Görsel" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Görseli {{name}} kaydet" @@ -648,15 +648,15 @@ msgstr "Görseli {{name}} kaydet" msgid "Indian Red" msgstr "HintKırmızısı" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Bİlgi" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Giriş" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Giriş etiketi" @@ -679,12 +679,12 @@ msgstr "" msgid "Input ports" msgstr "Giriş bağlantı noktalarını girin" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "Yükle" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -760,7 +760,7 @@ msgstr "Geçersiz koleksiyon: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Geçersiz çoklu giriş bağlantıları" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -768,7 +768,7 @@ msgstr "" msgid "Invalid project format" msgstr "Geçersiz proje biçimi" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -776,7 +776,7 @@ msgstr "" msgid "Italian" msgstr "İtalyanca" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -788,7 +788,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 #, fuzzy msgid "Label updated" msgstr "Etiket güncellendi" @@ -827,11 +827,11 @@ msgstr "Sürücüler aktif" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Azami veri yolu boyutu: 96 bit" @@ -840,7 +840,7 @@ msgstr "Azami veri yolu boyutu: 96 bit" msgid "Medium Violet Red" msgstr "OrtaMorAl" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Bellek" @@ -848,7 +848,7 @@ msgstr "Bellek" msgid "Memory block names" msgstr "" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Ad" @@ -877,12 +877,12 @@ msgstr "Ad" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Koleksiyonların kaydı yok" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "TAMAM" @@ -895,7 +895,7 @@ msgstr "HakiYeşil" msgid "Open" msgstr "Aç" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "SVG Aç" @@ -908,11 +908,11 @@ msgstr "PortakalKırmızısı" msgid "Original file {{file}} does not exist" msgstr "Özgün dosya {{file}} yok" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Çıktı" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Çıktı etiketi" @@ -929,7 +929,7 @@ msgstr "" msgid "Output ports" msgstr "" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -937,12 +937,12 @@ msgstr "" msgid "Paste" msgstr "Yapıştır" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Yol {{path}} yok" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Lütfen çalıştır: {{cmd}}" @@ -958,7 +958,7 @@ msgstr "" msgid "Project information" msgstr "Proje bilgileri" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Proje bilgileri güncellendi" @@ -974,7 +974,7 @@ msgstr "Projeyi {{name}} kaydet" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -994,7 +994,7 @@ msgstr "Yeniden" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Yeniden yükle" @@ -1006,11 +1006,11 @@ msgstr "Uzak ana makine {{name}} bağlı değil" msgid "Remote hostname" msgstr "Uzak anamakineadı" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Kaldır" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Tümünü kaldır" @@ -1022,7 +1022,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "SVG Sıfırla" @@ -1039,7 +1039,7 @@ msgstr "Rusça" msgid "Save" msgstr "Kaydet" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "SVG Kaydet" @@ -1047,7 +1047,7 @@ msgstr "SVG Kaydet" msgid "Save as" msgstr "Farklı kaydet" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Alt modülü kaydet" @@ -1072,7 +1072,7 @@ msgstr "Saati göster" msgid "Slate Blue" msgstr "KoyuArduvazMavisi" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Kaynak kodu" @@ -1085,15 +1085,15 @@ msgstr "İspanyolca" msgid "Spring Green" msgstr "BaharYeşili" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Oluşturmaya başla" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Yüklemeyi başlat" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Doğrulamayı başlat" @@ -1127,7 +1127,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "Koleksiyon {{name}} zaten var." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1166,7 +1166,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1184,7 +1184,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Tasarımda gezinmek için \"düzenleme modu\"nu kapatmanız gerekir." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1200,7 +1200,7 @@ msgstr "" msgid "Toolbox" msgstr "Araçlar" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Uyumluuygulama" @@ -1221,11 +1221,11 @@ msgstr "Uyumluuygulamayı kaldır" msgid "Toolchain version does not match" msgstr "Uyumluuygulama sürümü eşleşmiyor" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Araçlar" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1233,11 +1233,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1249,10 +1249,18 @@ msgstr "" msgid "Turquoise" msgstr "Turkuaz" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Geri al" @@ -1269,36 +1277,36 @@ msgstr "Desteklenmeyen proje biçimi {{version}}" msgid "Untitled" msgstr "İsimsiz" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Yükle" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Yükleme tamamlandı" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Doğrulama yapıldı" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Doğrulama" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Sürüm" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Sürüm notları" @@ -1306,14 +1314,18 @@ msgstr "Sürüm notları" msgid "View" msgstr "Görüntüle" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Lisansı görüntüle" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Tasarımda tespit edilen uyarılar" @@ -1323,7 +1335,7 @@ msgstr "Tasarımda tespit edilen uyarılar" msgid "Welcome to Icestudio!" msgstr "Icestudio Hakkında" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Yanlış blok biçimi: {{type}}" @@ -1345,11 +1357,11 @@ msgstr "Yanlış uzak anamakineadı {{name}}" msgid "Yellow" msgstr "Sarı" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1359,15 +1371,15 @@ msgstr "" "kaydedersiniz (bu durumda \"farklı kaydet\", \"dışa aktarma modülü\" gibi " "çalışır), devam etmek ister misiniz?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1380,7 +1392,7 @@ msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "" "Olduğu gibi yükleyebilir veya panoya için {{name}} dönüştürebilirsiniz." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " @@ -1389,7 +1401,7 @@ msgstr "" "Sadece üst düzey bir tasarım inşa edebilirsiniz. Alt modüllerin içinde " "sadece doğrulayabilirsiniz" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1402,7 +1414,7 @@ msgstr "" msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Kaydemezseniz değişikler kaybolacak" @@ -1410,22 +1422,22 @@ msgstr "Kaydemezseniz değişikler kaybolacak" msgid "back" msgstr "geri" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} gerekli." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} veri sayfası tanımlanmadı" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} kablo işlev şeması tanımlanmadı" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} kurallar tanımlanmadı" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} ihraç" diff --git a/app/resources/locale/uk_UA/uk_UA.po b/app/resources/locale/uk_UA/uk_UA.po index 4541d434e..b62cadcdb 100644 --- a/app/resources/locale/uk_UA/uk_UA.po +++ b/app/resources/locale/uk_UA/uk_UA.po @@ -48,11 +48,12 @@ msgstr "" "УВАГА!
\n" " Зміни, зроблені тут, будуть також застосовані до всіх\n" " блоків [{{ information.name }}] у поточному дизайні. Якщо\n" -" ви НЕ бажаєте, щоб вони розповсюджувалися, створіть клонований блок,\n" +" ви НЕ бажаєте, щоб вони розповсюджувалися, створіть клонований " +"блок,\n" " використовуючи
\n" " Редагування → Клонувати." -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "Про Icestudio" @@ -60,11 +61,11 @@ msgstr "Про Icestudio" msgid "Acknowledgment" msgstr "Подяка" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "Додати" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "Додайте блок для початку" @@ -84,7 +85,7 @@ msgstr "Розширені функції" msgid "All collections removed" msgstr "Всі колекції видалено" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "Усі збережені колекції буде втрачено. Ви хочете продовжити?" @@ -104,11 +105,11 @@ msgstr "Встановити {{name}} за допомогою Apio" msgid "At least Python 3.7 is required" msgstr "Потрібен Python версії не нижче 3.7" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "Автор" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "Основний" @@ -128,12 +129,12 @@ msgstr "Двійковий" msgid "Bitstream not found: Build your project first" msgstr "Бітстрім не знайдено: спершу побудуйте свій проект" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "Блок оновлено" @@ -153,11 +154,11 @@ msgstr "Плата" msgid "Board rules" msgstr "Правила плати" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "Правила плати вимкнені" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "Правила плати ввімкнені" @@ -173,7 +174,7 @@ msgstr "Плата {{name}} недоступна" msgid "Board {{name}} not connected" msgstr "Плата {{name}} не підключена" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "Вибрана плата {{name}}" @@ -181,21 +182,21 @@ msgstr "Вибрана плата {{name}}" msgid "Bootloader not active" msgstr "Завантажувач не активний" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "Збірка" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "Збірка завершена" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "Скасувати" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "Не можна вставити з іншого формату проекту ({{version}})" @@ -211,7 +212,7 @@ msgstr "Каталонська" msgid "Change Color" msgstr "Змінити колір" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "Змінені налаштування: Дозволити тристабільні з'єднання" @@ -231,15 +232,16 @@ msgstr "Китайська" msgid "Choose a color:" msgstr "Виберіть колір:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

Click \"This time\" to view tri-state for this design only." msgstr "" -"Натисніть \"Так\", щоб дозволити тристабільні з'єднання та оновити налаштування:
  " -" Розширені функції → Дозволити тристабільні з'єднання

Натисніть \"Цього разу\", щоб переглянути тристабільні з'єднання лише для цього дизайну." +"Натисніть \"Так\", щоб дозволити тристабільні з'єднання та оновити " +"налаштування:
   Розширені функції → Дозволити " +"тристабільні з'єднання

Натисніть \"Цього разу\", щоб " +"переглянути тристабільні з'єднання лише для цього дизайну." #: app/scripts/services/project.js:185 msgid "Click here to download a newer version of Icestudio" @@ -255,7 +257,7 @@ msgstr "Натисніть тут, щоб налаштувати драйве msgid "Click here to install it" msgstr "Натисніть тут, щоб встановити" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "Натисніть тут, щоб переглянути" @@ -267,15 +269,15 @@ msgstr "Годинник не дозволений для шин даних" msgid "Clone" msgstr "Клонувати" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "Закрити" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "Код" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "Колекція" @@ -283,7 +285,7 @@ msgstr "Колекція" msgid "Collection info" msgstr "Інформація про колекцію" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "Інформацію про колекцію {{collection}} не визначено" @@ -303,19 +305,19 @@ msgstr "Колекцію {{name}} видалено" msgid "Collection {{name}} replaced" msgstr "Колекцію {{name}} замінено" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "Колекцію {{name}} вибрано" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "Колекції" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "Вивід команди" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "Форум спільноти" @@ -323,7 +325,7 @@ msgstr "Форум спільноти" msgid "Configuration not completed" msgstr "Конфігурацію не завершено" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "Константа" @@ -383,7 +385,7 @@ msgstr "Насичено-рожевий" msgid "Deep Sky Blue" msgstr "Насичено-блакитний" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "За замовчуванням" @@ -391,19 +393,19 @@ msgstr "За замовчуванням" msgid "Delete" msgstr "Видалити" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "Опис" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "Вимкнути" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "Ви хочете закрити програму?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "Ви хочете видалити колекцію {{name}}?" @@ -411,7 +413,7 @@ msgstr "Ви хочете видалити колекцію {{name}}?" msgid "Do you want to replace it?" msgstr "Ви хочете замінити її?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "Документація" @@ -419,7 +421,7 @@ msgstr "Документація" msgid "Don’t display" msgstr "Не відображати" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "Драйвери" @@ -457,7 +459,7 @@ msgstr "Редагувати" msgid "Edit the collection name" msgstr "Редагувати назву колекції" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "Увімкнути" @@ -485,7 +487,7 @@ msgstr "Введіть шлях до pip" msgid "Enter the python path" msgstr "Введіть шлях до python" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "Введіть віддалене ім'я хоста user@host" @@ -493,7 +495,7 @@ msgstr "Введіть віддалене ім'я хоста user@host" msgid "Error installing driver:" msgstr "Помилка встановлення драйвера:" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "Помилка: {{error}}" @@ -517,7 +519,7 @@ msgstr "Виконати віддалено {{label}} ..." msgid "Export" msgstr "Експорт" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "Експорт підмодуля" @@ -525,7 +527,7 @@ msgstr "Експорт підмодуля" msgid "External collections" msgstr "Зовнішні колекції" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "Зовнішні колекції оновлено" @@ -533,7 +535,7 @@ msgstr "Зовнішні колекції оновлено" msgid "External plugins" msgstr "Зовнішні плагіни" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "Зовнішні плагіни оновлено" @@ -564,8 +566,7 @@ msgstr "Файл" #: app/scripts/services/project.js:511 msgid "" "File {{file}} already exists in the project path. Do you want to replace it?" -msgstr "" -"Файл {{file}} вже існує в шляху проєкту. Ви хочете замінити його?" +msgstr "Файл {{file}} вже існує в шляху проєкту. Ви хочете замінити його?" #: app/scripts/services/tools.js:445 msgid "File {{file}} does not exist" @@ -612,7 +613,7 @@ msgstr "Грецька" msgid "Green Yellow" msgstr "Зелено-жовтий" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "Допомога" @@ -629,13 +630,14 @@ msgid "" "If you see blank IN/OUT pins, it is because equivalent pins do not exist on " "this board" msgstr "" -"Якщо ви бачите порожні контакти IN/OUT, це тому що відповідних контактів не існує на цій платі" +"Якщо ви бачите порожні контакти IN/OUT, це тому що відповідних контактів не " +"існує на цій платі" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "Зображення" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "Зображення {{name}} збережено" @@ -643,15 +645,15 @@ msgstr "Зображення {{name}} збережено" msgid "Indian Red" msgstr "Індійський червоний" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "Інформація" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "Вхід" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "Мітка входу" @@ -671,11 +673,11 @@ msgstr "Назви вхідних портів" msgid "Input ports" msgstr "Вхідні порти" -#: app/views/menu.html:635 +#: app/views/menu.html:639 msgid "Install (Stable)" msgstr "Встановити (стабільну версію)" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "Встановити версію для розробників" @@ -685,21 +687,25 @@ msgid "" "connection.

NOTE: You need to disconnect your VPN (if any) to " "allow the toolchain installation

Do you want to continue?

" msgstr "" -"Встановіть СТАБІЛЬНИЙ інструментарій. Ця операція вимагає підключення до Інтернету.

ПРИМІТКА: Вам потрібно відключити VPN (якщо є) для дозволу установки інструментарію

Ви хочете продовжити?

" +"Встановіть СТАБІЛЬНИЙ інструментарій. Ця операція вимагає підключення " +"до Інтернету.

ПРИМІТКА: Вам потрібно відключити VPN (якщо є) " +"для дозволу установки інструментарію

Ви хочете продовжити?

" #: app/scripts/services/tools.js:1260 msgid "" "Install the DEVELOPMENT toolchain. It will be downloaded. This operation " "requires Internet connection. Do you want to continue?" msgstr "" -"Встановіть інструментарій ДЛЯ РОЗРОБНИКІВ. Він буде завантажений. Ця операція вимагає підключення до Інтернету. Ви хочете продовжити?" +"Встановіть інструментарій ДЛЯ РОЗРОБНИКІВ. Він буде завантажений. Ця " +"операція вимагає підключення до Інтернету. Ви хочете продовжити?" #: app/scripts/services/tools.js:1282 msgid "" "Install the LATEST STABLE toolchain. It will be downloaded. This operation " "requires Internet connection. Do you want to continue?" msgstr "" -"Встановіть ОСТАННІЙ СТАБІЛЬНИЙ інструментарій. Він буде завантажений. Ця операція вимагає підключення до Інтернету. Ви хочете продовжити?" +"Встановіть ОСТАННІЙ СТАБІЛЬНИЙ інструментарій. Він буде завантажений. Ця " +"операція вимагає підключення до Інтернету. Ви хочете продовжити?" #: app/scripts/services/tools.js:1630 msgid "Installation completed" @@ -719,7 +725,8 @@ msgstr "Неправильне підключення Pull-up:
Бло #: app/scripts/services/graph.js:312 msgid "Invalid Pull-up connection:
Only Input blocks allowed" -msgstr "Неправильне підключення Pull-up:
Дозволені лише блоки Input" +msgstr "" +"Неправильне підключення Pull-up:
Дозволені лише блоки Input" #: app/scripts/services/graph.js:304 msgid "Invalid block connection:
Pull-up already connected" @@ -742,7 +749,7 @@ msgstr "Неправильне підключення: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "Неправильне підключення декількох входів" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "Неправильне нове ім'я!" @@ -750,7 +757,7 @@ msgstr "Неправильне нове ім'я!" msgid "Invalid project format" msgstr "Неправильний формат проекту" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "Неправильне ім'я для пошуку!" @@ -758,7 +765,7 @@ msgstr "Неправильне ім'я для пошуку!" msgid "Italian" msgstr "Італійська" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "Японська" @@ -770,7 +777,7 @@ msgstr "Корейська" msgid "Label finder" msgstr "Пошук міток" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "Мітку оновлено" @@ -806,11 +813,11 @@ msgstr "Журналювання увімкнено" msgid "Logging file" msgstr "Файл журналювання" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "Файл журналювання оновлено" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "Максимальний розмір шини: 96 біт" @@ -818,7 +825,7 @@ msgstr "Максимальний розмір шини: 96 біт" msgid "Medium Violet Red" msgstr "Середній фіолетово-червоний" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "Пам'ять" @@ -826,7 +833,7 @@ msgstr "Пам'ять" msgid "Memory block names" msgstr "Назви блоків пам'яті" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "Ім'я" @@ -854,12 +861,12 @@ msgstr "Нове ім'я:" msgid "Next" msgstr "Далі" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "Колекції не збережені" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "ОК" @@ -871,7 +878,7 @@ msgstr "Оливковий зелений" msgid "Open" msgstr "Відкрити" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "Відкрити SVG" @@ -883,11 +890,11 @@ msgstr "Помаранчево-червоний" msgid "Original file {{file}} does not exist" msgstr "Оригінальний файл {{file}} не існує" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "Вихід" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 msgid "Output label" msgstr "Вихідна мітка" @@ -903,7 +910,7 @@ msgstr "Назви вихідних портів" msgid "Output ports" msgstr "Вихідні порти" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "Парні мітки" @@ -911,12 +918,12 @@ msgstr "Парні мітки" msgid "Paste" msgstr "Вставити" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "Шлях {{path}} не існує" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "Будь ласка, виконайте: {{cmd}}" @@ -932,7 +939,7 @@ msgstr "Назад" msgid "Project information" msgstr "Інформація про проект" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "Інформацію про проект оновлено" @@ -948,7 +955,7 @@ msgstr "Проект {{name}} збережено" msgid "Python environment" msgstr "Середовище Python" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "Середовище Python оновлено" @@ -968,7 +975,7 @@ msgstr "Повторити" msgid "Release History WIKI" msgstr "Історія випусків WIKI" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "Перезавантажити" @@ -980,11 +987,11 @@ msgstr "Віддалений хост {{name}} не підключено" msgid "Remote hostname" msgstr "Віддалене ім'я хоста" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "Видалити" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "Видалити все" @@ -996,7 +1003,7 @@ msgstr "Замінити все" msgid "Replace One" msgstr "Замінити одне" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "Скинути SVG" @@ -1012,7 +1019,7 @@ msgstr "Російська" msgid "Save" msgstr "Зберегти" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "Зберегти SVG" @@ -1020,7 +1027,7 @@ msgstr "Зберегти SVG" msgid "Save as" msgstr "Зберегти як" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "Зберегти субмодуль" @@ -1044,7 +1051,7 @@ msgstr "Показати годинник" msgid "Slate Blue" msgstr "Сланцево-синій" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "Вихідний код" @@ -1056,15 +1063,15 @@ msgstr "Іспанська" msgid "Spring Green" msgstr "Яскраво-зелений" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "Розпочати збірку" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "Розпочати завантаження" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "Розпочати перевірку" @@ -1096,12 +1103,13 @@ msgstr "Дуже дякуємо!" msgid "The collection {{name}} already exists." msgstr "Колекція {{name}} вже існує." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " "the {{name}} board?" msgstr "" -"Поточну конфігурацію FPGA I/O буде втрачено. Хочете змінити на плату {{name}}?" +"Поточну конфігурацію FPGA I/O буде втрачено. Хочете змінити на плату " +"{{name}}?" #: app/scripts/services/tools.js:1300 msgid "The toolchain will be removed. Do you want to continue?" @@ -1120,7 +1128,8 @@ msgid "" "This import operation requires a project path. You need to save the current " "project. Do you want to continue?" msgstr "" -"Ця операція імпорту вимагає шляху до проекту. Необхідно зберегти поточний проект. Хочете продовжити?" +"Ця операція імпорту вимагає шляху до проекту. Необхідно зберегти поточний " +"проект. Хочете продовжити?" #: app/scripts/services/project.js:106 msgid "This project is designed for the {{name}} board." @@ -1130,10 +1139,9 @@ msgstr "Цей проект призначений для плати {{name}}." msgid "" "This release has been possible thanks to the great work done by an emerging " "team from" -msgstr "" -"Цей випуск став можливим завдяки чудовій роботі команди, що виникає з" +msgstr "Цей випуск став можливим завдяки чудовій роботі команди, що виникає з" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "Цього разу" @@ -1142,27 +1150,28 @@ msgid "" "To enter \"edit mode\" in a deeper block, you need to finish the current " "level by locking the padlock." msgstr "" -"Щоб увійти в \"режим редагування\" у глибшому блоці, потрібно завершити поточний рівень, заблокувавши замок." +"Щоб увійти в \"режим редагування\" у глибшому блоці, потрібно завершити " +"поточний рівень, заблокувавши замок." #: app/scripts/controllers/design.js:50 msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "Щоб навігувати через дизайн, потрібно закрити \"режим редагування\"." -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 msgid "" "To save your design you need to lock the padlock and go to the " "top-level design.

If you want to export this " "submodule to a file, use the \"Save as\" command." msgstr "" -"Щоб зберегти свій дизайн, потрібно заблокувати замок і перейти до " -"дизайну найвищого рівня.

Якщо ви хочете експортувати цей " -"субмодуль у файл, використовуйте команду \"Зберегти як\"." +"Щоб зберегти свій дизайн, потрібно заблокувати замок і перейти до дизайну " +"найвищого рівня.

Якщо ви хочете експортувати цей субмодуль у файл, " +"використовуйте команду \"Зберегти як\"." #: app/views/menu.html:338 msgid "Toolbox" msgstr "Набір інструментів" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "Інструменти розробки" @@ -1183,27 +1192,27 @@ msgstr "Інструменти розробки видалено" msgid "Toolchain version does not match" msgstr "Версія інструменту розробки не збігається" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "Інструменти" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " "(Advanced user setting) or you can just open this design on a preview basis." "

Continue?" msgstr "" -"Тристабільні (також відомі як high-Z, двонаправлені або вхід-вихідні) порти не рекомендовані в " -"стандартних дизайнах.

Вас попросять оновити налаштування " -"(Налаштування для досвідчених користувачів) або ви можете просто відкрити цей дизайн для попереднього перегляду." -"

Продовжити?" +"Тристабільні (також відомі як high-Z, двонаправлені або вхід-вихідні) порти " +"не рекомендовані в стандартних дизайнах.

Вас попросять оновити " +"налаштування (Налаштування для досвідчених користувачів) або ви можете " +"просто відкрити цей дизайн для попереднього перегляду.

Продовжити?" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "Тристабільні з'єднання (вхід-вихідні порти) відключені" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "Тристабільні з'єднання (вхід-вихідні порти) увімкнені" @@ -1215,10 +1224,19 @@ msgstr "Турецька" msgid "Turquoise" msgstr "Бірюзовий" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "Тема інтерфейсу" + #: app/views/menu.html:372 msgid "UI theme" msgstr "Тема інтерфейсу" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "Скасувати" @@ -1235,36 +1253,36 @@ msgstr "Непідтримуваний формат проекту {{version}}" msgid "Untitled" msgstr "Без назви" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "Оновлення (остання стабільна версія)" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "Завантажити" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "Завантаження завершено" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "Використання зовнішнього Apio: {{name}}" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "Перевірка завершена" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "Перевірити" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "Версія" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "Примітки до версії" @@ -1272,14 +1290,18 @@ msgstr "Примітки до версії" msgid "View" msgstr "Перегляд" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "Переглянути ліцензію" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "Перегляд тристабільного стану" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "Попередження виявлені в дизайні" @@ -1288,7 +1310,7 @@ msgstr "Попередження виявлені в дизайні" msgid "Welcome to Icestudio!" msgstr "Ласкаво просимо до Icestudio!" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "Неправильний формат блоку: {{type}}" @@ -1310,59 +1332,64 @@ msgstr "Неправильне віддалене ім'я хоста: {{name}}" msgid "Yellow" msgstr "Жовтий" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "Так" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " "as\" works like \"Export module\"). Do you want to continue?" msgstr "" -"Ви редагуєте субмодуль, тому збережете лише цей субмодуль (\"Зберегти як\" працює як \"Експортувати модуль\"). Хочете продовжити?" +"Ви редагуєте субмодуль, тому збережете лише цей субмодуль (\"Зберегти як\" " +"працює як \"Експортувати модуль\"). Хочете продовжити?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "Ви імпортуєте блок, який використовує \"тристабільний стан\"." -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "Ви завантажуєте дизайн, який використовує \"тристабільний стан\"." -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " "export this module as new file, unlock the module and use \"Save as\"." msgstr "" -"Ви навігуєте по дизайну: якщо хочете зберегти весь дизайн, потрібно повернутися до верхнього рівня. Якщо хочете " -"експортувати цей модуль як новий файл, розблокуйте модуль і використовуйте \"Зберегти як\"." +"Ви навігуєте по дизайну: якщо хочете зберегти весь дизайн, потрібно " +"повернутися до верхнього рівня. Якщо хочете " +"експортувати цей модуль як новий файл, розблокуйте модуль і використовуйте " +"\"Зберегти як\"." #: app/scripts/services/project.js:107 msgid "You can load it as it is or convert it to use the {{name}} board." -msgstr "Ви можете завантажити його як є або конвертувати для використання з платою {{name}}." +msgstr "" +"Ви можете завантажити його як є або конвертувати для використання з платою " +"{{name}}." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" msgstr "" -"Ви можете збирати тільки на верхньому рівні дизайну. Усередині субмодулів, ви можете " -"Перевірити" +"Ви можете збирати тільки на верхньому рівні дизайну. Усередині субмодулів, " +"ви можете Перевірити" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 msgid "" "You can only upload at the top-level design. Inside submodules, you can " "Verify" msgstr "" -"Ви можете завантажувати тільки на верхньому рівні дизайну. Усередині субмодулів, ви можете " -"Перевірити" +"Ви можете завантажувати тільки на верхньому рівні дизайну. Усередині " +"субмодулів, ви можете Перевірити" #: app/views/version.html:23 msgid "You can read the release notes on the" msgstr "Ви можете прочитати примітки до версії на" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "Ваші зміни будуть втрачені, якщо ви їх не збережете" @@ -1370,22 +1397,22 @@ msgstr "Ваші зміни будуть втрачені, якщо ви їх н msgid "back" msgstr "назад" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "{{app}} необхідний." -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} технічний опис не визначено" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} розташування контактів не визначено" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} правила не визначено" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} експортовано" diff --git a/app/resources/locale/zh_CN/zh_CN.po b/app/resources/locale/zh_CN/zh_CN.po index 0dd934017..27c5a1e12 100644 --- a/app/resources/locale/zh_CN/zh_CN.po +++ b/app/resources/locale/zh_CN/zh_CN.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "关于 Icestudio" @@ -52,11 +52,11 @@ msgstr "关于 Icestudio" msgid "Acknowledgment" msgstr "" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "添加" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "添加图块并开始" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "所有集合已删除" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "所有存储的集合将会丢失。是否继续?" @@ -97,11 +97,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "需要安装 Python 3.7" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "作者" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "基础" @@ -121,12 +121,12 @@ msgstr "二进制" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "图块已更新" @@ -146,11 +146,11 @@ msgstr "开发板" msgid "Board rules" msgstr "开发板规则" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "开发板规则关闭" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "开发板规则开启" @@ -166,7 +166,7 @@ msgstr "开发板 {{name}} 不可用" msgid "Board {{name}} not connected" msgstr "开发板 {{name}} 未连接" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "开发板 {{name}} 已选中" @@ -174,21 +174,21 @@ msgstr "开发板 {{name}} 已选中" msgid "Bootloader not active" msgstr "Bootloader 失效" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "构建" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "构建成功" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "取消" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -206,7 +206,7 @@ msgstr "Catalan" msgid "Change Color" msgstr "选择一个颜色" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -227,7 +227,7 @@ msgstr "中文" msgid "Choose a color:" msgstr "选择一个颜色" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

安装驱动程序
" msgid "Click here to install it" msgstr "点击此处安装" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "点击此处浏览" @@ -260,15 +260,15 @@ msgstr "数据总线上不可以使用时钟" msgid "Clone" msgstr "克隆" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "关闭" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "代码" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "集合" @@ -276,7 +276,7 @@ msgstr "集合" msgid "Collection info" msgstr "集合信息" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "集合 {{collection}} 的信息未定义" @@ -296,19 +296,19 @@ msgstr "已移除集合 {{name}}" msgid "Collection {{name}} replaced" msgstr "已替换集合 {{name}}" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "已选中集合 {{name}}" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "集合" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "命令输出" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "社区论坛" @@ -316,7 +316,7 @@ msgstr "社区论坛" msgid "Configuration not completed" msgstr "配置未完成" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "常量" @@ -382,7 +382,7 @@ msgstr "深粉" msgid "Deep Sky Blue" msgstr "深蓝" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "默认" @@ -390,19 +390,19 @@ msgstr "默认" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "描述" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "关闭" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "您是否要关闭应用程序?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "您是否要移除集合 {{name}}?" @@ -410,7 +410,7 @@ msgstr "您是否要移除集合 {{name}}?" msgid "Do you want to replace it?" msgstr "您是否要替换?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "文档" @@ -419,7 +419,7 @@ msgstr "文档" msgid "Don’t display" msgstr "不再显示" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "驱动" @@ -457,7 +457,7 @@ msgstr "编辑" msgid "Edit the collection name" msgstr "编辑集合名称" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "开启" @@ -486,7 +486,7 @@ msgstr "" msgid "Enter the python path" msgstr "" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "输入远程主机 用户名@主机名" @@ -494,7 +494,7 @@ msgstr "输入远程主机 用户名@主机名" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "错误: {{error}}" @@ -518,7 +518,7 @@ msgstr "远程执行 {{label}} ..." msgid "Export" msgstr "导出" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "导出子模块" @@ -526,7 +526,7 @@ msgstr "导出子模块" msgid "External collections" msgstr "外部集合" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "外部集合已更新" @@ -535,7 +535,7 @@ msgstr "外部集合已更新" msgid "External plugins" msgstr "外部集合" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 #, fuzzy msgid "External plugins updated" msgstr "外部集合已更新" @@ -615,7 +615,7 @@ msgstr "Greek" msgid "Green Yellow" msgstr "黄绿" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "帮助" @@ -634,11 +634,11 @@ msgid "" "this board" msgstr "如果你有空白的 IN/OUT 引脚,那是因为这块开发板上没有这些引脚" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "镜像" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "镜像 {{name}} 已保存" @@ -647,15 +647,15 @@ msgstr "镜像 {{name}} 已保存" msgid "Indian Red" msgstr "印度红" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "信息" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "输入" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "" @@ -675,12 +675,12 @@ msgstr "" msgid "Input ports" msgstr "" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "安装" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -749,7 +749,7 @@ msgstr "无效的连接 {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "无效的多输入连接" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "Invalid project format" msgstr "无效的项目格式" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Italian" msgstr "Italian" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -777,7 +777,7 @@ msgstr "" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -815,11 +815,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "最大总线宽度:96 bits" @@ -828,7 +828,7 @@ msgstr "最大总线宽度:96 bits" msgid "Medium Violet Red" msgstr "紫红" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "内存" @@ -836,7 +836,7 @@ msgstr "内存" msgid "Memory block names" msgstr "" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "名称" @@ -865,12 +865,12 @@ msgstr "名称:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "没有存储的集合" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "确定" @@ -883,7 +883,7 @@ msgstr "橄榄绿" msgid "Open" msgstr "打开" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "打开 SVG" @@ -896,11 +896,11 @@ msgstr "橙红" msgid "Original file {{file}} does not exist" msgstr "原始文件 {{file}} 不存在" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "输出" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 #, fuzzy msgid "Output label" msgstr "输出标签" @@ -918,7 +918,7 @@ msgstr "" msgid "Output ports" msgstr "" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -926,12 +926,12 @@ msgstr "" msgid "Paste" msgstr "粘贴" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "路径 {{path}} 不存在" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "请运行: {{cmd}}" @@ -947,7 +947,7 @@ msgstr "" msgid "Project information" msgstr "项目信息" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "项目信息已更新" @@ -963,7 +963,7 @@ msgstr "项目 {{name}} 已保存" msgid "Python environment" msgstr "" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 msgid "Python environment updated" msgstr "" @@ -983,7 +983,7 @@ msgstr "重做" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "重载" @@ -995,11 +995,11 @@ msgstr "远程主机 {{name}} 未连接" msgid "Remote hostname" msgstr "远程主机名" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "移除" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "移除全部" @@ -1011,7 +1011,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "重载 SVG" @@ -1028,7 +1028,7 @@ msgstr "Russian" msgid "Save" msgstr "保存" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "保存 SVG" @@ -1036,7 +1036,7 @@ msgstr "保存 SVG" msgid "Save as" msgstr "另存为" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "保存子模块" @@ -1061,7 +1061,7 @@ msgstr "显示时钟" msgid "Slate Blue" msgstr "板岩蓝" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "源代码" @@ -1074,15 +1074,15 @@ msgstr "Spanish" msgid "Spring Green" msgstr "春绿" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "开始编译" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "开始上传" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "开始验证" @@ -1116,7 +1116,7 @@ msgstr "" msgid "The collection {{name}} already exists." msgstr "集合 {{name}} 已存在。" -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1151,7 +1151,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1169,7 +1169,7 @@ msgstr "" msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "要浏览设计,您需要退出 \"编辑模式\"。" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1184,7 +1184,7 @@ msgstr "" msgid "Toolbox" msgstr "工具" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "工具链" @@ -1205,11 +1205,11 @@ msgstr "工具链已移除" msgid "Toolchain version does not match" msgstr "工具链版本不匹配" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "工具" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1217,11 +1217,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1233,10 +1233,18 @@ msgstr "Turkish" msgid "Turquoise" msgstr "松石绿" +#: app/scripts/controllers/menu.js:1073 +msgid "UI Theme" +msgstr "" + #: app/views/menu.html:372 msgid "UI theme" msgstr "" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "撤销" @@ -1253,36 +1261,36 @@ msgstr "不支持的项目格式 {{version}}" msgid "Untitled" msgstr "未命名" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "上传" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "上传成功" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "验证成功" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "验证" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "版本" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "版本说明" @@ -1290,14 +1298,18 @@ msgstr "版本说明" msgid "View" msgstr "查看" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "查看许可" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "设计中发现警告" @@ -1307,7 +1319,7 @@ msgstr "设计中发现警告" msgid "Welcome to Icestudio!" msgstr "关于 Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "图块格式错误: {{type}}" @@ -1329,11 +1341,11 @@ msgstr "远程主机名错误 {{name}}" msgid "Yellow" msgstr "橙黄" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1342,15 +1354,15 @@ msgstr "" "您正在编辑一个子模块。如果您保存,您将只会保存子模块 (在此情况下 \"另存为\" " "和 \"导出子模块\" 效果相同),是否继续?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1362,14 +1374,14 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "您可以载入原始项目,或转换以适应开发板 {{name}}。" -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" msgstr "您只能在顶层设计中编译。在子模块中您将只能 验证" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1380,7 +1392,7 @@ msgstr "您只能在顶层设计中编译。在子模块中您将只能 msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "如果不保存,您的更改将会丢失" @@ -1388,22 +1400,22 @@ msgstr "如果不保存,您的更改将会丢失" msgid "back" msgstr "后退" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "需要 {{app}} 。" -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} 数据表未定义" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} 引脚未定义" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} 规则未定义" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} 已导出" diff --git a/app/resources/locale/zh_TW/zh_TW.po b/app/resources/locale/zh_TW/zh_TW.po index af6bcd885..ae548c736 100644 --- a/app/resources/locale/zh_TW/zh_TW.po +++ b/app/resources/locale/zh_TW/zh_TW.po @@ -44,7 +44,7 @@ msgid "" " Edit → Clone." msgstr "" -#: app/views/menu.html:873 +#: app/views/menu.html:877 msgid "About Icestudio" msgstr "關於 Icestudio" @@ -52,11 +52,11 @@ msgstr "關於 Icestudio" msgid "Acknowledgment" msgstr "致謝" -#: app/views/menu.html:708 +#: app/views/menu.html:712 msgid "Add" msgstr "新增" -#: app/scripts/controllers/menu.js:1423 +#: app/scripts/controllers/menu.js:1431 msgid "Add a block to start" msgstr "新增區塊並開始" @@ -76,7 +76,7 @@ msgstr "" msgid "All collections removed" msgstr "已刪除全部選集" -#: app/scripts/controllers/menu.js:1463 +#: app/scripts/controllers/menu.js:1471 msgid "All stored collections will be lost. Do you want to continue?" msgstr "儲存的選集會全部消失,是否要繼續?" @@ -97,11 +97,11 @@ msgstr "" msgid "At least Python 3.7 is required" msgstr "至少需要 Python3.7版" -#: app/scripts/services/utils.js:673 +#: app/scripts/services/utils.js:690 msgid "Author" msgstr "作者" -#: app/views/menu.html:753 +#: app/views/menu.html:757 msgid "Basic" msgstr "基本區塊" @@ -121,12 +121,12 @@ msgstr "Binary" msgid "Bitstream not found: Build your project first" msgstr "" -#: app/scripts/services/blockforms.js:1130 -#: app/scripts/services/blockforms.js:1254 -#: app/scripts/services/blockforms.js:1297 -#: app/scripts/services/blockforms.js:1347 -#: app/scripts/services/blockforms.js:1400 -#: app/scripts/services/blockforms.js:1568 +#: app/scripts/services/blockforms.js:1128 +#: app/scripts/services/blockforms.js:1252 +#: app/scripts/services/blockforms.js:1295 +#: app/scripts/services/blockforms.js:1345 +#: app/scripts/services/blockforms.js:1398 +#: app/scripts/services/blockforms.js:1569 msgid "Block updated" msgstr "區塊已更新" @@ -146,11 +146,11 @@ msgstr "開發板" msgid "Board rules" msgstr "開發板規則" -#: app/scripts/controllers/menu.js:1027 +#: app/scripts/controllers/menu.js:1029 msgid "Board rules disabled" msgstr "開發板規則停用" -#: app/scripts/controllers/menu.js:1025 +#: app/scripts/controllers/menu.js:1027 msgid "Board rules enabled" msgstr "開發板規則啟用" @@ -166,7 +166,7 @@ msgstr "開發板 {{name}}無法使用" msgid "Board {{name}} not connected" msgstr "開發板 {{name}} 未連線" -#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1345 +#: app/scripts/app.js:190 app/scripts/controllers/menu.js:1353 msgid "Board {{name}} selected" msgstr "開發板{{name}} 已選中" @@ -174,21 +174,21 @@ msgstr "開發板{{name}} 已選中" msgid "Bootloader not active" msgstr "Bootloader 未啟動" -#: app/scripts/controllers/menu.js:1367 app/views/design.html:508 -#: app/views/menu.html:607 +#: app/scripts/controllers/menu.js:1375 app/views/design.html:508 +#: app/views/menu.html:611 msgid "Build" msgstr "建構" -#: app/scripts/controllers/menu.js:1377 +#: app/scripts/controllers/menu.js:1385 msgid "Build done" msgstr "建構完成" #: app/scripts/app.js:58 app/scripts/services/project.js:161 -#: app/scripts/services/utils.js:1384 +#: app/scripts/services/utils.js:1402 msgid "Cancel" msgstr "取消" -#: app/scripts/services/utils.js:1202 +#: app/scripts/services/utils.js:1219 msgid "Cannot paste from a different project format ({{version}})" msgstr "" @@ -206,7 +206,7 @@ msgstr "Catalan" msgid "Change Color" msgstr "選擇顏色" -#: app/scripts/services/utils.js:1369 +#: app/scripts/services/utils.js:1387 msgid "Changed Preferences: Allow tri-state connections" msgstr "" @@ -227,7 +227,7 @@ msgstr "中文(簡)" msgid "Choose a color:" msgstr "選擇顏色:" -#: app/scripts/services/utils.js:1367 +#: app/scripts/services/utils.js:1385 msgid "" "Click \"Yes\" to allow tri-state and update Preferences:
  " " Advanced features → Allow tri-state connections

安裝驅動程式" msgid "Click here to install it" msgstr "點按這裡安裝" -#: app/scripts/controllers/menu.js:967 +#: app/scripts/controllers/menu.js:969 msgid "Click here to view" msgstr "點按這裡瀏覽" @@ -260,15 +260,15 @@ msgstr "時脈不合於資料匯流排線" msgid "Clone" msgstr "Clone" -#: app/scripts/controllers/menu.js:582 app/views/version.html:76 +#: app/scripts/controllers/menu.js:584 app/views/version.html:76 msgid "Close" msgstr "關閉" -#: app/views/design.html:316 app/views/menu.html:791 +#: app/views/design.html:316 app/views/menu.html:795 msgid "Code" msgstr "程式碼區塊" -#: app/views/menu.html:541 +#: app/views/menu.html:545 msgid "Collection" msgstr "選集" @@ -276,7 +276,7 @@ msgstr "選集" msgid "Collection info" msgstr "選集資訊" -#: app/scripts/controllers/menu.js:1254 +#: app/scripts/controllers/menu.js:1262 msgid "Collection {{collection}} info not defined" msgstr "選集 {{collection}} 資訊未定義" @@ -296,19 +296,19 @@ msgstr "已移除 {{name}} 選集" msgid "Collection {{name}} replaced" msgstr "已替換 {{name}} 選集" -#: app/scripts/controllers/menu.js:1300 +#: app/scripts/controllers/menu.js:1308 msgid "Collection {{name}} selected" msgstr "選中 {{name}} 選集" -#: app/views/menu.html:700 +#: app/views/menu.html:704 msgid "Collections" msgstr "範例選集組" -#: app/scripts/controllers/menu.js:1270 app/views/menu.html:471 +#: app/scripts/controllers/menu.js:1278 app/views/menu.html:471 msgid "Command output" msgstr "查看執行結果" -#: app/views/menu.html:864 +#: app/views/menu.html:868 msgid "Community forum" msgstr "社群論壇" @@ -316,7 +316,7 @@ msgstr "社群論壇" msgid "Configuration not completed" msgstr "設定未完成" -#: app/views/design.html:306 app/views/menu.html:783 +#: app/views/design.html:306 app/views/menu.html:787 msgid "Constant" msgstr "常數" @@ -381,7 +381,7 @@ msgstr "暗粉紅色" msgid "Deep Sky Blue" msgstr "深天空藍色" -#: app/views/menu.html:550 +#: app/views/menu.html:554 msgid "Default" msgstr "預設" @@ -389,19 +389,19 @@ msgstr "預設" msgid "Delete" msgstr "" -#: app/scripts/services/utils.js:672 +#: app/scripts/services/utils.js:689 msgid "Description" msgstr "說明" -#: app/views/menu.html:688 +#: app/views/menu.html:692 msgid "Disable" msgstr "取消" -#: app/scripts/controllers/menu.js:587 +#: app/scripts/controllers/menu.js:589 msgid "Do you want to close the application?" msgstr "您是否關閉應用程式?" -#: app/scripts/controllers/menu.js:1446 +#: app/scripts/controllers/menu.js:1454 msgid "Do you want to remove the {{name}} collection?" msgstr "您是是否要移除這 {{name}} 選集?" @@ -409,7 +409,7 @@ msgstr "您是是否要移除這 {{name}} 選集?" msgid "Do you want to replace it?" msgstr "您是否要替換?" -#: app/views/menu.html:845 +#: app/views/menu.html:849 msgid "Documentation" msgstr "說明文件" @@ -418,7 +418,7 @@ msgstr "說明文件" msgid "Don’t display" msgstr "不再顯示" -#: app/views/menu.html:675 +#: app/views/menu.html:679 msgid "Drivers" msgstr "驅動程式" @@ -458,7 +458,7 @@ msgstr "編輯" msgid "Edit the collection name" msgstr "編輯選集名稱" -#: app/views/menu.html:681 +#: app/views/menu.html:685 msgid "Enable" msgstr "開啟" @@ -488,7 +488,7 @@ msgstr "" msgid "Enter the python path" msgstr "輸入 python 版本 > 3.8 的路徑" -#: app/scripts/controllers/menu.js:1014 +#: app/scripts/controllers/menu.js:1016 msgid "Enter the remote hostname user@host" msgstr "輸入遠端主機 用戶名@主機名" @@ -496,7 +496,7 @@ msgstr "輸入遠端主機 用戶名@主機名" msgid "Error installing driver:" msgstr "" -#: app/scripts/services/utils.js:876 +#: app/scripts/services/utils.js:893 msgid "Error: {{error}}" msgstr "錯誤: {{error}}" @@ -520,7 +520,7 @@ msgstr "遠端執行 {{label}} ..." msgid "Export" msgstr "導出" -#: app/scripts/controllers/menu.js:397 app/scripts/controllers/menu.js:410 +#: app/scripts/controllers/menu.js:399 app/scripts/controllers/menu.js:412 msgid "Export submodule" msgstr "輸出子模組" @@ -528,7 +528,7 @@ msgstr "輸出子模組" msgid "External collections" msgstr "外部選集" -#: app/scripts/controllers/menu.js:939 +#: app/scripts/controllers/menu.js:941 msgid "External collections updated" msgstr "外部選集已更新" @@ -536,7 +536,7 @@ msgstr "外部選集已更新" msgid "External plugins" msgstr "外部外掛" -#: app/scripts/controllers/menu.js:811 +#: app/scripts/controllers/menu.js:813 msgid "External plugins updated" msgstr "外部外掛已更新" @@ -615,7 +615,7 @@ msgstr "Greek" msgid "Green Yellow" msgstr "黃綠色" -#: app/views/menu.html:809 +#: app/views/menu.html:813 msgid "Help" msgstr "輔助說明" @@ -634,11 +634,11 @@ msgid "" "this board" msgstr "若您看到空的輸入輸出接腳,這是因為這塊開發板上沒有對應的腳位" -#: app/scripts/services/utils.js:686 +#: app/scripts/services/utils.js:703 msgid "Image" msgstr "圖像" -#: app/scripts/controllers/menu.js:2166 +#: app/scripts/controllers/menu.js:2174 msgid "Image {{name}} saved" msgstr "圖像 {{name}} 已儲存" @@ -647,15 +647,15 @@ msgstr "圖像 {{name}} 已儲存" msgid "Indian Red" msgstr "印地安紅色" -#: app/views/design.html:321 app/views/menu.html:795 +#: app/views/design.html:321 app/views/menu.html:799 msgid "Information" msgstr "資訊" -#: app/views/design.html:281 app/views/menu.html:760 +#: app/views/design.html:281 app/views/menu.html:764 msgid "Input" msgstr "輸入" -#: app/views/design.html:291 app/views/menu.html:769 +#: app/views/design.html:291 app/views/menu.html:773 msgid "Input label" msgstr "" @@ -675,12 +675,12 @@ msgstr "" msgid "Input ports" msgstr "" -#: app/views/menu.html:635 +#: app/views/menu.html:639 #, fuzzy msgid "Install (Stable)" msgstr "安裝" -#: app/views/menu.html:656 +#: app/views/menu.html:660 msgid "Install Development version" msgstr "" @@ -749,7 +749,7 @@ msgstr "無效的連接: {{a}} → {{b}}" msgid "Invalid multiple input connections" msgstr "無效的多輸入連接" -#: app/scripts/controllers/menu.js:1950 +#: app/scripts/controllers/menu.js:1958 msgid "Invalid new name!" msgstr "" @@ -757,7 +757,7 @@ msgstr "" msgid "Invalid project format" msgstr "無效的專案格式" -#: app/scripts/controllers/menu.js:1854 +#: app/scripts/controllers/menu.js:1862 msgid "Invalid search name!" msgstr "" @@ -765,7 +765,7 @@ msgstr "" msgid "Italian" msgstr "Italian" -#: app/views/languages.html:110 +#: app/views/languages.html:116 msgid "Japanese" msgstr "" @@ -777,7 +777,7 @@ msgstr "Korean" msgid "Label finder" msgstr "" -#: app/scripts/services/blockforms.js:1039 +#: app/scripts/services/blockforms.js:1037 msgid "Label updated" msgstr "" @@ -815,11 +815,11 @@ msgstr "" msgid "Logging file" msgstr "" -#: app/scripts/controllers/menu.js:753 +#: app/scripts/controllers/menu.js:755 msgid "Logging file updated" msgstr "" -#: app/scripts/services/utils.js:990 +#: app/scripts/services/utils.js:1007 msgid "Maximum bus size: 96 bits" msgstr "最大的匯流排大小:96位元" @@ -828,7 +828,7 @@ msgstr "最大的匯流排大小:96位元" msgid "Medium Violet Red" msgstr "中度紫紅色" -#: app/views/design.html:311 app/views/menu.html:787 +#: app/views/design.html:311 app/views/menu.html:791 msgid "Memory" msgstr "記憶體" @@ -836,7 +836,7 @@ msgstr "記憶體" msgid "Memory block names" msgstr "" -#: app/scripts/services/utils.js:670 +#: app/scripts/services/utils.js:687 msgid "Name" msgstr "名稱" @@ -865,12 +865,12 @@ msgstr "名稱:" msgid "Next" msgstr "" -#: app/scripts/controllers/menu.js:1474 +#: app/scripts/controllers/menu.js:1482 msgid "No collections stored" msgstr "沒有儲存的選集" -#: app/scripts/app.js:57 app/scripts/controllers/menu.js:602 -#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1383 +#: app/scripts/app.js:57 app/scripts/controllers/menu.js:604 +#: app/scripts/services/project.js:160 app/scripts/services/utils.js:1401 msgid "OK" msgstr "確定" @@ -883,7 +883,7 @@ msgstr "橄欖綠色" msgid "Open" msgstr "開啟" -#: app/scripts/services/utils.js:727 +#: app/scripts/services/utils.js:744 msgid "Open SVG" msgstr "開啟 SVG" @@ -896,11 +896,11 @@ msgstr "橘紅色" msgid "Original file {{file}} does not exist" msgstr "原始檔案 {{file}} 不存在" -#: app/views/design.html:286 app/views/menu.html:764 +#: app/views/design.html:286 app/views/menu.html:768 msgid "Output" msgstr "輸出" -#: app/views/design.html:296 app/views/menu.html:773 +#: app/views/design.html:296 app/views/menu.html:777 #, fuzzy msgid "Output label" msgstr "輸出標籤" @@ -918,7 +918,7 @@ msgstr "" msgid "Output ports" msgstr "" -#: app/views/design.html:301 app/views/menu.html:778 +#: app/views/design.html:301 app/views/menu.html:782 msgid "Paired labels" msgstr "" @@ -926,12 +926,12 @@ msgstr "" msgid "Paste" msgstr "貼上" -#: app/scripts/controllers/menu.js:762 app/scripts/controllers/menu.js:819 -#: app/scripts/controllers/menu.js:883 app/scripts/controllers/menu.js:947 +#: app/scripts/controllers/menu.js:764 app/scripts/controllers/menu.js:821 +#: app/scripts/controllers/menu.js:885 app/scripts/controllers/menu.js:949 msgid "Path {{path}} does not exist" msgstr "路徑 {{path}} 不存在" -#: app/scripts/services/utils.js:1179 +#: app/scripts/services/utils.js:1196 msgid "Please run: {{cmd}}" msgstr "請執行: {{cmd}}" @@ -947,7 +947,7 @@ msgstr "" msgid "Project information" msgstr "專案資訊" -#: app/scripts/controllers/menu.js:965 app/scripts/controllers/menu.js:991 +#: app/scripts/controllers/menu.js:967 app/scripts/controllers/menu.js:993 msgid "Project information updated" msgstr "專案資訊已更新" @@ -963,7 +963,7 @@ msgstr "專案 {{name}} 已儲存" msgid "Python environment" msgstr "Python 環境" -#: app/scripts/controllers/menu.js:875 +#: app/scripts/controllers/menu.js:877 #, fuzzy msgid "Python environment updated" msgstr "Python 環境已更新" @@ -984,7 +984,7 @@ msgstr "重做" msgid "Release History WIKI" msgstr "" -#: app/views/menu.html:715 +#: app/views/menu.html:719 msgid "Reload" msgstr "重載" @@ -996,11 +996,11 @@ msgstr "遠端主機 {{name}} 未連接" msgid "Remote hostname" msgstr "遠端主機名" -#: app/views/menu.html:647 app/views/menu.html:722 +#: app/views/menu.html:651 app/views/menu.html:726 msgid "Remove" msgstr "移除" -#: app/views/menu.html:738 +#: app/views/menu.html:742 msgid "Remove all" msgstr "全部移除" @@ -1012,7 +1012,7 @@ msgstr "" msgid "Replace One" msgstr "" -#: app/scripts/services/utils.js:729 +#: app/scripts/services/utils.js:746 msgid "Reset SVG" msgstr "重載SVG" @@ -1029,7 +1029,7 @@ msgstr "Russian" msgid "Save" msgstr "儲存" -#: app/scripts/services/utils.js:728 +#: app/scripts/services/utils.js:745 msgid "Save SVG" msgstr "儲存SVG" @@ -1037,7 +1037,7 @@ msgstr "儲存SVG" msgid "Save as" msgstr "另存為" -#: app/scripts/controllers/menu.js:350 +#: app/scripts/controllers/menu.js:352 msgid "Save submodule" msgstr "儲存子模組" @@ -1062,7 +1062,7 @@ msgstr "顯示時脈" msgid "Slate Blue" msgstr "板藍色" -#: app/views/menu.html:853 +#: app/views/menu.html:857 msgid "Source code" msgstr "原始程式" @@ -1075,15 +1075,15 @@ msgstr "Spanish" msgid "Spring Green" msgstr "春天綠色" -#: app/scripts/controllers/menu.js:1376 +#: app/scripts/controllers/menu.js:1384 msgid "Start build" msgstr "開始編譯" -#: app/scripts/controllers/menu.js:1402 +#: app/scripts/controllers/menu.js:1410 msgid "Start upload" msgstr "開始上傳" -#: app/scripts/controllers/menu.js:1353 +#: app/scripts/controllers/menu.js:1361 msgid "Start verification" msgstr "開始驗證" @@ -1118,7 +1118,7 @@ msgstr ". 非常感謝" msgid "The collection {{name}} already exists." msgstr "選集 {{name}} 已存在." -#: app/scripts/controllers/menu.js:1325 +#: app/scripts/controllers/menu.js:1333 #, fuzzy msgid "" "The current FPGA I/O configuration will be lost. Do you want to change to " @@ -1153,7 +1153,7 @@ msgid "" "team from" msgstr "" -#: app/scripts/services/utils.js:1377 +#: app/scripts/services/utils.js:1395 msgid "This time" msgstr "" @@ -1169,7 +1169,7 @@ msgstr "要進入深層區塊的編輯模式,您必須先結束現在的編輯 msgid "To navigate through the design, you need to close \"edit mode\"." msgstr "要在設計中遊走瀏覽,您需要先關閉編輯模式。" -#: app/scripts/controllers/menu.js:351 +#: app/scripts/controllers/menu.js:353 #, fuzzy msgid "" "To save your design you need to lock the padlock and go to the " @@ -1184,7 +1184,7 @@ msgstr "" msgid "Toolbox" msgstr "工具" -#: app/views/menu.html:627 +#: app/views/menu.html:631 msgid "Toolchain" msgstr "工具鏈" @@ -1205,11 +1205,11 @@ msgstr "工具鏈移除了" msgid "Toolchain version does not match" msgstr "工具鏈版本不符合" -#: app/views/menu.html:592 +#: app/views/menu.html:596 msgid "Tools" msgstr "工具" -#: app/scripts/services/utils.js:1352 +#: app/scripts/services/utils.js:1370 msgid "" "Tri-state (aka high-Z, bidirectional, or inout) ports are not recommended in " "standard designs.

You will be asked to update your Preferences " @@ -1217,11 +1217,11 @@ msgid "" "

Continue?" msgstr "" -#: app/scripts/controllers/menu.js:1038 +#: app/scripts/controllers/menu.js:1040 msgid "Tri-state connections (inout ports) disabled" msgstr "" -#: app/scripts/controllers/menu.js:1035 +#: app/scripts/controllers/menu.js:1037 msgid "Tri-state connections (inout ports) enabled" msgstr "" @@ -1233,10 +1233,19 @@ msgstr "" msgid "Turquoise" msgstr "綠松色" +#: app/scripts/controllers/menu.js:1073 +#, fuzzy +msgid "UI Theme" +msgstr "介面主題風格" + #: app/views/menu.html:372 msgid "UI theme" msgstr "介面主題風格" +#: app/views/languages.html:110 +msgid "Ukrainian" +msgstr "" + #: app/views/menu.html:228 msgid "Undo" msgstr "還原" @@ -1253,36 +1262,36 @@ msgstr "不支援的專案格式 {{version}}" msgid "Untitled" msgstr "未命名" -#: app/views/menu.html:639 +#: app/views/menu.html:643 msgid "Update (Latest stable)" msgstr "" -#: app/scripts/controllers/menu.js:1392 app/views/design.html:516 -#: app/views/menu.html:615 +#: app/scripts/controllers/menu.js:1400 app/views/design.html:516 +#: app/views/menu.html:619 msgid "Upload" msgstr "上傳" -#: app/scripts/controllers/menu.js:1403 +#: app/scripts/controllers/menu.js:1411 msgid "Upload done" msgstr "上傳完成" -#: app/scripts/services/utils.js:463 +#: app/scripts/services/utils.js:464 msgid "Using external Apio: {{name}}" msgstr "" -#: app/scripts/controllers/menu.js:1354 +#: app/scripts/controllers/menu.js:1362 msgid "Verification done" msgstr "驗證完成" -#: app/views/design.html:500 app/views/menu.html:599 +#: app/views/design.html:500 app/views/menu.html:603 msgid "Verify" msgstr "驗證" -#: app/scripts/services/utils.js:671 app/views/menu.html:832 +#: app/scripts/services/utils.js:688 app/views/menu.html:836 msgid "Version" msgstr "版本" -#: app/views/menu.html:826 +#: app/views/menu.html:830 msgid "Version notes" msgstr "版本通知" @@ -1290,14 +1299,18 @@ msgstr "版本通知" msgid "View" msgstr "查看" -#: app/views/menu.html:819 +#: app/views/menu.html:823 msgid "View license" msgstr "查看版權說明" -#: app/scripts/services/utils.js:1373 +#: app/scripts/services/utils.js:1391 msgid "Viewing tri-state" msgstr "" +#: app/scripts/controllers/menu.js:1073 +msgid "Wait for seconds" +msgstr "" + #: app/scripts/services/tools.js:924 msgid "Warnings detected in the design" msgstr "設計中發現警告" @@ -1307,7 +1320,7 @@ msgstr "設計中發現警告" msgid "Welcome to Icestudio!" msgstr "關於 Icestudio" -#: app/scripts/services/blockforms.js:535 +#: app/scripts/services/blockforms.js:534 msgid "Wrong block format: {{type}}" msgstr "區塊格式錯誤: {{type}}" @@ -1329,11 +1342,11 @@ msgstr "遠端主機名稱錯誤 {{name}}" msgid "Yellow" msgstr "黃色" -#: app/scripts/services/utils.js:1376 +#: app/scripts/services/utils.js:1394 msgid "Yes" msgstr "" -#: app/scripts/controllers/menu.js:411 +#: app/scripts/controllers/menu.js:413 #, fuzzy msgid "" "You are editing a submodule, so you will save just this submodule (\"Save " @@ -1342,15 +1355,15 @@ msgstr "" "您正在編輯子模組,如果您儲存它,只有子模組會儲存,用「另存為」可以導出模組," "請問還要繼續嗎?" -#: app/scripts/services/utils.js:1350 +#: app/scripts/services/utils.js:1368 msgid "You are importing a block that uses \"tri-state\"." msgstr "" -#: app/scripts/services/utils.js:1349 +#: app/scripts/services/utils.js:1367 msgid "You are loading a design that uses \"tri-state\"." msgstr "" -#: app/scripts/controllers/menu.js:398 +#: app/scripts/controllers/menu.js:400 msgid "" "You are navigating into the design: If you want to save the entire design, " "you need to go back to the top-level. If you want to " @@ -1362,14 +1375,14 @@ msgstr "" msgid "You can load it as it is or convert it to use the {{name}} board." msgstr "您可以載入原始專案,或轉換成適合開發板 {{name}} ." -#: app/scripts/controllers/menu.js:1368 +#: app/scripts/controllers/menu.js:1376 #, fuzzy msgid "" "You can only build at the top-level design. Inside submodules, you can " "Verify" msgstr "您可以只建構最上層的設計,子模組內只要 驗證。" -#: app/scripts/controllers/menu.js:1393 +#: app/scripts/controllers/menu.js:1401 #, fuzzy msgid "" "You can only upload at the top-level design. Inside submodules, you can " @@ -1380,7 +1393,7 @@ msgstr "您可以只建構最上層的設計,子模組內只要 驗證 msgid "You can read the release notes on the" msgstr "" -#: app/scripts/controllers/menu.js:591 +#: app/scripts/controllers/menu.js:593 msgid "Your changes will be lost if you don’t save them" msgstr "如果不儲存,更改內容將消失" @@ -1388,22 +1401,22 @@ msgstr "如果不儲存,更改內容將消失" msgid "back" msgstr "後退" -#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1159 +#: app/scripts/services/drivers.js:439 app/scripts/services/utils.js:1176 msgid "{{app}} is required." msgstr "需要{{app}}" -#: app/scripts/controllers/menu.js:1140 +#: app/scripts/controllers/menu.js:1148 msgid "{{board}} datasheet not defined" msgstr "{{board}} 數據表未定義" -#: app/scripts/controllers/menu.js:1126 +#: app/scripts/controllers/menu.js:1134 msgid "{{board}} pinout not defined" msgstr "{{board}} 接腳未定義" -#: app/scripts/controllers/menu.js:1166 +#: app/scripts/controllers/menu.js:1174 msgid "{{board}} rules not defined" msgstr "{{board}} 規則未定義" -#: app/scripts/controllers/menu.js:500 app/scripts/controllers/menu.js:533 +#: app/scripts/controllers/menu.js:502 app/scripts/controllers/menu.js:535 msgid "{{name}} exported" msgstr "{{name}} 已導出" diff --git a/app/scripts/controllers/menu.js b/app/scripts/controllers/menu.js index 5adef2368..76ebcfe82 100644 --- a/app/scripts/controllers/menu.js +++ b/app/scripts/controllers/menu.js @@ -225,7 +225,7 @@ angular //-- Display the version notes, if the option is enabled or //-- if this is a newer version - + console.log('VWINDOW',versionW,hasNewVersion,lastversionReview,_package.version); if (versionW === "yes" || hasNewVersion) { $scope.openVersionInfoWindow(); @@ -274,6 +274,7 @@ angular ":checked" ); + console.log('VERSIONINFO',nodisplay); //-- Write the option to the profile file (so that it is remembered //-- after icestudio is closed) let option = (nodisplay) ? "no" : "yes"; @@ -1069,6 +1070,8 @@ angular // Theme support $scope.selectTheme = function (theme) { if (profile.get("uiTheme") !== theme) { + const modalWait = new WafleModal(); + modalWait.waitingSeconds(3,gettextCatalog.getString('UI Theme'),gettextCatalog.getString('Wait for seconds') ); console.log('[UITHEME]==>'+theme); profile.set("uiTheme", theme); setTimeout(function(){ diff --git a/app/styles/ics-wm.css b/app/styles/ics-wm.css index db223b05b..1da892f3c 100644 --- a/app/styles/ics-wm.css +++ b/app/styles/ics-wm.css @@ -53,4 +53,11 @@ left: 0; width: 100%; height: 18px; -} \ No newline at end of file +} + +body.swal2-shown > [aria-hidden='true'] { + transition: 0.1s filter; + filter: blur(3px); +} + +