Overview
Comment: | [fx] lexicon editor: import dictionary |
---|---|
Downloads: | Tarball | ZIP archive | SQL archive |
Timelines: | family | ancestors | descendants | both | fx | multid |
Files: | files | file ages | folders |
SHA3-256: |
b9f0eaf6cb9484b35fa16e2298dab4b7 |
User & Date: | olr on 2018-03-28 18:35:12 |
Other Links: | branch diff | manifest | tags |
Context
2018-03-29
| ||
09:48 | [tb] use Graphspell instead of Hunspell for spelling suggestions + [graphspell] str_transform: update exports bullshit again check-in: 35d2a24375 user: olr tags: tb, graphspell, multid | |
2018-03-28
| ||
18:35 | [fx] lexicon editor: import dictionary check-in: b9f0eaf6cb user: olr tags: fx, multid | |
13:34 | [tb] lexicon editor: import dictionary (handle errors) check-in: 657ac428bc user: olr tags: tb, multid | |
Changes
Modified gc_lang/fr/webext/panel/lex_editor.css from [c099ac0ad7] to [4d09c5b867].
︙ | |||
307 308 309 310 311 312 313 | 307 308 309 310 311 312 313 314 315 316 317 318 319 320 | - - - | } #export_button, #import_button { display: block; margin-left: 5px; background-color: hsl(210, 50%, 50%); color: hsl(210, 0%, 100%); } |
︙ |
Modified gc_lang/fr/webext/panel/lex_editor.html from [4ed29fb745] to [1204808fd3].
︙ | |||
13 14 15 16 17 18 19 20 | 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 | + + + + + - + | <h1>Éditeur lexical</h1> <div class="big_block"> <div class="dic_container"> <div><h3>Dictionnaire personnel</h3></div> <div>Enregistré le : <span id="dic_save_date">—</span></div> <div><span id="dic_num_entries">0</span> entrées</div> <!--<div id="import_button" class="fright">Importer</div>--> <div class="fright"> <input type="file" id="import_input" accept=".json" style="display: none;"> <label id="import_button" for="import_input">Importer</label> </div> <div id="export_button" class="fright">Exporter</div> |
︙ |
Modified gc_lang/fr/webext/panel/lex_editor.js from [8aaea91d99] to [5529c5faca].
︙ | |||
492 493 494 495 496 497 498 | 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 | - + + + + + + + + + + + - + + + + + + + + - + + + + + + + + + + + + + + + + + + + + + + + + + + - + - - - - - | const oBinaryDict = { oIBDAWG: null, load: function () { if (bChrome) { |
︙ |